diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..d3a8b5b6 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,39 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{json,toml,yml,gyp}] +indent_style = space +indent_size = 2 + +[*.js] +indent_style = space +indent_size = 2 + +[*.rs] +indent_style = space +indent_size = 4 + +[*.{c,cc,h}] +indent_style = space +indent_size = 4 + +[*.{py,pyi}] +indent_style = space +indent_size = 4 + +[*.swift] +indent_style = space +indent_size = 4 + +[*.go] +indent_style = tab +indent_size = 8 + +[Makefile] +indent_style = tab +indent_size = 8 diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index b2e707a9..00000000 --- a/.eslintrc.js +++ /dev/null @@ -1,20 +0,0 @@ -module.exports = { - 'env': { - 'commonjs': true, - 'es2021': true, - }, - 'extends': 'google', - 'overrides': [ - ], - 'parserOptions': { - 'ecmaVersion': 'latest', - 'sourceType': 'module', - }, - 'rules': { - 'indent': ['error', 2, {'SwitchCase': 1}], - 'max-len': [ - 'error', - {'code': 120, 'ignoreComments': true, 'ignoreUrls': true, 'ignoreStrings': true}, - ], - }, -}; diff --git a/.gitattributes b/.gitattributes index 8dfc3993..ffb52abe 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,12 +1,11 @@ -* text=auto eol=lf +* text eol=lf -/src/** linguist-vendored -/examples/* linguist-vendored - -src/grammar.json linguist-generated -src/node-types.json linguist-generated +src/*.json linguist-generated src/parser.c linguist-generated +src/tree_sitter/* linguist-generated -src/grammar.json -diff -src/node-types.json -diff -src/parser.c -diff +bindings/** linguist-generated +binding.gyp linguist-generated +setup.py linguist-generated +Makefile linguist-generated +Package.swift linguist-generated diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md deleted file mode 100644 index 719e1896..00000000 --- a/.github/pull_request_template.md +++ /dev/null @@ -1,8 +0,0 @@ -# Checklist - -- [ ] All tests pass in CI -- [ ] There are enough tests for the new fix/feature -- [ ] Grammar rules have not been renamed unless absolutely necessary (x rules renamed) -- [ ] The conflicts section hasn't grown too much (x new conflicts) -- [ ] The parser size hasn't grown too much (master: STATE_COUNT, PR: STATE_COUNT) - (check the value of STATE_COUNT in src/parser.c) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 69f7c503..a61f3e15 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,36 +2,57 @@ name: CI on: push: - branches: - - master + branches: [master] + paths: + - "scripts.js" + - "common/*" + - "*/grammar.js" + - "*/src/**" + - "bindings/**" + - "binding.gyp" pull_request: - branches: - - master + paths: + - "scripts.js" + - "common/*" + - "*/grammar.js" + - "*/src/**" + - "bindings/**" + - "binding.gyp" + +concurrency: + group: ${{github.workflow}}-${{github.ref}} + cancel-in-progress: true jobs: test: - runs-on: ${{ matrix.os }} + name: Test parsers + runs-on: ${{matrix.os}} strategy: fail-fast: false matrix: - os: [macos-latest, ubuntu-latest] + os: [ubuntu-latest, windows-latest, macos-14] steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: 18 - - uses: actions/setup-python@v4 + - name: Checkout repository + uses: actions/checkout@v4 + - name: Set up tree-sitter + uses: tree-sitter/setup-action/cli@v1 + - name: Set up examples + run: |- + git clone https://github.com/laravel/laravel examples/laravel --single-branch --depth=1 --filter=blob:none + git clone https://github.com/laravel/framework examples/framework --single-branch --depth=1 --filter=blob:none + git clone https://github.com/phacility/phabricator examples/phabricator --single-branch --depth=1 --filter=blob:none + git clone https://github.com/sebastianbergmann/phpunit examples/phpunit --single-branch --depth=1 --filter=blob:none + git clone https://github.com/WordPress/WordPress examples/WordPress --single-branch --depth=1 --filter=blob:none + git clone https://github.com/wikimedia/mediawiki examples/mediawiki --single-branch --depth=1 --filter=blob:none + - name: Run tests + uses: tree-sitter/parser-test-action@v2 with: - python-version: '3.12' - - run: npm install - - run: npm test - - run: npm run test-examples - test_windows: - runs-on: windows-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + test-rust: ${{runner.os == 'Linux'}} + - name: Parse examples + id: test + uses: tree-sitter/parse-action@v4 with: - node-version: 18 - - run: npm install - - run: npm test + files: | + examples/**/*.php + invalid-files: | + examples/framework/tests/Foundation/fixtures/bad-syntax-strategy.php diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml new file mode 100644 index 00000000..d4045f9b --- /dev/null +++ b/.github/workflows/fuzz.yml @@ -0,0 +1,30 @@ +name: Fuzz Parser + +on: + push: + branches: [master] + paths: + - php/src/scanner.c + - php_only/src/scanner.c + - common/scanner.h + pull_request: + paths: + - php/src/scanner.c + - php_only/src/scanner.c + - common/scanner.h + +jobs: + fuzz: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + language: [php, php_only] + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Fuzz ${{matrix.language}} parser + uses: tree-sitter/fuzz-action@v4 + with: + directory: ${{matrix.language}} + tree-sitter-version: v0.22.5 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 00000000..ac31648d --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,23 @@ +name: Publish package + +on: + push: + tags: ["*"] + +concurrency: + group: ${{github.workflow}}-${{github.ref}} + cancel-in-progress: true + +jobs: + npm: + uses: tree-sitter/workflows/.github/workflows/package-npm.yml@main + secrets: + NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} + crates: + uses: tree-sitter/workflows/.github/workflows/package-crates.yml@main + secrets: + CARGO_REGISTRY_TOKEN: ${{secrets.CARGO_REGISTRY_TOKEN}} + pypi: + uses: tree-sitter/workflows/.github/workflows/package-pypi.yml@main + secrets: + PYPI_API_TOKEN: ${{secrets.PYPI_API_TOKEN}} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 870eb84b..00000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,103 +0,0 @@ -name: Release - -on: - workflow_run: - workflows: ["CI"] - branches: - - master - types: - - completed - -jobs: - release: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Get previous commit SHA - id: get_previous_commit - run: | - LATEST_TAG=$(git describe --tags --abbrev=0) - if [[ -z "$LATEST_TAG" ]]; then - echo "No tag found. Failing..." - exit 1 - fi - echo "latest_tag=${LATEST_TAG#v}" >> "$GITHUB_ENV" # Remove 'v' prefix from the tag - - - name: Check if version changed and is greater than the previous - id: version_check - run: | - # Compare the current version with the version from the previous commit - PREVIOUS_NPM_VERSION=${{ env.latest_tag }} - CURRENT_NPM_VERSION=$(jq -r '.version' package.json) - CURRENT_CARGO_VERSION=$(awk -F '"' '/^version/ {print $2}' Cargo.toml) - if [[ "$CURRENT_NPM_VERSION" != "$CURRENT_CARGO_VERSION" ]]; then # Cargo.toml and package.json versions must match - echo "Mismatch: NPM version ($CURRENT_NPM_VERSION) and Cargo.toml version ($CURRENT_CARGO_VERSION)" - echo "version_changed=false" >> "$GITHUB_ENV" - else - if [[ "$PREVIOUS_NPM_VERSION" == "$CURRENT_NPM_VERSION" ]]; then - echo "version_changed=" >> "$GITHUB_ENV" - else - IFS='.' read -ra PREVIOUS_VERSION_PARTS <<< "$PREVIOUS_NPM_VERSION" - IFS='.' read -ra CURRENT_VERSION_PARTS <<< "$CURRENT_NPM_VERSION" - VERSION_CHANGED=false - for i in "${!PREVIOUS_VERSION_PARTS[@]}"; do - if [[ ${CURRENT_VERSION_PARTS[i]} -gt ${PREVIOUS_VERSION_PARTS[i]} ]]; then - VERSION_CHANGED=true - break - elif [[ ${CURRENT_VERSION_PARTS[i]} -lt ${PREVIOUS_VERSION_PARTS[i]} ]]; then - break - fi - done - - echo "version_changed=$VERSION_CHANGED" >> "$GITHUB_ENV" - echo "current_version=${CURRENT_NPM_VERSION}" >> "$GITHUB_ENV" - fi - fi - - - name: Display result - run: | - echo "Version bump detected: ${{ env.version_changed }}" - - - name: Fail if version is lower - if: env.version_changed == 'false' - run: exit 1 - - - name: Setup Node - if: env.version_changed == 'true' - uses: actions/setup-node@v4 - with: - node-version: 18 - registry-url: "https://registry.npmjs.org" - - name: Publish to NPM - if: env.version_changed == 'true' - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} - run: npm publish - - - name: Setup Rust - if: env.version_changed == 'true' - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - - name: Publish to Crates.io - if: env.version_changed == 'true' - uses: katyo/publish-crates@v2 - with: - registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} - - - name: Tag versions - if: env.version_changed == 'true' - run: | - git checkout master - git config user.name github-actions[bot] - git config user.email github-actions[bot]@users.noreply.github.com - git tag -d "v${{ env.current_version }}" || true - git push origin --delete "v${{ env.current_version }}" || true - git tag -a "v${{ env.current_version }}" -m "Version ${{ env.current_version }}" - git push origin "v${{ env.current_version }}" diff --git a/.gitignore b/.gitignore index 8d3abd16..27fc43f7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,21 +1,38 @@ +# Rust artifacts Cargo.lock -node_modules -build -package-lock.json -/target/ +target/ + +# Node artifacts +build/ +prebuilds/ +node_modules/ +*.tgz + +# Swift artifacts .build/ -bindings/c/*.pc -bindings/c/*.h + +# Go artifacts +go.sum +_obj/ + +# Python artifacts +.venv/ +dist/ +*.egg-info +*.whl + +# C artifacts *.a -*.o *.so +*.so.* *.dylib +*.dll +*.pc -# 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 +# Example dirs +/examples/*/ + +# Grammar volatiles +*.wasm +*.obj +*.o diff --git a/.npmignore b/.npmignore deleted file mode 100644 index 194ff845..00000000 --- a/.npmignore +++ /dev/null @@ -1,5 +0,0 @@ -/test -/examples -/build -/script -/target diff --git a/Cargo.lock b/Cargo.lock index f250146f..d1950fc4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,39 +4,42 @@ version = 3 [[package]] name = "aho-corasick" -version = "0.7.18" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" +checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" dependencies = [ "memchr", ] [[package]] name = "cc" -version = "1.0.83" +version = "1.0.96" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" -dependencies = [ - "libc", -] +checksum = "065a29261d53ba54260972629f9ca6bffa69bac13cd1fed61420f7fa68b9f8bd" [[package]] -name = "libc" -version = "0.2.150" +name = "memchr" +version = "2.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" +checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" [[package]] -name = "memchr" -version = "2.5.0" +name = "regex" +version = "1.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" +checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] [[package]] -name = "regex" -version = "1.5.5" +name = "regex-automata" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286" +checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" dependencies = [ "aho-corasick", "memchr", @@ -45,15 +48,15 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.6.25" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" +checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" [[package]] name = "tree-sitter" -version = "0.20.10" +version = "0.22.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e747b1f9b7b931ed39a548c1fae149101497de3c1fc8d9e18c62c1a66c683d3d" +checksum = "688200d842c76dd88f9a7719ecb0483f79f5a766fb1c100756d5d8a059abc71b" dependencies = [ "cc", "regex", @@ -61,7 +64,7 @@ dependencies = [ [[package]] name = "tree-sitter-php" -version = "0.22.0" +version = "0.22.2" dependencies = [ "cc", "tree-sitter", diff --git a/Cargo.toml b/Cargo.toml index 1890bb74..2dd83d1b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,11 @@ [package] name = "tree-sitter-php" description = "PHP grammar for tree-sitter" -version = "0.22.2" +version = "0.22.3" +authors = [ + "Max Brunsfeld ", + "Amaan Qureshi ", +] keywords = ["incremental", "parsing", "php"] categories = ["parsing", "text-editors"] repository = "https://github.com/tree-sitter/tree-sitter-php" @@ -10,20 +14,20 @@ license = "MIT" build = "bindings/rust/build.rs" include = [ - "common", - "bindings/rust", - "php/grammar.js", - "php/src", - "php_only/grammar.js", - "php_only/src", - "queries", + "common", + "bindings/rust", + "php/grammar.js", + "php/src", + "php_only/grammar.js", + "php_only/src", + "queries", ] [lib] path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = "~0.20.10" +tree-sitter = ">= 0.21.0" [build-dependencies] -cc = "~1.0.83" +cc = "1.0.96" diff --git a/LICENSE b/LICENSE index 622fc859..513857dd 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,7 @@ The MIT License (MIT) Copyright (c) 2017 Josh Vera, GitHub +Copyright (c) 2019 Max Brunsfeld, Amaan Qureshi, Christian Frøystad, Caleb White Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Makefile b/Makefile index 540dc96f..9c137998 100644 --- a/Makefile +++ b/Makefile @@ -1,113 +1,8 @@ -VERSION := 0.19.0 +all install uninstall clean: + $(MAKE) -C php $@ + $(MAKE) -C php_only $@ -PARSER_REPO_URL := $(shell git -C $(PWD) remote get-url origin ) +test: + $(TS) test -ifeq (, $(PARSER_NAME)) - PARSER_NAME := $(shell basename $(PARSER_REPO_URL)) - PARSER_NAME := $(subst tree-sitter-,,$(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)) - PARSER_URL := $(subst .git,,$(PARSER_URL)) -endif - -UPPER_PARSER_NAME := $(shell echo $(PARSER_NAME) | tr a-z A-Z ) - -# install directory layout -PREFIX ?= /usr/local -INCLUDEDIR ?= $(PREFIX)/include -LIBDIR ?= $(PREFIX)/lib -PCLIBDIR ?= $(LIBDIR)/pkgconfig - -# collect C++ sources, and link if necessary -CPPSRC := $(wildcard $(SRC_DIR)/*.cc) - -ifeq (, $(CPPSRC)) - ADDITIONALLIBS := -else - ADDITIONALLIBS := -lc++ -endif - -# collect sources -SRC := $(wildcard $(SRC_DIR)/*.c) -SRC += $(CPPSRC) -OBJ := $(addsuffix .o,$(basename $(SRC))) - -# ABI versioning -SONAME_MAJOR := 0 -SONAME_MINOR := 0 - -CFLAGS ?= -O3 -Wall -Wextra -I$(SRC_DIR) -CXXFLAGS ?= -O3 -Wall -Wextra -I$(SRC_DIR) -override CFLAGS += -std=gnu99 -fPIC -override CXXFLAGS += -fPIC - -# OS-specific bits -ifeq ($(shell uname),Darwin) - SOEXT = dylib - SOEXTVER_MAJOR = $(SONAME_MAJOR).dylib - SOEXTVER = $(SONAME_MAJOR).$(SONAME_MINOR).dylib - LINKSHARED := $(LINKSHARED)-dynamiclib -Wl, - ifneq ($(ADDITIONALLIBS),) - LINKSHARED := $(LINKSHARED)$(ADDITIONALLIBS), - endif - LINKSHARED := $(LINKSHARED)-install_name,$(LIBDIR)/libtree-sitter-$(PARSER_NAME).$(SONAME_MAJOR).dylib,-rpath,@executable_path/../Frameworks -else - SOEXT = so - SOEXTVER_MAJOR = so.$(SONAME_MAJOR) - SOEXTVER = so.$(SONAME_MAJOR).$(SONAME_MINOR) - LINKSHARED := $(LINKSHARED)-shared -Wl, - ifneq ($(ADDITIONALLIBS),) - LINKSHARED := $(LINKSHARED)$(ADDITIONALLIBS), - endif - LINKSHARED := $(LINKSHARED)-soname,libtree-sitter-$(PARSER_NAME).so.$(SONAME_MAJOR) -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) - $(AR) rcs $@ $^ - -libtree-sitter-$(PARSER_NAME).$(SOEXTVER): $(OBJ) - $(CC) $(LDFLAGS) $(LINKSHARED) $^ $(LDLIBS) -o $@ - ln -sf $@ libtree-sitter-$(PARSER_NAME).$(SOEXT) - ln -sf $@ libtree-sitter-$(PARSER_NAME).$(SOEXTVER_MAJOR) - -bindings/c/$(PARSER_NAME).h: - sed -e 's|@UPPER_PARSERNAME@|$(UPPER_PARSER_NAME)|' \ - -e 's|@PARSERNAME@|$(PARSER_NAME)|' \ - bindings/c/tree-sitter.h.in > $@ - -bindings/c/tree-sitter-$(PARSER_NAME).pc: - sed -e 's|@LIBDIR@|$(LIBDIR)|;s|@INCLUDEDIR@|$(INCLUDEDIR)|;s|@VERSION@|$(VERSION)|' \ - -e 's|=$(PREFIX)|=$${prefix}|' \ - -e 's|@PREFIX@|$(PREFIX)|' \ - -e 's|@ADDITIONALLIBS@|$(ADDITIONALLIBS)|' \ - -e 's|@PARSERNAME@|$(PARSER_NAME)|' \ - -e 's|@PARSERURL@|$(PARSER_URL)|' \ - bindings/c/tree-sitter.pc.in > $@ - -install: all - install -d '$(DESTDIR)$(LIBDIR)' - install -m755 libtree-sitter-$(PARSER_NAME).a '$(DESTDIR)$(LIBDIR)'/libtree-sitter-$(PARSER_NAME).a - install -m755 libtree-sitter-$(PARSER_NAME).$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/libtree-sitter-$(PARSER_NAME).$(SOEXTVER) - ln -sf libtree-sitter-$(PARSER_NAME).$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/libtree-sitter-$(PARSER_NAME).$(SOEXTVER_MAJOR) - ln -sf libtree-sitter-$(PARSER_NAME).$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/libtree-sitter-$(PARSER_NAME).$(SOEXT) - install -d '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter - install -m644 bindings/c/$(PARSER_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/ - install -d '$(DESTDIR)$(PCLIBDIR)' - install -m644 bindings/c/tree-sitter-$(PARSER_NAME).pc '$(DESTDIR)$(PCLIBDIR)'/ - -clean: - rm -f $(OBJ) libtree-sitter-$(PARSER_NAME).a libtree-sitter-$(PARSER_NAME).$(SOEXT) libtree-sitter-$(PARSER_NAME).$(SOEXTVER_MAJOR) libtree-sitter-$(PARSER_NAME).$(SOEXTVER) - rm -f bindings/c/$(PARSER_NAME).h bindings/c/tree-sitter-$(PARSER_NAME).pc - -.PHONY: all install clean +.PHONY: all install uninstall clean test update diff --git a/README.md b/README.md index a46cb163..7b273e9a 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ [![matrix][matrix]](https://matrix.to/#/#tree-sitter-chat:matrix.org) [![crates][crates]](https://crates.io/crates/tree-sitter-php) [![npm][npm]](https://www.npmjs.com/package/tree-sitter-php) +[![pypi][pypi]](https://pypi.org/project/tree-sitter-php) PHP grammar for [tree-sitter](https://github.com/tree-sitter/tree-sitter). @@ -13,3 +14,4 @@ PHP grammar for [tree-sitter](https://github.com/tree-sitter/tree-sitter). [matrix]: https://img.shields.io/matrix/tree-sitter-chat%3Amatrix.org?logo=matrix&label=matrix [npm]: https://img.shields.io/npm/v/tree-sitter-php?logo=npm [crates]: https://img.shields.io/crates/v/tree-sitter-php?logo=rust +[pypi]: https://img.shields.io/pypi/v/tree-sitter-php?logo=pypi&logoColor=ffd242 diff --git a/binding.gyp b/binding.gyp index b9d832c2..4706cc89 100644 --- a/binding.gyp +++ b/binding.gyp @@ -2,19 +2,22 @@ "targets": [ { "target_name": "tree_sitter_php_binding", + "dependencies": [ + " - -#ifdef __cplusplus -extern "C" { -#endif - -extern TSLanguage *tree_sitter_@PARSERNAME@(); - -#ifdef __cplusplus -} -#endif - -#endif // TREE_SITTER_@UPPER_PARSERNAME@_H_ diff --git a/bindings/c/tree-sitter.pc.in b/bindings/c/tree-sitter.pc.in deleted file mode 100644 index 80d60b6d..00000000 --- a/bindings/c/tree-sitter.pc.in +++ /dev/null @@ -1,11 +0,0 @@ -prefix=@PREFIX@ -libdir=@LIBDIR@ -includedir=@INCLUDEDIR@ -additionallibs=@ADDITIONALLIBS@ - -Name: tree-sitter-@PARSERNAME@ -Description: A tree-sitter grammar for the @PARSERNAME@ programming language. -URL: @PARSERURL@ -Version: @VERSION@ -Libs: -L${libdir} ${additionallibs} -ltree-sitter-@PARSERNAME@ -Cflags: -I${includedir} diff --git a/bindings/go/binding_test.go b/bindings/go/binding_test.go new file mode 100644 index 00000000..d70d009a --- /dev/null +++ b/bindings/go/binding_test.go @@ -0,0 +1,22 @@ +package tree_sitter_php_test + +import ( + "testing" + + tree_sitter "github.com/smacker/go-tree-sitter" + "github.com/tree-sitter-grammars/tree-sitter-php" +) + +func TestCanLoadPHPGrammar(t *testing.T) { + language := tree_sitter.NewLanguage(tree_sitter_php.LanguagePHP()) + if language == nil { + t.Errorf("Error loading PHP grammar") + } +} + +func TestCanLoadPHPOnlyGrammar(t *testing.T) { + language := tree_sitter.NewLanguage(tree_sitter_php.LanguagePHPOnly()) + if language == nil { + t.Errorf("Error loading PHP-Only grammar") + } +} diff --git a/bindings/go/go.mod b/bindings/go/go.mod new file mode 100644 index 00000000..35804776 --- /dev/null +++ b/bindings/go/go.mod @@ -0,0 +1,5 @@ +module github.com/tree-sitter-grammars/tree-sitter-markdown + +go 1.22 + +require github.com/smacker/go-tree-sitter v0.0.0-20230720070738-0d0a9f78d8f8 diff --git a/bindings/go/php.go b/bindings/go/php.go new file mode 100644 index 00000000..153fb5ca --- /dev/null +++ b/bindings/go/php.go @@ -0,0 +1,14 @@ +package tree_sitter_php + +// #cgo CPPFLAGS: -I../../tree-sitter-php +// #cgo CFLAGS: -std=c11 -fPIC +// #include "../../php/src/parser.c" +// #include "../../php/src/scanner.c" +import "C" + +import "unsafe" + +// Get the tree-sitter Language for the PHP grammar. +func LanguagePHP() unsafe.Pointer { + return unsafe.Pointer(C.tree_sitter_php()) +} diff --git a/bindings/go/php_only.go b/bindings/go/php_only.go new file mode 100644 index 00000000..8e03f4cd --- /dev/null +++ b/bindings/go/php_only.go @@ -0,0 +1,14 @@ +package tree_sitter_php + +// #cgo CPPFLAGS: -I../../php_only/src +// #cgo CFLAGS: -std=c11 -fPIC +// #include "../../php_only/src/parser.c" +// #include "../../php_only//src/scanner.c" +import "C" + +import "unsafe" + +// Get the tree-sitter Language for PHP-Only. +func LanguagePHPOnly() unsafe.Pointer { + return unsafe.Pointer(C.tree_sitter_php_only()) +} diff --git a/bindings/node/binding.cc b/bindings/node/binding.cc index cd62e743..71b66bd4 100644 --- a/bindings/node/binding.cc +++ b/bindings/node/binding.cc @@ -1,37 +1,31 @@ -#include "tree_sitter/parser.h" -#include -#include "nan.h" - -using namespace v8; - -extern "C" TSLanguage * tree_sitter_php(); -extern "C" TSLanguage * tree_sitter_php_only(); - -namespace { - -NAN_METHOD(New) {} - -void Init(Local exports, Local module) { - 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); +#include + +typedef struct TSLanguage TSLanguage; + +extern "C" TSLanguage *tree_sitter_php(); +extern "C" TSLanguage *tree_sitter_php_only(); + +// "tree-sitter", "language" hashed with BLAKE2 +const napi_type_tag LANGUAGE_TYPE_TAG = { + 0x8AF2E5212AD58ABF, 0xD5006CAD83ABBA16 +}; + +Napi::Object Init(Napi::Env env, Napi::Object exports) { + auto php = Napi::Object::New(env); + php["name"] = Napi::String::New(env, "php"); + auto php_language = Napi::External::New(env, tree_sitter_php()); + php_language.TypeTag(&LANGUAGE_TYPE_TAG); + php["language"] = php_language; + + auto php_only = Napi::Object::New(env); + php_only["name"] = Napi::String::New(env, "php_only"); + auto php_only_language = Napi::External::New(env, tree_sitter_php_only()); + php_only_language.TypeTag(&LANGUAGE_TYPE_TAG); + php_only["language"] = php_only_language; + + exports["php"] = php; + exports["php_only"] = php_only; + return exports; } -NODE_MODULE(tree_sitter_php_binding, Init) - -} // namespace +NODE_API_MODULE(tree_sitter_php_binding, Init) diff --git a/bindings/node/index.d.ts b/bindings/node/index.d.ts new file mode 100644 index 00000000..4195b898 --- /dev/null +++ b/bindings/node/index.d.ts @@ -0,0 +1,29 @@ +type BaseNode = { + type: string; + named: boolean; +}; + +type ChildNode = { + multiple: boolean; + required: boolean; + types: BaseNode[]; +}; + +type NodeInfo = + | (BaseNode & { + subtypes: BaseNode[]; + }) + | (BaseNode & { + fields: { [name: string]: ChildNode }; + children: ChildNode[]; + }); + +type Language = { + name: string; + language: unknown; + nodeTypeInfo: NodeInfo[]; +}; + +declare const php: Language; +declare const php_only: Language; +export = {php, php_only} diff --git a/bindings/node/index.js b/bindings/node/index.js index 818c63df..f0bcec0a 100644 --- a/bindings/node/index.js +++ b/bindings/node/index.js @@ -1,20 +1,8 @@ -try { - module.exports = require("../../build/Release/tree_sitter_php_binding"); -} catch (error1) { - if (error1.code !== 'MODULE_NOT_FOUND') { - throw error1; - } - try { - module.exports = require("../../build/Debug/tree_sitter_php_binding"); - } catch (error2) { - if (error2.code !== 'MODULE_NOT_FOUND') { - throw error2; - } - throw error1 - } -} +const root = require("path").join(__dirname, "..", ".."); + +module.exports = require("node-gyp-build")(root); try { module.exports.php.nodeTypeInfo = require("../../php/src/node-types.json"); module.exports.php_only.nodeTypeInfo = require("../../php_only/src/node-types.json"); -} catch (_) {} +} catch (_) { } diff --git a/bindings/node/php.js b/bindings/node/php.js index 56ca8c1e..e9726c63 100644 --- a/bindings/node/php.js +++ b/bindings/node/php.js @@ -1 +1 @@ -module.exports = require('./index').php; +module.exports = require('.').php; diff --git a/bindings/node/php_only.js b/bindings/node/php_only.js index 5d146b4b..9052d219 100644 --- a/bindings/node/php_only.js +++ b/bindings/node/php_only.js @@ -1 +1 @@ -module.exports = require('./index').php_only; +module.exports = require('.').php_only; diff --git a/bindings/python/tree_sitter_php/__init__.py b/bindings/python/tree_sitter_php/__init__.py new file mode 100644 index 00000000..31718704 --- /dev/null +++ b/bindings/python/tree_sitter_php/__init__.py @@ -0,0 +1,3 @@ +"PHP grammar for tree-sitter" + +from ._binding import language_php, language_php_only diff --git a/bindings/python/tree_sitter_php/__init__.pyi b/bindings/python/tree_sitter_php/__init__.pyi new file mode 100644 index 00000000..6b4b7d57 --- /dev/null +++ b/bindings/python/tree_sitter_php/__init__.pyi @@ -0,0 +1,3 @@ +def language_php() -> int: ... + +def language_php_only() -> int: ... diff --git a/bindings/python/tree_sitter_php/binding.c b/bindings/python/tree_sitter_php/binding.c new file mode 100644 index 00000000..4369fba1 --- /dev/null +++ b/bindings/python/tree_sitter_php/binding.c @@ -0,0 +1,34 @@ +#include + +typedef struct TSLanguage TSLanguage; + +TSLanguage *tree_sitter_php(void); +TSLanguage *tree_sitter_php_only(void); + +static PyObject* _binding_language_php(PyObject *self, PyObject *args) { + return PyLong_FromVoidPtr(tree_sitter_php()); +} + +static PyObject* _binding_language_php_only(PyObject *self, PyObject *args) { + return PyLong_FromVoidPtr(tree_sitter_php_only()); +} + +static PyMethodDef methods[] = { + {"language_php", _binding_language_php, METH_NOARGS, + "Get the tree-sitter language for PHP."}, + {"language_php_only", _binding_language_php_only, METH_NOARGS, + "Get the tree-sitter language for PHP-Only."}, + {NULL, NULL, 0, NULL} +}; + +static struct PyModuleDef module = { + .m_base = PyModuleDef_HEAD_INIT, + .m_name = "_binding", + .m_doc = NULL, + .m_size = -1, + .m_methods = methods +}; + +PyMODINIT_FUNC PyInit__binding(void) { + return PyModule_Create(&module); +} diff --git a/bindings/python/tree_sitter_php/py.typed b/bindings/python/tree_sitter_php/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/bindings/rust/README.md b/bindings/rust/README.md deleted file mode 100644 index 42dbd4f4..00000000 --- a/bindings/rust/README.md +++ /dev/null @@ -1,43 +0,0 @@ -# tree-sitter-c - -This crate provides a PHP grammar for the [tree-sitter][] parsing library. To -use this crate, add it to the `[dependencies]` section of your `Cargo.toml` -file. (Note that you will probably also need to depend on the -[`tree-sitter`][tree-sitter crate] crate to use the parsed result in any useful -way.) - -```toml -[dependencies] -tree-sitter = "0.20.10" -tree-sitter-php = "0.22.2" -``` - -Typically, you will use the [language][language func] function to add this -grammar to a tree-sitter [Parser][], and then use the parser to parse some code: - -```rust -use tree_sitter::Parser; - -fn main() { - let code = r#" - +//! "#; +//! let mut parser = Parser::new(); +//! parser +//! .set_language(&tree_sitter_php::language_php()) +//! .expect("Error loading PHP grammar"); //! let tree = parser.parse(code, None).unwrap(); +//! assert!(!tree.root_node().has_error()); //! ``` //! //! [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html @@ -22,14 +31,14 @@ extern "C" { fn tree_sitter_php_only() -> Language; } -/// Get the tree-sitter [Language][] for this grammar. +/// Get the tree-sitter [Language][] for PHP. /// /// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html pub fn language_php() -> Language { unsafe { tree_sitter_php() } } -/// Get the tree-sitter [Language][] for this grammar. +/// Get the tree-sitter [Language][] for PHP Only. /// /// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html pub fn language_php_only() -> Language { @@ -39,15 +48,17 @@ pub fn language_php_only() -> Language { /// 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 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"); +pub const PHP_NODE_TYPES: &str = include_str!("../../php/src/node-types.json"); +pub const PHP_ONLY_NODE_TYPES: &str = include_str!("../../php_only/src/node-types.json"); + +/// The syntax highlighting query for PHP. +pub const HIGHLIGHTS_QUERY: &str = include_str!("../../queries/highlights.scm"); -// Uncomment these to include any queries that this grammar contains +/// The injection query for PHP. +pub const INJECTIONS_QUERY: &str = include_str!("../../queries/injections.scm"); -pub const HIGHLIGHT_QUERY: &'static str = include_str!("../../queries/highlights.scm"); -pub const INJECTIONS_QUERY: &'static str = include_str!("../../queries/injections.scm"); -// pub const LOCALS_QUERY: &'static str = include_str!("../../queries/locals.scm"); -pub const TAGS_QUERY: &'static str = include_str!("../../queries/tags.scm"); +/// The symbol tagging query for PHP. +pub const TAGS_QUERY: &str = include_str!("../../queries/tags.scm"); #[cfg(test)] mod tests { @@ -55,7 +66,7 @@ mod tests { fn test_can_load_grammar() { let mut parser = tree_sitter::Parser::new(); parser - .set_language(super::language()) - .expect("Error loading php language"); + .set_language(&super::language_php()) + .expect("Error loading PHP grammar"); } } diff --git a/common/common.mak b/common/common.mak new file mode 100644 index 00000000..4c85addf --- /dev/null +++ b/common/common.mak @@ -0,0 +1,107 @@ +VERSION := 0.22.3 + +# repository +SRC_DIR := src + +PARSER_REPO_URL := $(shell git -C $(SRC_DIR) remote get-url origin 2>/dev/null) + +ifeq ($(PARSER_URL),) + PARSER_URL := $(subst .git,,$(PARSER_REPO_URL)) +ifeq ($(shell echo $(PARSER_URL) | grep '^[a-z][-+.0-9a-z]*://'),) + PARSER_URL := $(subst :,/,$(PARSER_URL)) + PARSER_URL := $(subst git@,https://,$(PARSER_URL)) +endif +endif + +TS ?= tree-sitter + +# ABI versioning +SONAME_MAJOR := $(word 1,$(subst ., ,$(VERSION))) +SONAME_MINOR := $(word 2,$(subst ., ,$(VERSION))) + +# install directory layout +PREFIX ?= /usr/local +INCLUDEDIR ?= $(PREFIX)/include +LIBDIR ?= $(PREFIX)/lib +PCLIBDIR ?= $(LIBDIR)/pkgconfig + +# source/object files +PARSER := $(SRC_DIR)/parser.c +EXTRAS := $(filter-out $(PARSER),$(wildcard $(SRC_DIR)/*.c)) +OBJS := $(patsubst %.c,%.o,$(PARSER) $(EXTRAS)) + +# flags +ARFLAGS ?= rcs +override CFLAGS += -I$(SRC_DIR) -std=c11 -fPIC + +# OS-specific bits +ifeq ($(OS),Windows_NT) + $(error "Windows is not supported") +else ifeq ($(shell uname),Darwin) + SOEXT = dylib + SOEXTVER_MAJOR = $(SONAME_MAJOR).dylib + SOEXTVER = $(SONAME_MAJOR).$(SONAME_MINOR).dylib + LINKSHARED := $(LINKSHARED)-dynamiclib -Wl, + ifneq ($(ADDITIONAL_LIBS),) + LINKSHARED := $(LINKSHARED)$(ADDITIONAL_LIBS), + endif + LINKSHARED := $(LINKSHARED)-install_name,$(LIBDIR)/lib$(LANGUAGE_NAME).$(SONAME_MAJOR).dylib,-rpath,@executable_path/../Frameworks +else + SOEXT = so + SOEXTVER_MAJOR = so.$(SONAME_MAJOR) + SOEXTVER = so.$(SONAME_MAJOR).$(SONAME_MINOR) + LINKSHARED := $(LINKSHARED)-shared -Wl, + ifneq ($(ADDITIONAL_LIBS),) + LINKSHARED := $(LINKSHARED)$(ADDITIONAL_LIBS) + endif + LINKSHARED := $(LINKSHARED)-soname,lib$(LANGUAGE_NAME).so.$(SONAME_MAJOR) +endif +ifneq ($(filter $(shell uname),FreeBSD NetBSD DragonFly),) + PCLIBDIR := $(PREFIX)/libdata/pkgconfig +endif + +all: lib$(LANGUAGE_NAME).a lib$(LANGUAGE_NAME).$(SOEXT) $(LANGUAGE_NAME).pc + +lib$(LANGUAGE_NAME).a: $(OBJS) + $(AR) $(ARFLAGS) $@ $^ + +lib$(LANGUAGE_NAME).$(SOEXT): $(OBJS) + $(CC) $(LDFLAGS) $(LINKSHARED) $^ $(LDLIBS) -o $@ +ifneq ($(STRIP),) + $(STRIP) $@ +endif + +$(LANGUAGE_NAME).pc: ../bindings/c/$(LANGUAGE_NAME).pc.in + sed -e 's|@URL@|$(PARSER_URL)|' \ + -e 's|@VERSION@|$(VERSION)|' \ + -e 's|@LIBDIR@|$(LIBDIR)|' \ + -e 's|@INCLUDEDIR@|$(INCLUDEDIR)|' \ + -e 's|@REQUIRES@|$(REQUIRES)|' \ + -e 's|@ADDITIONAL_LIBS@|$(ADDITIONAL_LIBS)|' \ + -e 's|=$(PREFIX)|=$${prefix}|' \ + -e 's|@PREFIX@|$(PREFIX)|' $< > $@ + +$(PARSER): grammar.js + $(TS) generate --no-bindings + +install: all + install -d '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter '$(DESTDIR)$(PCLIBDIR)' '$(DESTDIR)$(LIBDIR)' + install -m644 ../bindings/c/$(LANGUAGE_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h + install -m644 $(LANGUAGE_NAME).pc '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc + install -m755 lib$(LANGUAGE_NAME).a '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a + install -m755 lib$(LANGUAGE_NAME).$(SOEXT) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER) + ln -sf lib$(LANGUAGE_NAME).$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) + ln -sf lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXT) + +uninstall: + $(RM) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER) \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXT) \ + '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h \ + '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc + +clean: + $(RM) $(OBJS) $(LANGUAGE_NAME).pc lib$(LANGUAGE_NAME).a lib$(LANGUAGE_NAME).$(SOEXT) + +.PHONY: all install uninstall clean diff --git a/common/define-grammar.js b/common/define-grammar.js index 1108282b..cd434a61 100644 --- a/common/define-grammar.js +++ b/common/define-grammar.js @@ -1,13 +1,12 @@ /** * @author Josh Vera - * @author Christian Frøystad * @author Max Brunsfeld + * @author Amaan Qureshi + * @author Caleb White + * @author Christian Frøystad * @license MIT */ -/* eslint-disable arrow-parens */ -/* eslint-disable camelcase */ -/* eslint-disable-next-line spaced-comment */ /// // @ts-check @@ -51,6 +50,23 @@ module.exports = function defineGrammar(dialect) { return grammar({ name: dialect, + conflicts: $ => [ + [$._array_destructing, $.array_creation_expression], + [$._array_destructing_element, $.array_element_initializer], + [$.primary_expression, $._array_destructing_element], + + [$.type, $.union_type, $.intersection_type, $.disjunctive_normal_form_type], + [$.union_type, $.disjunctive_normal_form_type], + [$.intersection_type], + [$.if_statement], + + [$.namespace_name], + [$.heredoc_body], + + [$.namespace_name_as_prefix], + [$.namespace_use_declaration, $.namespace_name_as_prefix], + ], + externals: $ => [ $._automatic_semicolon, $.encapsed_string_chars, @@ -66,58 +82,39 @@ module.exports = function defineGrammar(dialect) { $.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], - - [$._type, $.union_type, $.intersection_type, $.disjunctive_normal_form_type], - [$.union_type, $.disjunctive_normal_form_type], - [$.intersection_type], - [$.if_statement], + extras: $ => { + const extras = [ + $.comment, + /[\s\u00A0\u200B\u2060\uFEFF]/, + ]; - [$.namespace_name], - [$.heredoc_body], + if (dialect === 'php') { + extras.push($.text_interpolation); + } - [$.namespace_name_as_prefix], - [$.namespace_use_declaration, $.namespace_name_as_prefix], - ], + return extras; + }, inline: $ => [ - $._statement, $._semicolon, $._member_name, $._variable, $._callable_variable, $._callable_expression, $._foreach_value, - $._literal, $._class_type_designator, $._variable_name, ], - extras: $ => { - const extras = [ - $.comment, - /[\s\u00A0\u200B\u2060\uFEFF]/, - ]; - - if (dialect === 'php') { - extras.push($.text_interpolation); - } + supertypes: $ => [ + $.statement, + $.expression, + $.primary_expression, + $.type, + $.literal, + ], - return extras; - }, + word: $ => $.name, rules: { program: $ => { @@ -126,14 +123,14 @@ module.exports = function defineGrammar(dialect) { optional($.text), optional(seq( $.php_tag, - repeat($._statement), + repeat($.statement), )), ); } return seq( optional($.php_tag), - repeat($._statement), + repeat($.statement), optional('?>'), ); }, @@ -151,7 +148,7 @@ module.exports = function defineGrammar(dialect) { token(prec(1, /[^\s<][^<]*/)), )), - _statement: $ => choice( + statement: $ => choice( $.empty_statement, $.compound_statement, $.named_label_statement, @@ -197,7 +194,7 @@ module.exports = function defineGrammar(dialect) { field('name', $.variable_name), optional(seq( '=', - field('value', $._expression), + field('value', $.expression), )), ), @@ -239,7 +236,12 @@ module.exports = function defineGrammar(dialect) { ), namespace_use_clause: $ => seq( - choice($.name, alias($._reserved_identifier, $.name), $.qualified_name), optional($.namespace_aliasing_clause), + choice( + $.name, + alias($._reserved_identifier, $.name), + $.qualified_name, + ), + optional($.namespace_aliasing_clause), ), qualified_name: $ => seq( @@ -322,8 +324,7 @@ module.exports = function defineGrammar(dialect) { class_declaration: $ => prec.right(seq( optional(field('attributes', $.attribute_list)), - optional(field('modifier', choice($.final_modifier, $.abstract_modifier))), - optional(field('modifier', $.readonly_modifier)), + repeat($._modifier), keyword('class'), field('name', $.name), optional($.base_clause), @@ -356,16 +357,16 @@ module.exports = function defineGrammar(dialect) { const_declaration: $ => $._const_declaration, - _class_const_declaration: $ => prec(1, seq( + _class_const_declaration: $ => seq( optional(field('attributes', $.attribute_list)), - optional(field('modifier', $.final_modifier)), + optional($.final_modifier), $._const_declaration, - )), + ), _const_declaration: $ => seq( - optional($.visibility_modifier), + repeat($._modifier), keyword('const'), - optional(field('type', $._type)), + optional(field('type', $.type)), commaSep1($.const_element), $._semicolon, ), @@ -373,7 +374,7 @@ module.exports = function defineGrammar(dialect) { property_declaration: $ => seq( optional(field('attributes', $.attribute_list)), repeat1($._modifier), - optional(field('type', $._type)), + optional(field('type', $.type)), commaSep1($.property_element), $._semicolon, ), @@ -388,11 +389,12 @@ module.exports = function defineGrammar(dialect) { )), property_element: $ => seq( - $.variable_name, optional($.property_initializer), + $.variable_name, + optional($.property_initializer), ), property_initializer: $ => seq( - '=', $._expression, + '=', $.expression, ), method_declaration: $ => seq( @@ -461,7 +463,7 @@ module.exports = function defineGrammar(dialect) { _function_definition_header: $ => seq( keyword('function'), - optional(field('reference_modifier', $.reference_modifier)), + optional($.reference_modifier), field('name', choice($.name, alias($._reserved_identifier, $.name))), field('parameters', $.formal_parameters), optional($._return_type), @@ -479,7 +481,7 @@ module.exports = function defineGrammar(dialect) { arrow_function: $ => seq( $._arrow_function_header, '=>', - field('body', $._expression), + field('body', $.expression), ), formal_parameters: $ => seq( @@ -493,34 +495,34 @@ module.exports = function defineGrammar(dialect) { 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('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), + field('default_value', $.expression), )), ), simple_parameter: $ => seq( optional(field('attributes', $.attribute_list)), - field('type', optional($._type)), + field('type', optional($.type)), optional(field('reference_modifier', $.reference_modifier)), field('name', $.variable_name), optional(seq( '=', - field('default_value', $._expression), + field('default_value', $.expression), )), ), variadic_parameter: $ => seq( optional(field('attributes', $.attribute_list)), - field('type', optional($._type)), + field('type', optional($.type)), optional(field('reference_modifier', $.reference_modifier)), '...', field('name', $.variable_name), ), - _type: $ => choice( + type: $ => choice( $._types, $.union_type, $.intersection_type, @@ -584,10 +586,10 @@ module.exports = function defineGrammar(dialect) { keyword('unset', false), ), - _return_type: $ => seq(':', field('return_type', choice($._type, $.bottom_type))), + _return_type: $ => seq(':', field('return_type', choice($.type, $.bottom_type))), const_element: $ => seq( - choice($.name, alias($._reserved_identifier, $.name)), '=', $._expression, + choice($.name, alias($._reserved_identifier, $.name)), '=', $.expression, ), echo_statement: $ => seq( @@ -596,29 +598,43 @@ module.exports = function defineGrammar(dialect) { exit_statement: $ => seq( keyword('exit'), - optional(seq('(', optional($._expression), ')')), + optional(seq('(', optional($.expression), ')')), $._semicolon, ), unset_statement: $ => seq( - 'unset', '(', commaSep1($._variable), ')', $._semicolon, + 'unset', + '(', + commaSep1($._variable), + optional(','), + ')', + $._semicolon, ), declare_statement: $ => seq( - keyword('declare'), '(', $.declare_directive, ')', + keyword('declare'), + '(', + $.declare_directive, + ')', choice( - $._statement, - seq(':', repeat($._statement), keyword('enddeclare'), $._semicolon), - $._semicolon), + $.statement, + $._semicolon, + seq( + ':', + repeat($.statement), + keyword('enddeclare'), + $._semicolon, + ), + ), ), declare_directive: $ => seq( choice('ticks', 'encoding', 'strict_types'), '=', - $._literal, + $.literal, ), - _literal: $ => choice( + literal: $ => choice( $.integer, $.float, $._string, @@ -655,11 +671,11 @@ module.exports = function defineGrammar(dialect) { ), continue_statement: $ => seq( - keyword('continue'), optional($._expression), $._semicolon, + keyword('continue'), optional($.expression), $._semicolon, ), break_statement: $ => seq( - keyword('break'), optional($._expression), $._semicolon, + keyword('break'), optional($.expression), $._semicolon, ), integer: _ => { @@ -676,19 +692,19 @@ module.exports = function defineGrammar(dialect) { }, return_statement: $ => seq( - keyword('return'), optional($._expression), $._semicolon, + keyword('return'), optional($.expression), $._semicolon, ), throw_expression: $ => seq( keyword('throw'), - $._expression, + $.expression, ), while_statement: $ => seq( keyword('while'), field('condition', $.parenthesized_expression), choice( - field('body', $._statement), + field('body', $.statement), seq( field('body', $.colon_block), keyword('endwhile'), @@ -699,7 +715,7 @@ module.exports = function defineGrammar(dialect) { do_statement: $ => seq( keyword('do'), - field('body', $._statement), + field('body', $.statement), keyword('while'), field('condition', $.parenthesized_expression), $._semicolon, @@ -716,24 +732,29 @@ module.exports = function defineGrammar(dialect) { ')', choice( $._semicolon, - $._statement, - seq(':', repeat($._statement), keyword('endfor'), $._semicolon), + $.statement, + seq( + ':', + repeat($.statement), + keyword('endfor'), + $._semicolon, + ), ), ), _expressions: $ => choice( - $._expression, + $.expression, $.sequence_expression, ), sequence_expression: $ => prec(PREC.COMMA, seq( - $._expression, ',', choice($.sequence_expression, $._expression)), + $.expression, ',', choice($.sequence_expression, $.expression)), ), foreach_statement: $ => seq( keyword('foreach'), '(', - $._expression, + $.expression, keyword('as'), choice( alias($.foreach_pair, $.pair), @@ -742,7 +763,7 @@ module.exports = function defineGrammar(dialect) { ')', choice( $._semicolon, - field('body', $._statement), + field('body', $.statement), seq( field('body', $.colon_block), keyword('endforeach'), @@ -751,11 +772,11 @@ module.exports = function defineGrammar(dialect) { ), ), - foreach_pair: $ => seq($._expression, '=>', $._foreach_value), + foreach_pair: $ => seq($.expression, '=>', $._foreach_value), _foreach_value: $ => choice( $.by_ref, - $._expression, + $.expression, $.list_literal, ), @@ -764,7 +785,7 @@ module.exports = function defineGrammar(dialect) { field('condition', $.parenthesized_expression), choice( seq( - field('body', $._statement), + field('body', $.statement), repeat(field('alternative', $.else_if_clause)), optional(field('alternative', $.else_clause)), ), @@ -780,18 +801,18 @@ module.exports = function defineGrammar(dialect) { colon_block: $ => seq( ':', - repeat($._statement), + repeat($.statement), ), else_if_clause: $ => seq( keyword('elseif'), field('condition', $.parenthesized_expression), - field('body', $._statement), + field('body', $.statement), ), else_clause: $ => seq( keyword('else'), - field('body', $._statement), + field('body', $.statement), ), else_if_clause_2: $ => seq( @@ -825,18 +846,18 @@ module.exports = function defineGrammar(dialect) { ), ), - match_condition_list: $ => seq(commaSep1($._expression), optional(',')), + match_condition_list: $ => seq(commaSep1($.expression), optional(',')), match_conditional_expression: $ => seq( field('conditional_expressions', $.match_condition_list), '=>', - field('return_expression', $._expression), + field('return_expression', $.expression), ), match_default_expression: $ => seq( keyword('default'), '=>', - field('return_expression', $._expression), + field('return_expression', $.expression), ), switch_statement: $ => seq( @@ -861,20 +882,20 @@ module.exports = function defineGrammar(dialect) { case_statement: $ => seq( keyword('case'), - field('value', $._expression), + field('value', $.expression), choice(':', ';'), - repeat($._statement), + repeat($.statement), ), default_statement: $ => seq( keyword('default'), choice(':', ';'), - repeat($._statement), + repeat($.statement), ), compound_statement: $ => seq( '{', - repeat($._statement), + repeat($.statement), '}', ), @@ -884,11 +905,11 @@ module.exports = function defineGrammar(dialect) { ), expression_statement: $ => seq( - $._expression, + $.expression, $._semicolon, ), - _expression: $ => choice( + expression: $ => choice( $.conditional_expression, $.match_expression, $.augmented_assignment_expression, @@ -906,25 +927,25 @@ module.exports = function defineGrammar(dialect) { _unary_expression: $ => choice( $.clone_expression, - $._primary_expression, + $.primary_expression, $.unary_op_expression, $.cast_expression, ), unary_op_expression: $ => prec.left(PREC.NEG, seq( field('operator', choice('+', '-', '~', '!')), - field('argument', $._expression), + field('argument', $.expression), )), - error_suppression_expression: $ => prec(PREC.INC, seq('@', $._expression)), + error_suppression_expression: $ => prec(PREC.INC, seq('@', $.expression)), clone_expression: $ => seq( - keyword('clone'), $._primary_expression, + keyword('clone'), $.primary_expression, ), - _primary_expression: $ => choice( + primary_expression: $ => choice( $._variable, - $._literal, + $.literal, $.class_constant_access_expression, $.qualified_name, $.name, @@ -940,7 +961,7 @@ module.exports = function defineGrammar(dialect) { $.arrow_function, ), - parenthesized_expression: $ => seq('(', $._expression, ')'), + parenthesized_expression: $ => seq('(', $.expression, ')'), class_constant_access_expression: $ => seq( $._scope_resolution_qualifier, @@ -948,12 +969,12 @@ module.exports = function defineGrammar(dialect) { choice( $.name, alias($._reserved_identifier, $.name), - seq('{', alias($._expression, $.name), '}'), + seq('{', alias($.expression, $.name), '}'), ), ), print_intrinsic: $ => seq( - keyword('print'), $._expression, + keyword('print'), $.expression, ), anonymous_function_creation_expression: $ => seq( @@ -1001,6 +1022,7 @@ module.exports = function defineGrammar(dialect) { $.nullsafe_member_access_expression, $.scoped_property_access_expression, $._variable_name, + $.parenthesized_expression, ), update_expression: $ => { @@ -1013,8 +1035,15 @@ module.exports = function defineGrammar(dialect) { }, cast_expression: $ => prec(PREC.CAST, seq( - '(', field('type', $.cast_type), ')', - field('value', choice($._unary_expression, $.include_expression, $.include_once_expression)), + '(', + field('type', $.cast_type), + ')', + field('value', choice( + $._unary_expression, + $.include_expression, + $.include_once_expression, + $.error_suppression_expression, + )), )), cast_variable: $ => prec(PREC.CAST, seq( @@ -1028,7 +1057,7 @@ module.exports = function defineGrammar(dialect) { $.list_literal, )), '=', - field('right', $._expression), + field('right', $.expression), )), reference_assignment_expression: $ => prec.right(PREC.ASSIGNMENT, seq( @@ -1038,15 +1067,15 @@ module.exports = function defineGrammar(dialect) { )), '=', '&', - field('right', $._expression), + field('right', $.expression), )), conditional_expression: $ => prec.left(PREC.TERNARY, seq( // TODO: Ternay is non-assossiative after PHP 8 - field('condition', $._expression), + field('condition', $.expression), '?', - field('body', optional($._expression)), + field('body', optional($.expression)), ':', - field('alternative', $._expression), + field('alternative', $.expression), )), augmented_assignment_expression: $ => prec.right(PREC.ASSIGNMENT, seq( @@ -1066,7 +1095,7 @@ module.exports = function defineGrammar(dialect) { '|=', '??=', )), - field('right', $._expression), + field('right', $.expression), )), _variable: $ => choice( @@ -1100,10 +1129,22 @@ module.exports = function defineGrammar(dialect) { _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)), - ))), + commaSep1(optional( + choice( + alias($._list_destructing, $.list_literal), + $._variable, + $.by_ref, + seq( + $.expression, + '=>', + choice( + alias($._list_destructing, $.list_literal), + $._variable, + $.by_ref, + ), + ), + ), + )), ')', ), @@ -1114,8 +1155,20 @@ module.exports = function defineGrammar(dialect) { ), _array_destructing_element: $ => choice( - choice(alias($._array_destructing, $.list_literal), $._variable, $.by_ref), - seq($._expression, '=>', choice(alias($._array_destructing, $.list_literal), $._variable, $.by_ref)), + choice( + alias($._array_destructing, $.list_literal), + $._variable, + $.by_ref, + ), + seq( + $.expression, + '=>', + choice( + alias($._array_destructing, $.list_literal), + $._variable, + $.by_ref, + ), + ), ), _callable_variable: $ => choice( @@ -1177,7 +1230,11 @@ module.exports = function defineGrammar(dialect) { argument: $ => seq( optional($._argument_name), optional(field('reference_modifier', $.reference_modifier)), - choice(alias($._reserved_identifier, $.name), $.variadic_unpacking, $._expression), + choice( + alias($._reserved_identifier, $.name), + $.variadic_unpacking, + $.expression, + ), ), _argument_name: $ => seq( @@ -1214,7 +1271,7 @@ module.exports = function defineGrammar(dialect) { field('arguments', $.arguments), )), - variadic_unpacking: $ => seq('...', $._expression), + variadic_unpacking: $ => seq('...', $.expression), _member_name: $ => choice( field('name', choice( @@ -1224,7 +1281,7 @@ module.exports = function defineGrammar(dialect) { )), seq( '{', - field('name', $._expression), + field('name', $.expression), '}', ), ), @@ -1232,8 +1289,8 @@ module.exports = function defineGrammar(dialect) { subscript_expression: $ => seq( $._dereferencable_expression, choice( - seq('[', optional($._expression), ']'), - seq('{', $._expression, '}'), + seq('[', optional($.expression), ']'), + seq('{', $.expression, '}'), ), ), @@ -1269,7 +1326,7 @@ module.exports = function defineGrammar(dialect) { _complex_string_part: $ => seq( '{', - $._expression, + $.expression, '}', ), @@ -1323,22 +1380,22 @@ module.exports = function defineGrammar(dialect) { _interpolated_string_body: $ => repeat1( choice( $.escape_sequence, - seq($.variable_name, alias($.encapsed_string_chars_after_variable, $.string_value)), - alias($.encapsed_string_chars, $.string_value), + seq($.variable_name, alias($.encapsed_string_chars_after_variable, $.string_content)), + alias($.encapsed_string_chars, $.string_content), $._simple_string_part, $._complex_string_part, - alias('\\u', $.string_value), + alias('\\u', $.string_content), ), ), _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), + seq($.variable_name, alias($.encapsed_string_chars_after_variable_heredoc, $.string_content)), + alias($.encapsed_string_chars_heredoc, $.string_content), $._simple_string_part, $._complex_string_part, - alias('\\u', $.string_value), + alias('\\u', $.string_content), ), ), @@ -1352,17 +1409,19 @@ module.exports = function defineGrammar(dialect) { choice(/[bB]'/, '\''), repeat(choice( alias(token(choice('\\\\', '\\\'')), $.escape_sequence), - $.string_value, + $.string_content, )), '\'', ), - string_value: _ => token(prec(1, repeat1(/\\?[^'\\]/))), + string_content: _ => token.immediate(prec(1, /\\?[^'\\]+/)), - heredoc_body: $ => seq($._new_line, - repeat1(prec.right( - seq(optional($._new_line), $._interpolated_string_body_heredoc), - )), + heredoc_body: $ => seq( + $._new_line, + repeat1(prec.right(seq( + optional($._new_line), + $._interpolated_string_body_heredoc, + ))), ), heredoc: $ => seq( @@ -1416,11 +1475,11 @@ module.exports = function defineGrammar(dialect) { _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), + seq($.variable_name, alias($.execution_string_chars_after_variable, $.string_content)), + alias($.execution_string_chars, $.string_content), $._simple_string_part, $._complex_string_part, - alias('\\u', $.string_value), + alias('\\u', $.string_content), ), ), @@ -1438,7 +1497,7 @@ module.exports = function defineGrammar(dialect) { dynamic_variable_name: $ => choice( seq('$', $._variable_name), - seq('$', '{', $._expression, '}'), + seq('$', '{', $.expression, '}'), ), _variable_name: $ => choice($.dynamic_variable_name, $.variable_name), @@ -1459,13 +1518,13 @@ module.exports = function defineGrammar(dialect) { keyword('yield'), optional(choice( $.array_element_initializer, - seq(keyword('from'), $._expression), + seq(keyword('from'), $.expression), )), )), array_element_initializer: $ => prec.right(choice( - choice($.by_ref, $._expression), - seq($._expression, '=>', choice($.by_ref, $._expression)), + choice($.by_ref, $.expression), + seq($.expression, '=>', choice($.by_ref, $.expression)), $.variadic_unpacking, )), @@ -1476,14 +1535,14 @@ module.exports = function defineGrammar(dialect) { field('right', $._class_type_designator), )), prec.right(PREC.NULL_COALESCE, seq( - field('left', $._expression), + field('left', $.expression), field('operator', '??'), - field('right', $._expression), + field('right', $.expression), )), prec.right(PREC.EXPONENTIAL, seq( - field('left', $._expression), + field('left', $.expression), field('operator', '**'), - field('right', $._expression), + field('right', $.expression), )), ...[ [keyword('and'), PREC.LOGICAL_AND_2], @@ -1514,31 +1573,31 @@ module.exports = function defineGrammar(dialect) { ['%', PREC.TIMES], // @ts-ignore ].map(([op, p]) => prec.left(p, seq( - field('left', $._expression), + field('left', $.expression), // @ts-ignore field('operator', op), - field('right', $._expression), + field('right', $.expression), ))), ), include_expression: $ => seq( keyword('include'), - $._expression, + $.expression, ), include_once_expression: $ => seq( keyword('include_once'), - $._expression, + $.expression, ), require_expression: $ => seq( keyword('require'), - $._expression, + $.expression, ), require_once_expression: $ => seq( keyword('require_once'), - $._expression, + $.expression, ), // Note that PHP officially only supports the following character regex diff --git a/common/scanner.h b/common/scanner.h index 0c0c4ba7..02d77a95 100644 --- a/common/scanner.h +++ b/common/scanner.h @@ -1,71 +1,9 @@ +#include "tree_sitter/array.h" #include "tree_sitter/parser.h" -#include -#include #include -#include #include - -#define MAX(a, b) ((a) > (b) ? (a) : (b)) - -#define VEC_RESIZE(vec, _cap) \ - void *tmp = realloc((vec).data, (_cap) * sizeof((vec).data[0])); \ - assert(tmp != NULL); \ - (vec).data = tmp; \ - assert((vec).data != NULL); \ - (vec).cap = (_cap); - -#define VEC_PUSH(vec, el) \ - if ((vec).cap == (vec).len) { \ - VEC_RESIZE((vec), MAX(16, (vec).len * 2)); \ - } \ - (vec).data[(vec).len++] = (el); - -#define VEC_POP(vec) \ - { \ - STRING_FREE(VEC_BACK((vec)).word); \ - (vec).len--; \ - } - -#define VEC_BACK(vec) ((vec).data[(vec).len - 1]) - -#define VEC_FREE(vec) \ - { \ - if ((vec).data != NULL) \ - free((vec).data); \ - } - -#define VEC_CLEAR(vec) \ - { \ - for (uint32_t i = 0; i < (vec).len; i++) { \ - STRING_FREE((vec).data[i].word); \ - } \ - (vec).len = 0; \ - } - -#define STRING_RESIZE(vec, _cap) \ - void *tmp = realloc((vec).data, (_cap + 1) * sizeof((vec).data[0])); \ - assert(tmp != NULL); \ - (vec).data = tmp; \ - memset((vec).data + (vec).len, 0, ((_cap + 1) - (vec).len) * sizeof((vec).data[0])); \ - (vec).cap = (_cap); - -#define STRING_GROW(vec, _cap) \ - if ((vec).cap < (_cap)) { \ - STRING_RESIZE((vec), (_cap)); \ - } - -#define STRING_PUSH(vec, el) \ - if ((vec).cap == (vec).len) { \ - STRING_RESIZE((vec), MAX(16, (vec).len * 2)); \ - } \ - (vec).data[(vec).len++] = (el); - -#define STRING_FREE(vec) \ - { \ - if ((vec).data != NULL) \ - free((vec).data); \ - } +#include enum TokenType { AUTOMATIC_SEMICOLON, @@ -82,48 +20,41 @@ enum TokenType { SENTINEL_ERROR, // Unused token used to indicate error recovery mode }; -typedef struct { - uint32_t len; - uint32_t cap; - wchar_t *data; -} String; - -static String string_new() { - return (String){.cap = 16, .len = 0, .data = calloc(17, sizeof(wchar_t))}; -} +typedef Array(int32_t) String; -static inline bool string_eq(String *self, String *other) { - if (self->len != other->len) { +static inline bool string_eq(String *self, String *other) { + if (self->size != other->size) { return false; } - return memcmp(self->data, other->data, self->len * sizeof(self->data[0])) == 0; + if (self->size == 0) { + return self->size == other->size; + } + return memcmp(self->contents, other->contents, self->size * sizeof(self->contents[0])) == 0; } typedef struct { - String word; bool end_word_indentation_allowed; + String word; } Heredoc; -typedef struct { - uint32_t len; - uint32_t cap; - Heredoc *data; -} HeredocVec; - -static HeredocVec vec_new() { - HeredocVec vec = {0, 0, NULL}; - vec.data = calloc(1, sizeof(Heredoc)); - vec.cap = 1; - return vec; -} +#define heredoc_new() \ + { \ + .end_word_indentation_allowed = false, \ + .word = array_new(), \ + }; typedef struct { bool has_leading_whitespace; - HeredocVec open_heredocs; + Array(Heredoc) heredocs; } Scanner; typedef enum { Error, End } ScanContentResult; +static inline void reset_heredoc(Heredoc *heredoc) { + array_delete(&heredoc->word); + heredoc->end_word_indentation_allowed = false; +} + static inline void advance(TSLexer *lexer) { lexer->advance(lexer, false); } static inline void skip(TSLexer *lexer) { lexer->advance(lexer, true); } @@ -131,17 +62,20 @@ static inline void skip(TSLexer *lexer) { lexer->advance(lexer, true); } static unsigned serialize(Scanner *scanner, char *buffer) { unsigned size = 0; - buffer[size++] = (char)scanner->open_heredocs.len; - for (unsigned j = 0; j < scanner->open_heredocs.len; j++) { - Heredoc *heredoc = &scanner->open_heredocs.data[j]; - unsigned word_bytes = heredoc->word.len * sizeof(heredoc->word.data[0]); - if (size + 2 + word_bytes >= TREE_SITTER_SERIALIZATION_BUFFER_SIZE) { + buffer[size++] = (char)scanner->heredocs.size; + for (unsigned j = 0; j < scanner->heredocs.size; j++) { + Heredoc *heredoc = &scanner->heredocs.contents[j]; + unsigned word_size = heredoc->word.size * sizeof(heredoc->word.contents[0]); + if (size + 5 + word_size >= TREE_SITTER_SERIALIZATION_BUFFER_SIZE) { return 0; } buffer[size++] = (char)heredoc->end_word_indentation_allowed; - buffer[size++] = (char)heredoc->word.len; - memcpy(&buffer[size], heredoc->word.data, word_bytes); - size += word_bytes; + memcpy(&buffer[size], &heredoc->word.size, sizeof(uint32_t)); + size += sizeof(uint32_t); + if (heredoc->word.size > 0) { + memcpy(&buffer[size], heredoc->word.contents, word_size); + size += word_size; + } } return size; @@ -150,25 +84,38 @@ static unsigned serialize(Scanner *scanner, char *buffer) { static void deserialize(Scanner *scanner, const char *buffer, unsigned length) { unsigned size = 0; scanner->has_leading_whitespace = false; - VEC_CLEAR(scanner->open_heredocs); + + for (uint32_t i = 0; i < scanner->heredocs.size; i++) { + reset_heredoc(array_get(&scanner->heredocs, i)); + } if (length == 0) { return; } uint8_t open_heredoc_count = buffer[size++]; - for (unsigned j = 0; j < open_heredoc_count; j++) { - Heredoc heredoc; - heredoc.end_word_indentation_allowed = buffer[size++]; - heredoc.word = string_new(); - uint8_t word_length = buffer[size++]; - unsigned word_bytes = word_length * sizeof(heredoc.word.data[0]); - STRING_GROW(heredoc.word, word_length); - memcpy(heredoc.word.data, buffer + size, word_bytes); - heredoc.word.len = word_length; - size += word_bytes; - VEC_PUSH(scanner->open_heredocs, heredoc); + for (unsigned i = 0; i < open_heredoc_count; i++) { + Heredoc *heredoc = NULL; + if (i < scanner->heredocs.size) { + heredoc = array_get(&scanner->heredocs, i); + } else { + Heredoc new_heredoc = heredoc_new(); + array_push(&scanner->heredocs, new_heredoc); + heredoc = array_back(&scanner->heredocs); + } + + heredoc->end_word_indentation_allowed = buffer[size++]; + memcpy(&heredoc->word.size, &buffer[size], sizeof(uint32_t)); + size += sizeof(uint32_t); + unsigned word_size = heredoc->word.size * sizeof(heredoc->word.contents[0]); + if (word_size > 0) { + array_reserve(&heredoc->word, heredoc->word.size); + memcpy(heredoc->word.contents, &buffer[size], word_size); + size += word_size; + } } + + assert(size == length); } static inline bool scan_whitespace(TSLexer *lexer) { @@ -226,9 +173,20 @@ static inline bool is_escapable_sequence(TSLexer *lexer) { return iswdigit(lexer->lookahead) && lexer->lookahead >= '0' && lexer->lookahead <= '7'; } -static inline bool scan_nowdoc_string(Scanner *scanner, TSLexer *lexer) { +static String scan_heredoc_word(TSLexer *lexer) { + String result = (String)array_new(); + + while (is_valid_name_char(lexer)) { + array_push(&result, lexer->lookahead); + advance(lexer); + } + + return result; +} + +static inline bool scan_nowdoc_string(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { bool has_consumed_content = false; - if (scanner->open_heredocs.len == 0) { + if (scanner->heredocs.size == 0) { return false; } @@ -239,20 +197,27 @@ static inline bool scan_nowdoc_string(Scanner *scanner, TSLexer *lexer) { has_consumed_content = true; } - String heredoc_tag = VEC_BACK(scanner->open_heredocs).word; - bool end_tag_matched = false; + String heredoc_tag = array_back(&scanner->heredocs)->word; + String word = (String)array_new(); - for (uint32_t i = 0; i < heredoc_tag.len; i++) { - if (lexer->lookahead != heredoc_tag.data[i]) { + for (uint32_t i = 0; i < heredoc_tag.size; i++) { + if (lexer->lookahead != heredoc_tag.contents[i]) { break; } advance(lexer); has_consumed_content = true; - end_tag_matched = (i == heredoc_tag.len - 1 && (iswspace(lexer->lookahead) || lexer->lookahead == ';' || - lexer->lookahead == ',' || lexer->lookahead == ')')); + array_push(&word, heredoc_tag.contents[i]); + } + + if (valid_symbols[HEREDOC_END] && string_eq(&word, &heredoc_tag)) { + lexer->result_symbol = HEREDOC_END; + lexer->mark_end(lexer); + array_delete(&word); + return true; } + array_delete(&word); if (end_tag_matched) { // There may be an arbitrary amount of white space after the end tag @@ -292,7 +257,7 @@ static bool scan_encapsed_part_string(Scanner *scanner, TSLexer *lexer, bool is_ bool is_execution_string) { bool has_consumed_content = false; - if (is_heredoc && scanner->open_heredocs.len > 0) { + if (is_heredoc && scanner->heredocs.size > 0) { // While PHP requires the heredoc end tag to be the very first on a new // line, there may be an arbitrary amount of whitespace before the // closing token However, we should not consume \r or \n @@ -301,19 +266,19 @@ static bool scan_encapsed_part_string(Scanner *scanner, TSLexer *lexer, bool is_ has_consumed_content = true; } - String heredoc_tag = VEC_BACK(scanner->open_heredocs).word; + String heredoc_tag = array_back(&scanner->heredocs)->word; bool end_tag_matched = false; - for (uint32_t i = 0; i < heredoc_tag.len; i++) { - if (lexer->lookahead != heredoc_tag.data[i]) { + for (uint32_t i = 0; i < heredoc_tag.size; i++) { + if (lexer->lookahead != heredoc_tag.contents[i]) { break; } has_consumed_content = true; advance(lexer); - end_tag_matched = (i == heredoc_tag.len - 1 && (iswspace(lexer->lookahead) || lexer->lookahead == ';' || - lexer->lookahead == ',' || lexer->lookahead == ')')); + end_tag_matched = (i == heredoc_tag.size - 1 && (iswspace(lexer->lookahead) || lexer->lookahead == ';' || + lexer->lookahead == ',' || lexer->lookahead == ')')); } if (end_tag_matched) { @@ -383,7 +348,7 @@ static bool scan_encapsed_part_string(Scanner *scanner, TSLexer *lexer, bool is_ case '$': advance(lexer); - if (is_valid_name_char(lexer) || lexer->lookahead == '{') { + if ((is_valid_name_char(lexer) && !iswdigit(lexer->lookahead)) || lexer->lookahead == '{') { return has_content; } break; @@ -424,22 +389,10 @@ static bool scan_encapsed_part_string(Scanner *scanner, TSLexer *lexer, bool is_ return false; } -static String scan_heredoc_word(TSLexer *lexer) { - String result = string_new(); - - while (is_valid_name_char(lexer)) { - STRING_PUSH(result, lexer->lookahead); - advance(lexer); - } - - return result; -} - static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { const bool is_error_recovery = valid_symbols[SENTINEL_ERROR]; if (is_error_recovery) { - // Consider if we should clear the heredoc list on error return false; } @@ -497,16 +450,16 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { if (valid_symbols[NOWDOC_STRING]) { lexer->result_symbol = NOWDOC_STRING; - return scan_nowdoc_string(scanner, lexer); + return scan_nowdoc_string(scanner, lexer, valid_symbols); } if (valid_symbols[HEREDOC_END]) { lexer->result_symbol = HEREDOC_END; - if (scanner->open_heredocs.len == 0) { + if (scanner->heredocs.size == 0) { return false; } - Heredoc heredoc = VEC_BACK(scanner->open_heredocs); + Heredoc heredoc = *array_back(&scanner->heredocs); while (iswspace(lexer->lookahead)) { skip(lexer); @@ -514,13 +467,14 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { String word = scan_heredoc_word(lexer); if (!string_eq(&word, &heredoc.word)) { - STRING_FREE(word); + array_delete(&word); return false; } - STRING_FREE(word); + array_delete(&word); lexer->mark_end(lexer); - VEC_POP(scanner->open_heredocs); + String last_word = array_pop(&scanner->heredocs).word; + array_delete(&last_word); return true; } @@ -535,20 +489,20 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { if (valid_symbols[HEREDOC_START]) { lexer->result_symbol = HEREDOC_START; - Heredoc heredoc; + Heredoc heredoc = heredoc_new(); while (iswspace(lexer->lookahead)) { skip(lexer); } heredoc.word = scan_heredoc_word(lexer); - if (heredoc.word.len == 0) { - STRING_FREE(heredoc.word); + if (heredoc.word.size == 0) { + array_delete(&heredoc.word); return false; } lexer->mark_end(lexer); - VEC_PUSH(scanner->open_heredocs, heredoc); + array_push(&scanner->heredocs, heredoc); return true; } @@ -568,8 +522,8 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { } static inline void *external_scanner_create() { - Scanner *scanner = calloc(1, sizeof(Scanner)); - scanner->open_heredocs = vec_new(); + Scanner *scanner = ts_calloc(1, sizeof(Scanner)); + array_init(&scanner->heredocs); return scanner; } @@ -590,9 +544,9 @@ static inline bool external_scanner_scan(void *payload, TSLexer *lexer, const bo 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); + for (size_t i = 0; i < scanner->heredocs.size; i++) { + array_delete(&scanner->heredocs.contents[i].word); } - VEC_FREE(scanner->open_heredocs) - free(scanner); + array_delete(&scanner->heredocs); + ts_free(scanner); } diff --git a/examples/.gitignore b/examples/.gitignore deleted file mode 100644 index d6b7ef32..00000000 --- a/examples/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 00000000..cc693e93 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,1490 @@ +{ + "name": "tree-sitter-php", + "version": "0.22.3", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "tree-sitter-php", + "version": "0.22.3", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "node-addon-api": "^8.0.0", + "node-gyp-build": "^4.8.1" + }, + "devDependencies": { + "eslint": ">=8.57.0", + "eslint-config-google": "^0.14.0", + "prebuildify": "^6.0.0", + "tree-sitter-cli": "^0.22.4" + }, + "peerDependencies": { + "tree-sitter": "^0.21.0" + }, + "peerDependenciesMeta": { + "tree_sitter": { + "optional": true + } + } + }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", + "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "dev": true + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", + "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.0", + "@humanwhocodes/config-array": "^0.11.14", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-google": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/eslint-config-google/-/eslint-config-google-0.14.0.tgz", + "integrity": "sha512-WsbX4WbjuMvTdeVL6+J3rK1RGhCTqjsFjX7UMSMgZiyxxaNLkoJENbrGExzERFeoTpGw3F3FypTiWAP9ZXzkEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + }, + "peerDependencies": { + "eslint": ">=5.16.0" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execspawn": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/execspawn/-/execspawn-1.0.1.tgz", + "integrity": "sha512-s2k06Jy9i8CUkYe0+DxRlvtkZoOkwwfhB+Xxo5HGUtrISVW2m98jO2tr67DGRFxZwkjQqloA3v/tNtjhBRBieg==", + "dev": true, + "dependencies": { + "util-extend": "^1.0.1" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dev": true, + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "dev": true + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "dev": true + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/node-abi": { + "version": "3.55.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.55.0.tgz", + "integrity": "sha512-uPEjtyh2tFEvWYt4Jw7McOD5FPcHkcxm/tHZc5PWaDB3JYq0rGFUbgaAK+CT5pYpQddBfsZVWI08OwoRfdfbcQ==", + "dev": true, + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-addon-api": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.0.0.tgz", + "integrity": "sha512-ipO7rsHEBqa9STO5C5T10fj732ml+5kLN1cAG8/jdHd56ldQeGj3Q7+scUS+VHK/qy1zLEwC4wMK5+yM0btPvw==", + "engines": { + "node": "^18 || ^20 || >= 21" + } + }, + "node_modules/node-gyp-build": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.1.tgz", + "integrity": "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==", + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" + } + }, + "node_modules/npm-run-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-3.1.0.tgz", + "integrity": "sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dev": true, + "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/prebuildify": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/prebuildify/-/prebuildify-6.0.0.tgz", + "integrity": "sha512-DEvK4C3tcimIp7Pzqbs036n9i6CTKGp1XVEpMnr4wV3enKU5sBogPP+lP3KZw7993i42bXnsd5eIxAXQ566Cqw==", + "dev": true, + "dependencies": { + "execspawn": "^1.0.1", + "minimist": "^1.2.5", + "mkdirp-classic": "^0.5.3", + "node-abi": "^3.3.0", + "npm-run-path": "^3.1.0", + "pump": "^3.0.0", + "tar-fs": "^2.1.0" + }, + "bin": { + "prebuildify": "bin.js" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "dev": true, + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "node_modules/tar-fs/node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dev": true, + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/tree-sitter": { + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.21.1.tgz", + "integrity": "sha512-7dxoA6kYvtgWw80265MyqJlkRl4yawIjO7S5MigytjELkX43fV2WsAXzsNfO7sBpPPCF5Gp0+XzHk0DwLCq3xQ==", + "hasInstallScript": true, + "peer": true, + "dependencies": { + "node-addon-api": "^8.0.0", + "node-gyp-build": "^4.8.0" + } + }, + "node_modules/tree-sitter-cli": { + "version": "0.22.4", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.22.4.tgz", + "integrity": "sha512-Zli7yeD+ocVWm+au5YLJKLyxzvUirenomOgwapNZU8bpYt/CZMpEeya9eK/tEQAd7NDOQSvAnvhJXbPbwUdgMQ==", + "dev": true, + "hasInstallScript": true, + "bin": { + "tree-sitter": "cli.js" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/util-extend": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/util-extend/-/util-extend-1.0.3.tgz", + "integrity": "sha512-mLs5zAK+ctllYBj+iAQvlDCwoxU/WDOUaJkcFudeiAX6OajC6BKXJUa9a+tbtkC11dz2Ufb7h0lyvIOVn4LADA==", + "dev": true + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/package.json b/package.json index 834e33ac..8c779412 100644 --- a/package.json +++ b/package.json @@ -1,44 +1,78 @@ { "name": "tree-sitter-php", - "version": "0.22.2", + "version": "0.22.3", "description": "PHP grammar for tree-sitter", + "repository": "github:tree-sitter/tree-sitter-php", + "license": "MIT", + "author": "Josh Vera", + "contributors": [ + { + "name": "Max Brunsfeld", + "email": "maxbrunsfeld@gmail.com" + }, + { + "name": "Amaan Qureshi", + "email": "amaanq12@gmail.com" + }, + { + "name": "Caleb White", + "email": "cdwhite3@pm.me" + }, + { + "name": "Christian Frøystad", + "email": "christian@xist.no" + } + ], + "maintainers": [ + { + "name": "Amaan Qureshi", + "email": "amaanq12@gmail.com" + } + ], "main": "bindings/node", + "types": "bindings/node", "keywords": [ - "parser", - "lexer", + "parsing", + "incremental", + "tree-sitter", "php" ], - "author": "Josh Vera", - "license": "MIT", - "bugs": { - "url": "https://github.com/tree-sitter/tree-sitter-php/issues" - }, - "homepage": "https://github.com/tree-sitter/tree-sitter-php#readme", + "files": [ + "binding.gyp", + "prebuilds/**", + "bindings/node/*", + "queries/*", + "php/grammar.js", + "php_only/grammar.js", + "php/package.json", + "php_only/package.json", + "php/src/**", + "php_only/src/**" + ], "dependencies": { - "nan": "^2.19.0", - "tree-sitter": "^0.20.6" + "node-addon-api": "^8.0.0", + "node-gyp-build": "^4.8.1" + }, + "peerDependencies": { + "tree-sitter": "^0.21.0" + }, + "peerDependenciesMeta": { + "tree_sitter": { + "optional": true + } }, "devDependencies": { "eslint": ">=8.57.0", "eslint-config-google": "^0.14.0", - "node-gyp": "^10.0.1", - "shelljs": "^0.8.5", - "tree-sitter-cli": "^0.21.0" + "tree-sitter-cli": "^0.22.4", + "prebuildify": "^6.0.0" }, "scripts": { - "build": "npm run build-php && npm run build-php_only && node-gyp rebuild", - "build-php": "cd php && tree-sitter generate --no-bindings", - "build-php_only": "cd php_only && tree-sitter generate --no-bindings", + "install": "node-gyp-build", + "prebuildify": "prebuildify --napi --strip", "lint": "eslint common/define-grammar.js", - "test": "npm run test-php && npm run test-php_only && npm run test-load", - "test-examples": "script/parse-examples", - "test-load": "node -e \"console.log(require('./php').name, require('./php_only').name)\"", - "test-php": "cd php && tree-sitter test", - "test-php_only": "cd php_only && tree-sitter test" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/tree-sitter/tree-sitter-php.git" + "parse": "tree-sitter parse", + "test": "tree-sitter test" }, "tree-sitter": [ { @@ -53,9 +87,53 @@ "queries/injections-text.scm" ], "tags": "queries/tags.scm", - "external-files": [ - "common/scanner.h" + "external-files": "common/scanner.h" + }, + { + "path": "php_only", + "external-files": "common/scanner.h" + } + ], + "eslintConfig": { + "env": { + "commonjs": true, + "es2021": true + }, + "extends": "google", + "parserOptions": { + "ecmaVersion": "latest", + "sourceType": "module" + }, + "rules": { + "arrow-parens": "off", + "camel-case": "off", + "indent": [ + "error", + 2, + { + "SwitchCase": 1 + } + ], + "max-len": [ + "error", + { + "code": 160, + "ignoreComments": true, + "ignoreUrls": true, + "ignoreStrings": true + } + ], + "spaced-comment": [ + "warn", + "always", + { + "line": { + "markers": [ + "/" + ] + } + } ] } - ] + } } diff --git a/php/Makefile b/php/Makefile new file mode 100644 index 00000000..fc8ba3a8 --- /dev/null +++ b/php/Makefile @@ -0,0 +1,3 @@ +LANGUAGE_NAME := tree-sitter-php + +include ../common/common.mak diff --git a/php/src/grammar.json b/php/src/grammar.json index f5e88c05..699c4c05 100644 --- a/php/src/grammar.json +++ b/php/src/grammar.json @@ -31,7 +31,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } } ] @@ -111,7 +111,7 @@ ] } }, - "_statement": { + "statement": { "type": "CHOICE", "members": [ { @@ -314,7 +314,7 @@ "name": "value", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -1213,45 +1213,11 @@ ] }, { - "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": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_modifier" + } }, { "type": "ALIAS", @@ -1475,65 +1441,52 @@ "name": "_const_declaration" }, "_class_const_declaration": { - "type": "PREC", - "value": 1, - "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": "SYMBOL", - "name": "final_modifier" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_const_declaration" - } - ] - } - }, - "_const_declaration": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" + } + ] + }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "visibility_modifier" + "name": "final_modifier" }, { "type": "BLANK" } ] }, + { + "type": "SYMBOL", + "name": "_const_declaration" + } + ] + }, + "_const_declaration": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_modifier" + } + }, { "type": "ALIAS", "content": { @@ -1552,7 +1505,7 @@ "name": "type", "content": { "type": "SYMBOL", - "name": "_type" + "name": "type" } }, { @@ -1625,7 +1578,7 @@ "name": "type", "content": { "type": "SYMBOL", - "name": "_type" + "name": "type" } }, { @@ -1727,7 +1680,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -2109,12 +2062,8 @@ "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "reference_modifier", - "content": { - "type": "SYMBOL", - "name": "reference_modifier" - } + "type": "SYMBOL", + "name": "reference_modifier" }, { "type": "BLANK" @@ -2260,7 +2209,7 @@ "name": "body", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -2400,7 +2349,7 @@ "members": [ { "type": "SYMBOL", - "name": "_type" + "name": "type" }, { "type": "BLANK" @@ -2431,7 +2380,7 @@ "name": "default_value", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -2470,7 +2419,7 @@ "members": [ { "type": "SYMBOL", - "name": "_type" + "name": "type" }, { "type": "BLANK" @@ -2517,7 +2466,7 @@ "name": "default_value", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -2556,7 +2505,7 @@ "members": [ { "type": "SYMBOL", - "name": "_type" + "name": "type" }, { "type": "BLANK" @@ -2594,7 +2543,7 @@ } ] }, - "_type": { + "type": { "type": "CHOICE", "members": [ { @@ -2936,7 +2885,7 @@ "members": [ { "type": "SYMBOL", - "name": "_type" + "name": "type" }, { "type": "SYMBOL", @@ -2974,7 +2923,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -3029,7 +2978,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "BLANK" @@ -3089,6 +3038,18 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": ")" @@ -3129,7 +3090,11 @@ "members": [ { "type": "SYMBOL", - "name": "_statement" + "name": "statement" + }, + { + "type": "SYMBOL", + "name": "_semicolon" }, { "type": "SEQ", @@ -3142,7 +3107,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } }, { @@ -3160,10 +3125,6 @@ "name": "_semicolon" } ] - }, - { - "type": "SYMBOL", - "name": "_semicolon" } ] } @@ -3195,11 +3156,11 @@ }, { "type": "SYMBOL", - "name": "_literal" + "name": "literal" } ] }, - "_literal": { + "literal": { "type": "CHOICE", "members": [ { @@ -3411,7 +3372,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "BLANK" @@ -3442,7 +3403,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "BLANK" @@ -3497,7 +3458,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "BLANK" @@ -3525,7 +3486,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -3558,7 +3519,7 @@ "name": "body", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } }, { @@ -3610,7 +3571,7 @@ "name": "body", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } }, { @@ -3711,7 +3672,7 @@ }, { "type": "SYMBOL", - "name": "_statement" + "name": "statement" }, { "type": "SEQ", @@ -3724,7 +3685,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } }, { @@ -3752,7 +3713,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -3768,7 +3729,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -3783,7 +3744,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] } @@ -3809,7 +3770,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "ALIAS", @@ -3855,7 +3816,7 @@ "name": "body", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } }, { @@ -3894,7 +3855,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -3915,7 +3876,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -3955,7 +3916,7 @@ "name": "body", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } }, { @@ -4066,7 +4027,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } } ] @@ -4097,7 +4058,7 @@ "name": "body", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } } ] @@ -4120,7 +4081,7 @@ "name": "body", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } } ] @@ -4298,7 +4259,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "REPEAT", @@ -4311,7 +4272,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] } @@ -4352,7 +4313,7 @@ "name": "return_expression", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -4379,7 +4340,7 @@ "name": "return_expression", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -4506,7 +4467,7 @@ "name": "value", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -4526,7 +4487,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } } ] @@ -4561,7 +4522,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } } ] @@ -4577,7 +4538,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } }, { @@ -4604,7 +4565,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -4612,7 +4573,7 @@ } ] }, - "_expression": { + "expression": { "type": "CHOICE", "members": [ { @@ -4678,7 +4639,7 @@ }, { "type": "SYMBOL", - "name": "_primary_expression" + "name": "primary_expression" }, { "type": "SYMBOL", @@ -4726,7 +4687,7 @@ "name": "argument", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -4744,7 +4705,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] } @@ -4764,11 +4725,11 @@ }, { "type": "SYMBOL", - "name": "_primary_expression" + "name": "primary_expression" } ] }, - "_primary_expression": { + "primary_expression": { "type": "CHOICE", "members": [ { @@ -4777,7 +4738,7 @@ }, { "type": "SYMBOL", - "name": "_literal" + "name": "literal" }, { "type": "SYMBOL", @@ -4842,7 +4803,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -4888,7 +4849,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, "named": true, "value": "name" @@ -4918,7 +4879,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -5273,6 +5234,10 @@ { "type": "SYMBOL", "name": "_variable_name" + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" } ] }, @@ -5384,6 +5349,10 @@ { "type": "SYMBOL", "name": "include_once_expression" + }, + { + "type": "SYMBOL", + "name": "error_suppression_expression" } ] } @@ -5456,7 +5425,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -5498,7 +5467,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -5515,7 +5484,7 @@ "name": "condition", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -5530,7 +5499,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "BLANK" @@ -5547,7 +5516,7 @@ "name": "alternative", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -5633,7 +5602,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -5788,33 +5757,28 @@ "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": "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" + "name": "expression" }, { "type": "STRING", @@ -5867,33 +5831,28 @@ "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": "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" + "name": "expression" }, { "type": "STRING", @@ -6025,7 +5984,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -6369,7 +6328,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] } @@ -6525,7 +6484,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -6570,7 +6529,7 @@ "name": "name", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -6603,7 +6562,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "BLANK" @@ -6625,7 +6584,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -6923,7 +6882,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -7152,7 +7111,7 @@ "name": "encapsed_string_chars_after_variable" }, "named": true, - "value": "string_value" + "value": "string_content" } ] }, @@ -7163,7 +7122,7 @@ "name": "encapsed_string_chars" }, "named": true, - "value": "string_value" + "value": "string_content" }, { "type": "SYMBOL", @@ -7180,7 +7139,7 @@ "value": "\\u" }, "named": true, - "value": "string_value" + "value": "string_content" } ] } @@ -7208,7 +7167,7 @@ "name": "encapsed_string_chars_after_variable_heredoc" }, "named": true, - "value": "string_value" + "value": "string_content" } ] }, @@ -7219,7 +7178,7 @@ "name": "encapsed_string_chars_heredoc" }, "named": true, - "value": "string_value" + "value": "string_content" }, { "type": "SYMBOL", @@ -7236,7 +7195,7 @@ "value": "\\u" }, "named": true, - "value": "string_value" + "value": "string_content" } ] } @@ -7323,7 +7282,7 @@ }, { "type": "SYMBOL", - "name": "string_value" + "name": "string_content" } ] } @@ -7334,17 +7293,14 @@ } ] }, - "string_value": { - "type": "TOKEN", + "string_content": { + "type": "IMMEDIATE_TOKEN", "content": { "type": "PREC", "value": 1, "content": { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "\\\\?[^'\\\\]" - } + "type": "PATTERN", + "value": "\\\\?[^'\\\\]+" } } }, @@ -7636,7 +7592,7 @@ "name": "execution_string_chars_after_variable" }, "named": true, - "value": "string_value" + "value": "string_content" } ] }, @@ -7647,7 +7603,7 @@ "name": "execution_string_chars" }, "named": true, - "value": "string_value" + "value": "string_content" }, { "type": "SYMBOL", @@ -7664,7 +7620,7 @@ "value": "\\u" }, "named": true, - "value": "string_value" + "value": "string_content" } ] } @@ -7754,7 +7710,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -7870,7 +7826,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] } @@ -7899,7 +7855,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -7908,7 +7864,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -7923,7 +7879,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] } @@ -7989,7 +7945,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8005,7 +7961,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8022,7 +7978,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8038,7 +7994,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8055,7 +8011,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8077,7 +8033,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8094,7 +8050,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8116,7 +8072,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8133,7 +8089,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8155,7 +8111,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8172,7 +8128,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8188,7 +8144,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8205,7 +8161,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8221,7 +8177,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8238,7 +8194,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8254,7 +8210,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8271,7 +8227,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8287,7 +8243,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8304,7 +8260,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8320,7 +8276,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8337,7 +8293,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8353,7 +8309,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8370,7 +8326,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8386,7 +8342,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8403,7 +8359,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8419,7 +8375,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8436,7 +8392,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8452,7 +8408,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8469,7 +8425,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8485,7 +8441,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8502,7 +8458,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8518,7 +8474,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8535,7 +8491,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8551,7 +8507,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8568,7 +8524,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8584,7 +8540,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8601,7 +8557,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8617,7 +8573,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8634,7 +8590,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8650,7 +8606,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8667,7 +8623,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8683,7 +8639,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8700,7 +8656,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8716,7 +8672,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8733,7 +8689,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8749,7 +8705,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8766,7 +8722,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8782,7 +8738,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8799,7 +8755,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8815,7 +8771,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8832,7 +8788,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8848,7 +8804,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8865,7 +8821,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8881,7 +8837,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8898,7 +8854,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8914,7 +8870,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8937,7 +8893,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -8956,7 +8912,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -8975,7 +8931,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -8994,7 +8950,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -9129,11 +9085,11 @@ "array_element_initializer" ], [ - "_primary_expression", + "primary_expression", "_array_destructing_element" ], [ - "_type", + "type", "union_type", "intersection_type", "disjunctive_normal_form_type" @@ -9214,22 +9170,20 @@ } ], "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" + "statement", + "expression", + "primary_expression", + "type", + "literal" ] } diff --git a/php/src/node-types.json b/php/src/node-types.json index 57abc37b..d5c30040 100644 --- a/php/src/node-types.json +++ b/php/src/node-types.json @@ -1,12 +1,8 @@ [ { - "type": "_expression", + "type": "expression", "named": true, "subtypes": [ - { - "type": "_primary_expression", - "named": true - }, { "type": "assignment_expression", "named": true @@ -47,6 +43,10 @@ "type": "match_expression", "named": true }, + { + "type": "primary_expression", + "named": true + }, { "type": "reference_assignment_expression", "named": true @@ -70,7 +70,7 @@ ] }, { - "type": "_literal", + "type": "literal", "named": true, "subtypes": [ { @@ -108,13 +108,9 @@ ] }, { - "type": "_primary_expression", + "type": "primary_expression", "named": true, "subtypes": [ - { - "type": "_literal", - "named": true - }, { "type": "anonymous_function_creation_expression", "named": true @@ -143,6 +139,10 @@ "type": "function_call_expression", "named": true }, + { + "type": "literal", + "named": true + }, { "type": "member_access_expression", "named": true @@ -210,7 +210,7 @@ ] }, { - "type": "_statement", + "type": "statement", "named": true, "subtypes": [ { @@ -332,7 +332,7 @@ ] }, { - "type": "_type", + "type": "type", "named": true, "subtypes": [ { @@ -415,11 +415,11 @@ "required": false, "types": [ { - "type": "_type", + "type": "bottom_type", "named": true }, { - "type": "bottom_type", + "type": "type", "named": true } ] @@ -495,7 +495,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -552,11 +552,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "by_ref", "named": true }, { - "type": "by_ref", + "type": "expression", "named": true }, { @@ -585,7 +585,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -615,11 +615,11 @@ "required": false, "types": [ { - "type": "_type", + "type": "bottom_type", "named": true }, { - "type": "bottom_type", + "type": "type", "named": true } ] @@ -699,7 +699,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -883,7 +883,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -918,7 +918,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1050,11 +1050,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "dynamic_variable_name", "named": true }, { - "type": "dynamic_variable_name", + "type": "expression", "named": true }, { @@ -1069,6 +1069,10 @@ "type": "nullsafe_member_access_expression", "named": true }, + { + "type": "parenthesized_expression", + "named": true + }, { "type": "qualified_name", "named": true @@ -1103,7 +1107,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1165,7 +1169,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1176,7 +1180,7 @@ "required": false, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -1201,11 +1205,11 @@ "required": true, "types": [ { - "type": "_primary_expression", + "type": "clone_expression", "named": true }, { - "type": "clone_expression", + "type": "error_suppression_expression", "named": true }, { @@ -1216,6 +1220,10 @@ "type": "include_once_expression", "named": true }, + { + "type": "primary_expression", + "named": true + }, { "type": "unary_op_expression", "named": true @@ -1384,24 +1392,6 @@ } ] }, - "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, @@ -1417,6 +1407,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "abstract_modifier", + "named": true + }, { "type": "base_clause", "named": true @@ -1424,6 +1418,26 @@ { "type": "class_interface_clause", "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 } ] } @@ -1456,7 +1470,7 @@ "required": true, "types": [ { - "type": "_primary_expression", + "type": "primary_expression", "named": true } ] @@ -1471,7 +1485,7 @@ "required": false, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -1486,7 +1500,7 @@ "required": false, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -1501,7 +1515,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1511,7 +1525,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1521,7 +1535,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1542,22 +1556,12 @@ } ] }, - "modifier": { - "multiple": false, - "required": false, - "types": [ - { - "type": "final_modifier", - "named": true - } - ] - }, "type": { "multiple": false, "required": false, "types": [ { - "type": "_type", + "type": "type", "named": true } ] @@ -1567,10 +1571,30 @@ "multiple": true, "required": true, "types": [ + { + "type": "abstract_modifier", + "named": true + }, { "type": "const_element", "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 @@ -1587,7 +1611,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -1606,7 +1630,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1648,7 +1672,7 @@ "required": true, "types": [ { - "type": "_literal", + "type": "literal", "named": true } ] @@ -1663,11 +1687,11 @@ "required": true, "types": [ { - "type": "_statement", + "type": "declare_directive", "named": true }, { - "type": "declare_directive", + "type": "statement", "named": true } ] @@ -1682,7 +1706,7 @@ "required": false, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -1724,7 +1748,7 @@ "required": true, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -1750,11 +1774,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "dynamic_variable_name", "named": true }, { - "type": "dynamic_variable_name", + "type": "expression", "named": true }, { @@ -1773,7 +1797,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -1792,11 +1816,11 @@ "required": true, "types": [ { - "type": "_statement", + "type": "colon_block", "named": true }, { - "type": "colon_block", + "type": "statement", "named": true } ] @@ -1812,11 +1836,11 @@ "required": true, "types": [ { - "type": "_statement", + "type": "colon_block", "named": true }, { - "type": "colon_block", + "type": "statement", "named": true } ] @@ -1847,15 +1871,15 @@ "required": false, "types": [ { - "type": "_expression", + "type": "dynamic_variable_name", "named": true }, { - "type": "dynamic_variable_name", + "type": "escape_sequence", "named": true }, { - "type": "escape_sequence", + "type": "expression", "named": true }, { @@ -1863,7 +1887,7 @@ "named": true }, { - "type": "string_value", + "type": "string_content", "named": true }, { @@ -2011,7 +2035,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -2026,7 +2050,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -2041,7 +2065,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -2077,15 +2101,15 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { - "type": "_statement", + "type": "sequence_expression", "named": true }, { - "type": "sequence_expression", + "type": "statement", "named": true } ] @@ -2100,11 +2124,11 @@ "required": false, "types": [ { - "type": "_statement", + "type": "colon_block", "named": true }, { - "type": "colon_block", + "type": "statement", "named": true } ] @@ -2115,11 +2139,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "by_ref", "named": true }, { - "type": "by_ref", + "type": "expression", "named": true }, { @@ -2282,30 +2306,30 @@ } ] }, - "reference_modifier": { - "multiple": false, - "required": false, - "types": [ - { - "type": "reference_modifier", - "named": true - } - ] - }, "return_type": { "multiple": false, "required": false, "types": [ { - "type": "_type", + "type": "bottom_type", "named": true }, { - "type": "bottom_type", + "type": "type", "named": true } ] } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "reference_modifier", + "named": true + } + ] } }, { @@ -2406,15 +2430,15 @@ "required": true, "types": [ { - "type": "_expression", + "type": "dynamic_variable_name", "named": true }, { - "type": "dynamic_variable_name", + "type": "escape_sequence", "named": true }, { - "type": "escape_sequence", + "type": "expression", "named": true }, { @@ -2422,7 +2446,7 @@ "named": true }, { - "type": "string_value", + "type": "string_content", "named": true }, { @@ -2459,11 +2483,11 @@ "required": true, "types": [ { - "type": "_statement", + "type": "colon_block", "named": true }, { - "type": "colon_block", + "type": "statement", "named": true } ] @@ -2489,7 +2513,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -2504,7 +2528,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -2578,15 +2602,15 @@ "required": false, "types": [ { - "type": "_expression", + "type": "by_ref", "named": true }, { - "type": "by_ref", + "type": "dynamic_variable_name", "named": true }, { - "type": "dynamic_variable_name", + "type": "expression", "named": true }, { @@ -2660,7 +2684,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -2685,7 +2709,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -2701,7 +2725,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -2743,11 +2767,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "dynamic_variable_name", "named": true }, { - "type": "dynamic_variable_name", + "type": "expression", "named": true }, { @@ -2867,11 +2891,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "dynamic_variable_name", "named": true }, { - "type": "dynamic_variable_name", + "type": "expression", "named": true }, { @@ -3016,26 +3040,16 @@ } ] }, - "reference_modifier": { - "multiple": false, - "required": false, - "types": [ - { - "type": "reference_modifier", - "named": true - } - ] - }, "return_type": { "multiple": false, "required": false, "types": [ { - "type": "_type", + "type": "bottom_type", "named": true }, { - "type": "bottom_type", + "type": "type", "named": true } ] @@ -3057,6 +3071,10 @@ "type": "readonly_modifier", "named": true }, + { + "type": "reference_modifier", + "named": true + }, { "type": "static_modifier", "named": true @@ -3327,11 +3345,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "dynamic_variable_name", "named": true }, { - "type": "dynamic_variable_name", + "type": "expression", "named": true }, { @@ -3451,11 +3469,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "dynamic_variable_name", "named": true }, { - "type": "dynamic_variable_name", + "type": "expression", "named": true }, { @@ -3607,6 +3625,10 @@ "type": "nullsafe_member_access_expression", "named": true }, + { + "type": "parenthesized_expression", + "named": true + }, { "type": "qualified_name", "named": true @@ -3654,11 +3676,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "by_ref", "named": true }, { - "type": "by_ref", + "type": "expression", "named": true }, { @@ -3677,7 +3699,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3697,7 +3719,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3712,11 +3734,11 @@ "required": false, "types": [ { - "type": "_statement", + "type": "php_tag", "named": true }, { - "type": "php_tag", + "type": "statement", "named": true }, { @@ -3745,7 +3767,7 @@ "required": false, "types": [ { - "type": "_type", + "type": "type", "named": true } ] @@ -3814,7 +3836,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3839,7 +3861,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3869,7 +3891,7 @@ "required": false, "types": [ { - "type": "_type", + "type": "type", "named": true } ] @@ -3973,7 +3995,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3999,7 +4021,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -4014,7 +4036,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -4029,7 +4051,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -4054,11 +4076,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "dynamic_variable_name", "named": true }, { - "type": "dynamic_variable_name", + "type": "expression", "named": true }, { @@ -4282,7 +4304,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -4301,15 +4323,15 @@ "required": false, "types": [ { - "type": "_expression", + "type": "dynamic_variable_name", "named": true }, { - "type": "dynamic_variable_name", + "type": "escape_sequence", "named": true }, { - "type": "escape_sequence", + "type": "expression", "named": true }, { @@ -4317,7 +4339,7 @@ "named": true }, { - "type": "string_value", + "type": "string_content", "named": true }, { @@ -4350,7 +4372,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -4380,7 +4402,7 @@ "required": false, "types": [ { - "type": "_type", + "type": "type", "named": true } ] @@ -4411,7 +4433,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -4431,7 +4453,7 @@ "named": true }, { - "type": "string_value", + "type": "string_content", "named": true } ] @@ -4445,10 +4467,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "_expression", - "named": true - }, { "type": "array_creation_expression", "named": true @@ -4465,6 +4483,10 @@ "type": "encapsed_string", "named": true }, + { + "type": "expression", + "named": true + }, { "type": "function_call_expression", "named": true @@ -4610,7 +4632,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -4696,7 +4718,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -5021,7 +5043,7 @@ "required": false, "types": [ { - "type": "_type", + "type": "type", "named": true } ] @@ -5042,7 +5064,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -5062,11 +5084,11 @@ "required": true, "types": [ { - "type": "_statement", + "type": "colon_block", "named": true }, { - "type": "colon_block", + "type": "statement", "named": true } ] @@ -5092,11 +5114,11 @@ "required": false, "types": [ { - "type": "_expression", + "type": "array_element_initializer", "named": true }, { - "type": "array_element_initializer", + "type": "expression", "named": true } ] @@ -5659,7 +5681,7 @@ "named": false }, { - "type": "string_value", + "type": "string_content", "named": true }, { diff --git a/php/src/parser.c b/php/src/parser.c index 23f73019..57b49621 100644 --- a/php/src/parser.c +++ b/php/src/parser.c @@ -1,20 +1,19 @@ #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 2681 -#define LARGE_STATE_COUNT 581 -#define SYMBOL_COUNT 407 +#define STATE_COUNT 2646 +#define LARGE_STATE_COUNT 572 +#define SYMBOL_COUNT 409 #define ALIAS_COUNT 0 #define TOKEN_COUNT 194 #define EXTERNAL_TOKEN_COUNT 12 -#define FIELD_COUNT 27 +#define FIELD_COUNT 26 #define MAX_ALIAS_SEQUENCE_LENGTH 12 -#define PRODUCTION_ID_COUNT 189 +#define PRODUCTION_ID_COUNT 183 enum ts_symbol_identifiers { sym_name = 1, @@ -158,7 +157,7 @@ enum ts_symbol_identifiers { aux_sym_string_token1 = 139, anon_sym_SQUOTE = 140, aux_sym_string_token2 = 141, - sym_string_value = 142, + sym_string_content = 142, anon_sym_LT_LT_LT = 143, anon_sym_DQUOTE2 = 144, sym__new_line = 145, @@ -213,216 +212,218 @@ enum ts_symbol_identifiers { sym_program = 194, sym_text_interpolation = 195, sym_text = 196, - sym_empty_statement = 197, - sym_reference_modifier = 198, - sym_function_static_declaration = 199, - sym_static_variable_declaration = 200, - sym_global_declaration = 201, - sym_namespace_definition = 202, - sym_namespace_use_declaration = 203, - sym_namespace_use_clause = 204, - sym_qualified_name = 205, - sym_namespace_name_as_prefix = 206, - sym_namespace_name = 207, - sym_namespace_aliasing_clause = 208, - sym_namespace_use_group = 209, - sym_namespace_use_group_clause = 210, - sym_trait_declaration = 211, - sym_interface_declaration = 212, - sym_base_clause = 213, - sym_enum_declaration = 214, - sym_enum_declaration_list = 215, - sym__enum_member_declaration = 216, - sym_enum_case = 217, - sym_class_declaration = 218, - sym_declaration_list = 219, - sym_final_modifier = 220, - sym_abstract_modifier = 221, - sym_readonly_modifier = 222, - sym_class_interface_clause = 223, - sym__member_declaration = 224, - sym_const_declaration = 225, - sym__class_const_declaration = 226, - sym__const_declaration = 227, - sym_property_declaration = 228, - sym__modifier = 229, - sym_property_element = 230, - sym_property_initializer = 231, - sym_method_declaration = 232, - sym_static_modifier = 233, - sym_use_declaration = 234, - sym_use_list = 235, - sym_use_instead_of_clause = 236, - sym_use_as_clause = 237, - sym_visibility_modifier = 238, - sym_function_definition = 239, - sym__function_definition_header = 240, - sym__arrow_function_header = 241, - sym_arrow_function = 242, - sym_formal_parameters = 243, - sym_property_promotion_parameter = 244, - sym_simple_parameter = 245, - sym_variadic_parameter = 246, - sym__type = 247, - sym__types = 248, - sym_named_type = 249, - sym_optional_type = 250, - sym_union_type = 251, - sym_intersection_type = 252, - sym_disjunctive_normal_form_type = 253, - sym_primitive_type = 254, - sym_cast_type = 255, - sym__return_type = 256, - sym_const_element = 257, - sym_echo_statement = 258, - sym_exit_statement = 259, - sym_unset_statement = 260, - sym_declare_statement = 261, - sym_declare_directive = 262, - sym_try_statement = 263, - sym_catch_clause = 264, - sym_type_list = 265, - sym_finally_clause = 266, - sym_goto_statement = 267, - sym_continue_statement = 268, - sym_break_statement = 269, - sym_return_statement = 270, - sym_throw_expression = 271, - sym_while_statement = 272, - sym_do_statement = 273, - sym_for_statement = 274, - sym__expressions = 275, - sym_sequence_expression = 276, - sym_foreach_statement = 277, - sym_foreach_pair = 278, - sym_if_statement = 279, - sym_colon_block = 280, - sym_else_if_clause = 281, - sym_else_clause = 282, - sym_else_if_clause_2 = 283, - sym_else_clause_2 = 284, - sym_match_expression = 285, - sym_match_block = 286, - sym_match_condition_list = 287, - sym_match_conditional_expression = 288, - sym_match_default_expression = 289, - sym_switch_statement = 290, - sym_switch_block = 291, - sym_case_statement = 292, - sym_default_statement = 293, - sym_compound_statement = 294, - sym_named_label_statement = 295, - sym_expression_statement = 296, - sym__expression = 297, - sym__unary_expression = 298, - sym_unary_op_expression = 299, - sym_error_suppression_expression = 300, - sym_clone_expression = 301, - sym__primary_expression = 302, - sym_parenthesized_expression = 303, - sym_class_constant_access_expression = 304, - sym_print_intrinsic = 305, - sym_anonymous_function_creation_expression = 306, - sym_anonymous_function_use_clause = 307, - sym_object_creation_expression = 308, - sym_update_expression = 309, - sym_cast_expression = 310, - sym_cast_variable = 311, - sym_assignment_expression = 312, - sym_reference_assignment_expression = 313, - sym_conditional_expression = 314, - sym_augmented_assignment_expression = 315, - sym_member_access_expression = 316, - sym_nullsafe_member_access_expression = 317, - sym_scoped_property_access_expression = 318, - sym_list_literal = 319, - sym__list_destructing = 320, - sym__array_destructing = 321, - sym__array_destructing_element = 322, - sym_function_call_expression = 323, - sym_scoped_call_expression = 324, - sym__scope_resolution_qualifier = 325, - sym_relative_scope = 326, - sym_variadic_placeholder = 327, - sym_arguments = 328, - sym_argument = 329, - sym__argument_name = 330, - sym_member_call_expression = 331, - sym_nullsafe_member_call_expression = 332, - sym_variadic_unpacking = 333, - sym_subscript_expression = 334, - sym__dereferencable_expression = 335, - sym_array_creation_expression = 336, - sym_attribute_group = 337, - sym_attribute_list = 338, - sym_attribute = 339, - sym__complex_string_part = 340, - sym__simple_string_member_access_expression = 341, - sym__simple_string_subscript_unary_expression = 342, - sym__simple_string_array_access_argument = 343, - sym__simple_string_subscript_expression = 344, - sym__simple_string_part = 345, - aux_sym__interpolated_string_body = 346, - aux_sym__interpolated_string_body_heredoc = 347, - sym_encapsed_string = 348, - sym_string = 349, - sym_heredoc_body = 350, - sym_heredoc = 351, - sym_nowdoc_body = 352, - sym_nowdoc = 353, - aux_sym__interpolated_execution_operator_body = 354, - sym_shell_command_expression = 355, - sym_boolean = 356, - sym_null = 357, - sym__string = 358, - sym_dynamic_variable_name = 359, - sym_variable_name = 360, - sym_variable_reference = 361, - sym_by_ref = 362, - sym_yield_expression = 363, - sym_array_element_initializer = 364, - sym_binary_expression = 365, - sym_include_expression = 366, - sym_include_once_expression = 367, - sym_require_expression = 368, - sym_require_once_expression = 369, - sym__reserved_identifier = 370, - aux_sym_program_repeat1 = 371, - aux_sym_text_repeat1 = 372, - aux_sym_function_static_declaration_repeat1 = 373, - aux_sym_global_declaration_repeat1 = 374, - aux_sym_namespace_use_declaration_repeat1 = 375, - aux_sym_namespace_name_repeat1 = 376, - aux_sym_namespace_use_group_repeat1 = 377, - aux_sym_base_clause_repeat1 = 378, - aux_sym_enum_declaration_list_repeat1 = 379, - aux_sym_declaration_list_repeat1 = 380, - aux_sym__const_declaration_repeat1 = 381, - aux_sym_property_declaration_repeat1 = 382, - aux_sym_property_declaration_repeat2 = 383, - aux_sym_use_list_repeat1 = 384, - aux_sym_formal_parameters_repeat1 = 385, - aux_sym_union_type_repeat1 = 386, - aux_sym_intersection_type_repeat1 = 387, - aux_sym_disjunctive_normal_form_type_repeat1 = 388, - aux_sym_unset_statement_repeat1 = 389, - aux_sym_try_statement_repeat1 = 390, - aux_sym_type_list_repeat1 = 391, - aux_sym_if_statement_repeat1 = 392, - aux_sym_if_statement_repeat2 = 393, - aux_sym_match_block_repeat1 = 394, - aux_sym_match_condition_list_repeat1 = 395, - aux_sym_switch_block_repeat1 = 396, - aux_sym_anonymous_function_use_clause_repeat1 = 397, - aux_sym__list_destructing_repeat1 = 398, - aux_sym__array_destructing_repeat1 = 399, - aux_sym_arguments_repeat1 = 400, - aux_sym_array_creation_expression_repeat1 = 401, - aux_sym_attribute_group_repeat1 = 402, - aux_sym_attribute_list_repeat1 = 403, - aux_sym_string_repeat1 = 404, - aux_sym_heredoc_body_repeat1 = 405, - aux_sym_nowdoc_body_repeat1 = 406, + sym_statement = 197, + sym_empty_statement = 198, + sym_reference_modifier = 199, + sym_function_static_declaration = 200, + sym_static_variable_declaration = 201, + sym_global_declaration = 202, + sym_namespace_definition = 203, + sym_namespace_use_declaration = 204, + sym_namespace_use_clause = 205, + sym_qualified_name = 206, + sym_namespace_name_as_prefix = 207, + sym_namespace_name = 208, + sym_namespace_aliasing_clause = 209, + sym_namespace_use_group = 210, + sym_namespace_use_group_clause = 211, + sym_trait_declaration = 212, + sym_interface_declaration = 213, + sym_base_clause = 214, + sym_enum_declaration = 215, + sym_enum_declaration_list = 216, + sym__enum_member_declaration = 217, + sym_enum_case = 218, + sym_class_declaration = 219, + sym_declaration_list = 220, + sym_final_modifier = 221, + sym_abstract_modifier = 222, + sym_readonly_modifier = 223, + sym_class_interface_clause = 224, + sym__member_declaration = 225, + sym_const_declaration = 226, + sym__class_const_declaration = 227, + sym__const_declaration = 228, + sym_property_declaration = 229, + sym__modifier = 230, + sym_property_element = 231, + sym_property_initializer = 232, + sym_method_declaration = 233, + sym_static_modifier = 234, + sym_use_declaration = 235, + sym_use_list = 236, + sym_use_instead_of_clause = 237, + sym_use_as_clause = 238, + sym_visibility_modifier = 239, + sym_function_definition = 240, + sym__function_definition_header = 241, + sym__arrow_function_header = 242, + sym_arrow_function = 243, + sym_formal_parameters = 244, + sym_property_promotion_parameter = 245, + sym_simple_parameter = 246, + sym_variadic_parameter = 247, + sym_type = 248, + sym__types = 249, + sym_named_type = 250, + sym_optional_type = 251, + sym_union_type = 252, + sym_intersection_type = 253, + sym_disjunctive_normal_form_type = 254, + sym_primitive_type = 255, + sym_cast_type = 256, + sym__return_type = 257, + sym_const_element = 258, + sym_echo_statement = 259, + sym_exit_statement = 260, + sym_unset_statement = 261, + sym_declare_statement = 262, + sym_declare_directive = 263, + sym_literal = 264, + sym_try_statement = 265, + sym_catch_clause = 266, + sym_type_list = 267, + sym_finally_clause = 268, + sym_goto_statement = 269, + sym_continue_statement = 270, + sym_break_statement = 271, + sym_return_statement = 272, + sym_throw_expression = 273, + sym_while_statement = 274, + sym_do_statement = 275, + sym_for_statement = 276, + sym__expressions = 277, + sym_sequence_expression = 278, + sym_foreach_statement = 279, + sym_foreach_pair = 280, + sym_if_statement = 281, + sym_colon_block = 282, + sym_else_if_clause = 283, + sym_else_clause = 284, + sym_else_if_clause_2 = 285, + sym_else_clause_2 = 286, + sym_match_expression = 287, + sym_match_block = 288, + sym_match_condition_list = 289, + sym_match_conditional_expression = 290, + sym_match_default_expression = 291, + sym_switch_statement = 292, + sym_switch_block = 293, + sym_case_statement = 294, + sym_default_statement = 295, + sym_compound_statement = 296, + sym_named_label_statement = 297, + sym_expression_statement = 298, + sym_expression = 299, + sym__unary_expression = 300, + sym_unary_op_expression = 301, + sym_error_suppression_expression = 302, + sym_clone_expression = 303, + sym_primary_expression = 304, + sym_parenthesized_expression = 305, + sym_class_constant_access_expression = 306, + sym_print_intrinsic = 307, + sym_anonymous_function_creation_expression = 308, + sym_anonymous_function_use_clause = 309, + sym_object_creation_expression = 310, + sym_update_expression = 311, + sym_cast_expression = 312, + sym_cast_variable = 313, + sym_assignment_expression = 314, + sym_reference_assignment_expression = 315, + sym_conditional_expression = 316, + sym_augmented_assignment_expression = 317, + sym_member_access_expression = 318, + sym_nullsafe_member_access_expression = 319, + sym_scoped_property_access_expression = 320, + sym_list_literal = 321, + sym__list_destructing = 322, + sym__array_destructing = 323, + sym__array_destructing_element = 324, + sym_function_call_expression = 325, + sym_scoped_call_expression = 326, + sym__scope_resolution_qualifier = 327, + sym_relative_scope = 328, + sym_variadic_placeholder = 329, + sym_arguments = 330, + sym_argument = 331, + sym__argument_name = 332, + sym_member_call_expression = 333, + sym_nullsafe_member_call_expression = 334, + sym_variadic_unpacking = 335, + sym_subscript_expression = 336, + sym__dereferencable_expression = 337, + sym_array_creation_expression = 338, + sym_attribute_group = 339, + sym_attribute_list = 340, + sym_attribute = 341, + sym__complex_string_part = 342, + sym__simple_string_member_access_expression = 343, + sym__simple_string_subscript_unary_expression = 344, + sym__simple_string_array_access_argument = 345, + sym__simple_string_subscript_expression = 346, + sym__simple_string_part = 347, + aux_sym__interpolated_string_body = 348, + aux_sym__interpolated_string_body_heredoc = 349, + sym_encapsed_string = 350, + sym_string = 351, + sym_heredoc_body = 352, + sym_heredoc = 353, + sym_nowdoc_body = 354, + sym_nowdoc = 355, + aux_sym__interpolated_execution_operator_body = 356, + sym_shell_command_expression = 357, + sym_boolean = 358, + sym_null = 359, + sym__string = 360, + sym_dynamic_variable_name = 361, + sym_variable_name = 362, + sym_variable_reference = 363, + sym_by_ref = 364, + sym_yield_expression = 365, + sym_array_element_initializer = 366, + sym_binary_expression = 367, + sym_include_expression = 368, + sym_include_once_expression = 369, + sym_require_expression = 370, + sym_require_once_expression = 371, + sym__reserved_identifier = 372, + aux_sym_program_repeat1 = 373, + aux_sym_text_repeat1 = 374, + aux_sym_function_static_declaration_repeat1 = 375, + aux_sym_global_declaration_repeat1 = 376, + aux_sym_namespace_use_declaration_repeat1 = 377, + aux_sym_namespace_name_repeat1 = 378, + aux_sym_namespace_use_group_repeat1 = 379, + aux_sym_base_clause_repeat1 = 380, + aux_sym_enum_declaration_list_repeat1 = 381, + aux_sym_class_declaration_repeat1 = 382, + aux_sym_declaration_list_repeat1 = 383, + aux_sym__const_declaration_repeat1 = 384, + aux_sym_property_declaration_repeat1 = 385, + aux_sym_use_list_repeat1 = 386, + aux_sym_formal_parameters_repeat1 = 387, + aux_sym_union_type_repeat1 = 388, + aux_sym_intersection_type_repeat1 = 389, + aux_sym_disjunctive_normal_form_type_repeat1 = 390, + aux_sym_unset_statement_repeat1 = 391, + aux_sym_try_statement_repeat1 = 392, + aux_sym_type_list_repeat1 = 393, + aux_sym_if_statement_repeat1 = 394, + aux_sym_if_statement_repeat2 = 395, + aux_sym_match_block_repeat1 = 396, + aux_sym_match_condition_list_repeat1 = 397, + aux_sym_switch_block_repeat1 = 398, + aux_sym_anonymous_function_use_clause_repeat1 = 399, + aux_sym__list_destructing_repeat1 = 400, + aux_sym__array_destructing_repeat1 = 401, + aux_sym_arguments_repeat1 = 402, + aux_sym_array_creation_expression_repeat1 = 403, + aux_sym_attribute_group_repeat1 = 404, + aux_sym_attribute_list_repeat1 = 405, + aux_sym_string_repeat1 = 406, + aux_sym_heredoc_body_repeat1 = 407, + aux_sym_nowdoc_body_repeat1 = 408, }; static const char * const ts_symbol_names[] = { @@ -562,13 +563,13 @@ static const char * const ts_symbol_names[] = { [aux_sym__argument_name_token2] = "_argument_name_token2", [anon_sym_POUND_LBRACK] = "#[", [sym_escape_sequence] = "escape_sequence", - [anon_sym_BSLASHu] = "string_value", + [anon_sym_BSLASHu] = "string_content", [aux_sym_encapsed_string_token1] = "encapsed_string_token1", [anon_sym_DQUOTE] = "\"", [aux_sym_string_token1] = "string_token1", [anon_sym_SQUOTE] = "'", [aux_sym_string_token2] = "escape_sequence", - [sym_string_value] = "string_value", + [sym_string_content] = "string_content", [anon_sym_LT_LT_LT] = "<<<", [anon_sym_DQUOTE2] = "\"", [sym__new_line] = "_new_line", @@ -609,12 +610,12 @@ static const char * const ts_symbol_names[] = { [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_encapsed_string_chars] = "string_content", + [sym_encapsed_string_chars_after_variable] = "string_content", + [sym_execution_string_chars] = "string_content", + [sym_execution_string_chars_after_variable] = "string_content", + [sym_encapsed_string_chars_heredoc] = "string_content", + [sym_encapsed_string_chars_after_variable_heredoc] = "string_content", [sym__eof] = "_eof", [sym_heredoc_start] = "heredoc_start", [sym_heredoc_end] = "heredoc_end", @@ -623,6 +624,7 @@ static const char * const ts_symbol_names[] = { [sym_program] = "program", [sym_text_interpolation] = "text_interpolation", [sym_text] = "text", + [sym_statement] = "statement", [sym_empty_statement] = "empty_statement", [sym_reference_modifier] = "reference_modifier", [sym_function_static_declaration] = "function_static_declaration", @@ -673,7 +675,7 @@ static const char * const ts_symbol_names[] = { [sym_property_promotion_parameter] = "property_promotion_parameter", [sym_simple_parameter] = "simple_parameter", [sym_variadic_parameter] = "variadic_parameter", - [sym__type] = "_type", + [sym_type] = "type", [sym__types] = "_types", [sym_named_type] = "named_type", [sym_optional_type] = "optional_type", @@ -689,6 +691,7 @@ static const char * const ts_symbol_names[] = { [sym_unset_statement] = "unset_statement", [sym_declare_statement] = "declare_statement", [sym_declare_directive] = "declare_directive", + [sym_literal] = "literal", [sym_try_statement] = "try_statement", [sym_catch_clause] = "catch_clause", [sym_type_list] = "type_list", @@ -723,12 +726,12 @@ static const char * const ts_symbol_names[] = { [sym_compound_statement] = "compound_statement", [sym_named_label_statement] = "named_label_statement", [sym_expression_statement] = "expression_statement", - [sym__expression] = "_expression", + [sym_expression] = "expression", [sym__unary_expression] = "_unary_expression", [sym_unary_op_expression] = "unary_op_expression", [sym_error_suppression_expression] = "error_suppression_expression", [sym_clone_expression] = "clone_expression", - [sym__primary_expression] = "_primary_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", @@ -806,10 +809,10 @@ static const char * const ts_symbol_names[] = { [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_class_declaration_repeat1] = "class_declaration_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", @@ -972,13 +975,13 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__argument_name_token2] = aux_sym__argument_name_token2, [anon_sym_POUND_LBRACK] = anon_sym_POUND_LBRACK, [sym_escape_sequence] = sym_escape_sequence, - [anon_sym_BSLASHu] = sym_string_value, + [anon_sym_BSLASHu] = sym_string_content, [aux_sym_encapsed_string_token1] = aux_sym_encapsed_string_token1, [anon_sym_DQUOTE] = anon_sym_DQUOTE, [aux_sym_string_token1] = aux_sym_string_token1, [anon_sym_SQUOTE] = anon_sym_SQUOTE, [aux_sym_string_token2] = sym_escape_sequence, - [sym_string_value] = sym_string_value, + [sym_string_content] = sym_string_content, [anon_sym_LT_LT_LT] = anon_sym_LT_LT_LT, [anon_sym_DQUOTE2] = anon_sym_DQUOTE, [sym__new_line] = sym__new_line, @@ -1019,12 +1022,12 @@ static const TSSymbol ts_symbol_map[] = { [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_encapsed_string_chars] = sym_string_content, + [sym_encapsed_string_chars_after_variable] = sym_string_content, + [sym_execution_string_chars] = sym_string_content, + [sym_execution_string_chars_after_variable] = sym_string_content, + [sym_encapsed_string_chars_heredoc] = sym_string_content, + [sym_encapsed_string_chars_after_variable_heredoc] = sym_string_content, [sym__eof] = sym__eof, [sym_heredoc_start] = sym_heredoc_start, [sym_heredoc_end] = sym_heredoc_end, @@ -1033,6 +1036,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_program] = sym_program, [sym_text_interpolation] = sym_text_interpolation, [sym_text] = sym_text, + [sym_statement] = sym_statement, [sym_empty_statement] = sym_empty_statement, [sym_reference_modifier] = sym_reference_modifier, [sym_function_static_declaration] = sym_function_static_declaration, @@ -1083,7 +1087,7 @@ static const TSSymbol ts_symbol_map[] = { [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_type] = sym_type, [sym__types] = sym__types, [sym_named_type] = sym_named_type, [sym_optional_type] = sym_optional_type, @@ -1099,6 +1103,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_unset_statement] = sym_unset_statement, [sym_declare_statement] = sym_declare_statement, [sym_declare_directive] = sym_declare_directive, + [sym_literal] = sym_literal, [sym_try_statement] = sym_try_statement, [sym_catch_clause] = sym_catch_clause, [sym_type_list] = sym_type_list, @@ -1133,12 +1138,12 @@ static const TSSymbol ts_symbol_map[] = { [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_expression] = sym_expression, [sym__unary_expression] = sym__unary_expression, [sym_unary_op_expression] = sym_unary_op_expression, [sym_error_suppression_expression] = sym_error_suppression_expression, [sym_clone_expression] = sym_clone_expression, - [sym__primary_expression] = sym__primary_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, @@ -1216,10 +1221,10 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_namespace_use_group_repeat1] = aux_sym_namespace_use_group_repeat1, [aux_sym_base_clause_repeat1] = aux_sym_base_clause_repeat1, [aux_sym_enum_declaration_list_repeat1] = aux_sym_enum_declaration_list_repeat1, + [aux_sym_class_declaration_repeat1] = aux_sym_class_declaration_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, @@ -1814,7 +1819,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_string_value] = { + [sym_string_content] = { .visible = true, .named = true, }, @@ -2034,6 +2039,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_statement] = { + .visible = false, + .named = true, + .supertype = true, + }, [sym_empty_statement] = { .visible = true, .named = true, @@ -2234,7 +2244,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__type] = { + [sym_type] = { .visible = false, .named = true, .supertype = true, @@ -2299,6 +2309,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_literal] = { + .visible = false, + .named = true, + .supertype = true, + }, [sym_try_statement] = { .visible = true, .named = true, @@ -2435,7 +2450,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__expression] = { + [sym_expression] = { .visible = false, .named = true, .supertype = true, @@ -2456,7 +2471,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__primary_expression] = { + [sym_primary_expression] = { .visible = false, .named = true, .supertype = true, @@ -2769,19 +2784,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_declaration_list_repeat1] = { + [aux_sym_class_declaration_repeat1] = { .visible = false, .named = false, }, - [aux_sym__const_declaration_repeat1] = { + [aux_sym_declaration_list_repeat1] = { .visible = false, .named = false, }, - [aux_sym_property_declaration_repeat1] = { + [aux_sym__const_declaration_repeat1] = { .visible = false, .named = false, }, - [aux_sym_property_declaration_repeat2] = { + [aux_sym_property_declaration_repeat1] = { .visible = false, .named = false, }, @@ -2892,21 +2907,20 @@ enum ts_field_identifiers { field_function = 10, field_identifier = 11, field_left = 12, - field_modifier = 13, - field_name = 14, - field_object = 15, - field_operator = 16, - field_parameters = 17, - field_readonly = 18, - field_reference_modifier = 19, - field_return_expression = 20, - field_return_type = 21, - field_right = 22, - field_scope = 23, - field_static_modifier = 24, - field_type = 25, - field_value = 26, - field_visibility = 27, + 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_static_modifier = 23, + field_type = 24, + field_value = 25, + field_visibility = 26, }; static const char * const ts_field_names[] = { @@ -2923,7 +2937,6 @@ static const char * const ts_field_names[] = { [field_function] = "function", [field_identifier] = "identifier", [field_left] = "left", - [field_modifier] = "modifier", [field_name] = "name", [field_object] = "object", [field_operator] = "operator", @@ -2948,180 +2961,174 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [5] = {.index = 4, .length = 2}, [7] = {.index = 6, .length = 2}, [8] = {.index = 8, .length = 2}, - [9] = {.index = 10, .length = 5}, - [10] = {.index = 15, .length = 2}, - [11] = {.index = 17, .length = 1}, - [12] = {.index = 18, .length = 2}, - [13] = {.index = 20, .length = 2}, - [14] = {.index = 22, .length = 2}, - [15] = {.index = 24, .length = 2}, - [16] = {.index = 26, .length = 2}, - [18] = {.index = 28, .length = 2}, - [19] = {.index = 30, .length = 2}, - [20] = {.index = 32, .length = 1}, - [21] = {.index = 33, .length = 5}, - [22] = {.index = 38, .length = 3}, - [23] = {.index = 41, .length = 2}, - [24] = {.index = 43, .length = 2}, - [25] = {.index = 45, .length = 2}, - [26] = {.index = 47, .length = 2}, - [27] = {.index = 49, .length = 6}, - [28] = {.index = 55, .length = 2}, - [29] = {.index = 57, .length = 2}, - [30] = {.index = 59, .length = 2}, - [31] = {.index = 61, .length = 2}, - [32] = {.index = 63, .length = 2}, - [33] = {.index = 65, .length = 3}, - [34] = {.index = 68, .length = 3}, - [35] = {.index = 71, .length = 3}, - [36] = {.index = 74, .length = 1}, - [37] = {.index = 75, .length = 3}, - [38] = {.index = 78, .length = 2}, - [39] = {.index = 80, .length = 1}, - [40] = {.index = 81, .length = 3}, - [41] = {.index = 84, .length = 2}, - [42] = {.index = 86, .length = 3}, - [43] = {.index = 89, .length = 2}, - [44] = {.index = 91, .length = 1}, - [45] = {.index = 92, .length = 3}, - [46] = {.index = 95, .length = 3}, - [47] = {.index = 98, .length = 1}, - [50] = {.index = 99, .length = 3}, + [9] = {.index = 10, .length = 4}, + [10] = {.index = 14, .length = 2}, + [11] = {.index = 16, .length = 1}, + [12] = {.index = 17, .length = 2}, + [13] = {.index = 19, .length = 2}, + [14] = {.index = 21, .length = 2}, + [15] = {.index = 23, .length = 2}, + [16] = {.index = 25, .length = 2}, + [18] = {.index = 27, .length = 2}, + [19] = {.index = 29, .length = 2}, + [20] = {.index = 31, .length = 1}, + [21] = {.index = 32, .length = 5}, + [22] = {.index = 37, .length = 3}, + [23] = {.index = 40, .length = 2}, + [24] = {.index = 42, .length = 2}, + [25] = {.index = 44, .length = 2}, + [26] = {.index = 46, .length = 2}, + [27] = {.index = 48, .length = 5}, + [28] = {.index = 53, .length = 2}, + [29] = {.index = 55, .length = 2}, + [30] = {.index = 57, .length = 2}, + [31] = {.index = 59, .length = 2}, + [32] = {.index = 61, .length = 2}, + [33] = {.index = 63, .length = 3}, + [34] = {.index = 66, .length = 2}, + [35] = {.index = 68, .length = 3}, + [36] = {.index = 71, .length = 1}, + [37] = {.index = 72, .length = 3}, + [38] = {.index = 75, .length = 2}, + [39] = {.index = 77, .length = 1}, + [40] = {.index = 78, .length = 2}, + [41] = {.index = 80, .length = 2}, + [42] = {.index = 82, .length = 3}, + [43] = {.index = 85, .length = 2}, + [44] = {.index = 87, .length = 1}, + [45] = {.index = 88, .length = 3}, + [46] = {.index = 91, .length = 3}, + [47] = {.index = 94, .length = 1}, + [50] = {.index = 95, .length = 3}, [51] = {.index = 1, .length = 1}, - [52] = {.index = 102, .length = 1}, - [53] = {.index = 103, .length = 1}, - [54] = {.index = 104, .length = 3}, - [55] = {.index = 107, .length = 3}, - [56] = {.index = 110, .length = 2}, - [57] = {.index = 112, .length = 2}, - [58] = {.index = 114, .length = 2}, - [59] = {.index = 116, .length = 2}, - [60] = {.index = 118, .length = 3}, - [61] = {.index = 121, .length = 3}, - [62] = {.index = 124, .length = 3}, - [63] = {.index = 127, .length = 3}, - [64] = {.index = 130, .length = 3}, - [65] = {.index = 133, .length = 3}, - [66] = {.index = 136, .length = 2}, - [67] = {.index = 138, .length = 2}, - [68] = {.index = 140, .length = 3}, - [69] = {.index = 143, .length = 3}, - [70] = {.index = 146, .length = 2}, - [71] = {.index = 148, .length = 3}, - [72] = {.index = 151, .length = 2}, - [73] = {.index = 153, .length = 3}, - [74] = {.index = 156, .length = 3}, - [75] = {.index = 159, .length = 3}, - [76] = {.index = 162, .length = 2}, - [77] = {.index = 164, .length = 4}, - [78] = {.index = 168, .length = 4}, - [79] = {.index = 172, .length = 3}, - [80] = {.index = 175, .length = 3}, - [81] = {.index = 178, .length = 2}, - [82] = {.index = 180, .length = 4}, - [83] = {.index = 184, .length = 2}, - [84] = {.index = 186, .length = 2}, - [85] = {.index = 186, .length = 2}, - [86] = {.index = 188, .length = 2}, - [87] = {.index = 190, .length = 4}, - [88] = {.index = 194, .length = 2}, - [89] = {.index = 196, .length = 3}, - [90] = {.index = 199, .length = 4}, - [91] = {.index = 203, .length = 2}, - [92] = {.index = 205, .length = 2}, - [93] = {.index = 207, .length = 3}, - [94] = {.index = 210, .length = 4}, - [95] = {.index = 214, .length = 4}, - [96] = {.index = 218, .length = 4}, - [97] = {.index = 222, .length = 3}, - [98] = {.index = 225, .length = 3}, - [99] = {.index = 228, .length = 1}, - [100] = {.index = 229, .length = 3}, - [102] = {.index = 232, .length = 2}, - [103] = {.index = 234, .length = 4}, - [104] = {.index = 238, .length = 4}, - [105] = {.index = 242, .length = 3}, - [106] = {.index = 245, .length = 3}, - [107] = {.index = 248, .length = 4}, - [108] = {.index = 252, .length = 4}, - [109] = {.index = 256, .length = 4}, - [110] = {.index = 260, .length = 3}, - [111] = {.index = 263, .length = 3}, - [112] = {.index = 266, .length = 3}, - [113] = {.index = 269, .length = 4}, - [114] = {.index = 273, .length = 3}, - [115] = {.index = 276, .length = 3}, - [116] = {.index = 279, .length = 3}, - [117] = {.index = 282, .length = 3}, - [118] = {.index = 285, .length = 4}, - [119] = {.index = 289, .length = 4}, - [120] = {.index = 293, .length = 3}, - [121] = {.index = 296, .length = 4}, - [122] = {.index = 300, .length = 3}, - [123] = {.index = 303, .length = 4}, - [124] = {.index = 307, .length = 3}, - [125] = {.index = 310, .length = 5}, - [126] = {.index = 315, .length = 4}, - [127] = {.index = 319, .length = 5}, - [128] = {.index = 324, .length = 2}, - [129] = {.index = 326, .length = 1}, - [130] = {.index = 327, .length = 2}, - [131] = {.index = 329, .length = 1}, - [134] = {.index = 330, .length = 5}, - [135] = {.index = 335, .length = 3}, - [136] = {.index = 338, .length = 3}, - [137] = {.index = 341, .length = 4}, - [138] = {.index = 345, .length = 5}, - [139] = {.index = 350, .length = 4}, - [140] = {.index = 354, .length = 4}, - [141] = {.index = 358, .length = 3}, - [142] = {.index = 361, .length = 3}, - [143] = {.index = 364, .length = 5}, - [144] = {.index = 369, .length = 4}, - [145] = {.index = 373, .length = 4}, - [146] = {.index = 377, .length = 3}, - [147] = {.index = 377, .length = 3}, - [148] = {.index = 380, .length = 4}, - [149] = {.index = 384, .length = 5}, - [150] = {.index = 389, .length = 5}, - [151] = {.index = 394, .length = 5}, - [152] = {.index = 399, .length = 4}, - [153] = {.index = 403, .length = 4}, - [154] = {.index = 407, .length = 4}, - [155] = {.index = 411, .length = 4}, - [156] = {.index = 415, .length = 4}, - [157] = {.index = 419, .length = 4}, - [158] = {.index = 423, .length = 5}, - [159] = {.index = 428, .length = 4}, - [160] = {.index = 432, .length = 4}, - [161] = {.index = 436, .length = 4}, - [162] = {.index = 440, .length = 1}, - [163] = {.index = 441, .length = 5}, - [164] = {.index = 446, .length = 6}, - [165] = {.index = 452, .length = 2}, - [166] = {.index = 454, .length = 1}, - [167] = {.index = 455, .length = 5}, - [168] = {.index = 460, .length = 3}, - [169] = {.index = 463, .length = 4}, - [170] = {.index = 467, .length = 5}, - [171] = {.index = 472, .length = 5}, - [172] = {.index = 477, .length = 3}, - [173] = {.index = 480, .length = 4}, - [174] = {.index = 484, .length = 5}, - [175] = {.index = 489, .length = 6}, - [176] = {.index = 495, .length = 5}, - [177] = {.index = 500, .length = 5}, - [178] = {.index = 505, .length = 5}, - [179] = {.index = 510, .length = 5}, - [180] = {.index = 515, .length = 5}, - [181] = {.index = 520, .length = 5}, - [182] = {.index = 525, .length = 2}, - [183] = {.index = 527, .length = 2}, - [184] = {.index = 529, .length = 3}, - [185] = {.index = 532, .length = 5}, - [186] = {.index = 537, .length = 6}, - [187] = {.index = 543, .length = 6}, - [188] = {.index = 549, .length = 3}, + [52] = {.index = 98, .length = 1}, + [53] = {.index = 99, .length = 1}, + [54] = {.index = 100, .length = 3}, + [55] = {.index = 103, .length = 2}, + [56] = {.index = 105, .length = 2}, + [57] = {.index = 107, .length = 2}, + [58] = {.index = 109, .length = 2}, + [59] = {.index = 111, .length = 3}, + [60] = {.index = 114, .length = 3}, + [61] = {.index = 117, .length = 3}, + [62] = {.index = 120, .length = 3}, + [63] = {.index = 123, .length = 3}, + [64] = {.index = 126, .length = 3}, + [65] = {.index = 129, .length = 2}, + [66] = {.index = 131, .length = 2}, + [67] = {.index = 133, .length = 2}, + [68] = {.index = 135, .length = 3}, + [69] = {.index = 138, .length = 3}, + [70] = {.index = 141, .length = 2}, + [71] = {.index = 143, .length = 3}, + [72] = {.index = 146, .length = 2}, + [73] = {.index = 148, .length = 3}, + [74] = {.index = 151, .length = 3}, + [75] = {.index = 154, .length = 3}, + [76] = {.index = 157, .length = 2}, + [77] = {.index = 159, .length = 3}, + [78] = {.index = 162, .length = 4}, + [79] = {.index = 166, .length = 3}, + [80] = {.index = 169, .length = 3}, + [81] = {.index = 172, .length = 1}, + [82] = {.index = 173, .length = 3}, + [83] = {.index = 176, .length = 2}, + [84] = {.index = 178, .length = 2}, + [85] = {.index = 178, .length = 2}, + [86] = {.index = 180, .length = 2}, + [87] = {.index = 182, .length = 4}, + [88] = {.index = 186, .length = 2}, + [89] = {.index = 188, .length = 3}, + [90] = {.index = 191, .length = 4}, + [91] = {.index = 195, .length = 2}, + [92] = {.index = 197, .length = 2}, + [93] = {.index = 199, .length = 4}, + [94] = {.index = 203, .length = 4}, + [95] = {.index = 207, .length = 3}, + [96] = {.index = 210, .length = 3}, + [97] = {.index = 213, .length = 3}, + [99] = {.index = 216, .length = 2}, + [100] = {.index = 218, .length = 4}, + [101] = {.index = 222, .length = 4}, + [102] = {.index = 226, .length = 3}, + [103] = {.index = 229, .length = 3}, + [104] = {.index = 232, .length = 4}, + [105] = {.index = 236, .length = 4}, + [106] = {.index = 240, .length = 3}, + [107] = {.index = 243, .length = 3}, + [108] = {.index = 246, .length = 3}, + [109] = {.index = 249, .length = 1}, + [110] = {.index = 250, .length = 2}, + [111] = {.index = 252, .length = 3}, + [112] = {.index = 255, .length = 4}, + [113] = {.index = 259, .length = 3}, + [114] = {.index = 262, .length = 3}, + [115] = {.index = 265, .length = 3}, + [116] = {.index = 268, .length = 3}, + [117] = {.index = 271, .length = 4}, + [118] = {.index = 275, .length = 4}, + [119] = {.index = 279, .length = 3}, + [120] = {.index = 282, .length = 4}, + [121] = {.index = 286, .length = 3}, + [122] = {.index = 289, .length = 4}, + [123] = {.index = 293, .length = 2}, + [124] = {.index = 295, .length = 4}, + [125] = {.index = 299, .length = 3}, + [126] = {.index = 302, .length = 4}, + [127] = {.index = 306, .length = 2}, + [128] = {.index = 308, .length = 1}, + [129] = {.index = 309, .length = 2}, + [130] = {.index = 311, .length = 1}, + [133] = {.index = 312, .length = 5}, + [134] = {.index = 317, .length = 3}, + [135] = {.index = 320, .length = 5}, + [136] = {.index = 325, .length = 4}, + [137] = {.index = 329, .length = 4}, + [138] = {.index = 333, .length = 3}, + [139] = {.index = 336, .length = 3}, + [140] = {.index = 339, .length = 5}, + [141] = {.index = 344, .length = 4}, + [142] = {.index = 348, .length = 4}, + [143] = {.index = 352, .length = 3}, + [144] = {.index = 352, .length = 3}, + [145] = {.index = 355, .length = 5}, + [146] = {.index = 360, .length = 5}, + [147] = {.index = 365, .length = 4}, + [148] = {.index = 369, .length = 4}, + [149] = {.index = 373, .length = 3}, + [150] = {.index = 376, .length = 2}, + [151] = {.index = 378, .length = 4}, + [152] = {.index = 382, .length = 4}, + [153] = {.index = 386, .length = 4}, + [154] = {.index = 390, .length = 4}, + [155] = {.index = 394, .length = 5}, + [156] = {.index = 399, .length = 4}, + [157] = {.index = 403, .length = 4}, + [158] = {.index = 407, .length = 4}, + [159] = {.index = 411, .length = 1}, + [160] = {.index = 412, .length = 4}, + [161] = {.index = 416, .length = 5}, + [162] = {.index = 421, .length = 2}, + [163] = {.index = 423, .length = 1}, + [164] = {.index = 424, .length = 5}, + [165] = {.index = 429, .length = 3}, + [166] = {.index = 432, .length = 5}, + [167] = {.index = 437, .length = 5}, + [168] = {.index = 442, .length = 3}, + [169] = {.index = 445, .length = 6}, + [170] = {.index = 451, .length = 5}, + [171] = {.index = 456, .length = 5}, + [172] = {.index = 461, .length = 3}, + [173] = {.index = 464, .length = 5}, + [174] = {.index = 469, .length = 5}, + [175] = {.index = 474, .length = 5}, + [176] = {.index = 479, .length = 5}, + [177] = {.index = 484, .length = 2}, + [178] = {.index = 486, .length = 2}, + [179] = {.index = 488, .length = 3}, + [180] = {.index = 491, .length = 6}, + [181] = {.index = 497, .length = 6}, + [182] = {.index = 503, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3146,712 +3153,660 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {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}, - [15] = + [14] = {field_argument, 0}, {field_operator, 1}, - [17] = + [16] = {field_name, 1}, - [18] = + [17] = {field_body, 2}, {field_name, 1}, - [20] = + [19] = {field_name, 1}, {field_parameters, 2}, - [22] = + [21] = {field_body, 2}, {field_parameters, 1}, - [24] = + [23] = {field_parameters, 2}, {field_reference_modifier, 1}, - [26] = + [25] = {field_parameters, 1}, {field_return_type, 2, .inherited = true}, - [28] = + [27] = {field_body, 2}, {field_condition, 1}, - [30] = + [29] = {field_end_tag, 2}, {field_identifier, 1}, - [32] = + [31] = {field_parameters, 2}, - [33] = + [32] = {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}, - [38] = + [37] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [41] = + [40] = {field_left, 0}, {field_right, 2}, - [43] = + [42] = {field_name, 2}, {field_scope, 0}, - [45] = + [44] = {field_name, 2}, {field_object, 0}, - [47] = + [46] = {field_attributes, 0}, {field_parameters, 2}, - [49] = + [48] = {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}, - [55] = + [53] = {field_name, 0}, {field_value, 2}, - [57] = + [55] = {field_name, 1}, {field_reference_modifier, 0}, - [59] = + [57] = {field_name, 1}, {field_visibility, 0}, - [61] = + [59] = {field_name, 1}, {field_type, 0}, - [63] = + [61] = {field_attributes, 0}, {field_name, 1}, - [65] = + [63] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 3, .inherited = true}, - [68] = + [66] = {field_name, 2}, {field_parameters, 3}, - {field_reference_modifier, 1}, - [71] = + [68] = {field_body, 3}, {field_parameters, 2}, {field_reference_modifier, 1}, - [74] = + [71] = {field_return_type, 1}, - [75] = + [72] = {field_body, 3}, {field_parameters, 1}, {field_return_type, 2, .inherited = true}, - [78] = + [75] = {field_body, 3}, {field_parameters, 1}, - [80] = + [77] = {field_type, 1}, - [81] = + [78] = {field_attributes, 0, .inherited = true}, - {field_modifier, 0, .inherited = true}, {field_type, 0, .inherited = true}, - [84] = + [80] = {field_body, 3}, {field_name, 1}, - [86] = + [82] = {field_parameters, 2}, {field_reference_modifier, 1}, {field_return_type, 3, .inherited = true}, - [89] = + [85] = {field_type, 1}, {field_value, 3}, - [91] = + [87] = {field_alternative, 0}, - [92] = + [88] = {field_alternative, 3}, {field_body, 2}, {field_condition, 1}, - [95] = + [91] = {field_alternative, 3, .inherited = true}, {field_body, 2}, {field_condition, 1}, - [98] = + [94] = {field_attributes, 1}, - [99] = + [95] = {field_end_tag, 3}, {field_identifier, 1}, {field_value, 2}, - [102] = + [98] = {field_reference_modifier, 0}, - [103] = + [99] = {field_name, 0, .inherited = true}, - [104] = - {field_body, 3}, - {field_modifier, 0}, - {field_name, 2}, - [107] = + [100] = {field_body, 3}, {field_parameters, 2}, {field_static_modifier, 0}, - [110] = + [103] = {field_parameters, 3}, {field_reference_modifier, 2}, - [112] = + [105] = {field_parameters, 2}, {field_return_type, 3, .inherited = true}, - [114] = + [107] = {field_alternative, 3}, {field_condition, 0}, - [116] = + [109] = {field_left, 0}, {field_right, 3}, - [118] = + [111] = {field_arguments, 3}, {field_name, 2}, {field_scope, 0}, - [121] = + [114] = {field_arguments, 3}, {field_name, 2}, {field_object, 0}, - [124] = + [117] = {field_attributes, 0}, {field_body, 3}, {field_parameters, 2}, - [127] = + [120] = {field_attributes, 0}, {field_body, 3}, {field_name, 2}, - [130] = + [123] = {field_attributes, 0}, {field_parameters, 3}, {field_reference_modifier, 2}, - [133] = + [126] = {field_attributes, 0}, {field_parameters, 2}, {field_return_type, 3, .inherited = true}, - [136] = + [129] = {field_attributes, 0}, {field_parameters, 3}, - [138] = + [131] = + {field_body, 3}, + {field_name, 2}, + [133] = {field_name, 2}, {field_reference_modifier, 0}, - [140] = + [135] = {field_name, 2}, {field_readonly, 1}, {field_visibility, 0}, - [143] = + [138] = {field_name, 2}, {field_type, 1}, {field_visibility, 0}, - [146] = + [141] = {field_name, 2}, {field_type, 0}, - [148] = + [143] = {field_name, 2}, {field_reference_modifier, 1}, {field_type, 0}, - [151] = + [146] = {field_attributes, 0}, {field_name, 2}, - [153] = + [148] = {field_attributes, 0}, {field_name, 2}, {field_reference_modifier, 1}, - [156] = + [151] = {field_attributes, 0}, {field_name, 2}, {field_visibility, 1}, - [159] = + [154] = {field_attributes, 0}, {field_name, 2}, {field_type, 1}, - [162] = + [157] = {field_default_value, 2}, {field_name, 0}, - [164] = + [159] = {field_name, 2}, {field_parameters, 3}, - {field_reference_modifier, 1}, {field_return_type, 4, .inherited = true}, - [168] = + [162] = {field_body, 4}, {field_parameters, 2}, {field_reference_modifier, 1}, {field_return_type, 3, .inherited = true}, - [172] = + [166] = {field_body, 4}, {field_parameters, 2}, {field_reference_modifier, 1}, - [175] = + [169] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 3, .inherited = true}, - [178] = - {field_modifier, 0}, + [172] = {field_type, 1, .inherited = true}, - [180] = + [173] = {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, - {field_reference_modifier, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, - [184] = + [176] = {field_attributes, 0}, {field_type, 1, .inherited = true}, - [186] = + [178] = {field_body, 4}, {field_name, 1}, - [188] = + [180] = {field_body, 1}, {field_condition, 3}, - [190] = + [182] = {field_alternative, 3, .inherited = true}, {field_alternative, 4}, {field_body, 2}, {field_condition, 1}, - [194] = + [186] = {field_alternative, 0, .inherited = true}, {field_alternative, 1, .inherited = true}, - [196] = + [188] = {field_end_tag, 4}, {field_identifier, 1}, {field_value, 2}, - [199] = + [191] = {field_end_tag, 4}, {field_identifier, 1}, {field_identifier, 2}, {field_identifier, 3}, - [203] = + [195] = {field_end_tag, 4}, {field_identifier, 2}, - [205] = + [197] = {field_name, 0, .inherited = true}, {field_reference_modifier, 1}, - [207] = - {field_body, 4}, - {field_modifier, 0}, - {field_name, 2}, - [210] = - {field_body, 4}, - {field_modifier, 0}, - {field_modifier, 1}, - {field_name, 3}, - [214] = + [199] = {field_body, 4}, {field_parameters, 3}, {field_reference_modifier, 2}, {field_static_modifier, 0}, - [218] = + [203] = {field_body, 4}, {field_parameters, 2}, {field_return_type, 3, .inherited = true}, {field_static_modifier, 0}, - [222] = + [207] = {field_body, 4}, {field_parameters, 2}, {field_static_modifier, 0}, - [225] = + [210] = {field_parameters, 3}, {field_reference_modifier, 2}, {field_return_type, 4, .inherited = true}, - [228] = - {field_type, 2}, - [229] = + [213] = {field_alternative, 4}, {field_body, 2}, {field_condition, 0}, - [232] = + [216] = {field_name, 3}, {field_object, 0}, - [234] = + [218] = {field_attributes, 0}, {field_body, 4}, {field_parameters, 3}, {field_reference_modifier, 2}, - [238] = + [222] = {field_attributes, 0}, {field_body, 4}, {field_parameters, 2}, {field_return_type, 3, .inherited = true}, - [242] = + [226] = {field_attributes, 0}, {field_body, 4}, {field_parameters, 2}, - [245] = + [229] = {field_attributes, 0}, {field_body, 4}, {field_name, 2}, - [248] = + [232] = {field_attributes, 0}, {field_parameters, 3}, {field_reference_modifier, 2}, {field_return_type, 4, .inherited = true}, - [252] = - {field_attributes, 0}, - {field_body, 4}, - {field_modifier, 1}, - {field_name, 3}, - [256] = + [236] = {field_attributes, 0}, {field_body, 4}, {field_parameters, 3}, {field_static_modifier, 1}, - [260] = + [240] = {field_attributes, 0}, {field_parameters, 4}, {field_reference_modifier, 3}, - [263] = + [243] = {field_attributes, 0}, {field_parameters, 3}, {field_return_type, 4, .inherited = true}, - [266] = + [246] = + {field_attributes, 0}, + {field_body, 4}, + {field_name, 3}, + [249] = + {field_type, 2}, + [250] = + {field_body, 4}, + {field_name, 2}, + [252] = {field_default_value, 3}, {field_name, 1}, {field_reference_modifier, 0}, - [269] = + [255] = {field_name, 3}, {field_readonly, 1}, {field_type, 2}, {field_visibility, 0}, - [273] = + [259] = {field_default_value, 3}, {field_name, 1}, {field_visibility, 0}, - [276] = + [262] = {field_name, 3}, {field_reference_modifier, 1}, {field_type, 0}, - [279] = + [265] = {field_default_value, 3}, {field_name, 1}, {field_type, 0}, - [282] = + [268] = {field_attributes, 0}, {field_name, 3}, {field_reference_modifier, 1}, - [285] = + [271] = {field_attributes, 0}, {field_name, 3}, {field_readonly, 2}, {field_visibility, 1}, - [289] = + [275] = {field_attributes, 0}, {field_name, 3}, {field_type, 2}, {field_visibility, 1}, - [293] = + [279] = {field_attributes, 0}, {field_name, 3}, {field_type, 1}, - [296] = + [282] = {field_attributes, 0}, {field_name, 3}, {field_reference_modifier, 2}, {field_type, 1}, - [300] = + [286] = {field_attributes, 0}, {field_default_value, 3}, {field_name, 1}, - [303] = + [289] = {field_body, 5}, {field_parameters, 2}, {field_reference_modifier, 1}, {field_return_type, 4, .inherited = true}, - [307] = + [293] = {field_attributes, 0}, - {field_modifier, 1}, {field_type, 2, .inherited = true}, - [310] = + [295] = {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}, - [315] = + [299] = {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, - {field_reference_modifier, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, - [319] = + [302] = {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}, - [324] = + [306] = {field_body, 5}, {field_name, 1}, - [326] = + [308] = {field_return_expression, 2}, - [327] = + [309] = {field_conditional_expressions, 0}, {field_return_expression, 2}, - [329] = + [311] = {field_value, 1}, - [330] = + [312] = {field_end_tag, 5}, {field_identifier, 1}, {field_identifier, 2}, {field_identifier, 3}, {field_value, 4}, - [335] = + [317] = {field_end_tag, 5}, {field_identifier, 2}, {field_value, 4}, - [338] = - {field_body, 5}, - {field_modifier, 0}, - {field_name, 2}, - [341] = - {field_body, 5}, - {field_modifier, 0}, - {field_modifier, 1}, - {field_name, 3}, - [345] = + [320] = {field_body, 5}, {field_parameters, 3}, {field_reference_modifier, 2}, {field_return_type, 4, .inherited = true}, {field_static_modifier, 0}, - [350] = + [325] = {field_body, 5}, {field_parameters, 3}, {field_reference_modifier, 2}, {field_static_modifier, 0}, - [354] = + [329] = {field_body, 5}, {field_parameters, 2}, {field_return_type, 4, .inherited = true}, {field_static_modifier, 0}, - [358] = + [333] = {field_arguments, 5}, {field_name, 3}, {field_scope, 0}, - [361] = + [336] = {field_arguments, 5}, {field_name, 3}, {field_object, 0}, - [364] = + [339] = {field_attributes, 0}, {field_body, 5}, {field_parameters, 3}, {field_reference_modifier, 2}, {field_return_type, 4, .inherited = true}, - [369] = + [344] = {field_attributes, 0}, {field_body, 5}, {field_parameters, 3}, {field_reference_modifier, 2}, - [373] = + [348] = {field_attributes, 0}, {field_body, 5}, {field_parameters, 2}, {field_return_type, 4, .inherited = true}, - [377] = + [352] = {field_attributes, 0}, {field_body, 5}, {field_name, 2}, - [380] = - {field_attributes, 0}, - {field_body, 5}, - {field_modifier, 1}, - {field_name, 3}, - [384] = - {field_attributes, 0}, - {field_body, 5}, - {field_modifier, 1}, - {field_modifier, 2}, - {field_name, 4}, - [389] = + [355] = {field_attributes, 0}, {field_body, 5}, {field_parameters, 4}, {field_reference_modifier, 3}, {field_static_modifier, 1}, - [394] = + [360] = {field_attributes, 0}, {field_body, 5}, {field_parameters, 3}, {field_return_type, 4, .inherited = true}, {field_static_modifier, 1}, - [399] = + [365] = {field_attributes, 0}, {field_body, 5}, {field_parameters, 3}, {field_static_modifier, 1}, - [403] = + [369] = {field_attributes, 0}, {field_parameters, 4}, {field_reference_modifier, 3}, {field_return_type, 5, .inherited = true}, - [407] = + [373] = + {field_attributes, 0}, + {field_body, 5}, + {field_name, 3}, + [376] = + {field_body, 5}, + {field_name, 2}, + [378] = {field_default_value, 4}, {field_name, 2}, {field_readonly, 1}, {field_visibility, 0}, - [411] = + [382] = {field_default_value, 4}, {field_name, 2}, {field_type, 1}, {field_visibility, 0}, - [415] = + [386] = {field_default_value, 4}, {field_name, 2}, {field_reference_modifier, 1}, {field_type, 0}, - [419] = + [390] = {field_attributes, 0}, {field_default_value, 4}, {field_name, 2}, {field_reference_modifier, 1}, - [423] = + [394] = {field_attributes, 0}, {field_name, 4}, {field_readonly, 2}, {field_type, 3}, {field_visibility, 1}, - [428] = + [399] = {field_attributes, 0}, {field_default_value, 4}, {field_name, 2}, {field_visibility, 1}, - [432] = + [403] = {field_attributes, 0}, {field_name, 4}, {field_reference_modifier, 2}, {field_type, 1}, - [436] = + [407] = {field_attributes, 0}, {field_default_value, 4}, {field_name, 2}, {field_type, 1}, - [440] = + [411] = {field_attributes, 0}, - [441] = + [412] = {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}, - [446] = + [416] = {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}, - [452] = + [421] = {field_body, 4}, {field_type, 2}, - [454] = + [423] = {field_body, 6}, - [455] = + [424] = {field_end_tag, 6}, {field_identifier, 1}, {field_identifier, 2}, {field_identifier, 3}, {field_value, 4}, - [460] = + [429] = {field_end_tag, 6}, {field_identifier, 2}, {field_value, 4}, - [463] = - {field_body, 6}, - {field_modifier, 0}, - {field_modifier, 1}, - {field_name, 3}, - [467] = + [432] = {field_body, 6}, {field_parameters, 3}, {field_reference_modifier, 2}, {field_return_type, 5, .inherited = true}, {field_static_modifier, 0}, - [472] = + [437] = {field_attributes, 0}, {field_body, 6}, {field_parameters, 3}, {field_reference_modifier, 2}, {field_return_type, 5, .inherited = true}, - [477] = + [442] = {field_attributes, 0}, {field_body, 6}, {field_name, 2}, - [480] = - {field_attributes, 0}, - {field_body, 6}, - {field_modifier, 1}, - {field_name, 3}, - [484] = - {field_attributes, 0}, - {field_body, 6}, - {field_modifier, 1}, - {field_modifier, 2}, - {field_name, 4}, - [489] = + [445] = {field_attributes, 0}, {field_body, 6}, {field_parameters, 4}, {field_reference_modifier, 3}, {field_return_type, 5, .inherited = true}, {field_static_modifier, 1}, - [495] = + [451] = {field_attributes, 0}, {field_body, 6}, {field_parameters, 4}, {field_reference_modifier, 3}, {field_static_modifier, 1}, - [500] = + [456] = {field_attributes, 0}, {field_body, 6}, {field_parameters, 3}, {field_return_type, 5, .inherited = true}, {field_static_modifier, 1}, - [505] = + [461] = + {field_attributes, 0}, + {field_body, 6}, + {field_name, 3}, + [464] = {field_default_value, 5}, {field_name, 3}, {field_readonly, 1}, {field_type, 2}, {field_visibility, 0}, - [510] = + [469] = {field_attributes, 0}, {field_default_value, 5}, {field_name, 3}, {field_readonly, 2}, {field_visibility, 1}, - [515] = + [474] = {field_attributes, 0}, {field_default_value, 5}, {field_name, 3}, {field_type, 2}, {field_visibility, 1}, - [520] = + [479] = {field_attributes, 0}, {field_default_value, 5}, {field_name, 3}, {field_reference_modifier, 2}, {field_type, 1}, - [525] = + [484] = {field_attributes, 0}, {field_type, 2}, - [527] = + [486] = {field_name, 1}, {field_value, 3}, - [529] = + [488] = {field_body, 5}, {field_name, 3}, {field_type, 2}, - [532] = - {field_attributes, 0}, - {field_body, 7}, - {field_modifier, 1}, - {field_modifier, 2}, - {field_name, 4}, - [537] = + [491] = {field_attributes, 0}, {field_body, 7}, {field_parameters, 4}, {field_reference_modifier, 3}, {field_return_type, 6, .inherited = true}, {field_static_modifier, 1}, - [543] = + [497] = {field_attributes, 0}, {field_default_value, 6}, {field_name, 4}, {field_readonly, 2}, {field_type, 3}, {field_visibility, 1}, - [549] = + [503] = {field_attributes, 0}, {field_name, 2}, {field_value, 4}, @@ -3877,29 +3832,29 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [84] = { [3] = sym_primitive_type, }, - [101] = { + [98] = { [3] = sym_name, }, - [128] = { + [127] = { [3] = sym_primitive_type, }, - [132] = { + [131] = { [3] = sym_list_literal, }, - [133] = { + [132] = { [4] = sym_list_literal, }, - [146] = { + [143] = { [4] = sym_primitive_type, }, - [172] = { + [168] = { [4] = sym_primitive_type, }, }; static const uint16_t ts_non_terminal_alias_map[] = { - sym__expression, 2, - sym__expression, + sym_expression, 2, + sym_expression, sym_name, sym__list_destructing, 2, sym__list_destructing, @@ -3918,11 +3873,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4] = 4, [5] = 5, [6] = 6, - [7] = 2, + [7] = 7, [8] = 8, [9] = 8, - [10] = 10, - [11] = 10, + [10] = 2, + [11] = 7, [12] = 12, [13] = 12, [14] = 12, @@ -3932,415 +3887,415 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [18] = 18, [19] = 19, [20] = 20, - [21] = 21, + [21] = 16, [22] = 22, [23] = 23, - [24] = 24, - [25] = 16, + [24] = 18, + [25] = 23, [26] = 26, - [27] = 27, + [27] = 22, [28] = 28, - [29] = 18, - [30] = 30, + [29] = 29, + [30] = 26, [31] = 31, - [32] = 19, - [33] = 28, + [32] = 16, + [33] = 23, [34] = 34, - [35] = 35, - [36] = 36, - [37] = 37, - [38] = 38, - [39] = 39, - [40] = 35, - [41] = 17, - [42] = 24, - [43] = 21, - [44] = 16, - [45] = 24, - [46] = 18, - [47] = 36, - [48] = 21, - [49] = 49, - [50] = 30, - [51] = 27, - [52] = 30, - [53] = 31, - [54] = 16, - [55] = 28, - [56] = 38, - [57] = 28, - [58] = 18, - [59] = 26, - [60] = 39, - [61] = 37, - [62] = 36, - [63] = 30, - [64] = 24, - [65] = 23, - [66] = 39, - [67] = 35, - [68] = 39, - [69] = 21, - [70] = 22, + [35] = 16, + [36] = 34, + [37] = 26, + [38] = 20, + [39] = 31, + [40] = 40, + [41] = 40, + [42] = 26, + [43] = 43, + [44] = 22, + [45] = 18, + [46] = 46, + [47] = 46, + [48] = 23, + [49] = 34, + [50] = 34, + [51] = 19, + [52] = 52, + [53] = 20, + [54] = 19, + [55] = 55, + [56] = 56, + [57] = 20, + [58] = 58, + [59] = 52, + [60] = 60, + [61] = 18, + [62] = 31, + [63] = 63, + [64] = 22, + [65] = 19, + [66] = 55, + [67] = 31, + [68] = 60, + [69] = 69, + [70] = 69, [71] = 71, - [72] = 72, - [73] = 35, - [74] = 36, - [75] = 20, + [72] = 58, + [73] = 29, + [74] = 28, + [75] = 56, [76] = 76, - [77] = 76, - [78] = 78, - [79] = 78, - [80] = 78, - [81] = 81, - [82] = 78, - [83] = 81, + [77] = 77, + [78] = 76, + [79] = 79, + [80] = 77, + [81] = 79, + [82] = 79, + [83] = 79, [84] = 84, [85] = 84, [86] = 84, [87] = 84, [88] = 88, - [89] = 89, - [90] = 89, - [91] = 88, - [92] = 89, + [89] = 88, + [90] = 88, + [91] = 91, + [92] = 91, [93] = 88, - [94] = 89, + [94] = 91, [95] = 88, [96] = 88, - [97] = 89, - [98] = 89, - [99] = 99, - [100] = 99, + [97] = 91, + [98] = 91, + [99] = 88, + [100] = 100, [101] = 101, - [102] = 101, - [103] = 99, - [104] = 101, - [105] = 101, - [106] = 99, + [102] = 100, + [103] = 101, + [104] = 100, + [105] = 100, + [106] = 100, [107] = 101, - [108] = 101, - [109] = 99, - [110] = 101, + [108] = 100, + [109] = 100, + [110] = 100, [111] = 101, - [112] = 112, + [112] = 101, [113] = 113, - [114] = 114, - [115] = 113, - [116] = 113, - [117] = 112, - [118] = 112, - [119] = 119, - [120] = 113, - [121] = 112, - [122] = 112, + [114] = 113, + [115] = 115, + [116] = 116, + [117] = 113, + [118] = 115, + [119] = 116, + [120] = 116, + [121] = 116, + [122] = 113, [123] = 113, [124] = 113, - [125] = 114, - [126] = 112, + [125] = 125, + [126] = 116, [127] = 113, [128] = 113, - [129] = 112, - [130] = 112, - [131] = 119, - [132] = 132, + [129] = 116, + [130] = 116, + [131] = 116, + [132] = 125, [133] = 133, [134] = 134, - [135] = 134, - [136] = 133, + [135] = 135, + [136] = 136, [137] = 137, [138] = 138, - [139] = 139, - [140] = 138, - [141] = 139, - [142] = 132, - [143] = 143, + [139] = 136, + [140] = 133, + [141] = 134, + [142] = 138, + [143] = 135, [144] = 144, [145] = 145, [146] = 146, [147] = 147, - [148] = 146, - [149] = 149, - [150] = 144, - [151] = 147, - [152] = 143, - [153] = 153, + [148] = 148, + [149] = 147, + [150] = 146, + [151] = 144, + [152] = 152, + [153] = 152, [154] = 154, [155] = 155, [156] = 156, [157] = 157, [158] = 158, - [159] = 159, - [160] = 159, - [161] = 158, + [159] = 157, + [160] = 158, + [161] = 161, [162] = 162, - [163] = 162, - [164] = 158, - [165] = 165, - [166] = 159, + [163] = 163, + [164] = 161, + [165] = 162, + [166] = 157, [167] = 167, - [168] = 156, - [169] = 165, - [170] = 162, - [171] = 156, - [172] = 167, - [173] = 165, - [174] = 156, - [175] = 157, - [176] = 162, - [177] = 157, + [168] = 168, + [169] = 167, + [170] = 163, + [171] = 168, + [172] = 158, + [173] = 161, + [174] = 167, + [175] = 162, + [176] = 163, + [177] = 158, [178] = 157, - [179] = 167, - [180] = 167, - [181] = 159, - [182] = 165, - [183] = 158, - [184] = 184, + [179] = 168, + [180] = 162, + [181] = 167, + [182] = 168, + [183] = 163, + [184] = 161, [185] = 185, [186] = 186, [187] = 187, [188] = 188, - [189] = 185, - [190] = 186, + [189] = 189, + [190] = 190, [191] = 191, - [192] = 185, + [192] = 192, [193] = 185, - [194] = 188, - [195] = 184, - [196] = 187, - [197] = 197, + [194] = 185, + [195] = 185, + [196] = 186, + [197] = 190, [198] = 185, [199] = 185, [200] = 200, - [201] = 201, - [202] = 202, + [201] = 188, + [202] = 191, [203] = 203, - [204] = 203, + [204] = 204, [205] = 205, - [206] = 203, + [206] = 206, [207] = 207, - [208] = 208, - [209] = 209, - [210] = 208, + [208] = 204, + [209] = 205, + [210] = 210, [211] = 207, - [212] = 203, - [213] = 203, - [214] = 214, - [215] = 207, - [216] = 214, - [217] = 214, - [218] = 202, - [219] = 203, - [220] = 202, - [221] = 207, - [222] = 222, - [223] = 214, + [212] = 205, + [213] = 206, + [214] = 203, + [215] = 203, + [216] = 205, + [217] = 204, + [218] = 204, + [219] = 204, + [220] = 220, + [221] = 206, + [222] = 204, + [223] = 206, [224] = 224, [225] = 225, [226] = 226, [227] = 227, [228] = 228, [229] = 229, - [230] = 227, + [230] = 230, [231] = 231, [232] = 232, - [233] = 228, + [233] = 233, [234] = 234, - [235] = 235, + [235] = 230, [236] = 236, [237] = 237, [238] = 238, - [239] = 239, + [239] = 226, [240] = 240, [241] = 241, [242] = 242, - [243] = 243, + [243] = 228, [244] = 244, [245] = 245, [246] = 246, [247] = 247, - [248] = 229, + [248] = 234, [249] = 249, - [250] = 224, + [250] = 231, [251] = 251, - [252] = 252, + [252] = 242, [253] = 253, [254] = 254, [255] = 255, - [256] = 255, + [256] = 256, [257] = 257, - [258] = 254, - [259] = 253, - [260] = 252, - [261] = 261, - [262] = 226, + [258] = 258, + [259] = 259, + [260] = 231, + [261] = 225, + [262] = 262, [263] = 263, [264] = 264, - [265] = 265, - [266] = 266, - [267] = 225, - [268] = 268, - [269] = 269, - [270] = 270, - [271] = 271, + [265] = 249, + [266] = 247, + [267] = 238, + [268] = 233, + [269] = 232, + [270] = 229, + [271] = 227, [272] = 272, [273] = 273, - [274] = 274, + [274] = 254, [275] = 275, [276] = 276, - [277] = 277, - [278] = 278, - [279] = 279, - [280] = 280, - [281] = 246, - [282] = 282, - [283] = 261, - [284] = 251, - [285] = 243, + [277] = 242, + [278] = 264, + [279] = 237, + [280] = 263, + [281] = 257, + [282] = 262, + [283] = 255, + [284] = 284, + [285] = 285, [286] = 286, - [287] = 280, - [288] = 288, - [289] = 278, - [290] = 277, - [291] = 291, - [292] = 232, - [293] = 249, - [294] = 243, - [295] = 276, - [296] = 275, - [297] = 297, - [298] = 298, - [299] = 274, - [300] = 273, - [301] = 272, - [302] = 264, - [303] = 271, + [287] = 234, + [288] = 225, + [289] = 289, + [290] = 259, + [291] = 245, + [292] = 292, + [293] = 273, + [294] = 294, + [295] = 259, + [296] = 225, + [297] = 262, + [298] = 245, + [299] = 240, + [300] = 300, + [301] = 263, + [302] = 241, + [303] = 264, [304] = 304, - [305] = 270, - [306] = 269, - [307] = 268, - [308] = 225, - [309] = 266, - [310] = 265, - [311] = 265, - [312] = 226, - [313] = 264, - [314] = 263, - [315] = 261, - [316] = 234, - [317] = 246, - [318] = 243, - [319] = 252, - [320] = 282, + [305] = 249, + [306] = 228, + [307] = 247, + [308] = 308, + [309] = 309, + [310] = 238, + [311] = 258, + [312] = 286, + [313] = 233, + [314] = 232, + [315] = 229, + [316] = 316, + [317] = 244, + [318] = 284, + [319] = 227, + [320] = 286, [321] = 253, - [322] = 254, - [323] = 266, - [324] = 255, - [325] = 228, - [326] = 251, - [327] = 268, - [328] = 224, - [329] = 232, - [330] = 249, - [331] = 228, - [332] = 247, - [333] = 227, - [334] = 227, - [335] = 335, - [336] = 336, - [337] = 228, - [338] = 247, + [322] = 246, + [323] = 230, + [324] = 251, + [325] = 251, + [326] = 272, + [327] = 253, + [328] = 246, + [329] = 284, + [330] = 272, + [331] = 242, + [332] = 258, + [333] = 286, + [334] = 273, + [335] = 254, + [336] = 275, + [337] = 284, + [338] = 338, [339] = 339, - [340] = 304, - [341] = 263, - [342] = 342, - [343] = 269, - [344] = 227, - [345] = 227, - [346] = 228, - [347] = 270, - [348] = 271, - [349] = 272, - [350] = 228, - [351] = 273, - [352] = 243, - [353] = 232, - [354] = 274, - [355] = 227, - [356] = 275, - [357] = 282, - [358] = 276, - [359] = 243, - [360] = 234, - [361] = 226, - [362] = 277, - [363] = 278, - [364] = 228, - [365] = 232, - [366] = 282, - [367] = 243, - [368] = 227, - [369] = 228, - [370] = 232, - [371] = 280, - [372] = 286, - [373] = 247, - [374] = 249, - [375] = 224, - [376] = 251, - [377] = 229, - [378] = 282, - [379] = 255, - [380] = 231, - [381] = 254, - [382] = 253, - [383] = 252, - [384] = 384, - [385] = 304, - [386] = 246, - [387] = 257, - [388] = 227, - [389] = 243, - [390] = 231, - [391] = 231, - [392] = 229, - [393] = 227, - [394] = 228, - [395] = 286, - [396] = 257, - [397] = 397, - [398] = 398, - [399] = 280, - [400] = 400, - [401] = 243, - [402] = 278, - [403] = 277, - [404] = 276, - [405] = 275, - [406] = 274, - [407] = 282, - [408] = 273, - [409] = 272, - [410] = 232, - [411] = 271, - [412] = 286, - [413] = 270, - [414] = 269, - [415] = 268, - [416] = 225, - [417] = 266, - [418] = 265, - [419] = 264, - [420] = 263, - [421] = 261, - [422] = 257, - [423] = 423, + [340] = 242, + [341] = 275, + [342] = 276, + [343] = 245, + [344] = 244, + [345] = 345, + [346] = 237, + [347] = 228, + [348] = 348, + [349] = 227, + [350] = 350, + [351] = 257, + [352] = 352, + [353] = 242, + [354] = 276, + [355] = 259, + [356] = 241, + [357] = 255, + [358] = 286, + [359] = 286, + [360] = 360, + [361] = 361, + [362] = 284, + [363] = 284, + [364] = 242, + [365] = 241, + [366] = 257, + [367] = 240, + [368] = 368, + [369] = 286, + [370] = 284, + [371] = 371, + [372] = 372, + [373] = 229, + [374] = 234, + [375] = 255, + [376] = 376, + [377] = 262, + [378] = 276, + [379] = 257, + [380] = 242, + [381] = 255, + [382] = 286, + [383] = 232, + [384] = 244, + [385] = 371, + [386] = 338, + [387] = 284, + [388] = 286, + [389] = 254, + [390] = 390, + [391] = 284, + [392] = 255, + [393] = 393, + [394] = 257, + [395] = 338, + [396] = 255, + [397] = 371, + [398] = 233, + [399] = 237, + [400] = 275, + [401] = 263, + [402] = 338, + [403] = 242, + [404] = 264, + [405] = 249, + [406] = 406, + [407] = 371, + [408] = 226, + [409] = 368, + [410] = 226, + [411] = 247, + [412] = 258, + [413] = 253, + [414] = 251, + [415] = 246, + [416] = 273, + [417] = 230, + [418] = 238, + [419] = 284, + [420] = 368, + [421] = 286, + [422] = 272, + [423] = 240, [424] = 424, [425] = 425, [426] = 426, [427] = 426, - [428] = 425, - [429] = 429, + [428] = 428, + [429] = 428, [430] = 430, [431] = 431, [432] = 432, @@ -4353,10 +4308,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [439] = 439, [440] = 440, [441] = 441, - [442] = 442, + [442] = 437, [443] = 443, [444] = 444, - [445] = 432, + [445] = 437, [446] = 446, [447] = 447, [448] = 448, @@ -4364,8 +4319,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [450] = 450, [451] = 451, [452] = 452, - [453] = 453, - [454] = 454, + [453] = 437, + [454] = 437, [455] = 455, [456] = 456, [457] = 457, @@ -4374,8 +4329,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [460] = 460, [461] = 461, [462] = 462, - [463] = 463, - [464] = 433, + [463] = 433, + [464] = 464, [465] = 465, [466] = 466, [467] = 467, @@ -4409,7 +4364,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [495] = 495, [496] = 496, [497] = 497, - [498] = 453, + [498] = 498, [499] = 499, [500] = 500, [501] = 501, @@ -4437,7 +4392,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [523] = 523, [524] = 524, [525] = 525, - [526] = 526, + [526] = 431, [527] = 527, [528] = 528, [529] = 529, @@ -4454,20 +4409,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [540] = 540, [541] = 541, [542] = 542, - [543] = 440, + [543] = 543, [544] = 544, [545] = 545, [546] = 546, [547] = 547, [548] = 548, - [549] = 549, + [549] = 439, [550] = 550, [551] = 551, [552] = 552, [553] = 553, [554] = 554, [555] = 555, - [556] = 556, + [556] = 443, [557] = 557, [558] = 558, [559] = 559, @@ -4476,18 +4431,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [562] = 562, [563] = 563, [564] = 564, - [565] = 565, - [566] = 566, - [567] = 567, - [568] = 567, - [569] = 567, - [570] = 567, - [571] = 567, + [565] = 564, + [566] = 564, + [567] = 564, + [568] = 568, + [569] = 569, + [570] = 570, + [571] = 571, [572] = 572, [573] = 573, - [574] = 573, - [575] = 573, - [576] = 573, + [574] = 574, + [575] = 575, + [576] = 576, [577] = 577, [578] = 578, [579] = 579, @@ -4504,323 +4459,323 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [590] = 590, [591] = 591, [592] = 592, - [593] = 593, + [593] = 591, [594] = 594, - [595] = 595, + [595] = 591, [596] = 596, - [597] = 597, - [598] = 598, - [599] = 599, - [600] = 600, - [601] = 601, - [602] = 600, - [603] = 584, - [604] = 581, - [605] = 600, - [606] = 606, - [607] = 582, - [608] = 583, - [609] = 609, - [610] = 585, - [611] = 583, - [612] = 586, - [613] = 589, - [614] = 594, - [615] = 615, - [616] = 588, - [617] = 599, - [618] = 615, - [619] = 598, - [620] = 587, - [621] = 580, - [622] = 595, - [623] = 600, - [624] = 624, - [625] = 597, - [626] = 591, - [627] = 590, - [628] = 592, - [629] = 578, - [630] = 579, + [597] = 577, + [598] = 572, + [599] = 573, + [600] = 574, + [601] = 575, + [602] = 575, + [603] = 576, + [604] = 589, + [605] = 586, + [606] = 579, + [607] = 607, + [608] = 580, + [609] = 582, + [610] = 596, + [611] = 571, + [612] = 612, + [613] = 607, + [614] = 578, + [615] = 588, + [616] = 581, + [617] = 591, + [618] = 587, + [619] = 590, + [620] = 583, + [621] = 584, + [622] = 569, + [623] = 585, + [624] = 570, + [625] = 568, + [626] = 592, + [627] = 592, + [628] = 628, + [629] = 629, + [630] = 596, [631] = 596, - [632] = 577, - [633] = 609, - [634] = 593, - [635] = 601, + [632] = 632, + [633] = 633, + [634] = 633, + [635] = 635, [636] = 636, - [637] = 601, + [637] = 637, [638] = 638, - [639] = 609, + [639] = 573, [640] = 640, - [641] = 609, - [642] = 640, - [643] = 643, + [641] = 641, + [642] = 577, + [643] = 641, [644] = 644, [645] = 645, - [646] = 646, - [647] = 647, - [648] = 648, - [649] = 581, - [650] = 585, - [651] = 590, + [646] = 572, + [647] = 574, + [648] = 576, + [649] = 580, + [650] = 650, + [651] = 651, [652] = 652, - [653] = 652, - [654] = 654, - [655] = 584, - [656] = 656, - [657] = 582, - [658] = 658, - [659] = 586, + [653] = 569, + [654] = 568, + [655] = 580, + [656] = 589, + [657] = 588, + [658] = 578, + [659] = 587, [660] = 660, - [661] = 592, - [662] = 662, - [663] = 662, - [664] = 598, - [665] = 578, - [666] = 595, - [667] = 667, - [668] = 579, - [669] = 591, - [670] = 599, - [671] = 597, - [672] = 580, - [673] = 590, - [674] = 588, - [675] = 660, - [676] = 587, - [677] = 589, - [678] = 594, - [679] = 593, - [680] = 596, + [661] = 586, + [662] = 583, + [663] = 584, + [664] = 590, + [665] = 570, + [666] = 579, + [667] = 571, + [668] = 581, + [669] = 582, + [670] = 585, + [671] = 671, + [672] = 652, + [673] = 671, + [674] = 674, + [675] = 675, + [676] = 676, + [677] = 651, + [678] = 678, + [679] = 679, + [680] = 680, [681] = 681, - [682] = 577, + [682] = 682, [683] = 683, - [684] = 684, - [685] = 685, - [686] = 667, - [687] = 584, - [688] = 688, - [689] = 582, + [684] = 660, + [685] = 577, + [686] = 576, + [687] = 574, + [688] = 573, + [689] = 572, [690] = 690, - [691] = 581, - [692] = 685, + [691] = 691, + [692] = 692, [693] = 693, - [694] = 585, - [695] = 695, - [696] = 586, - [697] = 697, - [698] = 582, - [699] = 699, - [700] = 700, - [701] = 701, - [702] = 681, + [694] = 694, + [695] = 650, + [696] = 572, + [697] = 573, + [698] = 574, + [699] = 576, + [700] = 690, + [701] = 577, + [702] = 702, [703] = 703, - [704] = 704, + [704] = 681, [705] = 705, - [706] = 706, - [707] = 707, - [708] = 648, - [709] = 584, - [710] = 585, - [711] = 586, - [712] = 586, + [706] = 702, + [707] = 703, + [708] = 692, + [709] = 572, + [710] = 573, + [711] = 574, + [712] = 576, [713] = 713, [714] = 714, - [715] = 697, - [716] = 704, - [717] = 701, - [718] = 585, + [715] = 577, + [716] = 716, + [717] = 717, + [718] = 578, [719] = 719, - [720] = 584, - [721] = 582, - [722] = 581, - [723] = 581, + [720] = 590, + [721] = 585, + [722] = 722, + [723] = 579, [724] = 724, [725] = 725, - [726] = 598, - [727] = 593, - [728] = 728, + [726] = 582, + [727] = 581, + [728] = 571, [729] = 729, [730] = 730, [731] = 731, - [732] = 732, - [733] = 577, - [734] = 734, + [732] = 589, + [733] = 570, + [734] = 569, [735] = 735, - [736] = 736, + [736] = 584, [737] = 737, - [738] = 597, - [739] = 579, - [740] = 580, - [741] = 592, - [742] = 578, + [738] = 738, + [739] = 568, + [740] = 740, + [741] = 741, + [742] = 742, [743] = 743, - [744] = 595, - [745] = 589, + [744] = 744, + [745] = 583, [746] = 746, - [747] = 599, + [747] = 747, [748] = 748, [749] = 749, [750] = 588, - [751] = 751, + [751] = 563, [752] = 752, [753] = 753, - [754] = 572, + [754] = 754, [755] = 755, [756] = 756, [757] = 757, [758] = 587, - [759] = 759, - [760] = 591, - [761] = 596, - [762] = 762, + [759] = 586, + [760] = 650, + [761] = 691, + [762] = 431, [763] = 763, - [764] = 764, - [765] = 594, - [766] = 766, - [767] = 652, - [768] = 433, - [769] = 432, - [770] = 770, - [771] = 771, - [772] = 586, - [773] = 773, - [774] = 585, - [775] = 584, - [776] = 648, + [764] = 572, + [765] = 573, + [766] = 574, + [767] = 767, + [768] = 683, + [769] = 769, + [770] = 641, + [771] = 644, + [772] = 640, + [773] = 576, + [774] = 577, + [775] = 775, + [776] = 433, [777] = 777, - [778] = 658, - [779] = 652, - [780] = 699, - [781] = 781, - [782] = 656, - [783] = 581, - [784] = 705, - [785] = 582, - [786] = 654, - [787] = 787, - [788] = 588, - [789] = 579, - [790] = 590, - [791] = 597, - [792] = 589, - [793] = 587, - [794] = 580, - [795] = 593, - [796] = 796, - [797] = 797, - [798] = 577, - [799] = 578, - [800] = 592, - [801] = 787, - [802] = 594, - [803] = 596, - [804] = 599, - [805] = 591, - [806] = 595, - [807] = 598, - [808] = 808, + [778] = 641, + [779] = 645, + [780] = 780, + [781] = 588, + [782] = 589, + [783] = 783, + [784] = 784, + [785] = 581, + [786] = 786, + [787] = 582, + [788] = 579, + [789] = 789, + [790] = 568, + [791] = 590, + [792] = 585, + [793] = 569, + [794] = 584, + [795] = 583, + [796] = 586, + [797] = 587, + [798] = 780, + [799] = 570, + [800] = 571, + [801] = 578, + [802] = 786, + [803] = 783, + [804] = 580, + [805] = 680, + [806] = 573, + [807] = 679, + [808] = 651, [809] = 809, - [810] = 808, - [811] = 690, + [810] = 716, + [811] = 811, [812] = 812, - [813] = 809, - [814] = 693, - [815] = 590, - [816] = 695, - [817] = 453, - [818] = 681, + [813] = 443, + [814] = 809, + [815] = 574, + [816] = 573, + [817] = 572, + [818] = 809, [819] = 819, - [820] = 586, - [821] = 703, - [822] = 699, - [823] = 585, - [824] = 584, - [825] = 585, - [826] = 584, - [827] = 681, - [828] = 586, - [829] = 582, - [830] = 683, - [831] = 831, - [832] = 705, - [833] = 581, - [834] = 819, - [835] = 819, - [836] = 581, - [837] = 582, - [838] = 819, - [839] = 701, - [840] = 584, - [841] = 585, - [842] = 667, - [843] = 667, - [844] = 586, - [845] = 845, - [846] = 697, - [847] = 645, - [848] = 440, - [849] = 845, - [850] = 582, - [851] = 697, - [852] = 581, - [853] = 831, - [854] = 831, - [855] = 648, - [856] = 819, - [857] = 713, - [858] = 714, - [859] = 700, - [860] = 701, - [861] = 729, - [862] = 579, - [863] = 755, - [864] = 595, - [865] = 766, - [866] = 598, - [867] = 580, - [868] = 591, - [869] = 705, - [870] = 578, - [871] = 749, - [872] = 737, - [873] = 736, - [874] = 594, - [875] = 577, - [876] = 734, - [877] = 746, - [878] = 593, + [820] = 577, + [821] = 683, + [822] = 822, + [823] = 576, + [824] = 703, + [825] = 574, + [826] = 660, + [827] = 577, + [828] = 576, + [829] = 574, + [830] = 830, + [831] = 819, + [832] = 573, + [833] = 703, + [834] = 572, + [835] = 691, + [836] = 822, + [837] = 674, + [838] = 572, + [839] = 702, + [840] = 676, + [841] = 678, + [842] = 702, + [843] = 705, + [844] = 690, + [845] = 690, + [846] = 636, + [847] = 580, + [848] = 675, + [849] = 439, + [850] = 822, + [851] = 651, + [852] = 812, + [853] = 811, + [854] = 650, + [855] = 577, + [856] = 576, + [857] = 660, + [858] = 809, + [859] = 809, + [860] = 744, + [861] = 589, + [862] = 570, + [863] = 747, + [864] = 571, + [865] = 578, + [866] = 749, + [867] = 588, + [868] = 757, + [869] = 755, + [870] = 725, + [871] = 587, + [872] = 722, + [873] = 691, + [874] = 586, + [875] = 738, + [876] = 583, + [877] = 717, + [878] = 724, [879] = 756, - [880] = 751, - [881] = 759, - [882] = 592, - [883] = 589, - [884] = 735, - [885] = 730, - [886] = 731, - [887] = 732, - [888] = 587, - [889] = 597, - [890] = 725, - [891] = 728, - [892] = 752, - [893] = 724, - [894] = 762, - [895] = 596, - [896] = 763, - [897] = 572, - [898] = 743, - [899] = 757, - [900] = 753, - [901] = 705, - [902] = 599, - [903] = 588, - [904] = 771, - [905] = 770, - [906] = 699, - [907] = 773, - [908] = 781, - [909] = 909, + [880] = 691, + [881] = 584, + [882] = 754, + [883] = 731, + [884] = 753, + [885] = 581, + [886] = 741, + [887] = 730, + [888] = 748, + [889] = 742, + [890] = 582, + [891] = 719, + [892] = 579, + [893] = 743, + [894] = 563, + [895] = 568, + [896] = 590, + [897] = 746, + [898] = 585, + [899] = 752, + [900] = 569, + [901] = 740, + [902] = 735, + [903] = 683, + [904] = 763, + [905] = 777, + [906] = 769, + [907] = 767, + [908] = 908, + [909] = 568, [910] = 910, [911] = 911, [912] = 912, @@ -4856,26 +4811,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [942] = 942, [943] = 943, [944] = 944, - [945] = 945, + [945] = 569, [946] = 946, - [947] = 947, + [947] = 570, [948] = 948, [949] = 949, [950] = 950, [951] = 951, [952] = 952, - [953] = 577, + [953] = 571, [954] = 954, [955] = 955, [956] = 956, [957] = 957, [958] = 958, - [959] = 579, + [959] = 959, [960] = 960, - [961] = 580, + [961] = 961, [962] = 962, [963] = 963, - [964] = 578, + [964] = 964, [965] = 965, [966] = 966, [967] = 967, @@ -4885,11 +4840,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [971] = 971, [972] = 972, [973] = 973, - [974] = 440, + [974] = 974, [975] = 975, - [976] = 453, - [977] = 977, - [978] = 978, + [976] = 976, + [977] = 439, + [978] = 443, [979] = 979, [980] = 980, [981] = 981, @@ -4923,195 +4878,195 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1009] = 1009, [1010] = 1010, [1011] = 1011, - [1012] = 1001, + [1012] = 1012, [1013] = 1013, - [1014] = 1006, - [1015] = 990, - [1016] = 1003, - [1017] = 979, - [1018] = 996, - [1019] = 987, - [1020] = 981, - [1021] = 985, - [1022] = 1010, - [1023] = 984, - [1024] = 995, - [1025] = 989, - [1026] = 1026, - [1027] = 999, - [1028] = 1007, - [1029] = 1000, - [1030] = 988, - [1031] = 1005, - [1032] = 998, - [1033] = 983, - [1034] = 997, - [1035] = 986, - [1036] = 1002, - [1037] = 980, - [1038] = 1004, - [1039] = 982, - [1040] = 1009, - [1041] = 993, - [1042] = 992, - [1043] = 1043, - [1044] = 1008, - [1045] = 991, - [1046] = 994, - [1047] = 923, - [1048] = 965, - [1049] = 1005, - [1050] = 946, - [1051] = 1010, - [1052] = 992, - [1053] = 1006, - [1054] = 979, - [1055] = 998, - [1056] = 1003, - [1057] = 1002, - [1058] = 982, - [1059] = 983, - [1060] = 954, - [1061] = 984, - [1062] = 580, - [1063] = 986, - [1064] = 994, - [1065] = 916, - [1066] = 999, - [1067] = 1000, - [1068] = 981, - [1069] = 985, - [1070] = 956, - [1071] = 928, - [1072] = 929, - [1073] = 996, - [1074] = 993, - [1075] = 578, - [1076] = 920, - [1077] = 944, - [1078] = 939, - [1079] = 913, - [1080] = 912, - [1081] = 987, - [1082] = 988, - [1083] = 1001, - [1084] = 1007, - [1085] = 915, - [1086] = 989, - [1087] = 918, - [1088] = 921, - [1089] = 958, - [1090] = 962, - [1091] = 933, - [1092] = 951, - [1093] = 969, - [1094] = 940, - [1095] = 991, - [1096] = 910, - [1097] = 973, - [1098] = 966, - [1099] = 924, - [1100] = 917, - [1101] = 980, - [1102] = 971, - [1103] = 942, - [1104] = 968, - [1105] = 1105, - [1106] = 948, - [1107] = 949, - [1108] = 927, - [1109] = 914, - [1110] = 945, - [1111] = 947, - [1112] = 937, - [1113] = 941, - [1114] = 955, - [1115] = 972, - [1116] = 919, - [1117] = 943, - [1118] = 970, - [1119] = 952, - [1120] = 925, - [1121] = 909, - [1122] = 967, - [1123] = 997, - [1124] = 935, - [1125] = 922, - [1126] = 995, - [1127] = 960, - [1128] = 936, - [1129] = 1008, - [1130] = 926, - [1131] = 931, - [1132] = 432, - [1133] = 932, + [1014] = 989, + [1015] = 991, + [1016] = 1016, + [1017] = 984, + [1018] = 990, + [1019] = 979, + [1020] = 983, + [1021] = 1008, + [1022] = 981, + [1023] = 992, + [1024] = 994, + [1025] = 1005, + [1026] = 987, + [1027] = 1004, + [1028] = 995, + [1029] = 1029, + [1030] = 996, + [1031] = 998, + [1032] = 1013, + [1033] = 980, + [1034] = 1006, + [1035] = 1001, + [1036] = 997, + [1037] = 1007, + [1038] = 993, + [1039] = 999, + [1040] = 1003, + [1041] = 1002, + [1042] = 1011, + [1043] = 1000, + [1044] = 982, + [1045] = 986, + [1046] = 1046, + [1047] = 1010, + [1048] = 1048, + [1049] = 988, + [1050] = 1008, + [1051] = 996, + [1052] = 961, + [1053] = 998, + [1054] = 928, + [1055] = 917, + [1056] = 915, + [1057] = 963, + [1058] = 980, + [1059] = 925, + [1060] = 958, + [1061] = 568, + [1062] = 923, + [1063] = 1001, + [1064] = 1013, + [1065] = 1011, + [1066] = 1007, + [1067] = 964, + [1068] = 965, + [1069] = 949, + [1070] = 431, + [1071] = 569, + [1072] = 433, + [1073] = 570, + [1074] = 571, + [1075] = 1006, + [1076] = 973, + [1077] = 997, + [1078] = 932, + [1079] = 962, + [1080] = 1005, + [1081] = 916, + [1082] = 991, + [1083] = 990, + [1084] = 933, + [1085] = 988, + [1086] = 986, + [1087] = 970, + [1088] = 1004, + [1089] = 971, + [1090] = 920, + [1091] = 968, + [1092] = 955, + [1093] = 1002, + [1094] = 910, + [1095] = 935, + [1096] = 943, + [1097] = 969, + [1098] = 987, + [1099] = 929, + [1100] = 982, + [1101] = 981, + [1102] = 959, + [1103] = 967, + [1104] = 952, + [1105] = 966, + [1106] = 921, + [1107] = 956, + [1108] = 936, + [1109] = 938, + [1110] = 922, + [1111] = 960, + [1112] = 941, + [1113] = 940, + [1114] = 1010, + [1115] = 1003, + [1116] = 1000, + [1117] = 995, + [1118] = 908, + [1119] = 983, + [1120] = 914, + [1121] = 944, + [1122] = 984, + [1123] = 989, + [1124] = 924, + [1125] = 946, + [1126] = 948, + [1127] = 999, + [1128] = 942, + [1129] = 919, + [1130] = 911, + [1131] = 992, + [1132] = 918, + [1133] = 993, [1134] = 934, - [1135] = 950, - [1136] = 1004, - [1137] = 930, - [1138] = 577, - [1139] = 911, - [1140] = 1009, - [1141] = 990, - [1142] = 957, - [1143] = 963, - [1144] = 579, - [1145] = 938, - [1146] = 433, - [1147] = 989, - [1148] = 986, - [1149] = 1149, - [1150] = 983, - [1151] = 1002, - [1152] = 995, - [1153] = 984, - [1154] = 998, - [1155] = 1010, - [1156] = 979, - [1157] = 1006, - [1158] = 992, - [1159] = 981, - [1160] = 1004, - [1161] = 985, - [1162] = 1005, - [1163] = 1007, - [1164] = 1001, - [1165] = 1165, - [1166] = 996, - [1167] = 1149, - [1168] = 987, - [1169] = 1003, - [1170] = 988, - [1171] = 982, - [1172] = 997, - [1173] = 990, - [1174] = 994, - [1175] = 980, - [1176] = 999, - [1177] = 1000, - [1178] = 1008, - [1179] = 1165, - [1180] = 993, - [1181] = 1181, - [1182] = 1182, - [1183] = 1009, - [1184] = 991, - [1185] = 1185, - [1186] = 1186, - [1187] = 1187, - [1188] = 1188, + [1135] = 927, + [1136] = 979, + [1137] = 972, + [1138] = 950, + [1139] = 931, + [1140] = 912, + [1141] = 951, + [1142] = 954, + [1143] = 937, + [1144] = 994, + [1145] = 926, + [1146] = 913, + [1147] = 957, + [1148] = 930, + [1149] = 939, + [1150] = 986, + [1151] = 1003, + [1152] = 1004, + [1153] = 1153, + [1154] = 997, + [1155] = 1001, + [1156] = 1156, + [1157] = 993, + [1158] = 980, + [1159] = 1159, + [1160] = 998, + [1161] = 1161, + [1162] = 1013, + [1163] = 1008, + [1164] = 987, + [1165] = 1011, + [1166] = 995, + [1167] = 994, + [1168] = 991, + [1169] = 982, + [1170] = 1005, + [1171] = 990, + [1172] = 988, + [1173] = 999, + [1174] = 996, + [1175] = 1000, + [1176] = 1002, + [1177] = 1007, + [1178] = 992, + [1179] = 1010, + [1180] = 981, + [1181] = 983, + [1182] = 979, + [1183] = 1153, + [1184] = 984, + [1185] = 1156, + [1186] = 989, + [1187] = 1006, + [1188] = 982, [1189] = 1189, [1190] = 1190, - [1191] = 991, + [1191] = 1191, [1192] = 1192, - [1193] = 991, + [1193] = 1193, [1194] = 1194, - [1195] = 1195, - [1196] = 1188, + [1195] = 982, + [1196] = 1196, [1197] = 1197, [1198] = 1198, [1199] = 1199, - [1200] = 1198, + [1200] = 1200, [1201] = 1201, [1202] = 1202, [1203] = 1203, @@ -5119,165 +5074,165 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1205] = 1205, [1206] = 1206, [1207] = 1207, - [1208] = 1208, - [1209] = 1198, - [1210] = 1199, - [1211] = 1202, - [1212] = 1204, + [1208] = 1200, + [1209] = 1209, + [1210] = 1210, + [1211] = 1193, + [1212] = 1212, [1213] = 1213, - [1214] = 1187, - [1215] = 1215, - [1216] = 1216, + [1214] = 1212, + [1215] = 1209, + [1216] = 1207, [1217] = 1217, [1218] = 1218, [1219] = 1219, [1220] = 1220, - [1221] = 1221, + [1221] = 1196, [1222] = 1222, - [1223] = 1223, - [1224] = 1201, - [1225] = 1225, - [1226] = 1222, - [1227] = 1227, - [1228] = 1222, - [1229] = 1198, + [1223] = 1206, + [1224] = 1224, + [1225] = 1213, + [1226] = 1226, + [1227] = 1206, + [1228] = 1200, + [1229] = 1229, [1230] = 1230, - [1231] = 1201, - [1232] = 1232, - [1233] = 1233, - [1234] = 1234, + [1231] = 1202, + [1232] = 1202, + [1233] = 1193, + [1234] = 1196, [1235] = 1235, [1236] = 1236, - [1237] = 1187, + [1237] = 1237, [1238] = 1238, [1239] = 1239, - [1240] = 1220, - [1241] = 1188, - [1242] = 1222, - [1243] = 1201, - [1244] = 1244, - [1245] = 1245, - [1246] = 1246, + [1240] = 1240, + [1241] = 1241, + [1242] = 1242, + [1243] = 1243, + [1244] = 1202, + [1245] = 1206, + [1246] = 1200, [1247] = 1247, [1248] = 1248, - [1249] = 1249, + [1249] = 1248, [1250] = 1250, - [1251] = 1251, - [1252] = 1248, - [1253] = 1246, - [1254] = 1246, - [1255] = 1255, - [1256] = 1256, - [1257] = 1257, - [1258] = 1251, - [1259] = 1259, - [1260] = 1251, - [1261] = 1245, - [1262] = 1245, - [1263] = 1246, - [1264] = 1248, - [1265] = 1259, - [1266] = 1251, - [1267] = 1248, - [1268] = 1256, - [1269] = 1247, - [1270] = 1248, - [1271] = 1251, - [1272] = 1248, - [1273] = 1251, - [1274] = 1245, - [1275] = 1256, - [1276] = 1255, - [1277] = 1277, + [1251] = 1248, + [1252] = 1252, + [1253] = 1253, + [1254] = 1252, + [1255] = 1248, + [1256] = 1252, + [1257] = 1248, + [1258] = 1258, + [1259] = 1248, + [1260] = 1252, + [1261] = 1248, + [1262] = 1252, + [1263] = 1253, + [1264] = 1253, + [1265] = 1252, + [1266] = 1253, + [1267] = 1267, + [1268] = 1268, + [1269] = 1258, + [1270] = 1270, + [1271] = 1271, + [1272] = 1272, + [1273] = 1268, + [1274] = 1274, + [1275] = 1275, + [1276] = 1276, + [1277] = 1276, [1278] = 1278, - [1279] = 1248, - [1280] = 1255, - [1281] = 1247, - [1282] = 1282, - [1283] = 1283, - [1284] = 1251, - [1285] = 1255, - [1286] = 1248, - [1287] = 1251, - [1288] = 1277, - [1289] = 1248, - [1290] = 1251, - [1291] = 1246, - [1292] = 1256, - [1293] = 1278, - [1294] = 1247, - [1295] = 1256, - [1296] = 1255, - [1297] = 1246, - [1298] = 1247, - [1299] = 1277, - [1300] = 1251, - [1301] = 1301, - [1302] = 1255, - [1303] = 1303, - [1304] = 1255, - [1305] = 1303, - [1306] = 1255, - [1307] = 1278, + [1279] = 1258, + [1280] = 1258, + [1281] = 1281, + [1282] = 1275, + [1283] = 1275, + [1284] = 1276, + [1285] = 1250, + [1286] = 1253, + [1287] = 1268, + [1288] = 1274, + [1289] = 1289, + [1290] = 1290, + [1291] = 1275, + [1292] = 1275, + [1293] = 1253, + [1294] = 1276, + [1295] = 1281, + [1296] = 1258, + [1297] = 1275, + [1298] = 1276, + [1299] = 1274, + [1300] = 1281, + [1301] = 1253, + [1302] = 1275, + [1303] = 1248, + [1304] = 1252, + [1305] = 1252, + [1306] = 1275, + [1307] = 1252, [1308] = 1248, - [1309] = 1309, - [1310] = 1310, - [1311] = 1303, - [1312] = 1255, - [1313] = 1247, - [1314] = 1278, - [1315] = 1256, - [1316] = 1246, - [1317] = 1317, - [1318] = 1318, + [1309] = 1268, + [1310] = 1275, + [1311] = 1311, + [1312] = 1248, + [1313] = 1252, + [1314] = 1271, + [1315] = 1271, + [1316] = 1258, + [1317] = 1276, + [1318] = 1271, [1319] = 1319, [1320] = 1320, [1321] = 1321, - [1322] = 1320, - [1323] = 1317, - [1324] = 1319, + [1322] = 1322, + [1323] = 1323, + [1324] = 1324, [1325] = 1325, - [1326] = 1326, + [1326] = 1324, [1327] = 1327, [1328] = 1328, [1329] = 1329, - [1330] = 1330, - [1331] = 1331, + [1330] = 1319, + [1331] = 1320, [1332] = 1332, - [1333] = 1333, + [1333] = 1332, [1334] = 1334, - [1335] = 1335, - [1336] = 1335, - [1337] = 1333, - [1338] = 1334, - [1339] = 1332, - [1340] = 1332, - [1341] = 1335, - [1342] = 1334, + [1335] = 1334, + [1336] = 1336, + [1337] = 1334, + [1338] = 1338, + [1339] = 1336, + [1340] = 1336, + [1341] = 1338, + [1342] = 1338, [1343] = 1343, - [1344] = 1344, - [1345] = 1344, - [1346] = 1343, - [1347] = 1343, - [1348] = 1344, + [1344] = 1343, + [1345] = 1345, + [1346] = 1345, + [1347] = 1345, + [1348] = 1343, [1349] = 1349, [1350] = 1349, - [1351] = 1349, - [1352] = 1352, + [1351] = 1351, + [1352] = 1351, [1353] = 1353, - [1354] = 1354, - [1355] = 1355, + [1354] = 1353, + [1355] = 1351, [1356] = 1356, [1357] = 1357, [1358] = 1358, [1359] = 1359, [1360] = 1360, - [1361] = 1361, + [1361] = 1359, [1362] = 1362, [1363] = 1363, [1364] = 1364, [1365] = 1365, - [1366] = 1366, + [1366] = 1365, [1367] = 1367, [1368] = 1368, [1369] = 1369, @@ -5295,20 +5250,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1381] = 1381, [1382] = 1382, [1383] = 1383, - [1384] = 1381, + [1384] = 1384, [1385] = 1385, - [1386] = 1383, - [1387] = 1382, + [1386] = 1386, + [1387] = 1387, [1388] = 1388, [1389] = 1389, - [1390] = 1385, + [1390] = 1390, [1391] = 1391, [1392] = 1392, [1393] = 1393, [1394] = 1394, - [1395] = 1389, + [1395] = 1395, [1396] = 1396, - [1397] = 1396, + [1397] = 1397, [1398] = 1398, [1399] = 1399, [1400] = 1400, @@ -5322,17 +5277,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1408] = 1408, [1409] = 1409, [1410] = 1410, - [1411] = 1411, + [1411] = 1397, [1412] = 1412, [1413] = 1413, [1414] = 1414, - [1415] = 1415, - [1416] = 1416, + [1415] = 1392, + [1416] = 1394, [1417] = 1417, [1418] = 1418, [1419] = 1419, - [1420] = 1420, - [1421] = 1421, + [1420] = 1393, + [1421] = 1409, [1422] = 1422, [1423] = 1423, [1424] = 1424, @@ -5341,350 +5296,350 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1427] = 1427, [1428] = 1428, [1429] = 1429, - [1430] = 1420, + [1430] = 1430, [1431] = 1431, - [1432] = 1422, + [1432] = 1432, [1433] = 1433, [1434] = 1434, - [1435] = 599, - [1436] = 648, - [1437] = 700, + [1435] = 1435, + [1436] = 1436, + [1437] = 1437, [1438] = 1438, - [1439] = 1439, + [1439] = 1432, [1440] = 1440, [1441] = 1441, [1442] = 1442, [1443] = 1443, [1444] = 1444, - [1445] = 1445, + [1445] = 650, [1446] = 1446, - [1447] = 1439, + [1447] = 705, [1448] = 1448, [1449] = 1449, [1450] = 1450, - [1451] = 1451, + [1451] = 581, [1452] = 1452, - [1453] = 1434, + [1453] = 1453, [1454] = 1454, [1455] = 1455, [1456] = 1456, - [1457] = 1456, - [1458] = 1458, + [1457] = 1457, + [1458] = 1448, [1459] = 1459, [1460] = 1460, - [1461] = 1461, + [1461] = 1446, [1462] = 1462, - [1463] = 1456, - [1464] = 1458, + [1463] = 1463, + [1464] = 1464, [1465] = 1465, - [1466] = 1465, + [1466] = 1466, [1467] = 1467, - [1468] = 599, + [1468] = 1465, [1469] = 1469, [1470] = 1470, - [1471] = 599, - [1472] = 1456, - [1473] = 1458, + [1471] = 1467, + [1472] = 1465, + [1473] = 1465, [1474] = 1474, [1475] = 1465, - [1476] = 1476, + [1476] = 1467, [1477] = 1477, - [1478] = 1478, + [1478] = 1467, [1479] = 1479, - [1480] = 1480, + [1480] = 1465, [1481] = 1481, - [1482] = 1482, - [1483] = 1462, - [1484] = 1465, - [1485] = 1456, - [1486] = 1462, - [1487] = 1487, - [1488] = 1456, - [1489] = 1458, - [1490] = 1456, - [1491] = 1458, - [1492] = 1465, - [1493] = 1465, - [1494] = 1465, - [1495] = 1456, - [1496] = 1458, - [1497] = 1456, - [1498] = 1498, - [1499] = 1456, - [1500] = 1458, - [1501] = 1465, - [1502] = 1458, - [1503] = 1456, - [1504] = 1465, - [1505] = 1462, - [1506] = 1506, - [1507] = 1458, + [1482] = 1469, + [1483] = 1467, + [1484] = 1484, + [1485] = 1466, + [1486] = 1467, + [1487] = 1469, + [1488] = 1469, + [1489] = 581, + [1490] = 1465, + [1491] = 1469, + [1492] = 1492, + [1493] = 1469, + [1494] = 1467, + [1495] = 1469, + [1496] = 1496, + [1497] = 1467, + [1498] = 1465, + [1499] = 1499, + [1500] = 1469, + [1501] = 1501, + [1502] = 1469, + [1503] = 1503, + [1504] = 1469, + [1505] = 1467, + [1506] = 1465, + [1507] = 1507, [1508] = 1465, - [1509] = 1456, - [1510] = 1458, - [1511] = 1456, + [1509] = 1469, + [1510] = 1466, + [1511] = 1466, [1512] = 1512, - [1513] = 1513, - [1514] = 1462, - [1515] = 1458, - [1516] = 1465, + [1513] = 1467, + [1514] = 1514, + [1515] = 1515, + [1516] = 1469, [1517] = 1517, - [1518] = 1518, - [1519] = 1518, - [1520] = 1520, - [1521] = 1520, - [1522] = 423, + [1518] = 581, + [1519] = 1469, + [1520] = 1465, + [1521] = 1467, + [1522] = 1466, [1523] = 1523, [1524] = 1524, - [1525] = 1523, - [1526] = 424, - [1527] = 1417, - [1528] = 1528, - [1529] = 1517, + [1525] = 1525, + [1526] = 1526, + [1527] = 1527, + [1528] = 424, + [1529] = 1527, [1530] = 1530, - [1531] = 1531, + [1531] = 1525, [1532] = 1530, - [1533] = 1530, - [1534] = 586, - [1535] = 797, - [1536] = 1536, + [1533] = 425, + [1534] = 1534, + [1535] = 1526, + [1536] = 1423, [1537] = 1537, [1538] = 1538, [1539] = 1539, [1540] = 1540, - [1541] = 1530, - [1542] = 1542, - [1543] = 681, + [1541] = 660, + [1542] = 660, + [1543] = 1543, [1544] = 1544, - [1545] = 1540, - [1546] = 599, - [1547] = 1547, - [1548] = 587, - [1549] = 1530, - [1550] = 667, - [1551] = 588, - [1552] = 586, - [1553] = 1540, - [1554] = 1554, - [1555] = 667, - [1556] = 1556, - [1557] = 1557, - [1558] = 1558, - [1559] = 1540, - [1560] = 1417, + [1545] = 1545, + [1546] = 1546, + [1547] = 789, + [1548] = 1423, + [1549] = 1543, + [1550] = 1544, + [1551] = 1551, + [1552] = 1552, + [1553] = 1545, + [1554] = 1543, + [1555] = 1555, + [1556] = 581, + [1557] = 585, + [1558] = 1544, + [1559] = 1559, + [1560] = 1413, [1561] = 1561, [1562] = 1562, - [1563] = 1407, - [1564] = 1557, - [1565] = 1530, - [1566] = 1566, + [1563] = 1563, + [1564] = 651, + [1565] = 582, + [1566] = 651, [1567] = 1567, - [1568] = 1568, - [1569] = 1540, - [1570] = 681, - [1571] = 667, - [1572] = 681, - [1573] = 1573, - [1574] = 1557, + [1568] = 1543, + [1569] = 1569, + [1570] = 660, + [1571] = 1571, + [1572] = 1545, + [1573] = 1544, + [1574] = 572, [1575] = 1575, - [1576] = 1576, + [1576] = 651, [1577] = 1577, - [1578] = 1576, - [1579] = 1579, - [1580] = 1580, - [1581] = 1581, + [1578] = 1543, + [1579] = 1543, + [1580] = 572, + [1581] = 1544, [1582] = 1582, [1583] = 1583, [1584] = 1584, [1585] = 1585, [1586] = 1586, [1587] = 1587, - [1588] = 1566, + [1588] = 1588, [1589] = 1589, [1590] = 1590, - [1591] = 1591, - [1592] = 1592, + [1591] = 426, + [1592] = 428, [1593] = 1593, [1594] = 1594, - [1595] = 1595, + [1595] = 1582, [1596] = 1596, - [1597] = 1586, - [1598] = 1585, - [1599] = 1566, - [1600] = 599, - [1601] = 599, - [1602] = 1602, - [1603] = 1575, - [1604] = 1596, - [1605] = 1595, - [1606] = 1593, - [1607] = 1592, - [1608] = 1562, - [1609] = 1561, - [1610] = 1594, - [1611] = 587, - [1612] = 1589, - [1613] = 1613, - [1614] = 588, - [1615] = 1615, - [1616] = 1587, + [1597] = 1597, + [1598] = 1598, + [1599] = 581, + [1600] = 1562, + [1601] = 428, + [1602] = 1561, + [1603] = 1603, + [1604] = 1561, + [1605] = 1605, + [1606] = 1606, + [1607] = 1607, + [1608] = 1608, + [1609] = 1608, + [1610] = 1610, + [1611] = 1583, + [1612] = 1612, + [1613] = 1605, + [1614] = 1585, + [1615] = 1594, + [1616] = 1539, [1617] = 1617, - [1618] = 587, + [1618] = 1606, [1619] = 1619, - [1620] = 1591, - [1621] = 1582, - [1622] = 1562, - [1623] = 588, - [1624] = 1624, - [1625] = 1619, - [1626] = 1626, - [1627] = 1536, - [1628] = 1537, + [1620] = 1610, + [1621] = 1584, + [1622] = 426, + [1623] = 1623, + [1624] = 1597, + [1625] = 582, + [1626] = 1540, + [1627] = 1569, + [1628] = 1628, [1629] = 1629, - [1630] = 1630, - [1631] = 426, - [1632] = 425, - [1633] = 1617, - [1634] = 1615, - [1635] = 425, - [1636] = 1581, - [1637] = 1637, - [1638] = 1638, - [1639] = 426, + [1630] = 585, + [1631] = 1586, + [1632] = 1596, + [1633] = 581, + [1634] = 1617, + [1635] = 1539, + [1636] = 1636, + [1637] = 1540, + [1638] = 1612, + [1639] = 1639, [1640] = 1640, - [1641] = 1536, - [1642] = 1537, - [1643] = 1580, - [1644] = 1630, - [1645] = 1645, - [1646] = 1561, - [1647] = 1626, - [1648] = 1577, - [1649] = 1579, - [1650] = 1629, - [1651] = 1651, + [1641] = 1636, + [1642] = 1642, + [1643] = 582, + [1644] = 1639, + [1645] = 1628, + [1646] = 1569, + [1647] = 1587, + [1648] = 1648, + [1649] = 1562, + [1650] = 1607, + [1651] = 1629, [1652] = 1652, - [1653] = 1584, - [1654] = 1654, - [1655] = 1655, + [1653] = 585, + [1654] = 1642, + [1655] = 1590, [1656] = 1656, - [1657] = 1657, - [1658] = 463, - [1659] = 461, + [1657] = 447, + [1658] = 1658, + [1659] = 1659, [1660] = 1660, [1661] = 1661, - [1662] = 454, - [1663] = 1663, - [1664] = 458, - [1665] = 457, - [1666] = 1655, - [1667] = 1590, - [1668] = 437, - [1669] = 436, + [1662] = 1434, + [1663] = 1450, + [1664] = 1664, + [1665] = 1665, + [1666] = 1512, + [1667] = 1507, + [1668] = 432, + [1669] = 444, [1670] = 1670, - [1671] = 1671, - [1672] = 1672, - [1673] = 434, + [1671] = 1665, + [1672] = 435, + [1673] = 1673, [1674] = 1674, - [1675] = 1675, - [1676] = 1676, - [1677] = 1674, - [1678] = 443, - [1679] = 1674, - [1680] = 1655, - [1681] = 1476, + [1675] = 1665, + [1676] = 1664, + [1677] = 1661, + [1678] = 1665, + [1679] = 1679, + [1680] = 1680, + [1681] = 1664, [1682] = 1682, - [1683] = 1682, - [1684] = 1657, - [1685] = 430, + [1683] = 1683, + [1684] = 1664, + [1685] = 1665, [1686] = 1686, - [1687] = 450, - [1688] = 1676, - [1689] = 1655, - [1690] = 1690, - [1691] = 1469, - [1692] = 1441, + [1687] = 434, + [1688] = 1435, + [1689] = 1674, + [1690] = 1665, + [1691] = 1691, + [1692] = 448, [1693] = 1693, - [1694] = 1694, - [1695] = 1480, - [1696] = 1442, - [1697] = 1479, - [1698] = 1674, + [1694] = 449, + [1695] = 1433, + [1696] = 1665, + [1697] = 1429, + [1698] = 451, [1699] = 1699, - [1700] = 1700, - [1701] = 1476, + [1700] = 1492, + [1701] = 1670, [1702] = 1702, - [1703] = 1703, - [1704] = 1470, - [1705] = 1661, - [1706] = 449, - [1707] = 1655, - [1708] = 1700, - [1709] = 1674, - [1710] = 1655, - [1711] = 1674, - [1712] = 1712, - [1713] = 462, - [1714] = 1714, - [1715] = 1655, - [1716] = 1716, - [1717] = 431, - [1718] = 438, - [1719] = 448, - [1720] = 1455, - [1721] = 429, - [1722] = 1670, - [1723] = 1723, - [1724] = 1469, - [1725] = 452, - [1726] = 1470, - [1727] = 1426, - [1728] = 439, - [1729] = 1729, - [1730] = 1730, - [1731] = 1480, - [1732] = 1674, - [1733] = 1479, - [1734] = 1656, - [1735] = 1455, - [1736] = 1674, - [1737] = 1737, - [1738] = 1674, - [1739] = 1690, - [1740] = 1672, - [1741] = 441, - [1742] = 1674, - [1743] = 442, - [1744] = 1655, - [1745] = 1655, - [1746] = 1655, - [1747] = 1747, - [1748] = 446, - [1749] = 1424, - [1750] = 1427, - [1751] = 1428, - [1752] = 1655, - [1753] = 1655, - [1754] = 1675, - [1755] = 1674, - [1756] = 435, + [1703] = 1665, + [1704] = 1664, + [1705] = 1705, + [1706] = 1706, + [1707] = 1665, + [1708] = 1665, + [1709] = 1517, + [1710] = 1710, + [1711] = 1474, + [1712] = 1664, + [1713] = 1664, + [1714] = 1664, + [1715] = 1492, + [1716] = 1664, + [1717] = 1449, + [1718] = 1517, + [1719] = 1686, + [1720] = 1720, + [1721] = 1721, + [1722] = 1659, + [1723] = 1702, + [1724] = 455, + [1725] = 1680, + [1726] = 1477, + [1727] = 1699, + [1728] = 1728, + [1729] = 438, + [1730] = 440, + [1731] = 1731, + [1732] = 1732, + [1733] = 436, + [1734] = 1664, + [1735] = 1665, + [1736] = 441, + [1737] = 1603, + [1738] = 1664, + [1739] = 1664, + [1740] = 1740, + [1741] = 1728, + [1742] = 450, + [1743] = 1743, + [1744] = 452, + [1745] = 1745, + [1746] = 1746, + [1747] = 1507, + [1748] = 430, + [1749] = 1477, + [1750] = 446, + [1751] = 1474, + [1752] = 1683, + [1753] = 1512, + [1754] = 1754, + [1755] = 1755, + [1756] = 1756, [1757] = 1757, [1758] = 1758, [1759] = 1759, [1760] = 1760, [1761] = 1761, - [1762] = 1454, + [1762] = 1762, [1763] = 1763, [1764] = 1764, - [1765] = 1765, + [1765] = 1758, [1766] = 1766, [1767] = 1767, [1768] = 1768, [1769] = 1769, [1770] = 1770, - [1771] = 1448, + [1771] = 1771, [1772] = 1772, - [1773] = 1773, + [1773] = 1459, [1774] = 1774, [1775] = 1775, [1776] = 1776, @@ -5697,7 +5652,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1783] = 1783, [1784] = 1784, [1785] = 1785, - [1786] = 1441, + [1786] = 1776, [1787] = 1787, [1788] = 1788, [1789] = 1789, @@ -5709,395 +5664,395 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1795] = 1795, [1796] = 1796, [1797] = 1797, - [1798] = 1798, + [1798] = 1720, [1799] = 1799, [1800] = 1800, [1801] = 1801, [1802] = 1802, [1803] = 1803, - [1804] = 1763, - [1805] = 1785, + [1804] = 1442, + [1805] = 1805, [1806] = 1806, [1807] = 1807, [1808] = 1808, [1809] = 1809, - [1810] = 1759, + [1810] = 1810, [1811] = 1811, [1812] = 1812, [1813] = 1813, - [1814] = 1814, + [1814] = 1444, [1815] = 1815, - [1816] = 1816, - [1817] = 1787, + [1816] = 1441, + [1817] = 1817, [1818] = 1818, [1819] = 1819, - [1820] = 1449, - [1821] = 1446, - [1822] = 645, - [1823] = 1823, + [1820] = 1820, + [1821] = 1821, + [1822] = 1822, + [1823] = 1758, [1824] = 1824, - [1825] = 1809, + [1825] = 1825, [1826] = 1826, [1827] = 1827, [1828] = 1828, - [1829] = 1812, - [1830] = 1815, + [1829] = 1829, + [1830] = 1830, [1831] = 1831, - [1832] = 1832, - [1833] = 1833, - [1834] = 1442, + [1832] = 1787, + [1833] = 1830, + [1834] = 1449, [1835] = 1835, [1836] = 1836, [1837] = 1837, [1838] = 1838, [1839] = 1839, - [1840] = 1840, + [1840] = 1800, [1841] = 1841, - [1842] = 1831, - [1843] = 1840, - [1844] = 1826, - [1845] = 1838, - [1846] = 1837, - [1847] = 1847, - [1848] = 1803, - [1849] = 1800, + [1842] = 1784, + [1843] = 1802, + [1844] = 1844, + [1845] = 1845, + [1846] = 1846, + [1847] = 1821, + [1848] = 1845, + [1849] = 1783, [1850] = 1850, - [1851] = 1767, - [1852] = 1836, - [1853] = 1796, - [1854] = 1850, - [1855] = 1758, - [1856] = 1856, - [1857] = 1799, - [1858] = 1793, - [1859] = 1792, - [1860] = 1860, - [1861] = 1780, - [1862] = 1862, - [1863] = 1785, - [1864] = 1774, - [1865] = 1865, - [1866] = 1811, - [1867] = 1770, - [1868] = 1868, - [1869] = 1788, - [1870] = 1835, + [1851] = 1778, + [1852] = 1772, + [1853] = 1813, + [1854] = 1760, + [1855] = 1850, + [1856] = 1844, + [1857] = 1771, + [1858] = 1841, + [1859] = 1831, + [1860] = 1803, + [1861] = 1861, + [1862] = 1769, + [1863] = 1799, + [1864] = 1837, + [1865] = 1826, + [1866] = 1789, + [1867] = 1766, + [1868] = 1839, + [1869] = 1869, + [1870] = 1825, [1871] = 1871, - [1872] = 1779, - [1873] = 1784, - [1874] = 1777, - [1875] = 1671, - [1876] = 1444, - [1877] = 1877, - [1878] = 1878, - [1879] = 1879, - [1880] = 1769, - [1881] = 1865, - [1882] = 1882, - [1883] = 1839, - [1884] = 1862, - [1885] = 1885, - [1886] = 1886, - [1887] = 1887, - [1888] = 1860, - [1889] = 1878, - [1890] = 1764, - [1891] = 1891, + [1872] = 1872, + [1873] = 1873, + [1874] = 1822, + [1875] = 1453, + [1876] = 1872, + [1877] = 1763, + [1878] = 1761, + [1879] = 1757, + [1880] = 1758, + [1881] = 1791, + [1882] = 1807, + [1883] = 1782, + [1884] = 1884, + [1885] = 1755, + [1886] = 1762, + [1887] = 1809, + [1888] = 1888, + [1889] = 1810, + [1890] = 1817, + [1891] = 1788, [1892] = 1892, [1893] = 1893, - [1894] = 1760, - [1895] = 1856, - [1896] = 1832, + [1894] = 1756, + [1895] = 1827, + [1896] = 1836, [1897] = 1897, - [1898] = 1898, - [1899] = 1899, - [1900] = 1772, - [1901] = 1791, - [1902] = 1893, - [1903] = 1887, - [1904] = 1879, - [1905] = 1785, - [1906] = 1877, - [1907] = 1807, - [1908] = 1891, - [1909] = 1841, - [1910] = 1773, + [1898] = 1450, + [1899] = 1780, + [1900] = 1838, + [1901] = 1781, + [1902] = 636, + [1903] = 1795, + [1904] = 547, + [1905] = 1905, + [1906] = 1906, + [1907] = 1907, + [1908] = 1908, + [1909] = 1909, + [1910] = 1910, [1911] = 1911, - [1912] = 521, + [1912] = 1912, [1913] = 1913, [1914] = 1914, - [1915] = 1915, + [1915] = 1906, [1916] = 1916, - [1917] = 519, + [1917] = 1917, [1918] = 1918, - [1919] = 510, + [1919] = 1919, [1920] = 1920, [1921] = 1921, - [1922] = 480, - [1923] = 481, + [1922] = 1908, + [1923] = 1923, [1924] = 1924, [1925] = 1925, - [1926] = 502, - [1927] = 1927, - [1928] = 485, + [1926] = 1926, + [1927] = 1909, + [1928] = 1928, [1929] = 1929, [1930] = 1930, - [1931] = 495, - [1932] = 496, + [1931] = 1931, + [1932] = 1912, [1933] = 1933, - [1934] = 472, - [1935] = 499, - [1936] = 1936, - [1937] = 501, - [1938] = 505, - [1939] = 508, + [1934] = 1910, + [1935] = 1935, + [1936] = 1660, + [1937] = 1937, + [1938] = 1938, + [1939] = 1911, [1940] = 1940, - [1941] = 509, - [1942] = 512, - [1943] = 516, - [1944] = 467, - [1945] = 518, + [1941] = 1941, + [1942] = 1942, + [1943] = 1943, + [1944] = 1944, + [1945] = 1913, [1946] = 1946, [1947] = 1947, - [1948] = 1948, - [1949] = 1949, - [1950] = 525, - [1951] = 1951, - [1952] = 562, - [1953] = 1953, - [1954] = 1933, - [1955] = 471, - [1956] = 526, - [1957] = 535, - [1958] = 1958, - [1959] = 1959, - [1960] = 529, - [1961] = 542, - [1962] = 447, - [1963] = 456, - [1964] = 460, - [1965] = 555, - [1966] = 1966, - [1967] = 466, - [1968] = 1968, - [1969] = 551, - [1970] = 552, - [1971] = 554, - [1972] = 455, - [1973] = 556, - [1974] = 469, + [1948] = 496, + [1949] = 495, + [1950] = 1950, + [1951] = 490, + [1952] = 469, + [1953] = 460, + [1954] = 520, + [1955] = 513, + [1956] = 504, + [1957] = 1957, + [1958] = 500, + [1959] = 486, + [1960] = 518, + [1961] = 466, + [1962] = 1962, + [1963] = 1963, + [1964] = 467, + [1965] = 1965, + [1966] = 468, + [1967] = 471, + [1968] = 472, + [1969] = 476, + [1970] = 478, + [1971] = 479, + [1972] = 481, + [1973] = 482, + [1974] = 499, [1975] = 1975, - [1976] = 1976, - [1977] = 473, - [1978] = 474, - [1979] = 1979, - [1980] = 1871, - [1981] = 478, - [1982] = 1982, - [1983] = 1983, - [1984] = 1984, - [1985] = 1916, - [1986] = 1986, - [1987] = 1987, - [1988] = 1988, - [1989] = 479, - [1990] = 1990, - [1991] = 484, - [1992] = 1992, - [1993] = 492, - [1994] = 493, + [1976] = 509, + [1977] = 530, + [1978] = 532, + [1979] = 533, + [1980] = 534, + [1981] = 540, + [1982] = 541, + [1983] = 553, + [1984] = 561, + [1985] = 562, + [1986] = 537, + [1987] = 494, + [1988] = 483, + [1989] = 462, + [1990] = 539, + [1991] = 548, + [1992] = 514, + [1993] = 535, + [1994] = 512, [1995] = 1995, - [1996] = 1996, - [1997] = 475, - [1998] = 1918, - [1999] = 506, - [2000] = 507, - [2001] = 483, - [2002] = 513, - [2003] = 1949, - [2004] = 2004, - [2005] = 514, - [2006] = 2006, - [2007] = 515, - [2008] = 2008, - [2009] = 546, - [2010] = 2010, - [2011] = 1979, - [2012] = 2012, - [2013] = 557, - [2014] = 2014, - [2015] = 1929, - [2016] = 565, + [1996] = 497, + [1997] = 491, + [1998] = 470, + [1999] = 510, + [2000] = 522, + [2001] = 1917, + [2002] = 480, + [2003] = 550, + [2004] = 559, + [2005] = 516, + [2006] = 551, + [2007] = 1965, + [2008] = 519, + [2009] = 457, + [2010] = 493, + [2011] = 1917, + [2012] = 465, + [2013] = 464, + [2014] = 473, + [2015] = 474, + [2016] = 538, [2017] = 2017, - [2018] = 1729, - [2019] = 465, - [2020] = 561, - [2021] = 2021, - [2022] = 2022, - [2023] = 560, - [2024] = 559, - [2025] = 558, - [2026] = 549, - [2027] = 2027, - [2028] = 544, - [2029] = 540, - [2030] = 1940, - [2031] = 539, - [2032] = 536, - [2033] = 2033, - [2034] = 533, + [2018] = 544, + [2019] = 536, + [2020] = 2020, + [2021] = 461, + [2022] = 475, + [2023] = 477, + [2024] = 2024, + [2025] = 507, + [2026] = 521, + [2027] = 459, + [2028] = 1965, + [2029] = 517, + [2030] = 1917, + [2031] = 529, + [2032] = 554, + [2033] = 552, + [2034] = 2034, [2035] = 2035, [2036] = 531, - [2037] = 527, - [2038] = 2038, - [2039] = 566, + [2037] = 528, + [2038] = 525, + [2039] = 502, [2040] = 2040, - [2041] = 2041, - [2042] = 494, - [2043] = 2043, - [2044] = 2044, - [2045] = 2045, - [2046] = 1948, - [2047] = 2047, - [2048] = 2048, - [2049] = 563, - [2050] = 468, - [2051] = 476, - [2052] = 2052, - [2053] = 477, - [2054] = 459, - [2055] = 451, - [2056] = 532, - [2057] = 1953, - [2058] = 2058, + [2041] = 492, + [2042] = 501, + [2043] = 503, + [2044] = 1965, + [2045] = 505, + [2046] = 506, + [2047] = 508, + [2048] = 511, + [2049] = 2049, + [2050] = 515, + [2051] = 523, + [2052] = 524, + [2053] = 527, + [2054] = 456, + [2055] = 542, + [2056] = 543, + [2057] = 545, + [2058] = 546, [2059] = 2059, - [2060] = 2060, - [2061] = 538, - [2062] = 534, + [2060] = 1905, + [2061] = 1916, + [2062] = 2062, [2063] = 2063, - [2064] = 504, - [2065] = 528, - [2066] = 2066, - [2067] = 2067, - [2068] = 564, - [2069] = 520, + [2064] = 2064, + [2065] = 2065, + [2066] = 1931, + [2067] = 555, + [2068] = 557, + [2069] = 2069, [2070] = 2070, - [2071] = 541, + [2071] = 558, [2072] = 2072, - [2073] = 522, - [2074] = 523, - [2075] = 2075, - [2076] = 2076, - [2077] = 2077, - [2078] = 2078, - [2079] = 2079, - [2080] = 524, - [2081] = 537, - [2082] = 2082, - [2083] = 545, - [2084] = 1927, - [2085] = 2085, - [2086] = 2086, - [2087] = 1959, - [2088] = 2088, + [2073] = 1917, + [2074] = 2074, + [2075] = 1710, + [2076] = 487, + [2077] = 1957, + [2078] = 488, + [2079] = 489, + [2080] = 2080, + [2081] = 1479, + [2082] = 458, + [2083] = 2083, + [2084] = 2084, + [2085] = 498, + [2086] = 485, + [2087] = 1328, + [2088] = 560, [2089] = 2089, [2090] = 2090, [2091] = 2091, - [2092] = 2092, - [2093] = 2093, - [2094] = 548, - [2095] = 2095, - [2096] = 2096, - [2097] = 2021, + [2092] = 1941, + [2093] = 1918, + [2094] = 2094, + [2095] = 1917, + [2096] = 1950, + [2097] = 2097, [2098] = 2098, [2099] = 2099, - [2100] = 550, - [2101] = 444, + [2100] = 2100, + [2101] = 2101, [2102] = 2102, - [2103] = 486, + [2103] = 1965, [2104] = 2104, [2105] = 2105, - [2106] = 487, - [2107] = 489, - [2108] = 500, - [2109] = 1702, - [2110] = 2077, - [2111] = 2076, - [2112] = 503, - [2113] = 553, - [2114] = 2092, - [2115] = 547, - [2116] = 497, + [2106] = 2106, + [2107] = 2107, + [2108] = 1907, + [2109] = 2109, + [2110] = 2110, + [2111] = 1925, + [2112] = 1962, + [2113] = 2113, + [2114] = 2114, + [2115] = 1965, + [2116] = 2116, [2117] = 2117, - [2118] = 482, + [2118] = 2118, [2119] = 2119, - [2120] = 488, - [2121] = 490, + [2120] = 2120, + [2121] = 1963, [2122] = 2122, [2123] = 2123, - [2124] = 491, - [2125] = 1477, - [2126] = 1953, - [2127] = 517, + [2124] = 2124, + [2125] = 2125, + [2126] = 2126, + [2127] = 2127, [2128] = 2128, - [2129] = 2012, - [2130] = 1326, - [2131] = 530, + [2129] = 2129, + [2130] = 2130, + [2131] = 2131, [2132] = 2132, - [2133] = 1966, - [2134] = 1990, - [2135] = 2105, - [2136] = 1930, + [2133] = 2133, + [2134] = 1917, + [2135] = 2135, + [2136] = 2136, [2137] = 2137, - [2138] = 1920, + [2138] = 2138, [2139] = 2139, - [2140] = 2140, + [2140] = 1965, [2141] = 2141, [2142] = 2142, - [2143] = 1975, - [2144] = 2144, - [2145] = 1990, - [2146] = 2146, - [2147] = 1953, + [2143] = 2143, + [2144] = 1806, + [2145] = 2145, + [2146] = 2083, + [2147] = 2147, [2148] = 2148, [2149] = 2149, [2150] = 2150, - [2151] = 1990, - [2152] = 1953, - [2153] = 2153, + [2151] = 2151, + [2152] = 2152, + [2153] = 1975, [2154] = 2154, [2155] = 2155, - [2156] = 2156, + [2156] = 2090, [2157] = 2157, - [2158] = 2158, + [2158] = 1917, [2159] = 2159, - [2160] = 2160, + [2160] = 1995, [2161] = 2161, [2162] = 2162, - [2163] = 2163, + [2163] = 1965, [2164] = 2164, - [2165] = 1990, - [2166] = 1953, - [2167] = 1936, - [2168] = 2095, + [2165] = 2165, + [2166] = 2166, + [2167] = 2167, + [2168] = 2168, [2169] = 2169, [2170] = 2170, - [2171] = 470, - [2172] = 1990, - [2173] = 1953, - [2174] = 1987, + [2171] = 2171, + [2172] = 2172, + [2173] = 2173, + [2174] = 2174, [2175] = 2175, - [2176] = 1988, + [2176] = 2176, [2177] = 2177, - [2178] = 1990, - [2179] = 1990, - [2180] = 2180, - [2181] = 1953, + [2178] = 2178, + [2179] = 2179, + [2180] = 2174, + [2181] = 2181, [2182] = 2182, [2183] = 2183, [2184] = 2184, [2185] = 2185, - [2186] = 2058, + [2186] = 2186, [2187] = 2187, [2188] = 2188, [2189] = 2189, @@ -6113,7 +6068,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2199] = 2199, [2200] = 2200, [2201] = 2201, - [2202] = 2202, + [2202] = 2179, [2203] = 2203, [2204] = 2204, [2205] = 2205, @@ -6138,7 +6093,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2224] = 2224, [2225] = 2225, [2226] = 2226, - [2227] = 2227, + [2227] = 2171, [2228] = 2228, [2229] = 2229, [2230] = 2230, @@ -6154,29 +6109,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2240] = 2240, [2241] = 2241, [2242] = 2242, - [2243] = 2243, - [2244] = 2244, + [2243] = 1661, + [2244] = 2176, [2245] = 2245, - [2246] = 2246, - [2247] = 2247, - [2248] = 2248, + [2246] = 2174, + [2247] = 2181, + [2248] = 2182, [2249] = 2249, - [2250] = 2250, + [2250] = 2177, [2251] = 2251, [2252] = 2252, [2253] = 2253, - [2254] = 2254, + [2254] = 2228, [2255] = 2255, [2256] = 2256, [2257] = 2257, [2258] = 2258, [2259] = 2259, - [2260] = 2260, + [2260] = 2178, [2261] = 2261, [2262] = 2262, [2263] = 2263, [2264] = 2264, - [2265] = 2265, + [2265] = 2178, [2266] = 2266, [2267] = 2267, [2268] = 2268, @@ -6185,197 +6140,197 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2271] = 2271, [2272] = 2272, [2273] = 2273, - [2274] = 2274, - [2275] = 2211, + [2274] = 2271, + [2275] = 2275, [2276] = 2276, - [2277] = 2213, - [2278] = 2218, - [2279] = 2225, - [2280] = 2239, - [2281] = 2281, + [2277] = 2277, + [2278] = 2278, + [2279] = 2278, + [2280] = 2277, + [2281] = 2245, [2282] = 2282, - [2283] = 2283, - [2284] = 2284, - [2285] = 2285, - [2286] = 2286, - [2287] = 2287, - [2288] = 2288, + [2283] = 2273, + [2284] = 2270, + [2285] = 2276, + [2286] = 2275, + [2287] = 2282, + [2288] = 2272, [2289] = 2289, - [2290] = 2290, - [2291] = 2212, - [2292] = 2209, + [2290] = 2268, + [2291] = 2267, + [2292] = 2292, [2293] = 2293, - [2294] = 2294, - [2295] = 2295, + [2294] = 2269, + [2295] = 2249, [2296] = 2296, - [2297] = 2297, - [2298] = 2298, - [2299] = 2299, + [2297] = 2240, + [2298] = 2239, + [2299] = 2231, [2300] = 2300, - [2301] = 2301, - [2302] = 2302, - [2303] = 1682, + [2301] = 2208, + [2302] = 2203, + [2303] = 2289, [2304] = 2304, [2305] = 2305, [2306] = 2306, - [2307] = 2307, - [2308] = 2308, + [2307] = 2261, + [2308] = 2183, [2309] = 2309, - [2310] = 2310, - [2311] = 2293, - [2312] = 2214, + [2310] = 2174, + [2311] = 2311, + [2312] = 2062, [2313] = 2313, - [2314] = 2314, + [2314] = 2237, [2315] = 2315, - [2316] = 2286, - [2317] = 2300, - [2318] = 2318, - [2319] = 2285, - [2320] = 2320, + [2316] = 2316, + [2317] = 2193, + [2318] = 1659, + [2319] = 2185, + [2320] = 2186, [2321] = 2321, - [2322] = 2322, + [2322] = 2187, [2323] = 2323, [2324] = 2324, [2325] = 2325, - [2326] = 2274, - [2327] = 2267, - [2328] = 2266, - [2329] = 2329, - [2330] = 2299, - [2331] = 2307, - [2332] = 2243, - [2333] = 2333, - [2334] = 2334, + [2326] = 2326, + [2327] = 2238, + [2328] = 2328, + [2329] = 2188, + [2330] = 2189, + [2331] = 2264, + [2332] = 2332, + [2333] = 2034, + [2334] = 2263, [2335] = 2335, - [2336] = 2290, - [2337] = 2251, - [2338] = 2213, - [2339] = 2339, - [2340] = 2321, - [2341] = 2341, - [2342] = 2241, - [2343] = 2343, - [2344] = 2344, - [2345] = 2333, - [2346] = 2188, - [2347] = 2236, - [2348] = 2217, + [2336] = 2190, + [2337] = 2262, + [2338] = 2338, + [2339] = 2304, + [2340] = 2313, + [2341] = 2184, + [2342] = 2259, + [2343] = 2191, + [2344] = 2192, + [2345] = 2209, + [2346] = 2346, + [2347] = 2347, + [2348] = 2348, [2349] = 2349, [2350] = 2350, [2351] = 2351, - [2352] = 2329, + [2352] = 2352, [2353] = 2353, - [2354] = 2354, - [2355] = 2355, - [2356] = 2356, - [2357] = 2357, - [2358] = 2251, - [2359] = 2198, - [2360] = 2360, - [2361] = 2306, - [2362] = 2194, + [2354] = 2195, + [2355] = 2258, + [2356] = 2196, + [2357] = 2197, + [2358] = 2198, + [2359] = 2200, + [2360] = 2201, + [2361] = 2257, + [2362] = 2362, [2363] = 2363, [2364] = 2364, [2365] = 2365, - [2366] = 2366, - [2367] = 2298, - [2368] = 2368, - [2369] = 2369, - [2370] = 2287, - [2371] = 2295, - [2372] = 2372, - [2373] = 2283, - [2374] = 2263, - [2375] = 2252, - [2376] = 2248, - [2377] = 1690, + [2366] = 2204, + [2367] = 2367, + [2368] = 2205, + [2369] = 2256, + [2370] = 2255, + [2371] = 2206, + [2372] = 2207, + [2373] = 2373, + [2374] = 2374, + [2375] = 2375, + [2376] = 2376, + [2377] = 2377, [2378] = 2378, - [2379] = 2238, - [2380] = 2237, + [2379] = 2379, + [2380] = 2380, [2381] = 2381, - [2382] = 2205, - [2383] = 2199, - [2384] = 2195, - [2385] = 2309, - [2386] = 2272, - [2387] = 2284, + [2382] = 2382, + [2383] = 2210, + [2384] = 2211, + [2385] = 2212, + [2386] = 2386, + [2387] = 2214, [2388] = 2388, - [2389] = 2289, - [2390] = 2296, - [2391] = 2391, - [2392] = 2297, - [2393] = 2302, - [2394] = 2304, + [2389] = 2215, + [2390] = 2216, + [2391] = 2217, + [2392] = 2392, + [2393] = 2218, + [2394] = 2219, [2395] = 2395, - [2396] = 2078, - [2397] = 2185, - [2398] = 2210, - [2399] = 2308, - [2400] = 2324, - [2401] = 2401, - [2402] = 2196, - [2403] = 2201, - [2404] = 2404, - [2405] = 2405, - [2406] = 2406, - [2407] = 2407, - [2408] = 2207, + [2396] = 2396, + [2397] = 2220, + [2398] = 2221, + [2399] = 2253, + [2400] = 2400, + [2401] = 2233, + [2402] = 2223, + [2403] = 2224, + [2404] = 2225, + [2405] = 2252, + [2406] = 2226, + [2407] = 2251, + [2408] = 2408, [2409] = 2409, - [2410] = 2365, - [2411] = 2407, - [2412] = 2351, - [2413] = 2276, - [2414] = 2356, + [2410] = 2238, + [2411] = 2411, + [2412] = 2178, + [2413] = 2413, + [2414] = 2414, [2415] = 2415, - [2416] = 2288, - [2417] = 2294, - [2418] = 2418, - [2419] = 2212, - [2420] = 2301, - [2421] = 2334, - [2422] = 2422, - [2423] = 2260, + [2416] = 2241, + [2417] = 2236, + [2418] = 2315, + [2419] = 2235, + [2420] = 2229, + [2421] = 2230, + [2422] = 2234, + [2423] = 2316, [2424] = 2424, - [2425] = 2372, - [2426] = 2213, - [2427] = 2378, - [2428] = 2405, - [2429] = 2415, - [2430] = 2271, + [2425] = 2232, + [2426] = 2426, + [2427] = 2170, + [2428] = 2428, + [2429] = 2429, + [2430] = 2430, [2431] = 2431, [2432] = 2432, - [2433] = 2314, - [2434] = 2323, - [2435] = 2431, - [2436] = 2231, - [2437] = 2315, - [2438] = 2313, - [2439] = 2343, - [2440] = 2269, - [2441] = 2229, - [2442] = 2344, - [2443] = 2212, - [2444] = 2230, - [2445] = 2259, - [2446] = 2446, - [2447] = 2406, - [2448] = 2258, - [2449] = 2368, - [2450] = 2257, - [2451] = 2366, - [2452] = 2255, - [2453] = 2305, - [2454] = 2253, - [2455] = 2242, - [2456] = 2409, - [2457] = 2350, - [2458] = 2251, - [2459] = 2349, + [2433] = 2433, + [2434] = 2434, + [2435] = 2435, + [2436] = 2436, + [2437] = 2437, + [2438] = 2238, + [2439] = 2439, + [2440] = 2440, + [2441] = 2441, + [2442] = 2442, + [2443] = 2443, + [2444] = 2444, + [2445] = 2445, + [2446] = 2017, + [2447] = 2447, + [2448] = 2448, + [2449] = 2449, + [2450] = 2450, + [2451] = 2442, + [2452] = 2452, + [2453] = 2453, + [2454] = 2454, + [2455] = 2455, + [2456] = 2456, + [2457] = 2457, + [2458] = 2458, + [2459] = 2459, [2460] = 2460, [2461] = 2461, [2462] = 2462, [2463] = 2463, - [2464] = 2464, + [2464] = 2455, [2465] = 2465, [2466] = 2466, [2467] = 2467, @@ -6389,864 +6344,797 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2475] = 2475, [2476] = 2476, [2477] = 2477, - [2478] = 2469, - [2479] = 2479, + [2478] = 2478, + [2479] = 2441, [2480] = 2480, - [2481] = 2481, - [2482] = 2477, + [2481] = 2441, + [2482] = 2480, [2483] = 2483, - [2484] = 2473, + [2484] = 2484, [2485] = 2485, - [2486] = 2486, + [2486] = 2475, [2487] = 2487, - [2488] = 2488, - [2489] = 2460, - [2490] = 2490, - [2491] = 2491, - [2492] = 2492, - [2493] = 2493, + [2488] = 2474, + [2489] = 2035, + [2490] = 2465, + [2491] = 2462, + [2492] = 2442, + [2493] = 2471, [2494] = 2494, - [2495] = 2495, + [2495] = 2461, [2496] = 2496, [2497] = 2497, - [2498] = 2466, - [2499] = 2499, - [2500] = 2468, + [2498] = 2498, + [2499] = 2456, + [2500] = 2455, [2501] = 2501, - [2502] = 2502, - [2503] = 2503, - [2504] = 2504, - [2505] = 2470, - [2506] = 2506, + [2502] = 2461, + [2503] = 2456, + [2504] = 2455, + [2505] = 2454, + [2506] = 2454, [2507] = 2507, [2508] = 2508, [2509] = 2509, [2510] = 2510, - [2511] = 2511, - [2512] = 2512, + [2511] = 2498, + [2512] = 2443, [2513] = 2513, [2514] = 2514, [2515] = 2515, [2516] = 2516, - [2517] = 2517, + [2517] = 2509, [2518] = 2518, - [2519] = 2519, - [2520] = 2472, - [2521] = 2470, - [2522] = 2518, - [2523] = 2475, + [2519] = 2475, + [2520] = 2443, + [2521] = 2521, + [2522] = 2510, + [2523] = 2439, [2524] = 2524, [2525] = 2525, - [2526] = 2526, + [2526] = 2445, [2527] = 2527, - [2528] = 2528, - [2529] = 2467, - [2530] = 2465, - [2531] = 2499, + [2528] = 2443, + [2529] = 2529, + [2530] = 2516, + [2531] = 2445, [2532] = 2532, - [2533] = 2477, - [2534] = 2466, - [2535] = 2468, - [2536] = 2475, - [2537] = 2537, - [2538] = 2525, + [2533] = 2529, + [2534] = 2518, + [2535] = 2513, + [2536] = 2536, + [2537] = 2524, + [2538] = 2508, [2539] = 2539, [2540] = 2540, - [2541] = 2541, - [2542] = 2059, - [2543] = 2473, - [2544] = 2462, - [2545] = 2545, - [2546] = 2468, - [2547] = 2501, - [2548] = 2467, - [2549] = 2549, - [2550] = 2475, - [2551] = 2473, - [2552] = 2493, - [2553] = 2504, - [2554] = 2465, - [2555] = 2555, - [2556] = 2502, - [2557] = 2494, - [2558] = 2558, - [2559] = 2473, - [2560] = 2488, - [2561] = 2561, - [2562] = 2469, + [2541] = 2443, + [2542] = 2462, + [2543] = 2543, + [2544] = 2514, + [2545] = 2515, + [2546] = 2470, + [2547] = 2547, + [2548] = 2548, + [2549] = 2455, + [2550] = 2550, + [2551] = 2551, + [2552] = 2552, + [2553] = 2553, + [2554] = 2554, + [2555] = 2548, + [2556] = 2547, + [2557] = 2536, + [2558] = 2458, + [2559] = 2559, + [2560] = 2445, + [2561] = 2540, + [2562] = 2562, [2563] = 2563, - [2564] = 2564, - [2565] = 2497, - [2566] = 2566, - [2567] = 2506, - [2568] = 2481, - [2569] = 2569, + [2564] = 2496, + [2565] = 2457, + [2566] = 2507, + [2567] = 2553, + [2568] = 2444, + [2569] = 2552, [2570] = 2570, - [2571] = 2475, - [2572] = 2511, - [2573] = 2528, - [2574] = 2574, - [2575] = 2532, - [2576] = 2576, - [2577] = 2468, + [2571] = 2571, + [2572] = 2572, + [2573] = 2442, + [2574] = 2550, + [2575] = 2452, + [2576] = 2462, + [2577] = 2577, [2578] = 2578, - [2579] = 2570, - [2580] = 2497, - [2581] = 2485, - [2582] = 2460, - [2583] = 2541, - [2584] = 2517, - [2585] = 2516, - [2586] = 2510, - [2587] = 2587, - [2588] = 2503, + [2579] = 2475, + [2580] = 2580, + [2581] = 2441, + [2582] = 2447, + [2583] = 2454, + [2584] = 2455, + [2585] = 2585, + [2586] = 2455, + [2587] = 2508, + [2588] = 2455, [2589] = 2589, - [2590] = 2492, - [2591] = 2491, - [2592] = 2592, - [2593] = 2487, - [2594] = 2469, - [2595] = 2595, - [2596] = 2596, + [2590] = 2590, + [2591] = 2476, + [2592] = 2440, + [2593] = 2477, + [2594] = 2508, + [2595] = 2501, + [2596] = 2444, [2597] = 2597, - [2598] = 2508, - [2599] = 2515, - [2600] = 2600, - [2601] = 2474, - [2602] = 2468, - [2603] = 2592, - [2604] = 1995, - [2605] = 2509, - [2606] = 2539, - [2607] = 2465, - [2608] = 2545, - [2609] = 2549, - [2610] = 2467, - [2611] = 2611, + [2598] = 2455, + [2599] = 2452, + [2600] = 2455, + [2601] = 2456, + [2602] = 2602, + [2603] = 2461, + [2604] = 2494, + [2605] = 2605, + [2606] = 2494, + [2607] = 2607, + [2608] = 2508, + [2609] = 2455, + [2610] = 2454, + [2611] = 2602, [2612] = 2612, - [2613] = 2468, - [2614] = 2470, - [2615] = 2615, - [2616] = 2472, - [2617] = 2468, - [2618] = 2618, - [2619] = 2466, - [2620] = 2477, - [2621] = 2497, - [2622] = 2578, - [2623] = 2623, - [2624] = 2576, - [2625] = 2468, - [2626] = 2626, - [2627] = 2462, - [2628] = 2471, - [2629] = 2629, - [2630] = 2497, - [2631] = 2592, - [2632] = 2486, - [2633] = 2633, - [2634] = 2468, - [2635] = 2549, - [2636] = 2468, - [2637] = 2497, - [2638] = 2611, - [2639] = 2639, - [2640] = 2497, - [2641] = 2587, - [2642] = 2519, - [2643] = 2643, + [2613] = 2543, + [2614] = 2614, + [2615] = 2513, + [2616] = 2508, + [2617] = 2559, + [2618] = 2458, + [2619] = 2524, + [2620] = 2525, + [2621] = 2455, + [2622] = 2521, + [2623] = 2571, + [2624] = 2444, + [2625] = 2612, + [2626] = 2570, + [2627] = 2452, + [2628] = 2543, + [2629] = 2572, + [2630] = 2521, + [2631] = 2577, + [2632] = 2543, + [2633] = 2614, + [2634] = 2578, + [2635] = 2580, + [2636] = 2455, + [2637] = 2521, + [2638] = 2508, + [2639] = 2614, + [2640] = 2602, + [2641] = 2614, + [2642] = 2602, + [2643] = 2508, [2644] = 2644, - [2645] = 2490, - [2646] = 2589, - [2647] = 2644, - [2648] = 2643, - [2649] = 2472, - [2650] = 2650, - [2651] = 2651, - [2652] = 2595, - [2653] = 2528, - [2654] = 2471, - [2655] = 2479, - [2656] = 2596, - [2657] = 2483, - [2658] = 2597, - [2659] = 2592, - [2660] = 2600, - [2661] = 2527, - [2662] = 2549, - [2663] = 2643, - [2664] = 2468, - [2665] = 2483, - [2666] = 2537, - [2667] = 2643, - [2668] = 2639, - [2669] = 2669, - [2670] = 2611, - [2671] = 2514, - [2672] = 2483, - [2673] = 2497, - [2674] = 2639, - [2675] = 2675, - [2676] = 2639, - [2677] = 2611, - [2678] = 2468, - [2679] = 2679, - [2680] = 2680, + [2645] = 2645, }; -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 inline bool sym_name_character_set_1(int32_t c) { - return (c < 161 - ? (c < '_' - ? (c < 'A' - ? (c >= '0' && c <= '9') - : c <= 'Z') - : (c <= '_' || (c < 128 - ? (c >= 'a' && c <= 'z') - : c <= 159))) - : (c <= 8202 || (c < 57344 - ? (c < 8289 - ? (c >= 8204 && c <= 8287) - : c <= 55295) - : (c <= 65278 || (c >= 65280 && c <= 65535))))); -} - -static inline bool sym_name_character_set_2(int32_t c) { - return (c < 161 - ? (c < 'a' - ? (c < '_' - ? (c >= 'A' && c <= 'Z') - : c <= '_') - : (c <= 'z' || (c >= 128 && c <= 159))) - : (c <= 8202 || (c < 57344 - ? (c < 8289 - ? (c >= 8204 && c <= 8287) - : c <= 55295) - : (c <= 65278 || (c >= 65280 && c <= 65535))))); -} +static TSCharacterRange sym_escape_sequence_character_set_1[] = { + {'"', '"'}, {'$', '$'}, {'0', '7'}, {'\\', '\\'}, {'`', '`'}, {'e', 'f'}, {'n', 'n'}, {'r', 'r'}, + {'t', 'v'}, {'x', 'x'}, +}; -static inline bool sym_name_character_set_3(int32_t c) { - return (c < 161 - ? (c < '_' - ? (c < 'B' - ? (c >= '0' && c <= '9') - : c <= 'Z') - : (c <= '_' || (c < 128 - ? (c >= 'b' && c <= 'z') - : c <= 159))) - : (c <= 8202 || (c < 57344 - ? (c < 8289 - ? (c >= 8204 && c <= 8287) - : c <= 55295) - : (c <= 65278 || (c >= 65280 && c <= 65535))))); -} +static TSCharacterRange sym_name_character_set_1[] = { + {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0x80, 0x9f}, {0xa1, 0x200a}, {0x200c, 0x205f}, {0x2061, 0xfefe}, + {0xff00, 0xffff}, +}; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(68); - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(183); - if (lookahead == '#') ADVANCE(265); - if (lookahead == '$') ADVANCE(188); - if (lookahead == '%') ADVANCE(224); - if (lookahead == '&') ADVANCE(86); - if (lookahead == '\'') ADVANCE(186); - if (lookahead == '(') ADVANCE(96); - if (lookahead == ')') ADVANCE(97); - if (lookahead == '*') ADVANCE(219); - if (lookahead == '+') ADVANCE(126); - if (lookahead == ',') ADVANCE(87); - if (lookahead == '-') ADVANCE(129); - if (lookahead == '.') ADVANCE(217); - if (lookahead == '/') ADVANCE(222); - if (lookahead == '0') ADVANCE(116); - if (lookahead == ':') ADVANCE(94); - if (lookahead == ';') ADVANCE(83); - if (lookahead == '<') ADVANCE(205); - if (lookahead == '=') ADVANCE(88); - if (lookahead == '>') ADVANCE(206); - if (lookahead == '?') ADVANCE(99); - if (lookahead == '@') ADVANCE(135); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(90); - if (lookahead == ']') ADVANCE(155); - if (lookahead == '^') ADVANCE(196); - if (lookahead == '_') ADVANCE(259); - if (lookahead == '`') ADVANCE(187); - if (lookahead == '{') ADVANCE(91); - if (lookahead == '|') ADVANCE(104); - if (lookahead == '}') ADVANCE(92); - if (lookahead == '~') ADVANCE(132); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(249); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(225); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(228); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(229); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(243); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(257); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(255); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(248); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(241); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(118); + if (eof) ADVANCE(66); + ADVANCE_MAP( + '!', 132, + '"', 181, + '#', 262, + '$', 186, + '%', 222, + '&', 84, + '\'', 184, + '(', 94, + ')', 95, + '*', 217, + '+', 124, + ',', 85, + '-', 127, + '.', 215, + '/', 220, + '0', 114, + ':', 92, + ';', 81, + '<', 203, + '=', 86, + '>', 204, + '?', 97, + '@', 133, + '[', 152, + '\\', 88, + ']', 153, + '^', 194, + '_', 257, + '`', 185, + '{', 89, + '|', 102, + '}', 90, + '~', 130, + 'A', 247, + 'a', 247, + 'B', 223, + 'b', 223, + 'E', 226, + 'e', 226, + 'F', 227, + 'f', 227, + 'I', 241, + 'i', 241, + 'N', 255, + 'n', 255, + 'S', 253, + 's', 253, + 'T', 246, + 't', 246, + 'U', 239, + 'u', 239, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(116); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(63) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(61); if (('C' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(261); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(262); + if (lookahead == '\n') ADVANCE(260); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(262); + if (lookahead == '\n') ADVANCE(260); if (lookahead == '\r') ADVANCE(1); if (lookahead != 0 && - lookahead != '>') ADVANCE(263); + lookahead != '>') ADVANCE(261); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(184); - if (lookahead == '\r') ADVANCE(184); - if (lookahead == '#') ADVANCE(266); - if (lookahead == '$') ADVANCE(188); - if (lookahead == '-') ADVANCE(31); - if (lookahead == '/') ADVANCE(19); - if (lookahead == '?') ADVANCE(33); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(53); - if (lookahead == '{') ADVANCE(91); + ADVANCE_MAP( + '\n', 182, + '\r', 182, + '#', 263, + '$', 186, + '-', 30, + '/', 19, + '?', 32, + '[', 152, + '\\', 34, + '{', 89, + ); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(4) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(4); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(184); - if (lookahead == '\r') ADVANCE(184); - if (lookahead == '#') ADVANCE(266); - if (lookahead == '$') ADVANCE(188); - if (lookahead == '-') ADVANCE(31); - if (lookahead == '/') ADVANCE(19); - if (lookahead == '?') ADVANCE(33); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(35); - if (lookahead == '{') ADVANCE(91); + ADVANCE_MAP( + '\n', 182, + '\r', 182, + '#', 263, + '$', 186, + '-', 30, + '/', 19, + '?', 32, + '[', 152, + '\\', 35, + '{', 89, + ); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(4) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(4); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(168); - if (lookahead == '#') ADVANCE(265); - if (lookahead == '$') ADVANCE(188); - if (lookahead == '%') ADVANCE(223); - if (lookahead == '&') ADVANCE(85); - if (lookahead == '\'') ADVANCE(170); - if (lookahead == '(') ADVANCE(96); - if (lookahead == ')') ADVANCE(97); - if (lookahead == '*') ADVANCE(220); - if (lookahead == '+') ADVANCE(125); - if (lookahead == ',') ADVANCE(87); - if (lookahead == '-') ADVANCE(128); - if (lookahead == '.') ADVANCE(217); - if (lookahead == '/') ADVANCE(221); - if (lookahead == '0') ADVANCE(116); - if (lookahead == ':') ADVANCE(93); - if (lookahead == ';') ADVANCE(83); - if (lookahead == '<') ADVANCE(202); - if (lookahead == '=') ADVANCE(30); - if (lookahead == '>') ADVANCE(207); - if (lookahead == '?') ADVANCE(102); - if (lookahead == '@') ADVANCE(135); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(89); - if (lookahead == ']') ADVANCE(155); - if (lookahead == '^') ADVANCE(195); - if (lookahead == '_') ADVANCE(259); - if (lookahead == '`') ADVANCE(187); - if (lookahead == '|') ADVANCE(105); - if (lookahead == '}') ADVANCE(92); - if (lookahead == '~') ADVANCE(132); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(249); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(226); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(228); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(230); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(257); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(248); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(118); + ADVANCE_MAP( + '!', 132, + '"', 166, + '#', 262, + '$', 186, + '%', 221, + '&', 83, + '\'', 168, + '(', 94, + ')', 95, + '*', 218, + '+', 123, + ',', 85, + '-', 126, + '.', 215, + '/', 219, + '0', 114, + ':', 91, + ';', 81, + '<', 200, + '=', 29, + '>', 205, + '?', 100, + '@', 133, + '[', 152, + '\\', 87, + ']', 153, + '^', 193, + '_', 257, + '`', 185, + '|', 103, + '}', 90, + '~', 130, + 'A', 247, + 'a', 247, + 'B', 224, + 'b', 224, + 'E', 226, + 'e', 226, + 'F', 228, + 'f', 228, + 'N', 255, + 'n', 255, + 'T', 246, + 't', 246, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(116); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(5) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(5); if (('C' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(261); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(133); - if (lookahead == '"') ADVANCE(168); - if (lookahead == '#') ADVANCE(265); - if (lookahead == '$') ADVANCE(188); - if (lookahead == '&') ADVANCE(84); - if (lookahead == '\'') ADVANCE(170); - if (lookahead == '(') ADVANCE(96); - if (lookahead == ')') ADVANCE(97); - if (lookahead == '+') ADVANCE(125); - if (lookahead == ',') ADVANCE(87); - if (lookahead == '-') ADVANCE(128); - if (lookahead == '.') ADVANCE(112); - if (lookahead == '/') ADVANCE(19); - if (lookahead == '0') ADVANCE(116); - if (lookahead == '<') ADVANCE(27); - if (lookahead == '?') ADVANCE(33); - if (lookahead == '@') ADVANCE(135); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(89); - if (lookahead == ']') ADVANCE(155); - if (lookahead == '_') ADVANCE(259); - if (lookahead == '`') ADVANCE(187); - if (lookahead == '~') ADVANCE(132); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(249); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(226); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(228); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(230); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(257); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(248); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(118); + ADVANCE_MAP( + '!', 131, + '"', 166, + '#', 262, + '$', 186, + '&', 82, + '\'', 168, + '(', 94, + ')', 95, + '+', 123, + ',', 85, + '-', 126, + '.', 110, + '/', 19, + '0', 114, + '<', 26, + '?', 32, + '@', 133, + '[', 152, + '\\', 87, + ']', 153, + '_', 257, + '`', 185, + '~', 130, + 'A', 247, + 'a', 247, + 'B', 224, + 'b', 224, + 'E', 226, + 'e', 226, + 'F', 228, + 'f', 228, + 'N', 255, + 'n', 255, + 'T', 246, + 't', 246, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(116); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(6) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(6); if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(261); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(133); - if (lookahead == '"') ADVANCE(168); - if (lookahead == '#') ADVANCE(265); - if (lookahead == '$') ADVANCE(188); - if (lookahead == '\'') ADVANCE(170); - if (lookahead == '(') ADVANCE(96); - if (lookahead == '+') ADVANCE(125); - if (lookahead == '-') ADVANCE(128); - if (lookahead == '.') ADVANCE(113); - if (lookahead == '/') ADVANCE(19); - if (lookahead == '0') ADVANCE(116); - if (lookahead == '<') ADVANCE(27); - if (lookahead == '?') ADVANCE(33); - if (lookahead == '@') ADVANCE(135); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(89); - if (lookahead == '_') ADVANCE(259); - if (lookahead == '`') ADVANCE(187); - if (lookahead == '~') ADVANCE(132); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(249); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(225); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(228); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(229); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(243); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(257); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(255); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(248); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(241); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(118); + ADVANCE_MAP( + '!', 131, + '"', 166, + '#', 262, + '$', 186, + '\'', 168, + '(', 94, + '+', 123, + '-', 126, + '.', 111, + '/', 19, + '0', 114, + '<', 26, + '?', 32, + '@', 133, + '[', 152, + '\\', 87, + '_', 257, + '`', 185, + '~', 130, + 'A', 247, + 'a', 247, + 'B', 223, + 'b', 223, + 'E', 226, + 'e', 226, + 'F', 227, + 'f', 227, + 'I', 241, + 'i', 241, + 'N', 255, + 'n', 255, + 'S', 253, + 's', 253, + 'T', 246, + 't', 246, + 'U', 239, + 'u', 239, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(116); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(7) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(7); if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(261); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(29); - if (lookahead == '"') ADVANCE(183); - if (lookahead == '#') ADVANCE(266); - if (lookahead == '$') ADVANCE(188); - if (lookahead == '%') ADVANCE(223); - if (lookahead == '&') ADVANCE(85); - if (lookahead == '\'') ADVANCE(186); - if (lookahead == '(') ADVANCE(96); - if (lookahead == ')') ADVANCE(97); - if (lookahead == '*') ADVANCE(220); - if (lookahead == '+') ADVANCE(124); - if (lookahead == ',') ADVANCE(87); - if (lookahead == '-') ADVANCE(131); - if (lookahead == '.') ADVANCE(216); - if (lookahead == '/') ADVANCE(221); - if (lookahead == '0') ADVANCE(121); - if (lookahead == ':') ADVANCE(94); - if (lookahead == ';') ADVANCE(83); - if (lookahead == '<') ADVANCE(204); - if (lookahead == '=') ADVANCE(88); - if (lookahead == '>') ADVANCE(207); - if (lookahead == '?') ADVANCE(100); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(89); - if (lookahead == ']') ADVANCE(155); - if (lookahead == '^') ADVANCE(195); - if (lookahead == '{') ADVANCE(91); - if (lookahead == '|') ADVANCE(105); - if (lookahead == '}') ADVANCE(92); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(123); + ADVANCE_MAP( + '!', 28, + '"', 181, + '#', 263, + '$', 186, + '%', 221, + '&', 83, + '\'', 184, + '(', 94, + ')', 95, + '*', 218, + '+', 122, + ',', 85, + '-', 129, + '.', 214, + '/', 219, + '0', 119, + ':', 92, + ';', 81, + '<', 202, + '=', 86, + '>', 205, + '?', 98, + '[', 152, + '\\', 87, + ']', 153, + '^', 193, + '{', 89, + '|', 103, + '}', 90, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(11) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(11); if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(261); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(29); - if (lookahead == '"') ADVANCE(168); - if (lookahead == '#') ADVANCE(266); - if (lookahead == '$') ADVANCE(188); - if (lookahead == '%') ADVANCE(223); - if (lookahead == '&') ADVANCE(85); - if (lookahead == '(') ADVANCE(96); - if (lookahead == ')') ADVANCE(97); - if (lookahead == '*') ADVANCE(220); - if (lookahead == '+') ADVANCE(125); - if (lookahead == ',') ADVANCE(87); - if (lookahead == '-') ADVANCE(130); - if (lookahead == '.') ADVANCE(216); - if (lookahead == '/') ADVANCE(221); - if (lookahead == ':') ADVANCE(94); - if (lookahead == ';') ADVANCE(83); - if (lookahead == '<') ADVANCE(204); - if (lookahead == '=') ADVANCE(30); - if (lookahead == '>') ADVANCE(207); - if (lookahead == '?') ADVANCE(100); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(53); - if (lookahead == ']') ADVANCE(155); - if (lookahead == '^') ADVANCE(195); - if (lookahead == '`') ADVANCE(187); - if (lookahead == '{') ADVANCE(91); - if (lookahead == '|') ADVANCE(105); - if (lookahead == '}') ADVANCE(92); + ADVANCE_MAP( + '!', 28, + '"', 166, + '#', 263, + '$', 186, + '%', 221, + '&', 83, + '(', 94, + ')', 95, + '*', 218, + '+', 123, + ',', 85, + '-', 128, + '.', 214, + '/', 219, + ':', 92, + ';', 81, + '<', 202, + '=', 29, + '>', 205, + '?', 98, + '[', 152, + '\\', 34, + ']', 153, + '^', 193, + '`', 185, + '{', 89, + '|', 103, + '}', 90, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(10) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(10); if (('A' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(261); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(29); - if (lookahead == '"') ADVANCE(168); - if (lookahead == '#') ADVANCE(266); - if (lookahead == '$') ADVANCE(188); - if (lookahead == '%') ADVANCE(223); - if (lookahead == '&') ADVANCE(85); - if (lookahead == '(') ADVANCE(96); - if (lookahead == ')') ADVANCE(97); - if (lookahead == '*') ADVANCE(220); - if (lookahead == '+') ADVANCE(125); - if (lookahead == ',') ADVANCE(87); - if (lookahead == '-') ADVANCE(130); - if (lookahead == '.') ADVANCE(216); - if (lookahead == '/') ADVANCE(221); - if (lookahead == ':') ADVANCE(94); - if (lookahead == ';') ADVANCE(83); - if (lookahead == '<') ADVANCE(204); - if (lookahead == '=') ADVANCE(30); - if (lookahead == '>') ADVANCE(207); - if (lookahead == '?') ADVANCE(100); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(35); - if (lookahead == ']') ADVANCE(155); - if (lookahead == '^') ADVANCE(195); - if (lookahead == '`') ADVANCE(187); - if (lookahead == '{') ADVANCE(91); - if (lookahead == '|') ADVANCE(105); - if (lookahead == '}') ADVANCE(92); + ADVANCE_MAP( + '!', 28, + '"', 166, + '#', 263, + '$', 186, + '%', 221, + '&', 83, + '(', 94, + ')', 95, + '*', 218, + '+', 123, + ',', 85, + '-', 128, + '.', 214, + '/', 219, + ':', 92, + ';', 81, + '<', 202, + '=', 29, + '>', 205, + '?', 98, + '[', 152, + '\\', 35, + ']', 153, + '^', 193, + '`', 185, + '{', 89, + '|', 103, + '}', 90, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(10) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(10); if (('A' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(261); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 11: - if (lookahead == '!') ADVANCE(29); - if (lookahead == '#') ADVANCE(266); - if (lookahead == '$') ADVANCE(188); - if (lookahead == '%') ADVANCE(223); - if (lookahead == '&') ADVANCE(85); - if (lookahead == '(') ADVANCE(96); - if (lookahead == ')') ADVANCE(97); - if (lookahead == '*') ADVANCE(220); - if (lookahead == '+') ADVANCE(124); - if (lookahead == ',') ADVANCE(87); - if (lookahead == '-') ADVANCE(131); - if (lookahead == '.') ADVANCE(216); - if (lookahead == '/') ADVANCE(221); - if (lookahead == '0') ADVANCE(121); - if (lookahead == ':') ADVANCE(94); - if (lookahead == ';') ADVANCE(83); - if (lookahead == '<') ADVANCE(204); - if (lookahead == '=') ADVANCE(88); - if (lookahead == '>') ADVANCE(207); - if (lookahead == '?') ADVANCE(100); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(89); - if (lookahead == ']') ADVANCE(155); - if (lookahead == '^') ADVANCE(195); - if (lookahead == '{') ADVANCE(91); - if (lookahead == '|') ADVANCE(105); - if (lookahead == '}') ADVANCE(92); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(123); + ADVANCE_MAP( + '!', 28, + '#', 263, + '$', 186, + '%', 221, + '&', 83, + '(', 94, + ')', 95, + '*', 218, + '+', 122, + ',', 85, + '-', 129, + '.', 214, + '/', 219, + '0', 119, + ':', 92, + ';', 81, + '<', 202, + '=', 86, + '>', 205, + '?', 98, + '[', 152, + '\\', 87, + ']', 153, + '^', 193, + '{', 89, + '|', 103, + '}', 90, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(11) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(11); if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(261); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 12: - if (lookahead == '!') ADVANCE(29); - if (lookahead == '#') ADVANCE(266); - if (lookahead == '$') ADVANCE(188); - if (lookahead == '%') ADVANCE(223); - if (lookahead == '&') ADVANCE(85); - if (lookahead == '(') ADVANCE(96); - if (lookahead == ')') ADVANCE(97); - if (lookahead == '*') ADVANCE(220); - if (lookahead == '+') ADVANCE(124); - if (lookahead == ',') ADVANCE(87); - if (lookahead == '-') ADVANCE(127); - if (lookahead == '.') ADVANCE(216); - if (lookahead == '/') ADVANCE(221); - if (lookahead == ':') ADVANCE(93); - if (lookahead == ';') ADVANCE(83); - if (lookahead == '<') ADVANCE(204); - if (lookahead == '=') ADVANCE(30); - if (lookahead == '>') ADVANCE(207); - if (lookahead == '?') ADVANCE(102); - if (lookahead == '\\') ADVANCE(89); - if (lookahead == ']') ADVANCE(155); - if (lookahead == '^') ADVANCE(195); - if (lookahead == '|') ADVANCE(105); - if (lookahead == '}') ADVANCE(92); + ADVANCE_MAP( + '!', 28, + '#', 263, + '$', 186, + '%', 221, + '&', 83, + '(', 94, + ')', 95, + '*', 218, + '+', 122, + ',', 85, + '-', 125, + '.', 214, + '/', 219, + ':', 91, + ';', 81, + '<', 202, + '=', 29, + '>', 205, + '?', 100, + '\\', 87, + ']', 153, + '^', 193, + '|', 103, + '}', 90, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(12) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(12); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(261); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 13: - if (lookahead == '"') ADVANCE(167); - if (lookahead == '\'') ADVANCE(169); + if (lookahead == '"') ADVANCE(165); + if (lookahead == '\'') ADVANCE(167); END_STATE(); case 14: - if (lookahead == '"') ADVANCE(168); - if (lookahead == '#') ADVANCE(265); - if (lookahead == '$') ADVANCE(188); - if (lookahead == '\'') ADVANCE(170); - if (lookahead == '(') ADVANCE(96); - if (lookahead == '/') ADVANCE(19); - if (lookahead == '<') ADVANCE(27); - if (lookahead == '?') ADVANCE(33); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(89); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(249); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(226); + ADVANCE_MAP( + '"', 166, + '#', 262, + '$', 186, + '\'', 168, + '(', 94, + '/', 19, + '<', 26, + '?', 32, + '[', 152, + '\\', 87, + 'A', 247, + 'a', 247, + 'B', 224, + 'b', 224, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(14) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(14); if (('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('c' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(261); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 15: - if (lookahead == '"') ADVANCE(168); - if (lookahead == '#') ADVANCE(266); - if (lookahead == '\'') ADVANCE(170); - if (lookahead == '.') ADVANCE(113); - if (lookahead == '/') ADVANCE(19); - if (lookahead == '0') ADVANCE(116); - if (lookahead == '<') ADVANCE(27); - if (lookahead == '?') ADVANCE(33); - if (lookahead == '_') ADVANCE(56); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(13); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(38); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(39); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(49); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(46); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(118); + ADVANCE_MAP( + '"', 166, + '#', 263, + '\'', 168, + '.', 111, + '/', 19, + '0', 114, + '<', 26, + '?', 32, + '_', 55, + 'B', 13, + 'b', 13, + 'E', 38, + 'e', 38, + 'F', 39, + 'f', 39, + 'N', 49, + 'n', 49, + 'T', 46, + 't', 46, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(116); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(15) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(15); END_STATE(); case 16: - if (lookahead == '#') ADVANCE(265); - if (lookahead == '$') ADVANCE(188); - if (lookahead == '&') ADVANCE(84); - if (lookahead == '(') ADVANCE(96); - if (lookahead == ')') ADVANCE(97); - if (lookahead == ',') ADVANCE(87); - if (lookahead == '.') ADVANCE(23); - if (lookahead == '/') ADVANCE(19); - if (lookahead == '?') ADVANCE(101); - if (lookahead == '\\') ADVANCE(89); - if (lookahead == '}') ADVANCE(92); + ADVANCE_MAP( + '#', 262, + '$', 186, + '&', 82, + '(', 94, + ')', 95, + ',', 85, + '.', 22, + '/', 19, + '?', 99, + '\\', 87, + '}', 90, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(16) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(16); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(261); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 17: - if (lookahead == '#') ADVANCE(266); - if (lookahead == '$') ADVANCE(188); - if (lookahead == '&') ADVANCE(84); - if (lookahead == '(') ADVANCE(96); - if (lookahead == ')') ADVANCE(97); - if (lookahead == '.') ADVANCE(23); - if (lookahead == '/') ADVANCE(19); - if (lookahead == '=') ADVANCE(32); - if (lookahead == '?') ADVANCE(101); - if (lookahead == '\\') ADVANCE(89); - if (lookahead == '{') ADVANCE(91); - if (lookahead == '|') ADVANCE(103); + ADVANCE_MAP( + '#', 263, + '$', 186, + '&', 82, + '(', 94, + ')', 95, + '.', 22, + '/', 19, + '=', 31, + '?', 99, + '\\', 87, + '{', 89, + '|', 101, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(17) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(17); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(261); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); case 18: - if (lookahead == '#') ADVANCE(180); - if (lookahead == '\'') ADVANCE(170); - if (lookahead == '/') ADVANCE(175); - if (lookahead == '?') ADVANCE(178); + if (lookahead == '#') ADVANCE(178); + if (lookahead == '\'') ADVANCE(168); + if (lookahead == '/') ADVANCE(173); + if (lookahead == '?') ADVANCE(176); if (lookahead == '\\') ADVANCE(37); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(174); - if (lookahead != 0) ADVANCE(181); + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(172); + if (lookahead != 0) ADVANCE(179); END_STATE(); case 19: if (lookahead == '*') ADVANCE(21); - if (lookahead == '/') ADVANCE(263); + if (lookahead == '/') ADVANCE(261); END_STATE(); case 20: if (lookahead == '*') ADVANCE(20); - if (lookahead == '/') ADVANCE(262); + if (lookahead == '/') ADVANCE(260); if (lookahead != 0) ADVANCE(21); END_STATE(); case 21: @@ -7254,71 +7142,71 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(21); END_STATE(); case 22: - if (lookahead == '*') ADVANCE(176); - if (lookahead == '\'' || - lookahead == '\\') ADVANCE(21); - if (lookahead != 0) ADVANCE(177); + if (lookahead == '.') ADVANCE(24); END_STATE(); case 23: - if (lookahead == '.') ADVANCE(25); - END_STATE(); - case 24: - if (lookahead == '.') ADVANCE(113); - if (lookahead == '_') ADVANCE(56); + if (lookahead == '.') ADVANCE(111); + if (lookahead == '_') ADVANCE(55); if (lookahead == 'E' || lookahead == 'e') ADVANCE(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(24); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(23); + END_STATE(); + case 24: + if (lookahead == '.') ADVANCE(96); END_STATE(); case 25: - if (lookahead == '.') ADVANCE(98); + if (lookahead == '<') ADVANCE(180); END_STATE(); case 26: - if (lookahead == '<') ADVANCE(182); + if (lookahead == '<') ADVANCE(25); END_STATE(); case 27: - if (lookahead == '<') ADVANCE(26); + if (lookahead == '<') ADVANCE(25); + if (lookahead == '?') ADVANCE(68); END_STATE(); case 28: - if (lookahead == '<') ADVANCE(26); - if (lookahead == '?') ADVANCE(70); + if (lookahead == '=') ADVANCE(196); END_STATE(); case 29: - if (lookahead == '=') ADVANCE(198); + if (lookahead == '=') ADVANCE(195); + if (lookahead == '>') ADVANCE(93); END_STATE(); case 30: - if (lookahead == '=') ADVANCE(197); - if (lookahead == '>') ADVANCE(95); + if (lookahead == '>') ADVANCE(150); END_STATE(); case 31: - if (lookahead == '>') ADVANCE(152); + if (lookahead == '>') ADVANCE(93); END_STATE(); case 32: - if (lookahead == '>') ADVANCE(95); + if (lookahead == '>') ADVANCE(69); END_STATE(); case 33: - if (lookahead == '>') ADVANCE(71); + if (lookahead == '>') ADVANCE(151); END_STATE(); case 34: - if (lookahead == '>') ADVANCE(153); + if (lookahead == 'u') ADVANCE(164); + if (lookahead == 'x') ADVANCE(59); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(161); + if (set_contains(sym_escape_sequence_character_set_1, 10, lookahead)) ADVANCE(159); END_STATE(); case 35: - if (lookahead == 'u') ADVANCE(165); + if (lookahead == 'u') ADVANCE(163); END_STATE(); case 36: - if (lookahead == '}') ADVANCE(161); + if (lookahead == '}') ADVANCE(159); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(36); END_STATE(); case 37: if (lookahead == '\'' || - lookahead == '\\') ADVANCE(171); - if (lookahead != 0) ADVANCE(181); + lookahead == '\\') ADVANCE(169); + if (lookahead != 0) ADVANCE(179); END_STATE(); case 38: if (lookahead == '+' || - lookahead == '-') ADVANCE(57); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(115); + lookahead == '-') ADVANCE(56); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); END_STATE(); case 39: if (lookahead == 'A' || @@ -7326,7 +7214,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 40: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(158); + lookahead == 'e') ADVANCE(156); END_STATE(); case 41: if (lookahead == 'H' || @@ -7338,7 +7226,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 43: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(156); + lookahead == 'l') ADVANCE(154); END_STATE(); case 44: if (lookahead == 'L' || @@ -7346,7 +7234,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 45: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(69); + lookahead == 'p') ADVANCE(67); END_STATE(); case 46: if (lookahead == 'R' || @@ -7366,1260 +7254,1248 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 50: if (lookahead == '0' || - lookahead == '1') ADVANCE(119); + lookahead == '1') ADVANCE(117); END_STATE(); case 51: if (lookahead == '8' || - lookahead == '9') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(117); + lookahead == '9') ADVANCE(23); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(115); END_STATE(); case 52: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(122); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(120); END_STATE(); case 53: - if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(161); - if (lookahead == 'u') ADVANCE(166); - if (lookahead == 'x') ADVANCE(60); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(163); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(116); END_STATE(); case 54: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(118); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(111); END_STATE(); case 55: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(23); END_STATE(); case 56: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(24); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); END_STATE(); case 57: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(115); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); END_STATE(); case 58: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(123); - END_STATE(); - case 59: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(120); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); END_STATE(); - case 60: + case 59: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(164); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(162); END_STATE(); - case 61: + case 60: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(36); END_STATE(); - case 62: - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(181); - END_STATE(); - case 63: - if (eof) ADVANCE(68); - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(168); - if (lookahead == '#') ADVANCE(265); - if (lookahead == '$') ADVANCE(188); - if (lookahead == '%') ADVANCE(224); - if (lookahead == '&') ADVANCE(86); - if (lookahead == '\'') ADVANCE(170); - if (lookahead == '(') ADVANCE(96); - if (lookahead == ')') ADVANCE(97); - if (lookahead == '*') ADVANCE(219); - if (lookahead == '+') ADVANCE(126); - if (lookahead == ',') ADVANCE(87); - if (lookahead == '-') ADVANCE(129); - if (lookahead == '.') ADVANCE(217); - if (lookahead == '/') ADVANCE(222); - if (lookahead == '0') ADVANCE(116); - if (lookahead == ':') ADVANCE(94); - if (lookahead == ';') ADVANCE(83); - if (lookahead == '<') ADVANCE(205); - if (lookahead == '=') ADVANCE(88); - if (lookahead == '>') ADVANCE(206); - if (lookahead == '?') ADVANCE(99); - if (lookahead == '@') ADVANCE(135); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(90); - if (lookahead == ']') ADVANCE(155); - if (lookahead == '^') ADVANCE(196); - if (lookahead == '_') ADVANCE(259); - if (lookahead == '`') ADVANCE(187); - if (lookahead == '{') ADVANCE(91); - if (lookahead == '|') ADVANCE(104); - if (lookahead == '}') ADVANCE(92); - if (lookahead == '~') ADVANCE(132); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(249); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(225); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(228); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(229); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(243); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(257); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(255); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(248); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(241); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(118); + case 61: + if (eof) ADVANCE(66); + ADVANCE_MAP( + '!', 132, + '"', 166, + '#', 262, + '$', 186, + '%', 222, + '&', 84, + '\'', 168, + '(', 94, + ')', 95, + '*', 217, + '+', 124, + ',', 85, + '-', 127, + '.', 215, + '/', 220, + '0', 114, + ':', 92, + ';', 81, + '<', 203, + '=', 86, + '>', 204, + '?', 97, + '@', 133, + '[', 152, + '\\', 88, + ']', 153, + '^', 194, + '_', 257, + '`', 185, + '{', 89, + '|', 102, + '}', 90, + '~', 130, + 'A', 247, + 'a', 247, + 'B', 223, + 'b', 223, + 'E', 226, + 'e', 226, + 'F', 227, + 'f', 227, + 'I', 241, + 'i', 241, + 'N', 255, + 'n', 255, + 'S', 253, + 's', 253, + 'T', 246, + 't', 246, + 'U', 239, + 'u', 239, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(116); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(63) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(61); if (('C' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(261); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); - case 64: - if (eof) ADVANCE(68); - if (lookahead == '!') ADVANCE(133); - if (lookahead == '"') ADVANCE(168); - if (lookahead == '#') ADVANCE(265); - if (lookahead == '$') ADVANCE(188); - if (lookahead == '&') ADVANCE(84); - if (lookahead == '\'') ADVANCE(170); - if (lookahead == '(') ADVANCE(96); - if (lookahead == ')') ADVANCE(97); - if (lookahead == '+') ADVANCE(125); - if (lookahead == ',') ADVANCE(87); - if (lookahead == '-') ADVANCE(128); - if (lookahead == '.') ADVANCE(113); - if (lookahead == '/') ADVANCE(19); - if (lookahead == '0') ADVANCE(116); - if (lookahead == ':') ADVANCE(93); - if (lookahead == ';') ADVANCE(83); - if (lookahead == '<') ADVANCE(27); - if (lookahead == '=') ADVANCE(32); - if (lookahead == '?') ADVANCE(33); - if (lookahead == '@') ADVANCE(135); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(89); - if (lookahead == ']') ADVANCE(155); - if (lookahead == '_') ADVANCE(259); - if (lookahead == '`') ADVANCE(187); - if (lookahead == '{') ADVANCE(91); - if (lookahead == '}') ADVANCE(92); - if (lookahead == '~') ADVANCE(132); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(249); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(226); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(228); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(230); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(257); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(248); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(118); + case 62: + if (eof) ADVANCE(66); + ADVANCE_MAP( + '!', 131, + '"', 166, + '#', 262, + '$', 186, + '&', 82, + '\'', 168, + '(', 94, + ')', 95, + '+', 123, + ',', 85, + '-', 126, + '.', 111, + '/', 19, + '0', 114, + ':', 91, + ';', 81, + '<', 26, + '=', 31, + '?', 32, + '@', 133, + '[', 152, + '\\', 87, + ']', 153, + '_', 257, + '`', 185, + '{', 89, + '}', 90, + '~', 130, + 'A', 247, + 'a', 247, + 'B', 224, + 'b', 224, + 'E', 226, + 'e', 226, + 'F', 228, + 'f', 228, + 'N', 255, + 'n', 255, + 'T', 246, + 't', 246, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(116); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(64) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(62); if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(261); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); - case 65: - if (eof) ADVANCE(68); - if (lookahead == '!') ADVANCE(29); - if (lookahead == '"') ADVANCE(168); - if (lookahead == '#') ADVANCE(266); - if (lookahead == '$') ADVANCE(188); - if (lookahead == '%') ADVANCE(224); - if (lookahead == '&') ADVANCE(86); - if (lookahead == '\'') ADVANCE(170); - if (lookahead == '(') ADVANCE(96); - if (lookahead == ')') ADVANCE(97); - if (lookahead == '*') ADVANCE(219); - if (lookahead == '+') ADVANCE(126); - if (lookahead == ',') ADVANCE(87); - if (lookahead == '-') ADVANCE(129); - if (lookahead == '.') ADVANCE(218); - if (lookahead == '/') ADVANCE(222); - if (lookahead == '0') ADVANCE(121); - if (lookahead == ':') ADVANCE(94); - if (lookahead == ';') ADVANCE(83); - if (lookahead == '<') ADVANCE(203); - if (lookahead == '=') ADVANCE(88); - if (lookahead == '>') ADVANCE(206); - if (lookahead == '?') ADVANCE(99); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(89); - if (lookahead == ']') ADVANCE(155); - if (lookahead == '^') ADVANCE(196); - if (lookahead == '{') ADVANCE(91); - if (lookahead == '|') ADVANCE(104); - if (lookahead == '}') ADVANCE(92); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(123); + case 63: + if (eof) ADVANCE(66); + ADVANCE_MAP( + '!', 28, + '"', 166, + '#', 263, + '$', 186, + '%', 222, + '&', 84, + '\'', 168, + '(', 94, + ')', 95, + '*', 217, + '+', 124, + ',', 85, + '-', 127, + '.', 216, + '/', 220, + '0', 119, + ':', 92, + ';', 81, + '<', 201, + '=', 86, + '>', 204, + '?', 97, + '[', 152, + '\\', 87, + ']', 153, + '^', 194, + '{', 89, + '|', 102, + '}', 90, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(65) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(63); if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(261); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); - case 66: - if (eof) ADVANCE(68); - if (lookahead == '"') ADVANCE(168); - if (lookahead == '#') ADVANCE(266); - if (lookahead == '$') ADVANCE(188); - if (lookahead == '&') ADVANCE(84); - if (lookahead == '\'') ADVANCE(170); - if (lookahead == '(') ADVANCE(96); - if (lookahead == '.') ADVANCE(23); - if (lookahead == '/') ADVANCE(19); - if (lookahead == '0') ADVANCE(121); - if (lookahead == '<') ADVANCE(28); - if (lookahead == '?') ADVANCE(33); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(89); - if (lookahead == '|') ADVANCE(103); - if (lookahead == '}') ADVANCE(92); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(249); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(226); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(123); + case 64: + if (eof) ADVANCE(66); + ADVANCE_MAP( + '"', 166, + '#', 263, + '$', 186, + '&', 82, + '\'', 168, + '(', 94, + ')', 95, + '.', 22, + '/', 19, + '0', 119, + '<', 27, + '?', 32, + '[', 152, + '\\', 87, + '|', 101, + '}', 90, + 'A', 247, + 'a', 247, + 'B', 224, + 'b', 224, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(66) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(64); if (('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('c' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(261); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); - case 67: - if (eof) ADVANCE(68); - if (lookahead == '#') ADVANCE(81); - if (lookahead == '/') ADVANCE(76); - if (lookahead == '<') ADVANCE(72); - if (lookahead == '?') ADVANCE(79); - if (lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(75); + case 65: + if (eof) ADVANCE(66); + ADVANCE_MAP( + '#', 79, + '/', 74, + '<', 70, + '?', 77, + 0xa0, 73, + 0x200b, 73, + 0x2060, 73, + 0xfeff, 73, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(67) - if (lookahead != 0) ADVANCE(82); + lookahead == ' ') SKIP(65); + if (lookahead != 0) ADVANCE(80); END_STATE(); - case 68: + case 66: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 69: + case 67: ACCEPT_TOKEN(sym_php_tag); END_STATE(); - case 70: + case 68: ACCEPT_TOKEN(sym_php_tag); - if (lookahead == '=') ADVANCE(69); + if (lookahead == '=') ADVANCE(67); if (lookahead == 'P' || lookahead == 'p') ADVANCE(41); END_STATE(); - case 71: + case 69: ACCEPT_TOKEN(anon_sym_QMARK_GT); END_STATE(); - case 72: + case 70: ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == '?') ADVANCE(70); + if (lookahead == '?') ADVANCE(68); + END_STATE(); + case 71: + ACCEPT_TOKEN(aux_sym_text_token2); + if (lookahead == '\n') ADVANCE(80); + if (lookahead == '\r') ADVANCE(72); + if (lookahead == '>') ADVANCE(80); + if (lookahead != 0 && + lookahead != '<') ADVANCE(78); + END_STATE(); + case 72: + ACCEPT_TOKEN(aux_sym_text_token2); + if (lookahead == '\n') ADVANCE(80); + if (lookahead != 0 && + lookahead != '<') ADVANCE(80); END_STATE(); case 73: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '\n') ADVANCE(82); - if (lookahead == '\r') ADVANCE(74); - if (lookahead == '>') ADVANCE(82); + if (lookahead == '#') ADVANCE(79); + if (lookahead == '/') ADVANCE(74); + if (lookahead == '?') ADVANCE(77); + if (lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(73); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(73); if (lookahead != 0 && lookahead != '<') ADVANCE(80); END_STATE(); case 74: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '\n') ADVANCE(82); + if (lookahead == '*') ADVANCE(76); + if (lookahead == '/') ADVANCE(78); if (lookahead != 0 && - lookahead != '<') ADVANCE(82); + lookahead != '<') ADVANCE(80); END_STATE(); case 75: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '#') ADVANCE(81); - if (lookahead == '/') ADVANCE(76); - if (lookahead == '?') ADVANCE(79); - if (lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(75); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(75); + if (lookahead == '*') ADVANCE(75); + if (lookahead == '/') ADVANCE(80); if (lookahead != 0 && - lookahead != '<') ADVANCE(82); + lookahead != '<') ADVANCE(76); END_STATE(); case 76: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '/') ADVANCE(80); + if (lookahead == '*') ADVANCE(75); if (lookahead != 0 && - lookahead != '<') ADVANCE(82); + lookahead != '<') ADVANCE(76); END_STATE(); case 77: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(77); - if (lookahead == '/') ADVANCE(82); + if (lookahead == '>') ADVANCE(80); if (lookahead != 0 && - lookahead != '<') ADVANCE(78); + lookahead != '<') ADVANCE(80); END_STATE(); case 78: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(77); + if (lookahead == '?') ADVANCE(71); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(80); if (lookahead != 0 && lookahead != '<') ADVANCE(78); END_STATE(); case 79: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '>') ADVANCE(82); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == '?' || + lookahead == '[') ADVANCE(80); if (lookahead != 0 && - lookahead != '<') ADVANCE(82); + lookahead != '<') ADVANCE(78); END_STATE(); case 80: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '?') ADVANCE(73); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(82); if (lookahead != 0 && lookahead != '<') ADVANCE(80); END_STATE(); case 81: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '?' || - lookahead == '[') ADVANCE(82); - if (lookahead != 0 && - lookahead != '<') ADVANCE(80); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 82: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead != 0 && - lookahead != '<') ADVANCE(82); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(192); END_STATE(); case 84: ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(192); + if (lookahead == '=') ADVANCE(146); END_STATE(); case 85: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(194); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(194); - if (lookahead == '=') ADVANCE(148); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(195); + if (lookahead == '>') ADVANCE(93); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(197); - if (lookahead == '>') ADVANCE(95); + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '\'' || + lookahead == '\\') ADVANCE(169); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_BSLASH); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '\'' || - lookahead == '\\') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(134); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(136); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '-') ADVANCE(33); + if (lookahead == '>') ADVANCE(69); + if (lookahead == '?') ADVANCE(188); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '-') ADVANCE(33); + if (lookahead == '>') ADVANCE(69); + if (lookahead == '?') ADVANCE(187); END_STATE(); case 99: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(34); - if (lookahead == '>') ADVANCE(71); - if (lookahead == '?') ADVANCE(190); + if (lookahead == '>') ADVANCE(69); END_STATE(); case 100: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(34); - if (lookahead == '>') ADVANCE(71); - if (lookahead == '?') ADVANCE(189); + if (lookahead == '>') ADVANCE(69); + if (lookahead == '?') ADVANCE(187); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '>') ADVANCE(71); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '>') ADVANCE(71); - if (lookahead == '?') ADVANCE(189); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(148); + if (lookahead == '|') ADVANCE(191); END_STATE(); case 103: ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(191); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(150); - if (lookahead == '|') ADVANCE(193); - END_STATE(); - case 105: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(193); - END_STATE(); - case 106: ACCEPT_TOKEN(aux_sym_cast_type_token1); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); - case 107: + case 105: ACCEPT_TOKEN(aux_sym_cast_type_token3); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); - case 108: + case 106: ACCEPT_TOKEN(aux_sym_cast_type_token6); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); - case 109: + case 107: ACCEPT_TOKEN(aux_sym_cast_type_token8); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); - case 110: + case 108: ACCEPT_TOKEN(aux_sym_cast_type_token11); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); - case 111: + case 109: ACCEPT_TOKEN(aux_sym_cast_type_token12); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); - case 112: + case 110: ACCEPT_TOKEN(sym_float); - if (lookahead == '.') ADVANCE(25); - if (lookahead == '_') ADVANCE(55); + if (lookahead == '.') ADVANCE(24); + if (lookahead == '_') ADVANCE(54); if (lookahead == 'E' || lookahead == 'e') ADVANCE(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(111); END_STATE(); - case 113: + case 111: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(55); + if (lookahead == '_') ADVANCE(54); if (lookahead == 'E' || lookahead == 'e') ADVANCE(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(111); END_STATE(); - case 114: + case 112: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(260); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(114); + if (lookahead == '_') ADVANCE(258); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 159) || - (161 <= lookahead && lookahead <= 8202) || - (8204 <= lookahead && lookahead <= 8287) || - (8289 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65278) || - (65280 <= lookahead && lookahead <= 65535)) ADVANCE(261); + (0x80 <= lookahead && lookahead <= 0x9f) || + (0xa1 <= lookahead && lookahead <= 0x200a) || + (0x200c <= lookahead && lookahead <= 0x205f) || + (0x2061 <= lookahead && lookahead <= 0xfefe) || + (0xff00 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); - case 115: + case 113: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(57); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(115); + if (lookahead == '_') ADVANCE(56); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); END_STATE(); - case 116: + case 114: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(113); - if (lookahead == '_') ADVANCE(51); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(50); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(38); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(122); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(59); - if (lookahead == '8' || - lookahead == '9') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(117); + ADVANCE_MAP( + '.', 111, + '_', 51, + 'B', 50, + 'b', 50, + 'E', 38, + 'e', 38, + 'O', 120, + 'o', 120, + 'X', 58, + 'x', 58, + '8', 23, + '9', 23, + ); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(115); END_STATE(); - case 117: + case 115: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(113); + if (lookahead == '.') ADVANCE(111); if (lookahead == '_') ADVANCE(51); if (lookahead == 'E' || lookahead == 'e') ADVANCE(38); if (lookahead == '8' || - lookahead == '9') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(117); + lookahead == '9') ADVANCE(23); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(115); END_STATE(); - case 118: + case 116: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(113); - if (lookahead == '_') ADVANCE(54); + if (lookahead == '.') ADVANCE(111); + if (lookahead == '_') ADVANCE(53); if (lookahead == 'E' || lookahead == 'e') ADVANCE(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(118); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(116); END_STATE(); - case 119: + case 117: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(50); if (lookahead == '0' || - lookahead == '1') ADVANCE(119); + lookahead == '1') ADVANCE(117); END_STATE(); - case 120: + case 118: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(59); + if (lookahead == '_') ADVANCE(58); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(120); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); END_STATE(); - case 121: + case 119: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(52); if (lookahead == 'B' || lookahead == 'b') ADVANCE(50); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(122); + lookahead == 'o') ADVANCE(120); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(59); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(122); + lookahead == 'x') ADVANCE(58); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(120); END_STATE(); - case 122: + case 120: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(122); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(120); END_STATE(); - case 123: + case 121: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(58); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(123); + if (lookahead == '_') ADVANCE(57); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); + END_STATE(); + case 122: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 123: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(136); END_STATE(); case 124: ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(136); + if (lookahead == '=') ADVANCE(141); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(138); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(138); - if (lookahead == '=') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(135); END_STATE(); case 127: ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(135); + if (lookahead == '=') ADVANCE(142); + if (lookahead == '>') ADVANCE(150); END_STATE(); case 128: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(137); + if (lookahead == '-') ADVANCE(135); + if (lookahead == '>') ADVANCE(150); END_STATE(); case 129: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(137); - if (lookahead == '=') ADVANCE(144); - if (lookahead == '>') ADVANCE(152); + if (lookahead == '>') ADVANCE(150); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(137); - if (lookahead == '>') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(196); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(198); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_DOT_EQ); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_DOT_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); + ACCEPT_TOKEN(anon_sym_QMARK_DASH_GT); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_QMARK_DASH_GT); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(aux_sym__argument_name_token1); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(aux_sym__argument_name_token1); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 156: - ACCEPT_TOKEN(aux_sym__argument_name_token1); + ACCEPT_TOKEN(aux_sym__argument_name_token2); END_STATE(); case 157: - ACCEPT_TOKEN(aux_sym__argument_name_token1); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + ACCEPT_TOKEN(aux_sym__argument_name_token2); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 158: - ACCEPT_TOKEN(aux_sym__argument_name_token2); + ACCEPT_TOKEN(anon_sym_POUND_LBRACK); END_STATE(); case 159: - ACCEPT_TOKEN(aux_sym__argument_name_token2); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_POUND_LBRACK); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(159); END_STATE(); case 161: ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(160); END_STATE(); case 162: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(161); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(159); END_STATE(); case 163: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(162); + ACCEPT_TOKEN(anon_sym_BSLASHu); END_STATE(); case 164: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(161); + ACCEPT_TOKEN(anon_sym_BSLASHu); + if (lookahead == '{') ADVANCE(60); END_STATE(); case 165: - ACCEPT_TOKEN(anon_sym_BSLASHu); + ACCEPT_TOKEN(aux_sym_encapsed_string_token1); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_BSLASHu); - if (lookahead == '{') ADVANCE(61); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 167: - ACCEPT_TOKEN(aux_sym_encapsed_string_token1); + ACCEPT_TOKEN(aux_sym_string_token1); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 169: - ACCEPT_TOKEN(aux_sym_string_token1); + ACCEPT_TOKEN(aux_sym_string_token2); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '\n') ADVANCE(179); + if (lookahead == '\r') ADVANCE(171); + if (lookahead == '>') ADVANCE(179); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '\\') ADVANCE(177); END_STATE(); case 171: - ACCEPT_TOKEN(aux_sym_string_token2); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '\n') ADVANCE(179); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '\\') ADVANCE(179); END_STATE(); case 172: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\n') ADVANCE(181); - if (lookahead == '\r') ADVANCE(173); - if (lookahead == '>') ADVANCE(181); - if (lookahead == '\\') ADVANCE(264); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '#') ADVANCE(178); + if (lookahead == '/') ADVANCE(173); + if (lookahead == '?') ADVANCE(176); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(172); if (lookahead != 0 && - lookahead != '\'') ADVANCE(179); + lookahead != '\'' && + lookahead != '\\') ADVANCE(179); END_STATE(); case 173: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\n') ADVANCE(181); - if (lookahead == '\\') ADVANCE(62); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '/') ADVANCE(177); if (lookahead != 0 && - lookahead != '\'') ADVANCE(181); + lookahead != '\'' && + lookahead != '\\') ADVANCE(179); END_STATE(); case 174: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '#') ADVANCE(180); - if (lookahead == '/') ADVANCE(175); - if (lookahead == '?') ADVANCE(178); - if (lookahead == '\\') ADVANCE(37); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(174); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '*') ADVANCE(174); + if (lookahead == '/') ADVANCE(179); if (lookahead != 0 && - lookahead != '\'') ADVANCE(181); + lookahead != '\'' && + lookahead != '\\') ADVANCE(175); END_STATE(); case 175: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(177); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '\\') ADVANCE(62); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '*') ADVANCE(174); if (lookahead != 0 && - lookahead != '\'') ADVANCE(181); + lookahead != '\'' && + lookahead != '\\') ADVANCE(175); END_STATE(); case 176: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(176); - if (lookahead == '/') ADVANCE(181); - if (lookahead == '\\') ADVANCE(22); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '>') ADVANCE(179); if (lookahead != 0 && - lookahead != '\'') ADVANCE(177); + lookahead != '\'' && + lookahead != '\\') ADVANCE(179); END_STATE(); case 177: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(176); - if (lookahead == '\\') ADVANCE(22); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '?') ADVANCE(170); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(179); if (lookahead != 0 && - lookahead != '\'') ADVANCE(177); + lookahead != '\'' && + lookahead != '\\') ADVANCE(177); END_STATE(); case 178: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '>') ADVANCE(181); - if (lookahead == '\\') ADVANCE(62); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == '?' || + lookahead == '[') ADVANCE(179); if (lookahead != 0 && - lookahead != '\'') ADVANCE(181); + lookahead != '\'' && + lookahead != '[' && + lookahead != '\\') ADVANCE(177); END_STATE(); case 179: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '?') ADVANCE(172); - if (lookahead == '\\') ADVANCE(264); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(181); + ACCEPT_TOKEN(sym_string_content); if (lookahead != 0 && - lookahead != '\'') ADVANCE(179); + lookahead != '\'' && + lookahead != '\\') ADVANCE(179); END_STATE(); case 180: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\\') ADVANCE(264); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '?' || - lookahead == '[') ADVANCE(181); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(179); + ACCEPT_TOKEN(anon_sym_LT_LT_LT); END_STATE(); case 181: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\\') ADVANCE(62); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(181); + ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_LT_LT_LT); + ACCEPT_TOKEN(sym__new_line); + if (lookahead == '\n') ADVANCE(182); + if (lookahead == '\r') ADVANCE(182); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_DQUOTE2); + ACCEPT_TOKEN(anon_sym_); END_STATE(); case 184: - ACCEPT_TOKEN(sym__new_line); - if (lookahead == '\n') ADVANCE(184); - if (lookahead == '\r') ADVANCE(184); + ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_); + ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_SQUOTE2); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_BQUOTE); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + if (lookahead == '=') ADVANCE(149); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(151); + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(137); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(139); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(147); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(198); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(149); + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(199); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(200); + ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(201); + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_LT_GT); + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(210); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(197); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(211); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(197); END_STATE(); case 202: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(212); - if (lookahead == '=') ADVANCE(208); - if (lookahead == '>') ADVANCE(199); + if (lookahead == '<') ADVANCE(209); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(197); END_STATE(); case 203: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(213); - if (lookahead == '=') ADVANCE(208); - if (lookahead == '>') ADVANCE(199); + if (lookahead == '?') ADVANCE(68); END_STATE(); case 204: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(211); - if (lookahead == '=') ADVANCE(208); - if (lookahead == '>') ADVANCE(199); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(213); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '?') ADVANCE(70); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(212); END_STATE(); case 206: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(209); - if (lookahead == '>') ADVANCE(215); + ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == '>') ADVANCE(208); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(209); - if (lookahead == '>') ADVANCE(214); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '>') ADVANCE(210); + ACCEPT_TOKEN(anon_sym_LT_EQ_GT); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 210: - ACCEPT_TOKEN(anon_sym_LT_EQ_GT); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '<') ADVANCE(180); END_STATE(); case 211: ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(144); END_STATE(); case 212: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '<') ADVANCE(182); - END_STATE(); - case 213: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(146); - END_STATE(); - case 214: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 215: + case 213: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(147); + if (lookahead == '=') ADVANCE(145); END_STATE(); - case 216: + case 214: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 217: + case 215: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(25); - if (lookahead == '_') ADVANCE(55); + if (lookahead == '.') ADVANCE(24); + if (lookahead == '_') ADVANCE(54); if (lookahead == 'E' || lookahead == 'e') ADVANCE(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(111); END_STATE(); - case 218: + case 216: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '=') ADVANCE(145); + if (lookahead == '=') ADVANCE(143); END_STATE(); - case 219: + case 217: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(192); - if (lookahead == '=') ADVANCE(140); + if (lookahead == '*') ADVANCE(190); + if (lookahead == '=') ADVANCE(138); END_STATE(); - case 220: + case 218: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(191); + if (lookahead == '*') ADVANCE(189); END_STATE(); - case 221: + case 219: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(21); - if (lookahead == '/') ADVANCE(263); + if (lookahead == '/') ADVANCE(261); END_STATE(); - case 222: + case 220: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(21); - if (lookahead == '/') ADVANCE(263); - if (lookahead == '=') ADVANCE(141); + if (lookahead == '/') ADVANCE(261); + if (lookahead == '=') ADVANCE(139); END_STATE(); - case 223: + case 221: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 224: + case 222: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(142); + if (lookahead == '=') ADVANCE(140); END_STATE(); - case 225: + case 223: ACCEPT_TOKEN(sym_name); - if (lookahead == '"') ADVANCE(167); - if (lookahead == '\'') ADVANCE(169); + if (lookahead == '"') ADVANCE(165); + if (lookahead == '\'') ADVANCE(167); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(245); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + lookahead == 'o') ADVANCE(243); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); - case 226: + case 224: ACCEPT_TOKEN(sym_name); - if (lookahead == '"') ADVANCE(167); - if (lookahead == '\'') ADVANCE(169); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (lookahead == '"') ADVANCE(165); + if (lookahead == '\'') ADVANCE(167); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); - case 227: + case 225: ACCEPT_TOKEN(sym_name); - if (lookahead == '.') ADVANCE(113); - if (lookahead == '_') ADVANCE(259); + if (lookahead == '.') ADVANCE(111); + if (lookahead == '_') ADVANCE(257); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(228); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(227); + lookahead == 'e') ADVANCE(226); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 159) || - (161 <= lookahead && lookahead <= 8202) || - (8204 <= lookahead && lookahead <= 8287) || - (8289 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65278) || - (65280 <= lookahead && lookahead <= 65535)) ADVANCE(261); + (0x80 <= lookahead && lookahead <= 0x9f) || + (0xa1 <= lookahead && lookahead <= 0x200a) || + (0x200c <= lookahead && lookahead <= 0x205f) || + (0x2061 <= lookahead && lookahead <= 0xfefe) || + (0xff00 <= lookahead && lookahead <= 0xffff)) ADVANCE(259); END_STATE(); - case 228: + case 226: ACCEPT_TOKEN(sym_name); if (lookahead == '+' || - lookahead == '-') ADVANCE(57); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(114); - if (sym_name_character_set_2(lookahead)) ADVANCE(261); + lookahead == '-') ADVANCE(56); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); - case 229: + case 227: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(240); + lookahead == 'a') ADVANCE(238); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(244); - if (sym_name_character_set_3(lookahead)) ADVANCE(261); + lookahead == 'l') ADVANCE(242); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 228: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(238); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); + END_STATE(); + case 229: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(256); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 230: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(240); - if (sym_name_character_set_3(lookahead)) ADVANCE(261); + lookahead == 'a') ADVANCE(251); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 231: ACCEPT_TOKEN(sym_name); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(258); - if (sym_name_character_set_3(lookahead)) ADVANCE(261); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(157); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 232: ACCEPT_TOKEN(sym_name); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(253); - if (sym_name_character_set_3(lookahead)) ADVANCE(261); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(252); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 233: ACCEPT_TOKEN(sym_name); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(159); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(108); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 234: ACCEPT_TOKEN(sym_name); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(254); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(240); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 235: ACCEPT_TOKEN(sym_name); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(110); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(105); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 236: ACCEPT_TOKEN(sym_name); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(242); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(155); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 237: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(107); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + lookahead == 'l') ADVANCE(236); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 238: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(157); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + lookahead == 'l') ADVANCE(248); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 239: ACCEPT_TOKEN(sym_name); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(238); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(249); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 240: ACCEPT_TOKEN(sym_name); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(250); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(233); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 241: ACCEPT_TOKEN(sym_name); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(251); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + lookahead == 'n') ADVANCE(250); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 242: ACCEPT_TOKEN(sym_name); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(235); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(230); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 243: ACCEPT_TOKEN(sym_name); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(252); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(235); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 244: ACCEPT_TOKEN(sym_name); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(232); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(229); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 245: ACCEPT_TOKEN(sym_name); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(237); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(234); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 246: ACCEPT_TOKEN(sym_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(231); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + lookahead == 'r') ADVANCE(254); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 247: ACCEPT_TOKEN(sym_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(236); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + lookahead == 'r') ADVANCE(244); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 248: ACCEPT_TOKEN(sym_name); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(256); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(231); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 249: ACCEPT_TOKEN(sym_name); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(246); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(232); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 250: ACCEPT_TOKEN(sym_name); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(233); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(106); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 251: ACCEPT_TOKEN(sym_name); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(234); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(107); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 252: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(108); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + lookahead == 't') ADVANCE(109); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 253: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(109); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + lookahead == 't') ADVANCE(245); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 254: ACCEPT_TOKEN(sym_name); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(111); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(231); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 255: ACCEPT_TOKEN(sym_name); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(247); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(237); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 256: ACCEPT_TOKEN(sym_name); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(233); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(104); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 257: ACCEPT_TOKEN(sym_name); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(239); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 258: ACCEPT_TOKEN(sym_name); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(106); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 259: ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(227); - if (sym_name_character_set_2(lookahead)) ADVANCE(261); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(259); END_STATE(); case 260: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(114); - if (sym_name_character_set_2(lookahead)) ADVANCE(261); - END_STATE(); - case 261: - ACCEPT_TOKEN(sym_name); - if (sym_name_character_set_1(lookahead)) ADVANCE(261); - END_STATE(); - case 262: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 263: + case 261: ACCEPT_TOKEN(sym_comment); if (lookahead == '?') ADVANCE(2); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(263); - END_STATE(); - case 264: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '?') ADVANCE(172); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(181); - if (lookahead == '\'' || - lookahead == '\\') ADVANCE(263); - if (lookahead != 0) ADVANCE(179); + lookahead != '\r') ADVANCE(261); END_STATE(); - case 265: + case 262: ACCEPT_TOKEN(sym_comment); - if (lookahead == '[') ADVANCE(160); + if (lookahead == '[') ADVANCE(158); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '?') ADVANCE(263); + lookahead != '?') ADVANCE(261); END_STATE(); - case 266: + case 263: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '?' && - lookahead != '[') ADVANCE(263); + lookahead != '[') ADVANCE(261); END_STATE(); default: return false; @@ -8631,54 +8507,56 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (lookahead == 'A') ADVANCE(1); - if (lookahead == 'B') ADVANCE(2); - if (lookahead == 'E') ADVANCE(3); - if (lookahead == 'F') ADVANCE(4); - if (lookahead == 'I') ADVANCE(5); - if (lookahead == 'M') ADVANCE(6); - if (lookahead == 'N') ADVANCE(7); - if (lookahead == 'P') ADVANCE(8); - if (lookahead == 'S') ADVANCE(9); - if (lookahead == 'T') ADVANCE(10); - if (lookahead == 'U') ADVANCE(11); - if (lookahead == 'V') ADVANCE(12); - if (lookahead == 'a') ADVANCE(13); - if (lookahead == 'b') ADVANCE(14); - if (lookahead == 'e') ADVANCE(15); - if (lookahead == 'f') ADVANCE(16); - if (lookahead == 'i') ADVANCE(17); - if (lookahead == 'm') ADVANCE(18); - if (lookahead == 'n') ADVANCE(19); - if (lookahead == 'p') ADVANCE(20); - if (lookahead == 's') ADVANCE(21); - if (lookahead == 't') ADVANCE(22); - if (lookahead == 'u') ADVANCE(23); - if (lookahead == 'v') ADVANCE(24); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(25); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(26); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(27); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(28); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(29); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(30); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(31); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(32); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(33); + ADVANCE_MAP( + 'A', 1, + 'B', 2, + 'E', 3, + 'F', 4, + 'I', 5, + 'M', 6, + 'N', 7, + 'P', 8, + 'S', 9, + 'T', 10, + 'U', 11, + 'V', 12, + 'a', 13, + 'b', 14, + 'e', 15, + 'f', 16, + 'i', 17, + 'm', 18, + 'n', 19, + 'p', 20, + 's', 21, + 't', 22, + 'u', 23, + 'v', 24, + 'C', 25, + 'c', 25, + 'D', 26, + 'd', 26, + 'G', 27, + 'g', 27, + 'L', 28, + 'l', 28, + 'O', 29, + 'o', 29, + 'R', 30, + 'r', 30, + 'W', 31, + 'w', 31, + 'X', 32, + 'x', 32, + 'Y', 33, + 'y', 33, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(0) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(0); END_STATE(); case 1: if (lookahead == 'B' || @@ -8697,26 +8575,30 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { 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); + ADVANCE_MAP( + 'C', 40, + 'c', 40, + 'L', 41, + 'l', 41, + 'N', 42, + 'n', 42, + 'X', 43, + 'x', 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); + ADVANCE_MAP( + 'I', 44, + 'i', 44, + 'N', 45, + 'n', 45, + 'O', 46, + 'o', 46, + 'R', 47, + 'r', 47, + 'U', 48, + 'u', 48, + ); END_STATE(); case 5: if (lookahead == 'F' || @@ -8780,28 +8662,32 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { lookahead == 'r') ADVANCE(39); END_STATE(); case 15: - if (lookahead == 'N') ADVANCE(42); - if (lookahead == 'n') ADVANCE(65); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(40); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(41); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(43); + ADVANCE_MAP( + 'N', 42, + 'n', 65, + 'C', 40, + 'c', 40, + 'L', 41, + 'l', 41, + 'X', 43, + 'x', 43, + ); END_STATE(); case 16: - if (lookahead == 'a') ADVANCE(66); - if (lookahead == 'l') ADVANCE(67); - 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); + ADVANCE_MAP( + 'a', 66, + 'l', 67, + 'I', 44, + 'i', 44, + 'N', 45, + 'n', 45, + 'O', 46, + 'o', 46, + 'R', 47, + 'r', 47, + 'U', 48, + 'u', 48, + ); END_STATE(); case 17: if (lookahead == 'N') ADVANCE(51); @@ -9191,16 +9077,18 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { lookahead == 'e') ADVANCE(167); END_STATE(); case 101: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(168); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(169); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(170); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(171); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(172); + ADVANCE_MAP( + 'D', 168, + 'd', 168, + 'F', 169, + 'f', 169, + 'I', 170, + 'i', 170, + 'S', 171, + 's', 171, + 'W', 172, + 'w', 172, + ); END_STATE(); case 102: if (lookahead == 'M' || @@ -10302,89 +10190,89 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 67}, - [2] = {.lex_state = 64}, - [3] = {.lex_state = 64}, - [4] = {.lex_state = 64}, - [5] = {.lex_state = 64}, - [6] = {.lex_state = 64}, - [7] = {.lex_state = 64}, - [8] = {.lex_state = 64}, - [9] = {.lex_state = 64}, - [10] = {.lex_state = 64}, - [11] = {.lex_state = 64}, - [12] = {.lex_state = 64, .external_lex_state = 2}, - [13] = {.lex_state = 64, .external_lex_state = 2}, - [14] = {.lex_state = 64, .external_lex_state = 2}, - [15] = {.lex_state = 64, .external_lex_state = 2}, - [16] = {.lex_state = 64, .external_lex_state = 2}, - [17] = {.lex_state = 64}, - [18] = {.lex_state = 64}, - [19] = {.lex_state = 64}, - [20] = {.lex_state = 64}, - [21] = {.lex_state = 64, .external_lex_state = 2}, - [22] = {.lex_state = 64}, - [23] = {.lex_state = 64}, - [24] = {.lex_state = 64}, - [25] = {.lex_state = 64, .external_lex_state = 2}, - [26] = {.lex_state = 64}, - [27] = {.lex_state = 64}, - [28] = {.lex_state = 64}, - [29] = {.lex_state = 64}, - [30] = {.lex_state = 64, .external_lex_state = 2}, - [31] = {.lex_state = 64}, - [32] = {.lex_state = 64}, - [33] = {.lex_state = 64}, - [34] = {.lex_state = 64}, - [35] = {.lex_state = 64, .external_lex_state = 2}, - [36] = {.lex_state = 64, .external_lex_state = 2}, - [37] = {.lex_state = 64}, - [38] = {.lex_state = 64}, - [39] = {.lex_state = 64}, - [40] = {.lex_state = 64, .external_lex_state = 2}, - [41] = {.lex_state = 64}, - [42] = {.lex_state = 64}, - [43] = {.lex_state = 64, .external_lex_state = 2}, - [44] = {.lex_state = 64, .external_lex_state = 2}, - [45] = {.lex_state = 64}, - [46] = {.lex_state = 64}, - [47] = {.lex_state = 64, .external_lex_state = 2}, - [48] = {.lex_state = 64, .external_lex_state = 2}, - [49] = {.lex_state = 64}, - [50] = {.lex_state = 64, .external_lex_state = 2}, - [51] = {.lex_state = 64}, - [52] = {.lex_state = 64, .external_lex_state = 2}, - [53] = {.lex_state = 64}, - [54] = {.lex_state = 64, .external_lex_state = 2}, - [55] = {.lex_state = 64}, - [56] = {.lex_state = 64}, - [57] = {.lex_state = 64}, - [58] = {.lex_state = 64}, - [59] = {.lex_state = 64}, - [60] = {.lex_state = 64}, - [61] = {.lex_state = 64}, - [62] = {.lex_state = 64, .external_lex_state = 2}, - [63] = {.lex_state = 64, .external_lex_state = 2}, - [64] = {.lex_state = 64}, - [65] = {.lex_state = 64}, - [66] = {.lex_state = 64}, - [67] = {.lex_state = 64, .external_lex_state = 2}, - [68] = {.lex_state = 64}, - [69] = {.lex_state = 64, .external_lex_state = 2}, - [70] = {.lex_state = 64}, - [71] = {.lex_state = 64}, - [72] = {.lex_state = 64}, - [73] = {.lex_state = 64, .external_lex_state = 2}, - [74] = {.lex_state = 64, .external_lex_state = 2}, - [75] = {.lex_state = 64}, - [76] = {.lex_state = 64}, - [77] = {.lex_state = 64}, - [78] = {.lex_state = 64}, - [79] = {.lex_state = 64}, - [80] = {.lex_state = 64}, - [81] = {.lex_state = 64}, - [82] = {.lex_state = 64}, - [83] = {.lex_state = 64}, + [1] = {.lex_state = 65}, + [2] = {.lex_state = 62}, + [3] = {.lex_state = 62}, + [4] = {.lex_state = 62}, + [5] = {.lex_state = 62}, + [6] = {.lex_state = 62}, + [7] = {.lex_state = 62}, + [8] = {.lex_state = 62}, + [9] = {.lex_state = 62}, + [10] = {.lex_state = 62}, + [11] = {.lex_state = 62}, + [12] = {.lex_state = 62, .external_lex_state = 2}, + [13] = {.lex_state = 62, .external_lex_state = 2}, + [14] = {.lex_state = 62, .external_lex_state = 2}, + [15] = {.lex_state = 62, .external_lex_state = 2}, + [16] = {.lex_state = 62, .external_lex_state = 2}, + [17] = {.lex_state = 62}, + [18] = {.lex_state = 62}, + [19] = {.lex_state = 62}, + [20] = {.lex_state = 62}, + [21] = {.lex_state = 62, .external_lex_state = 2}, + [22] = {.lex_state = 62}, + [23] = {.lex_state = 62, .external_lex_state = 2}, + [24] = {.lex_state = 62}, + [25] = {.lex_state = 62, .external_lex_state = 2}, + [26] = {.lex_state = 62, .external_lex_state = 2}, + [27] = {.lex_state = 62}, + [28] = {.lex_state = 62}, + [29] = {.lex_state = 62}, + [30] = {.lex_state = 62, .external_lex_state = 2}, + [31] = {.lex_state = 62, .external_lex_state = 2}, + [32] = {.lex_state = 62, .external_lex_state = 2}, + [33] = {.lex_state = 62, .external_lex_state = 2}, + [34] = {.lex_state = 62, .external_lex_state = 2}, + [35] = {.lex_state = 62, .external_lex_state = 2}, + [36] = {.lex_state = 62, .external_lex_state = 2}, + [37] = {.lex_state = 62, .external_lex_state = 2}, + [38] = {.lex_state = 62}, + [39] = {.lex_state = 62, .external_lex_state = 2}, + [40] = {.lex_state = 62}, + [41] = {.lex_state = 62}, + [42] = {.lex_state = 62, .external_lex_state = 2}, + [43] = {.lex_state = 62}, + [44] = {.lex_state = 62}, + [45] = {.lex_state = 62}, + [46] = {.lex_state = 62}, + [47] = {.lex_state = 62}, + [48] = {.lex_state = 62, .external_lex_state = 2}, + [49] = {.lex_state = 62, .external_lex_state = 2}, + [50] = {.lex_state = 62, .external_lex_state = 2}, + [51] = {.lex_state = 62}, + [52] = {.lex_state = 62}, + [53] = {.lex_state = 62}, + [54] = {.lex_state = 62}, + [55] = {.lex_state = 62}, + [56] = {.lex_state = 62}, + [57] = {.lex_state = 62}, + [58] = {.lex_state = 62}, + [59] = {.lex_state = 62}, + [60] = {.lex_state = 62}, + [61] = {.lex_state = 62}, + [62] = {.lex_state = 62, .external_lex_state = 2}, + [63] = {.lex_state = 62}, + [64] = {.lex_state = 62}, + [65] = {.lex_state = 62}, + [66] = {.lex_state = 62}, + [67] = {.lex_state = 62, .external_lex_state = 2}, + [68] = {.lex_state = 62}, + [69] = {.lex_state = 62}, + [70] = {.lex_state = 62}, + [71] = {.lex_state = 62}, + [72] = {.lex_state = 62}, + [73] = {.lex_state = 62}, + [74] = {.lex_state = 62}, + [75] = {.lex_state = 62}, + [76] = {.lex_state = 62}, + [77] = {.lex_state = 62}, + [78] = {.lex_state = 62}, + [79] = {.lex_state = 62}, + [80] = {.lex_state = 62}, + [81] = {.lex_state = 62}, + [82] = {.lex_state = 62}, + [83] = {.lex_state = 62}, [84] = {.lex_state = 5}, [85] = {.lex_state = 5}, [86] = {.lex_state = 5, .external_lex_state = 2}, @@ -10400,7 +10288,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [96] = {.lex_state = 7}, [97] = {.lex_state = 7}, [98] = {.lex_state = 7}, - [99] = {.lex_state = 6}, + [99] = {.lex_state = 7}, [100] = {.lex_state = 6}, [101] = {.lex_state = 6}, [102] = {.lex_state = 6}, @@ -10439,588 +10327,588 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [135] = {.lex_state = 6}, [136] = {.lex_state = 6}, [137] = {.lex_state = 6}, - [138] = {.lex_state = 64}, + [138] = {.lex_state = 62}, [139] = {.lex_state = 6}, - [140] = {.lex_state = 64}, + [140] = {.lex_state = 6}, [141] = {.lex_state = 6}, - [142] = {.lex_state = 6}, + [142] = {.lex_state = 62}, [143] = {.lex_state = 6}, - [144] = {.lex_state = 64}, - [145] = {.lex_state = 64}, - [146] = {.lex_state = 64}, - [147] = {.lex_state = 64}, - [148] = {.lex_state = 64}, - [149] = {.lex_state = 64}, - [150] = {.lex_state = 64}, - [151] = {.lex_state = 64}, - [152] = {.lex_state = 6}, - [153] = {.lex_state = 6}, - [154] = {.lex_state = 64}, - [155] = {.lex_state = 64}, - [156] = {.lex_state = 64}, - [157] = {.lex_state = 64}, - [158] = {.lex_state = 64}, - [159] = {.lex_state = 64}, - [160] = {.lex_state = 64}, - [161] = {.lex_state = 64}, - [162] = {.lex_state = 64}, - [163] = {.lex_state = 64}, - [164] = {.lex_state = 64}, - [165] = {.lex_state = 64}, - [166] = {.lex_state = 64}, - [167] = {.lex_state = 64}, - [168] = {.lex_state = 64}, - [169] = {.lex_state = 64}, - [170] = {.lex_state = 64}, - [171] = {.lex_state = 64}, - [172] = {.lex_state = 64}, - [173] = {.lex_state = 64}, - [174] = {.lex_state = 64}, - [175] = {.lex_state = 64}, - [176] = {.lex_state = 64}, - [177] = {.lex_state = 64}, - [178] = {.lex_state = 64}, - [179] = {.lex_state = 64}, - [180] = {.lex_state = 64}, - [181] = {.lex_state = 64}, - [182] = {.lex_state = 64}, - [183] = {.lex_state = 64}, - [184] = {.lex_state = 64}, - [185] = {.lex_state = 64}, - [186] = {.lex_state = 64, .external_lex_state = 2}, - [187] = {.lex_state = 64, .external_lex_state = 2}, - [188] = {.lex_state = 64, .external_lex_state = 2}, - [189] = {.lex_state = 64}, - [190] = {.lex_state = 64, .external_lex_state = 2}, - [191] = {.lex_state = 64}, - [192] = {.lex_state = 64}, - [193] = {.lex_state = 64}, - [194] = {.lex_state = 64, .external_lex_state = 2}, - [195] = {.lex_state = 64}, - [196] = {.lex_state = 64, .external_lex_state = 2}, - [197] = {.lex_state = 6}, - [198] = {.lex_state = 64}, - [199] = {.lex_state = 64}, + [144] = {.lex_state = 62}, + [145] = {.lex_state = 62}, + [146] = {.lex_state = 62}, + [147] = {.lex_state = 6}, + [148] = {.lex_state = 62}, + [149] = {.lex_state = 6}, + [150] = {.lex_state = 62}, + [151] = {.lex_state = 62}, + [152] = {.lex_state = 62}, + [153] = {.lex_state = 62}, + [154] = {.lex_state = 6}, + [155] = {.lex_state = 62}, + [156] = {.lex_state = 62}, + [157] = {.lex_state = 62}, + [158] = {.lex_state = 62}, + [159] = {.lex_state = 62}, + [160] = {.lex_state = 62}, + [161] = {.lex_state = 62}, + [162] = {.lex_state = 62}, + [163] = {.lex_state = 62}, + [164] = {.lex_state = 62}, + [165] = {.lex_state = 62}, + [166] = {.lex_state = 62}, + [167] = {.lex_state = 62}, + [168] = {.lex_state = 62}, + [169] = {.lex_state = 62}, + [170] = {.lex_state = 62}, + [171] = {.lex_state = 62}, + [172] = {.lex_state = 62}, + [173] = {.lex_state = 62}, + [174] = {.lex_state = 62}, + [175] = {.lex_state = 62}, + [176] = {.lex_state = 62}, + [177] = {.lex_state = 62}, + [178] = {.lex_state = 62}, + [179] = {.lex_state = 62}, + [180] = {.lex_state = 62}, + [181] = {.lex_state = 62}, + [182] = {.lex_state = 62}, + [183] = {.lex_state = 62}, + [184] = {.lex_state = 62}, + [185] = {.lex_state = 62}, + [186] = {.lex_state = 62}, + [187] = {.lex_state = 6}, + [188] = {.lex_state = 62, .external_lex_state = 2}, + [189] = {.lex_state = 62}, + [190] = {.lex_state = 62, .external_lex_state = 2}, + [191] = {.lex_state = 62, .external_lex_state = 2}, + [192] = {.lex_state = 62}, + [193] = {.lex_state = 62}, + [194] = {.lex_state = 62}, + [195] = {.lex_state = 62}, + [196] = {.lex_state = 62}, + [197] = {.lex_state = 62, .external_lex_state = 2}, + [198] = {.lex_state = 62}, + [199] = {.lex_state = 62}, [200] = {.lex_state = 6}, - [201] = {.lex_state = 64}, - [202] = {.lex_state = 64}, - [203] = {.lex_state = 64}, - [204] = {.lex_state = 64}, - [205] = {.lex_state = 64}, - [206] = {.lex_state = 64}, - [207] = {.lex_state = 64}, - [208] = {.lex_state = 64}, - [209] = {.lex_state = 64}, - [210] = {.lex_state = 64}, - [211] = {.lex_state = 64}, - [212] = {.lex_state = 64}, - [213] = {.lex_state = 64}, - [214] = {.lex_state = 64}, - [215] = {.lex_state = 64}, - [216] = {.lex_state = 64}, - [217] = {.lex_state = 64}, - [218] = {.lex_state = 64}, - [219] = {.lex_state = 64}, - [220] = {.lex_state = 64}, - [221] = {.lex_state = 64}, - [222] = {.lex_state = 64}, - [223] = {.lex_state = 64}, - [224] = {.lex_state = 64}, - [225] = {.lex_state = 64}, - [226] = {.lex_state = 64}, - [227] = {.lex_state = 64}, - [228] = {.lex_state = 64}, - [229] = {.lex_state = 64}, - [230] = {.lex_state = 64}, - [231] = {.lex_state = 64}, - [232] = {.lex_state = 64}, - [233] = {.lex_state = 64}, - [234] = {.lex_state = 64}, - [235] = {.lex_state = 64}, - [236] = {.lex_state = 64}, - [237] = {.lex_state = 64}, - [238] = {.lex_state = 64}, - [239] = {.lex_state = 64}, - [240] = {.lex_state = 64}, - [241] = {.lex_state = 64}, - [242] = {.lex_state = 64}, - [243] = {.lex_state = 64}, - [244] = {.lex_state = 64}, - [245] = {.lex_state = 64}, - [246] = {.lex_state = 64}, - [247] = {.lex_state = 64}, - [248] = {.lex_state = 64}, - [249] = {.lex_state = 64}, - [250] = {.lex_state = 64}, - [251] = {.lex_state = 64}, - [252] = {.lex_state = 64}, - [253] = {.lex_state = 64}, - [254] = {.lex_state = 64}, - [255] = {.lex_state = 64}, - [256] = {.lex_state = 64}, - [257] = {.lex_state = 64}, - [258] = {.lex_state = 64}, - [259] = {.lex_state = 64}, - [260] = {.lex_state = 64}, - [261] = {.lex_state = 64}, - [262] = {.lex_state = 64}, - [263] = {.lex_state = 64}, - [264] = {.lex_state = 64}, - [265] = {.lex_state = 64}, - [266] = {.lex_state = 64}, - [267] = {.lex_state = 64}, - [268] = {.lex_state = 64}, - [269] = {.lex_state = 64}, - [270] = {.lex_state = 64}, - [271] = {.lex_state = 64}, - [272] = {.lex_state = 64}, - [273] = {.lex_state = 64}, - [274] = {.lex_state = 64}, - [275] = {.lex_state = 64}, - [276] = {.lex_state = 64}, - [277] = {.lex_state = 64}, - [278] = {.lex_state = 64}, - [279] = {.lex_state = 64}, - [280] = {.lex_state = 64}, - [281] = {.lex_state = 64}, - [282] = {.lex_state = 64}, - [283] = {.lex_state = 64}, - [284] = {.lex_state = 64}, - [285] = {.lex_state = 64}, - [286] = {.lex_state = 64}, - [287] = {.lex_state = 64}, - [288] = {.lex_state = 64}, - [289] = {.lex_state = 64}, - [290] = {.lex_state = 64}, - [291] = {.lex_state = 64}, - [292] = {.lex_state = 64}, - [293] = {.lex_state = 64}, - [294] = {.lex_state = 64}, - [295] = {.lex_state = 64}, - [296] = {.lex_state = 64}, - [297] = {.lex_state = 64}, - [298] = {.lex_state = 64}, - [299] = {.lex_state = 64}, - [300] = {.lex_state = 64}, - [301] = {.lex_state = 64}, - [302] = {.lex_state = 64}, - [303] = {.lex_state = 64}, - [304] = {.lex_state = 64}, - [305] = {.lex_state = 64}, - [306] = {.lex_state = 64}, - [307] = {.lex_state = 64}, - [308] = {.lex_state = 64}, - [309] = {.lex_state = 64}, - [310] = {.lex_state = 64}, - [311] = {.lex_state = 64}, - [312] = {.lex_state = 64}, - [313] = {.lex_state = 64}, - [314] = {.lex_state = 64}, - [315] = {.lex_state = 64}, - [316] = {.lex_state = 64}, - [317] = {.lex_state = 64}, - [318] = {.lex_state = 64}, - [319] = {.lex_state = 64}, - [320] = {.lex_state = 64}, - [321] = {.lex_state = 64}, - [322] = {.lex_state = 64}, - [323] = {.lex_state = 64}, - [324] = {.lex_state = 64}, - [325] = {.lex_state = 64}, - [326] = {.lex_state = 64}, - [327] = {.lex_state = 64}, - [328] = {.lex_state = 64}, - [329] = {.lex_state = 64}, - [330] = {.lex_state = 64}, - [331] = {.lex_state = 64}, - [332] = {.lex_state = 64}, - [333] = {.lex_state = 64}, - [334] = {.lex_state = 64}, - [335] = {.lex_state = 64}, - [336] = {.lex_state = 64}, - [337] = {.lex_state = 64}, - [338] = {.lex_state = 64}, - [339] = {.lex_state = 64}, - [340] = {.lex_state = 64}, - [341] = {.lex_state = 64}, - [342] = {.lex_state = 64}, - [343] = {.lex_state = 64}, - [344] = {.lex_state = 64}, - [345] = {.lex_state = 64}, - [346] = {.lex_state = 64}, - [347] = {.lex_state = 64}, - [348] = {.lex_state = 64}, - [349] = {.lex_state = 64}, - [350] = {.lex_state = 64}, - [351] = {.lex_state = 64}, - [352] = {.lex_state = 64}, - [353] = {.lex_state = 64}, - [354] = {.lex_state = 64}, - [355] = {.lex_state = 64}, - [356] = {.lex_state = 64}, - [357] = {.lex_state = 64}, - [358] = {.lex_state = 64}, - [359] = {.lex_state = 64}, - [360] = {.lex_state = 64}, - [361] = {.lex_state = 64}, - [362] = {.lex_state = 64}, - [363] = {.lex_state = 64}, - [364] = {.lex_state = 64}, - [365] = {.lex_state = 64}, - [366] = {.lex_state = 64}, - [367] = {.lex_state = 64}, - [368] = {.lex_state = 64}, - [369] = {.lex_state = 64}, - [370] = {.lex_state = 64}, - [371] = {.lex_state = 64}, - [372] = {.lex_state = 64}, - [373] = {.lex_state = 64}, - [374] = {.lex_state = 64}, - [375] = {.lex_state = 64}, - [376] = {.lex_state = 64}, - [377] = {.lex_state = 64}, - [378] = {.lex_state = 64}, - [379] = {.lex_state = 64}, - [380] = {.lex_state = 64}, - [381] = {.lex_state = 64}, - [382] = {.lex_state = 64}, - [383] = {.lex_state = 64}, - [384] = {.lex_state = 64}, - [385] = {.lex_state = 64}, - [386] = {.lex_state = 64}, - [387] = {.lex_state = 64}, - [388] = {.lex_state = 64}, - [389] = {.lex_state = 64}, - [390] = {.lex_state = 64}, - [391] = {.lex_state = 64}, - [392] = {.lex_state = 64}, - [393] = {.lex_state = 64}, - [394] = {.lex_state = 64}, - [395] = {.lex_state = 64}, - [396] = {.lex_state = 64}, - [397] = {.lex_state = 64}, - [398] = {.lex_state = 64}, - [399] = {.lex_state = 64}, - [400] = {.lex_state = 64}, - [401] = {.lex_state = 64}, - [402] = {.lex_state = 64}, - [403] = {.lex_state = 64}, - [404] = {.lex_state = 64}, - [405] = {.lex_state = 64}, - [406] = {.lex_state = 64}, - [407] = {.lex_state = 64}, - [408] = {.lex_state = 64}, - [409] = {.lex_state = 64}, - [410] = {.lex_state = 64}, - [411] = {.lex_state = 64}, - [412] = {.lex_state = 64}, - [413] = {.lex_state = 64}, - [414] = {.lex_state = 64}, - [415] = {.lex_state = 64}, - [416] = {.lex_state = 64}, - [417] = {.lex_state = 64}, - [418] = {.lex_state = 64}, - [419] = {.lex_state = 64}, - [420] = {.lex_state = 64}, - [421] = {.lex_state = 64}, - [422] = {.lex_state = 64}, - [423] = {.lex_state = 64}, - [424] = {.lex_state = 64}, - [425] = {.lex_state = 64}, - [426] = {.lex_state = 64}, - [427] = {.lex_state = 64}, - [428] = {.lex_state = 64}, - [429] = {.lex_state = 64}, - [430] = {.lex_state = 64}, - [431] = {.lex_state = 64}, - [432] = {.lex_state = 64}, - [433] = {.lex_state = 64}, - [434] = {.lex_state = 64}, - [435] = {.lex_state = 64}, - [436] = {.lex_state = 64, .external_lex_state = 2}, - [437] = {.lex_state = 64, .external_lex_state = 2}, - [438] = {.lex_state = 64, .external_lex_state = 2}, - [439] = {.lex_state = 64, .external_lex_state = 2}, - [440] = {.lex_state = 64, .external_lex_state = 2}, - [441] = {.lex_state = 64, .external_lex_state = 2}, - [442] = {.lex_state = 64, .external_lex_state = 2}, - [443] = {.lex_state = 64, .external_lex_state = 2}, - [444] = {.lex_state = 64}, - [445] = {.lex_state = 64}, - [446] = {.lex_state = 64, .external_lex_state = 2}, - [447] = {.lex_state = 64}, - [448] = {.lex_state = 64, .external_lex_state = 2}, - [449] = {.lex_state = 64, .external_lex_state = 2}, - [450] = {.lex_state = 64, .external_lex_state = 2}, - [451] = {.lex_state = 64}, - [452] = {.lex_state = 64, .external_lex_state = 2}, - [453] = {.lex_state = 64, .external_lex_state = 2}, - [454] = {.lex_state = 64, .external_lex_state = 2}, - [455] = {.lex_state = 64}, - [456] = {.lex_state = 64}, - [457] = {.lex_state = 64, .external_lex_state = 2}, - [458] = {.lex_state = 64, .external_lex_state = 2}, - [459] = {.lex_state = 64}, - [460] = {.lex_state = 64}, - [461] = {.lex_state = 64, .external_lex_state = 2}, - [462] = {.lex_state = 64, .external_lex_state = 2}, - [463] = {.lex_state = 64, .external_lex_state = 2}, - [464] = {.lex_state = 64}, - [465] = {.lex_state = 64}, - [466] = {.lex_state = 64}, - [467] = {.lex_state = 64}, - [468] = {.lex_state = 64}, - [469] = {.lex_state = 64}, - [470] = {.lex_state = 64}, - [471] = {.lex_state = 64}, - [472] = {.lex_state = 64}, - [473] = {.lex_state = 64}, - [474] = {.lex_state = 64}, - [475] = {.lex_state = 64}, - [476] = {.lex_state = 64}, - [477] = {.lex_state = 64}, - [478] = {.lex_state = 64}, - [479] = {.lex_state = 64}, - [480] = {.lex_state = 64}, - [481] = {.lex_state = 64}, - [482] = {.lex_state = 64}, - [483] = {.lex_state = 64}, - [484] = {.lex_state = 64}, - [485] = {.lex_state = 64}, - [486] = {.lex_state = 64}, - [487] = {.lex_state = 64}, - [488] = {.lex_state = 64}, - [489] = {.lex_state = 64}, - [490] = {.lex_state = 64}, - [491] = {.lex_state = 64}, - [492] = {.lex_state = 64}, - [493] = {.lex_state = 64}, - [494] = {.lex_state = 64}, - [495] = {.lex_state = 64}, - [496] = {.lex_state = 64}, - [497] = {.lex_state = 64}, - [498] = {.lex_state = 64}, - [499] = {.lex_state = 64}, - [500] = {.lex_state = 64}, - [501] = {.lex_state = 64}, - [502] = {.lex_state = 64}, - [503] = {.lex_state = 64}, - [504] = {.lex_state = 64}, - [505] = {.lex_state = 64}, - [506] = {.lex_state = 64}, - [507] = {.lex_state = 64}, - [508] = {.lex_state = 64}, - [509] = {.lex_state = 64}, - [510] = {.lex_state = 64}, - [511] = {.lex_state = 64}, - [512] = {.lex_state = 64}, - [513] = {.lex_state = 64}, - [514] = {.lex_state = 64}, - [515] = {.lex_state = 64}, - [516] = {.lex_state = 64}, - [517] = {.lex_state = 64}, - [518] = {.lex_state = 64}, - [519] = {.lex_state = 64}, - [520] = {.lex_state = 64}, - [521] = {.lex_state = 64}, - [522] = {.lex_state = 64}, - [523] = {.lex_state = 64}, - [524] = {.lex_state = 64}, - [525] = {.lex_state = 64}, - [526] = {.lex_state = 64}, - [527] = {.lex_state = 64}, - [528] = {.lex_state = 64}, - [529] = {.lex_state = 64}, - [530] = {.lex_state = 64}, - [531] = {.lex_state = 64}, - [532] = {.lex_state = 64}, - [533] = {.lex_state = 64}, - [534] = {.lex_state = 64}, - [535] = {.lex_state = 64}, - [536] = {.lex_state = 64}, - [537] = {.lex_state = 64}, - [538] = {.lex_state = 64}, - [539] = {.lex_state = 64}, - [540] = {.lex_state = 64}, - [541] = {.lex_state = 64}, - [542] = {.lex_state = 64}, - [543] = {.lex_state = 64}, - [544] = {.lex_state = 64}, - [545] = {.lex_state = 64}, - [546] = {.lex_state = 64}, - [547] = {.lex_state = 64}, - [548] = {.lex_state = 64}, - [549] = {.lex_state = 64}, - [550] = {.lex_state = 64}, - [551] = {.lex_state = 64}, - [552] = {.lex_state = 64}, - [553] = {.lex_state = 64}, - [554] = {.lex_state = 64}, - [555] = {.lex_state = 64}, - [556] = {.lex_state = 64}, - [557] = {.lex_state = 64}, - [558] = {.lex_state = 64}, - [559] = {.lex_state = 64}, - [560] = {.lex_state = 64}, - [561] = {.lex_state = 64}, - [562] = {.lex_state = 64}, - [563] = {.lex_state = 64}, - [564] = {.lex_state = 64}, - [565] = {.lex_state = 64}, - [566] = {.lex_state = 64}, - [567] = {.lex_state = 64}, - [568] = {.lex_state = 64}, - [569] = {.lex_state = 64}, - [570] = {.lex_state = 64}, - [571] = {.lex_state = 64}, - [572] = {.lex_state = 64}, - [573] = {.lex_state = 64}, - [574] = {.lex_state = 64}, - [575] = {.lex_state = 64}, - [576] = {.lex_state = 64}, - [577] = {.lex_state = 65}, - [578] = {.lex_state = 65}, - [579] = {.lex_state = 65}, - [580] = {.lex_state = 65}, - [581] = {.lex_state = 65}, - [582] = {.lex_state = 65}, - [583] = {.lex_state = 65}, - [584] = {.lex_state = 65}, - [585] = {.lex_state = 65}, - [586] = {.lex_state = 65}, - [587] = {.lex_state = 65}, - [588] = {.lex_state = 65}, - [589] = {.lex_state = 65}, - [590] = {.lex_state = 65}, - [591] = {.lex_state = 65}, - [592] = {.lex_state = 65}, - [593] = {.lex_state = 65}, - [594] = {.lex_state = 65}, - [595] = {.lex_state = 65}, - [596] = {.lex_state = 65}, - [597] = {.lex_state = 65}, - [598] = {.lex_state = 65}, - [599] = {.lex_state = 65}, - [600] = {.lex_state = 65}, - [601] = {.lex_state = 65}, - [602] = {.lex_state = 65}, - [603] = {.lex_state = 65, .external_lex_state = 2}, - [604] = {.lex_state = 65, .external_lex_state = 2}, - [605] = {.lex_state = 65, .external_lex_state = 2}, - [606] = {.lex_state = 65}, - [607] = {.lex_state = 65, .external_lex_state = 2}, - [608] = {.lex_state = 65, .external_lex_state = 2}, - [609] = {.lex_state = 65}, - [610] = {.lex_state = 65, .external_lex_state = 2}, - [611] = {.lex_state = 65}, - [612] = {.lex_state = 65, .external_lex_state = 2}, - [613] = {.lex_state = 65, .external_lex_state = 2}, - [614] = {.lex_state = 65, .external_lex_state = 2}, - [615] = {.lex_state = 65}, - [616] = {.lex_state = 65, .external_lex_state = 2}, - [617] = {.lex_state = 65, .external_lex_state = 2}, - [618] = {.lex_state = 65}, - [619] = {.lex_state = 65, .external_lex_state = 2}, - [620] = {.lex_state = 65, .external_lex_state = 2}, - [621] = {.lex_state = 65, .external_lex_state = 2}, - [622] = {.lex_state = 65, .external_lex_state = 2}, - [623] = {.lex_state = 65}, - [624] = {.lex_state = 65}, - [625] = {.lex_state = 65, .external_lex_state = 2}, - [626] = {.lex_state = 65, .external_lex_state = 2}, - [627] = {.lex_state = 65, .external_lex_state = 2}, - [628] = {.lex_state = 65, .external_lex_state = 2}, - [629] = {.lex_state = 65, .external_lex_state = 2}, - [630] = {.lex_state = 65, .external_lex_state = 2}, - [631] = {.lex_state = 65, .external_lex_state = 2}, - [632] = {.lex_state = 65, .external_lex_state = 2}, - [633] = {.lex_state = 65}, - [634] = {.lex_state = 65, .external_lex_state = 2}, - [635] = {.lex_state = 65, .external_lex_state = 2}, - [636] = {.lex_state = 65}, - [637] = {.lex_state = 65}, - [638] = {.lex_state = 65}, - [639] = {.lex_state = 65, .external_lex_state = 2}, - [640] = {.lex_state = 65}, - [641] = {.lex_state = 65}, - [642] = {.lex_state = 65}, - [643] = {.lex_state = 65}, - [644] = {.lex_state = 65}, + [201] = {.lex_state = 62, .external_lex_state = 2}, + [202] = {.lex_state = 62, .external_lex_state = 2}, + [203] = {.lex_state = 62}, + [204] = {.lex_state = 62}, + [205] = {.lex_state = 62}, + [206] = {.lex_state = 62}, + [207] = {.lex_state = 62}, + [208] = {.lex_state = 62}, + [209] = {.lex_state = 62}, + [210] = {.lex_state = 62}, + [211] = {.lex_state = 62}, + [212] = {.lex_state = 62}, + [213] = {.lex_state = 62}, + [214] = {.lex_state = 62}, + [215] = {.lex_state = 62}, + [216] = {.lex_state = 62}, + [217] = {.lex_state = 62}, + [218] = {.lex_state = 62}, + [219] = {.lex_state = 62}, + [220] = {.lex_state = 62}, + [221] = {.lex_state = 62}, + [222] = {.lex_state = 62}, + [223] = {.lex_state = 62}, + [224] = {.lex_state = 62}, + [225] = {.lex_state = 62}, + [226] = {.lex_state = 62}, + [227] = {.lex_state = 62}, + [228] = {.lex_state = 62}, + [229] = {.lex_state = 62}, + [230] = {.lex_state = 62}, + [231] = {.lex_state = 62}, + [232] = {.lex_state = 62}, + [233] = {.lex_state = 62}, + [234] = {.lex_state = 62}, + [235] = {.lex_state = 62}, + [236] = {.lex_state = 62}, + [237] = {.lex_state = 62}, + [238] = {.lex_state = 62}, + [239] = {.lex_state = 62}, + [240] = {.lex_state = 62}, + [241] = {.lex_state = 62}, + [242] = {.lex_state = 62}, + [243] = {.lex_state = 62}, + [244] = {.lex_state = 62}, + [245] = {.lex_state = 62}, + [246] = {.lex_state = 62}, + [247] = {.lex_state = 62}, + [248] = {.lex_state = 62}, + [249] = {.lex_state = 62}, + [250] = {.lex_state = 62}, + [251] = {.lex_state = 62}, + [252] = {.lex_state = 62}, + [253] = {.lex_state = 62}, + [254] = {.lex_state = 62}, + [255] = {.lex_state = 62}, + [256] = {.lex_state = 62}, + [257] = {.lex_state = 62}, + [258] = {.lex_state = 62}, + [259] = {.lex_state = 62}, + [260] = {.lex_state = 62}, + [261] = {.lex_state = 62}, + [262] = {.lex_state = 62}, + [263] = {.lex_state = 62}, + [264] = {.lex_state = 62}, + [265] = {.lex_state = 62}, + [266] = {.lex_state = 62}, + [267] = {.lex_state = 62}, + [268] = {.lex_state = 62}, + [269] = {.lex_state = 62}, + [270] = {.lex_state = 62}, + [271] = {.lex_state = 62}, + [272] = {.lex_state = 62}, + [273] = {.lex_state = 62}, + [274] = {.lex_state = 62}, + [275] = {.lex_state = 62}, + [276] = {.lex_state = 62}, + [277] = {.lex_state = 62}, + [278] = {.lex_state = 62}, + [279] = {.lex_state = 62}, + [280] = {.lex_state = 62}, + [281] = {.lex_state = 62}, + [282] = {.lex_state = 62}, + [283] = {.lex_state = 62}, + [284] = {.lex_state = 62}, + [285] = {.lex_state = 62}, + [286] = {.lex_state = 62}, + [287] = {.lex_state = 62}, + [288] = {.lex_state = 62}, + [289] = {.lex_state = 62}, + [290] = {.lex_state = 62}, + [291] = {.lex_state = 62}, + [292] = {.lex_state = 62}, + [293] = {.lex_state = 62}, + [294] = {.lex_state = 62}, + [295] = {.lex_state = 62}, + [296] = {.lex_state = 62}, + [297] = {.lex_state = 62}, + [298] = {.lex_state = 62}, + [299] = {.lex_state = 62}, + [300] = {.lex_state = 62}, + [301] = {.lex_state = 62}, + [302] = {.lex_state = 62}, + [303] = {.lex_state = 62}, + [304] = {.lex_state = 62}, + [305] = {.lex_state = 62}, + [306] = {.lex_state = 62}, + [307] = {.lex_state = 62}, + [308] = {.lex_state = 62}, + [309] = {.lex_state = 62}, + [310] = {.lex_state = 62}, + [311] = {.lex_state = 62}, + [312] = {.lex_state = 62}, + [313] = {.lex_state = 62}, + [314] = {.lex_state = 62}, + [315] = {.lex_state = 62}, + [316] = {.lex_state = 62}, + [317] = {.lex_state = 62}, + [318] = {.lex_state = 62}, + [319] = {.lex_state = 62}, + [320] = {.lex_state = 62}, + [321] = {.lex_state = 62}, + [322] = {.lex_state = 62}, + [323] = {.lex_state = 62}, + [324] = {.lex_state = 62}, + [325] = {.lex_state = 62}, + [326] = {.lex_state = 62}, + [327] = {.lex_state = 62}, + [328] = {.lex_state = 62}, + [329] = {.lex_state = 62}, + [330] = {.lex_state = 62}, + [331] = {.lex_state = 62}, + [332] = {.lex_state = 62}, + [333] = {.lex_state = 62}, + [334] = {.lex_state = 62}, + [335] = {.lex_state = 62}, + [336] = {.lex_state = 62}, + [337] = {.lex_state = 62}, + [338] = {.lex_state = 62}, + [339] = {.lex_state = 62}, + [340] = {.lex_state = 62}, + [341] = {.lex_state = 62}, + [342] = {.lex_state = 62}, + [343] = {.lex_state = 62}, + [344] = {.lex_state = 62}, + [345] = {.lex_state = 62}, + [346] = {.lex_state = 62}, + [347] = {.lex_state = 62}, + [348] = {.lex_state = 62}, + [349] = {.lex_state = 62}, + [350] = {.lex_state = 62}, + [351] = {.lex_state = 62}, + [352] = {.lex_state = 62}, + [353] = {.lex_state = 62}, + [354] = {.lex_state = 62}, + [355] = {.lex_state = 62}, + [356] = {.lex_state = 62}, + [357] = {.lex_state = 62}, + [358] = {.lex_state = 62}, + [359] = {.lex_state = 62}, + [360] = {.lex_state = 62}, + [361] = {.lex_state = 62}, + [362] = {.lex_state = 62}, + [363] = {.lex_state = 62}, + [364] = {.lex_state = 62}, + [365] = {.lex_state = 62}, + [366] = {.lex_state = 62}, + [367] = {.lex_state = 62}, + [368] = {.lex_state = 62}, + [369] = {.lex_state = 62}, + [370] = {.lex_state = 62}, + [371] = {.lex_state = 62}, + [372] = {.lex_state = 62}, + [373] = {.lex_state = 62}, + [374] = {.lex_state = 62}, + [375] = {.lex_state = 62}, + [376] = {.lex_state = 62}, + [377] = {.lex_state = 62}, + [378] = {.lex_state = 62}, + [379] = {.lex_state = 62}, + [380] = {.lex_state = 62}, + [381] = {.lex_state = 62}, + [382] = {.lex_state = 62}, + [383] = {.lex_state = 62}, + [384] = {.lex_state = 62}, + [385] = {.lex_state = 62}, + [386] = {.lex_state = 62}, + [387] = {.lex_state = 62}, + [388] = {.lex_state = 62}, + [389] = {.lex_state = 62}, + [390] = {.lex_state = 62}, + [391] = {.lex_state = 62}, + [392] = {.lex_state = 62}, + [393] = {.lex_state = 62}, + [394] = {.lex_state = 62}, + [395] = {.lex_state = 62}, + [396] = {.lex_state = 62}, + [397] = {.lex_state = 62}, + [398] = {.lex_state = 62}, + [399] = {.lex_state = 62}, + [400] = {.lex_state = 62}, + [401] = {.lex_state = 62}, + [402] = {.lex_state = 62}, + [403] = {.lex_state = 62}, + [404] = {.lex_state = 62}, + [405] = {.lex_state = 62}, + [406] = {.lex_state = 62}, + [407] = {.lex_state = 62}, + [408] = {.lex_state = 62}, + [409] = {.lex_state = 62}, + [410] = {.lex_state = 62}, + [411] = {.lex_state = 62}, + [412] = {.lex_state = 62}, + [413] = {.lex_state = 62}, + [414] = {.lex_state = 62}, + [415] = {.lex_state = 62}, + [416] = {.lex_state = 62}, + [417] = {.lex_state = 62}, + [418] = {.lex_state = 62}, + [419] = {.lex_state = 62}, + [420] = {.lex_state = 62}, + [421] = {.lex_state = 62}, + [422] = {.lex_state = 62}, + [423] = {.lex_state = 62}, + [424] = {.lex_state = 62}, + [425] = {.lex_state = 62}, + [426] = {.lex_state = 62}, + [427] = {.lex_state = 62}, + [428] = {.lex_state = 62}, + [429] = {.lex_state = 62}, + [430] = {.lex_state = 62}, + [431] = {.lex_state = 62}, + [432] = {.lex_state = 62}, + [433] = {.lex_state = 62}, + [434] = {.lex_state = 62}, + [435] = {.lex_state = 62}, + [436] = {.lex_state = 62}, + [437] = {.lex_state = 62}, + [438] = {.lex_state = 62, .external_lex_state = 2}, + [439] = {.lex_state = 62, .external_lex_state = 2}, + [440] = {.lex_state = 62, .external_lex_state = 2}, + [441] = {.lex_state = 62, .external_lex_state = 2}, + [442] = {.lex_state = 62}, + [443] = {.lex_state = 62, .external_lex_state = 2}, + [444] = {.lex_state = 62, .external_lex_state = 2}, + [445] = {.lex_state = 62}, + [446] = {.lex_state = 62, .external_lex_state = 2}, + [447] = {.lex_state = 62, .external_lex_state = 2}, + [448] = {.lex_state = 62, .external_lex_state = 2}, + [449] = {.lex_state = 62, .external_lex_state = 2}, + [450] = {.lex_state = 62, .external_lex_state = 2}, + [451] = {.lex_state = 62, .external_lex_state = 2}, + [452] = {.lex_state = 62, .external_lex_state = 2}, + [453] = {.lex_state = 62}, + [454] = {.lex_state = 62}, + [455] = {.lex_state = 62, .external_lex_state = 2}, + [456] = {.lex_state = 62}, + [457] = {.lex_state = 62}, + [458] = {.lex_state = 62}, + [459] = {.lex_state = 62}, + [460] = {.lex_state = 62}, + [461] = {.lex_state = 62}, + [462] = {.lex_state = 62}, + [463] = {.lex_state = 62}, + [464] = {.lex_state = 62}, + [465] = {.lex_state = 62}, + [466] = {.lex_state = 62}, + [467] = {.lex_state = 62}, + [468] = {.lex_state = 62}, + [469] = {.lex_state = 62}, + [470] = {.lex_state = 62}, + [471] = {.lex_state = 62}, + [472] = {.lex_state = 62}, + [473] = {.lex_state = 62}, + [474] = {.lex_state = 62}, + [475] = {.lex_state = 62}, + [476] = {.lex_state = 62}, + [477] = {.lex_state = 62}, + [478] = {.lex_state = 62}, + [479] = {.lex_state = 62}, + [480] = {.lex_state = 62}, + [481] = {.lex_state = 62}, + [482] = {.lex_state = 62}, + [483] = {.lex_state = 62}, + [484] = {.lex_state = 62}, + [485] = {.lex_state = 62}, + [486] = {.lex_state = 62}, + [487] = {.lex_state = 62}, + [488] = {.lex_state = 62}, + [489] = {.lex_state = 62}, + [490] = {.lex_state = 62}, + [491] = {.lex_state = 62}, + [492] = {.lex_state = 62}, + [493] = {.lex_state = 62}, + [494] = {.lex_state = 62}, + [495] = {.lex_state = 62}, + [496] = {.lex_state = 62}, + [497] = {.lex_state = 62}, + [498] = {.lex_state = 62}, + [499] = {.lex_state = 62}, + [500] = {.lex_state = 62}, + [501] = {.lex_state = 62}, + [502] = {.lex_state = 62}, + [503] = {.lex_state = 62}, + [504] = {.lex_state = 62}, + [505] = {.lex_state = 62}, + [506] = {.lex_state = 62}, + [507] = {.lex_state = 62}, + [508] = {.lex_state = 62}, + [509] = {.lex_state = 62}, + [510] = {.lex_state = 62}, + [511] = {.lex_state = 62}, + [512] = {.lex_state = 62}, + [513] = {.lex_state = 62}, + [514] = {.lex_state = 62}, + [515] = {.lex_state = 62}, + [516] = {.lex_state = 62}, + [517] = {.lex_state = 62}, + [518] = {.lex_state = 62}, + [519] = {.lex_state = 62}, + [520] = {.lex_state = 62}, + [521] = {.lex_state = 62}, + [522] = {.lex_state = 62}, + [523] = {.lex_state = 62}, + [524] = {.lex_state = 62}, + [525] = {.lex_state = 62}, + [526] = {.lex_state = 62}, + [527] = {.lex_state = 62}, + [528] = {.lex_state = 62}, + [529] = {.lex_state = 62}, + [530] = {.lex_state = 62}, + [531] = {.lex_state = 62}, + [532] = {.lex_state = 62}, + [533] = {.lex_state = 62}, + [534] = {.lex_state = 62}, + [535] = {.lex_state = 62}, + [536] = {.lex_state = 62}, + [537] = {.lex_state = 62}, + [538] = {.lex_state = 62}, + [539] = {.lex_state = 62}, + [540] = {.lex_state = 62}, + [541] = {.lex_state = 62}, + [542] = {.lex_state = 62}, + [543] = {.lex_state = 62}, + [544] = {.lex_state = 62}, + [545] = {.lex_state = 62}, + [546] = {.lex_state = 62}, + [547] = {.lex_state = 62}, + [548] = {.lex_state = 62}, + [549] = {.lex_state = 62}, + [550] = {.lex_state = 62}, + [551] = {.lex_state = 62}, + [552] = {.lex_state = 62}, + [553] = {.lex_state = 62}, + [554] = {.lex_state = 62}, + [555] = {.lex_state = 62}, + [556] = {.lex_state = 62}, + [557] = {.lex_state = 62}, + [558] = {.lex_state = 62}, + [559] = {.lex_state = 62}, + [560] = {.lex_state = 62}, + [561] = {.lex_state = 62}, + [562] = {.lex_state = 62}, + [563] = {.lex_state = 62}, + [564] = {.lex_state = 62}, + [565] = {.lex_state = 62}, + [566] = {.lex_state = 62}, + [567] = {.lex_state = 62}, + [568] = {.lex_state = 63}, + [569] = {.lex_state = 63}, + [570] = {.lex_state = 63}, + [571] = {.lex_state = 63}, + [572] = {.lex_state = 63}, + [573] = {.lex_state = 63}, + [574] = {.lex_state = 63}, + [575] = {.lex_state = 63}, + [576] = {.lex_state = 63}, + [577] = {.lex_state = 63}, + [578] = {.lex_state = 63}, + [579] = {.lex_state = 63}, + [580] = {.lex_state = 63}, + [581] = {.lex_state = 63}, + [582] = {.lex_state = 63}, + [583] = {.lex_state = 63}, + [584] = {.lex_state = 63}, + [585] = {.lex_state = 63}, + [586] = {.lex_state = 63}, + [587] = {.lex_state = 63}, + [588] = {.lex_state = 63}, + [589] = {.lex_state = 63}, + [590] = {.lex_state = 63}, + [591] = {.lex_state = 63}, + [592] = {.lex_state = 63}, + [593] = {.lex_state = 63}, + [594] = {.lex_state = 63}, + [595] = {.lex_state = 63, .external_lex_state = 2}, + [596] = {.lex_state = 63}, + [597] = {.lex_state = 63, .external_lex_state = 2}, + [598] = {.lex_state = 63, .external_lex_state = 2}, + [599] = {.lex_state = 63, .external_lex_state = 2}, + [600] = {.lex_state = 63, .external_lex_state = 2}, + [601] = {.lex_state = 63}, + [602] = {.lex_state = 63, .external_lex_state = 2}, + [603] = {.lex_state = 63, .external_lex_state = 2}, + [604] = {.lex_state = 63, .external_lex_state = 2}, + [605] = {.lex_state = 63, .external_lex_state = 2}, + [606] = {.lex_state = 63, .external_lex_state = 2}, + [607] = {.lex_state = 63}, + [608] = {.lex_state = 63, .external_lex_state = 2}, + [609] = {.lex_state = 63, .external_lex_state = 2}, + [610] = {.lex_state = 63}, + [611] = {.lex_state = 63, .external_lex_state = 2}, + [612] = {.lex_state = 63}, + [613] = {.lex_state = 63}, + [614] = {.lex_state = 63, .external_lex_state = 2}, + [615] = {.lex_state = 63, .external_lex_state = 2}, + [616] = {.lex_state = 63, .external_lex_state = 2}, + [617] = {.lex_state = 63}, + [618] = {.lex_state = 63, .external_lex_state = 2}, + [619] = {.lex_state = 63, .external_lex_state = 2}, + [620] = {.lex_state = 63, .external_lex_state = 2}, + [621] = {.lex_state = 63, .external_lex_state = 2}, + [622] = {.lex_state = 63, .external_lex_state = 2}, + [623] = {.lex_state = 63, .external_lex_state = 2}, + [624] = {.lex_state = 63, .external_lex_state = 2}, + [625] = {.lex_state = 63, .external_lex_state = 2}, + [626] = {.lex_state = 63, .external_lex_state = 2}, + [627] = {.lex_state = 63}, + [628] = {.lex_state = 63}, + [629] = {.lex_state = 63}, + [630] = {.lex_state = 63, .external_lex_state = 2}, + [631] = {.lex_state = 63}, + [632] = {.lex_state = 63}, + [633] = {.lex_state = 63}, + [634] = {.lex_state = 63}, + [635] = {.lex_state = 63}, + [636] = {.lex_state = 8}, + [637] = {.lex_state = 12}, + [638] = {.lex_state = 12}, + [639] = {.lex_state = 9}, + [640] = {.lex_state = 8}, + [641] = {.lex_state = 8}, + [642] = {.lex_state = 9}, + [643] = {.lex_state = 8}, + [644] = {.lex_state = 9}, [645] = {.lex_state = 8}, - [646] = {.lex_state = 12}, - [647] = {.lex_state = 12}, + [646] = {.lex_state = 9}, + [647] = {.lex_state = 9}, [648] = {.lex_state = 9}, - [649] = {.lex_state = 9}, + [649] = {.lex_state = 8}, [650] = {.lex_state = 9}, [651] = {.lex_state = 8}, - [652] = {.lex_state = 8}, - [653] = {.lex_state = 8}, - [654] = {.lex_state = 8}, + [652] = {.lex_state = 16}, + [653] = {.lex_state = 9}, + [654] = {.lex_state = 9}, [655] = {.lex_state = 9}, [656] = {.lex_state = 9}, [657] = {.lex_state = 9}, - [658] = {.lex_state = 8}, + [658] = {.lex_state = 9}, [659] = {.lex_state = 9}, - [660] = {.lex_state = 14}, + [660] = {.lex_state = 8}, [661] = {.lex_state = 9}, - [662] = {.lex_state = 16}, - [663] = {.lex_state = 16}, + [662] = {.lex_state = 9}, + [663] = {.lex_state = 9}, [664] = {.lex_state = 9}, [665] = {.lex_state = 9}, [666] = {.lex_state = 9}, - [667] = {.lex_state = 8}, + [667] = {.lex_state = 9}, [668] = {.lex_state = 9}, [669] = {.lex_state = 9}, [670] = {.lex_state = 9}, - [671] = {.lex_state = 9}, - [672] = {.lex_state = 9}, - [673] = {.lex_state = 9}, - [674] = {.lex_state = 9}, - [675] = {.lex_state = 14}, - [676] = {.lex_state = 9}, - [677] = {.lex_state = 9}, - [678] = {.lex_state = 9}, - [679] = {.lex_state = 9}, - [680] = {.lex_state = 9}, - [681] = {.lex_state = 8}, - [682] = {.lex_state = 9}, - [683] = {.lex_state = 8}, - [684] = {.lex_state = 66}, - [685] = {.lex_state = 16}, + [671] = {.lex_state = 14}, + [672] = {.lex_state = 16}, + [673] = {.lex_state = 14}, + [674] = {.lex_state = 8}, + [675] = {.lex_state = 9}, + [676] = {.lex_state = 8}, + [677] = {.lex_state = 8}, + [678] = {.lex_state = 8}, + [679] = {.lex_state = 8}, + [680] = {.lex_state = 8}, + [681] = {.lex_state = 16}, + [682] = {.lex_state = 64}, + [683] = {.lex_state = 9}, + [684] = {.lex_state = 8}, + [685] = {.lex_state = 8}, [686] = {.lex_state = 8}, [687] = {.lex_state = 8}, - [688] = {.lex_state = 66}, + [688] = {.lex_state = 8}, [689] = {.lex_state = 8}, [690] = {.lex_state = 8}, [691] = {.lex_state = 8}, [692] = {.lex_state = 16}, - [693] = {.lex_state = 8}, - [694] = {.lex_state = 8}, + [693] = {.lex_state = 64}, + [694] = {.lex_state = 64}, [695] = {.lex_state = 8}, [696] = {.lex_state = 8}, [697] = {.lex_state = 8}, [698] = {.lex_state = 8}, - [699] = {.lex_state = 9}, + [699] = {.lex_state = 8}, [700] = {.lex_state = 8}, [701] = {.lex_state = 8}, [702] = {.lex_state = 8}, - [703] = {.lex_state = 9}, + [703] = {.lex_state = 8}, [704] = {.lex_state = 16}, [705] = {.lex_state = 8}, - [706] = {.lex_state = 66}, - [707] = {.lex_state = 66}, - [708] = {.lex_state = 8}, + [706] = {.lex_state = 8}, + [707] = {.lex_state = 8}, + [708] = {.lex_state = 16}, [709] = {.lex_state = 8}, [710] = {.lex_state = 8}, [711] = {.lex_state = 8}, [712] = {.lex_state = 8}, - [713] = {.lex_state = 8}, - [714] = {.lex_state = 8}, + [713] = {.lex_state = 64}, + [714] = {.lex_state = 64}, [715] = {.lex_state = 8}, - [716] = {.lex_state = 16}, + [716] = {.lex_state = 8}, [717] = {.lex_state = 8}, [718] = {.lex_state = 8}, - [719] = {.lex_state = 66}, + [719] = {.lex_state = 8}, [720] = {.lex_state = 8}, [721] = {.lex_state = 8}, [722] = {.lex_state = 8}, @@ -11030,7 +10918,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [726] = {.lex_state = 8}, [727] = {.lex_state = 8}, [728] = {.lex_state = 8}, - [729] = {.lex_state = 8}, + [729] = {.lex_state = 16}, [730] = {.lex_state = 8}, [731] = {.lex_state = 8}, [732] = {.lex_state = 8}, @@ -11038,7 +10926,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [734] = {.lex_state = 8}, [735] = {.lex_state = 8}, [736] = {.lex_state = 8}, - [737] = {.lex_state = 8}, + [737] = {.lex_state = 64}, [738] = {.lex_state = 8}, [739] = {.lex_state = 8}, [740] = {.lex_state = 8}, @@ -11049,7 +10937,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [745] = {.lex_state = 8}, [746] = {.lex_state = 8}, [747] = {.lex_state = 8}, - [748] = {.lex_state = 16}, + [748] = {.lex_state = 8}, [749] = {.lex_state = 8}, [750] = {.lex_state = 8}, [751] = {.lex_state = 8}, @@ -11061,69 +10949,69 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [757] = {.lex_state = 8}, [758] = {.lex_state = 8}, [759] = {.lex_state = 8}, - [760] = {.lex_state = 8}, + [760] = {.lex_state = 9, .external_lex_state = 2}, [761] = {.lex_state = 8}, - [762] = {.lex_state = 8}, + [762] = {.lex_state = 12}, [763] = {.lex_state = 8}, - [764] = {.lex_state = 66}, - [765] = {.lex_state = 8}, - [766] = {.lex_state = 8}, - [767] = {.lex_state = 8, .external_lex_state = 2}, - [768] = {.lex_state = 12}, - [769] = {.lex_state = 12}, - [770] = {.lex_state = 8}, - [771] = {.lex_state = 8}, - [772] = {.lex_state = 9, .external_lex_state = 2}, - [773] = {.lex_state = 8}, + [764] = {.lex_state = 9, .external_lex_state = 2}, + [765] = {.lex_state = 9, .external_lex_state = 2}, + [766] = {.lex_state = 9, .external_lex_state = 2}, + [767] = {.lex_state = 8}, + [768] = {.lex_state = 8}, + [769] = {.lex_state = 8}, + [770] = {.lex_state = 8, .external_lex_state = 2}, + [771] = {.lex_state = 9, .external_lex_state = 2}, + [772] = {.lex_state = 8, .external_lex_state = 2}, + [773] = {.lex_state = 9, .external_lex_state = 2}, [774] = {.lex_state = 9, .external_lex_state = 2}, - [775] = {.lex_state = 9, .external_lex_state = 2}, - [776] = {.lex_state = 9, .external_lex_state = 2}, - [777] = {.lex_state = 6}, + [775] = {.lex_state = 6}, + [776] = {.lex_state = 12}, + [777] = {.lex_state = 8}, [778] = {.lex_state = 8, .external_lex_state = 2}, [779] = {.lex_state = 8, .external_lex_state = 2}, - [780] = {.lex_state = 8}, - [781] = {.lex_state = 8}, + [780] = {.lex_state = 64}, + [781] = {.lex_state = 9, .external_lex_state = 2}, [782] = {.lex_state = 9, .external_lex_state = 2}, - [783] = {.lex_state = 9, .external_lex_state = 2}, + [783] = {.lex_state = 64}, [784] = {.lex_state = 8}, [785] = {.lex_state = 9, .external_lex_state = 2}, [786] = {.lex_state = 8, .external_lex_state = 2}, - [787] = {.lex_state = 8, .external_lex_state = 2}, + [787] = {.lex_state = 9, .external_lex_state = 2}, [788] = {.lex_state = 9, .external_lex_state = 2}, - [789] = {.lex_state = 9, .external_lex_state = 2}, + [789] = {.lex_state = 6}, [790] = {.lex_state = 9, .external_lex_state = 2}, [791] = {.lex_state = 9, .external_lex_state = 2}, [792] = {.lex_state = 9, .external_lex_state = 2}, [793] = {.lex_state = 9, .external_lex_state = 2}, [794] = {.lex_state = 9, .external_lex_state = 2}, [795] = {.lex_state = 9, .external_lex_state = 2}, - [796] = {.lex_state = 8}, - [797] = {.lex_state = 6}, - [798] = {.lex_state = 9, .external_lex_state = 2}, + [796] = {.lex_state = 9, .external_lex_state = 2}, + [797] = {.lex_state = 9, .external_lex_state = 2}, + [798] = {.lex_state = 64}, [799] = {.lex_state = 9, .external_lex_state = 2}, [800] = {.lex_state = 9, .external_lex_state = 2}, - [801] = {.lex_state = 8, .external_lex_state = 2}, - [802] = {.lex_state = 9, .external_lex_state = 2}, - [803] = {.lex_state = 9, .external_lex_state = 2}, + [801] = {.lex_state = 9, .external_lex_state = 2}, + [802] = {.lex_state = 8, .external_lex_state = 2}, + [803] = {.lex_state = 64}, [804] = {.lex_state = 9, .external_lex_state = 2}, - [805] = {.lex_state = 9, .external_lex_state = 2}, - [806] = {.lex_state = 9, .external_lex_state = 2}, - [807] = {.lex_state = 9, .external_lex_state = 2}, - [808] = {.lex_state = 66}, - [809] = {.lex_state = 66}, - [810] = {.lex_state = 66}, - [811] = {.lex_state = 8, .external_lex_state = 2}, - [812] = {.lex_state = 66}, - [813] = {.lex_state = 66}, - [814] = {.lex_state = 8, .external_lex_state = 2}, + [805] = {.lex_state = 8, .external_lex_state = 2}, + [806] = {.lex_state = 8, .external_lex_state = 2}, + [807] = {.lex_state = 8, .external_lex_state = 2}, + [808] = {.lex_state = 8, .external_lex_state = 2}, + [809] = {.lex_state = 64}, + [810] = {.lex_state = 8, .external_lex_state = 2}, + [811] = {.lex_state = 64}, + [812] = {.lex_state = 64}, + [813] = {.lex_state = 12}, + [814] = {.lex_state = 64}, [815] = {.lex_state = 8, .external_lex_state = 2}, [816] = {.lex_state = 8, .external_lex_state = 2}, - [817] = {.lex_state = 12}, - [818] = {.lex_state = 8, .external_lex_state = 2}, - [819] = {.lex_state = 66}, + [817] = {.lex_state = 8, .external_lex_state = 2}, + [818] = {.lex_state = 64}, + [819] = {.lex_state = 64}, [820] = {.lex_state = 8, .external_lex_state = 2}, [821] = {.lex_state = 9, .external_lex_state = 2}, - [822] = {.lex_state = 9, .external_lex_state = 2}, + [822] = {.lex_state = 64}, [823] = {.lex_state = 8, .external_lex_state = 2}, [824] = {.lex_state = 8, .external_lex_state = 2}, [825] = {.lex_state = 8, .external_lex_state = 2}, @@ -11131,36 +11019,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [827] = {.lex_state = 8, .external_lex_state = 2}, [828] = {.lex_state = 8, .external_lex_state = 2}, [829] = {.lex_state = 8, .external_lex_state = 2}, - [830] = {.lex_state = 8, .external_lex_state = 2}, - [831] = {.lex_state = 66}, + [830] = {.lex_state = 64}, + [831] = {.lex_state = 64}, [832] = {.lex_state = 8, .external_lex_state = 2}, [833] = {.lex_state = 8, .external_lex_state = 2}, - [834] = {.lex_state = 66}, - [835] = {.lex_state = 66}, - [836] = {.lex_state = 8, .external_lex_state = 2}, + [834] = {.lex_state = 8, .external_lex_state = 2}, + [835] = {.lex_state = 8, .external_lex_state = 2}, + [836] = {.lex_state = 64}, [837] = {.lex_state = 8, .external_lex_state = 2}, - [838] = {.lex_state = 66}, + [838] = {.lex_state = 8, .external_lex_state = 2}, [839] = {.lex_state = 8, .external_lex_state = 2}, [840] = {.lex_state = 8, .external_lex_state = 2}, [841] = {.lex_state = 8, .external_lex_state = 2}, [842] = {.lex_state = 8, .external_lex_state = 2}, [843] = {.lex_state = 8, .external_lex_state = 2}, [844] = {.lex_state = 8, .external_lex_state = 2}, - [845] = {.lex_state = 66}, + [845] = {.lex_state = 8, .external_lex_state = 2}, [846] = {.lex_state = 8, .external_lex_state = 2}, [847] = {.lex_state = 8, .external_lex_state = 2}, - [848] = {.lex_state = 12}, - [849] = {.lex_state = 66}, - [850] = {.lex_state = 8, .external_lex_state = 2}, + [848] = {.lex_state = 9, .external_lex_state = 2}, + [849] = {.lex_state = 12}, + [850] = {.lex_state = 64}, [851] = {.lex_state = 8, .external_lex_state = 2}, - [852] = {.lex_state = 8, .external_lex_state = 2}, - [853] = {.lex_state = 66}, - [854] = {.lex_state = 66}, + [852] = {.lex_state = 64}, + [853] = {.lex_state = 64}, + [854] = {.lex_state = 8, .external_lex_state = 2}, [855] = {.lex_state = 8, .external_lex_state = 2}, - [856] = {.lex_state = 66}, + [856] = {.lex_state = 8, .external_lex_state = 2}, [857] = {.lex_state = 8, .external_lex_state = 2}, - [858] = {.lex_state = 8, .external_lex_state = 2}, - [859] = {.lex_state = 8, .external_lex_state = 2}, + [858] = {.lex_state = 64}, + [859] = {.lex_state = 64}, [860] = {.lex_state = 8, .external_lex_state = 2}, [861] = {.lex_state = 8, .external_lex_state = 2}, [862] = {.lex_state = 8, .external_lex_state = 2}, @@ -11170,18 +11058,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [866] = {.lex_state = 8, .external_lex_state = 2}, [867] = {.lex_state = 8, .external_lex_state = 2}, [868] = {.lex_state = 8, .external_lex_state = 2}, - [869] = {.lex_state = 8}, + [869] = {.lex_state = 8, .external_lex_state = 2}, [870] = {.lex_state = 8, .external_lex_state = 2}, [871] = {.lex_state = 8, .external_lex_state = 2}, [872] = {.lex_state = 8, .external_lex_state = 2}, - [873] = {.lex_state = 8, .external_lex_state = 2}, + [873] = {.lex_state = 8}, [874] = {.lex_state = 8, .external_lex_state = 2}, [875] = {.lex_state = 8, .external_lex_state = 2}, [876] = {.lex_state = 8, .external_lex_state = 2}, [877] = {.lex_state = 8, .external_lex_state = 2}, [878] = {.lex_state = 8, .external_lex_state = 2}, [879] = {.lex_state = 8, .external_lex_state = 2}, - [880] = {.lex_state = 8, .external_lex_state = 2}, + [880] = {.lex_state = 8}, [881] = {.lex_state = 8, .external_lex_state = 2}, [882] = {.lex_state = 8, .external_lex_state = 2}, [883] = {.lex_state = 8, .external_lex_state = 2}, @@ -11202,14 +11090,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [898] = {.lex_state = 8, .external_lex_state = 2}, [899] = {.lex_state = 8, .external_lex_state = 2}, [900] = {.lex_state = 8, .external_lex_state = 2}, - [901] = {.lex_state = 8}, + [901] = {.lex_state = 8, .external_lex_state = 2}, [902] = {.lex_state = 8, .external_lex_state = 2}, [903] = {.lex_state = 8, .external_lex_state = 2}, [904] = {.lex_state = 8, .external_lex_state = 2}, [905] = {.lex_state = 8, .external_lex_state = 2}, [906] = {.lex_state = 8, .external_lex_state = 2}, [907] = {.lex_state = 8, .external_lex_state = 2}, - [908] = {.lex_state = 8, .external_lex_state = 2}, + [908] = {.lex_state = 12}, [909] = {.lex_state = 12}, [910] = {.lex_state = 12}, [911] = {.lex_state = 12}, @@ -11275,11 +11163,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [971] = {.lex_state = 12}, [972] = {.lex_state = 12}, [973] = {.lex_state = 12}, - [974] = {.lex_state = 12, .external_lex_state = 2}, - [975] = {.lex_state = 16}, - [976] = {.lex_state = 12, .external_lex_state = 2}, - [977] = {.lex_state = 16}, - [978] = {.lex_state = 17}, + [974] = {.lex_state = 16}, + [975] = {.lex_state = 17}, + [976] = {.lex_state = 16}, + [977] = {.lex_state = 12, .external_lex_state = 2}, + [978] = {.lex_state = 12, .external_lex_state = 2}, [979] = {.lex_state = 12}, [980] = {.lex_state = 12}, [981] = {.lex_state = 12}, @@ -11312,12 +11200,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1008] = {.lex_state = 12}, [1009] = {.lex_state = 12}, [1010] = {.lex_state = 12}, - [1011] = {.lex_state = 16}, + [1011] = {.lex_state = 12}, [1012] = {.lex_state = 12}, - [1013] = {.lex_state = 16}, + [1013] = {.lex_state = 12}, [1014] = {.lex_state = 12}, [1015] = {.lex_state = 12}, - [1016] = {.lex_state = 12}, + [1016] = {.lex_state = 16}, [1017] = {.lex_state = 12}, [1018] = {.lex_state = 12}, [1019] = {.lex_state = 12}, @@ -11327,10 +11215,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1023] = {.lex_state = 12}, [1024] = {.lex_state = 12}, [1025] = {.lex_state = 12}, - [1026] = {.lex_state = 16}, + [1026] = {.lex_state = 12}, [1027] = {.lex_state = 12}, [1028] = {.lex_state = 12}, - [1029] = {.lex_state = 12}, + [1029] = {.lex_state = 16}, [1030] = {.lex_state = 12}, [1031] = {.lex_state = 12}, [1032] = {.lex_state = 12}, @@ -11344,13 +11232,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1040] = {.lex_state = 12}, [1041] = {.lex_state = 12}, [1042] = {.lex_state = 12}, - [1043] = {.lex_state = 16}, + [1043] = {.lex_state = 12}, [1044] = {.lex_state = 12}, [1045] = {.lex_state = 12}, - [1046] = {.lex_state = 12}, - [1047] = {.lex_state = 12, .external_lex_state = 2}, - [1048] = {.lex_state = 12, .external_lex_state = 2}, - [1049] = {.lex_state = 12, .external_lex_state = 2}, + [1046] = {.lex_state = 16}, + [1047] = {.lex_state = 12}, + [1048] = {.lex_state = 16}, + [1049] = {.lex_state = 12}, [1050] = {.lex_state = 12, .external_lex_state = 2}, [1051] = {.lex_state = 12, .external_lex_state = 2}, [1052] = {.lex_state = 12, .external_lex_state = 2}, @@ -11406,7 +11294,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1102] = {.lex_state = 12, .external_lex_state = 2}, [1103] = {.lex_state = 12, .external_lex_state = 2}, [1104] = {.lex_state = 12, .external_lex_state = 2}, - [1105] = {.lex_state = 12}, + [1105] = {.lex_state = 12, .external_lex_state = 2}, [1106] = {.lex_state = 12, .external_lex_state = 2}, [1107] = {.lex_state = 12, .external_lex_state = 2}, [1108] = {.lex_state = 12, .external_lex_state = 2}, @@ -11448,9 +11336,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1144] = {.lex_state = 12, .external_lex_state = 2}, [1145] = {.lex_state = 12, .external_lex_state = 2}, [1146] = {.lex_state = 12, .external_lex_state = 2}, - [1147] = {.lex_state = 12}, - [1148] = {.lex_state = 12}, - [1149] = {.lex_state = 12}, + [1147] = {.lex_state = 12, .external_lex_state = 2}, + [1148] = {.lex_state = 12, .external_lex_state = 2}, + [1149] = {.lex_state = 12, .external_lex_state = 2}, [1150] = {.lex_state = 12}, [1151] = {.lex_state = 12}, [1152] = {.lex_state = 12}, @@ -11486,54 +11374,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1182] = {.lex_state = 12}, [1183] = {.lex_state = 12}, [1184] = {.lex_state = 12}, - [1185] = {.lex_state = 12, .external_lex_state = 2}, - [1186] = {.lex_state = 12, .external_lex_state = 2}, - [1187] = {.lex_state = 12, .external_lex_state = 2}, - [1188] = {.lex_state = 12, .external_lex_state = 2}, + [1185] = {.lex_state = 12}, + [1186] = {.lex_state = 12}, + [1187] = {.lex_state = 12}, + [1188] = {.lex_state = 12}, [1189] = {.lex_state = 12}, - [1190] = {.lex_state = 12, .external_lex_state = 2}, - [1191] = {.lex_state = 12}, + [1190] = {.lex_state = 12}, + [1191] = {.lex_state = 12, .external_lex_state = 2}, [1192] = {.lex_state = 12}, - [1193] = {.lex_state = 12}, - [1194] = {.lex_state = 12}, + [1193] = {.lex_state = 12, .external_lex_state = 2}, + [1194] = {.lex_state = 12, .external_lex_state = 2}, [1195] = {.lex_state = 12}, - [1196] = {.lex_state = 12}, - [1197] = {.lex_state = 12}, - [1198] = {.lex_state = 16}, - [1199] = {.lex_state = 12, .external_lex_state = 2}, + [1196] = {.lex_state = 12, .external_lex_state = 2}, + [1197] = {.lex_state = 12, .external_lex_state = 2}, + [1198] = {.lex_state = 12}, + [1199] = {.lex_state = 12}, [1200] = {.lex_state = 16}, [1201] = {.lex_state = 12}, - [1202] = {.lex_state = 12, .external_lex_state = 2}, + [1202] = {.lex_state = 16}, [1203] = {.lex_state = 12}, - [1204] = {.lex_state = 12, .external_lex_state = 2}, + [1204] = {.lex_state = 12}, [1205] = {.lex_state = 12}, [1206] = {.lex_state = 12}, - [1207] = {.lex_state = 12}, - [1208] = {.lex_state = 12}, - [1209] = {.lex_state = 16}, - [1210] = {.lex_state = 12, .external_lex_state = 2}, - [1211] = {.lex_state = 12, .external_lex_state = 2}, + [1207] = {.lex_state = 12, .external_lex_state = 2}, + [1208] = {.lex_state = 16}, + [1209] = {.lex_state = 12, .external_lex_state = 2}, + [1210] = {.lex_state = 12}, + [1211] = {.lex_state = 12}, [1212] = {.lex_state = 12, .external_lex_state = 2}, - [1213] = {.lex_state = 12}, - [1214] = {.lex_state = 12}, - [1215] = {.lex_state = 12}, - [1216] = {.lex_state = 12}, + [1213] = {.lex_state = 12, .external_lex_state = 2}, + [1214] = {.lex_state = 12, .external_lex_state = 2}, + [1215] = {.lex_state = 12, .external_lex_state = 2}, + [1216] = {.lex_state = 12, .external_lex_state = 2}, [1217] = {.lex_state = 12}, [1218] = {.lex_state = 12}, [1219] = {.lex_state = 12}, - [1220] = {.lex_state = 12, .external_lex_state = 2}, + [1220] = {.lex_state = 12}, [1221] = {.lex_state = 12}, - [1222] = {.lex_state = 16}, + [1222] = {.lex_state = 12}, [1223] = {.lex_state = 12}, [1224] = {.lex_state = 12}, - [1225] = {.lex_state = 12}, - [1226] = {.lex_state = 16}, + [1225] = {.lex_state = 12, .external_lex_state = 2}, + [1226] = {.lex_state = 12}, [1227] = {.lex_state = 12}, [1228] = {.lex_state = 16}, [1229] = {.lex_state = 16}, - [1230] = {.lex_state = 16}, - [1231] = {.lex_state = 12}, - [1232] = {.lex_state = 12}, + [1230] = {.lex_state = 12}, + [1231] = {.lex_state = 16}, + [1232] = {.lex_state = 16}, [1233] = {.lex_state = 12}, [1234] = {.lex_state = 12}, [1235] = {.lex_state = 12}, @@ -11541,13 +11429,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1237] = {.lex_state = 12}, [1238] = {.lex_state = 12}, [1239] = {.lex_state = 12}, - [1240] = {.lex_state = 12, .external_lex_state = 2}, + [1240] = {.lex_state = 12}, [1241] = {.lex_state = 12}, - [1242] = {.lex_state = 16}, + [1242] = {.lex_state = 12}, [1243] = {.lex_state = 12}, - [1244] = {.lex_state = 12}, + [1244] = {.lex_state = 16}, [1245] = {.lex_state = 12}, - [1246] = {.lex_state = 12}, + [1246] = {.lex_state = 16}, [1247] = {.lex_state = 12}, [1248] = {.lex_state = 12}, [1249] = {.lex_state = 12}, @@ -11618,21 +11506,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1314] = {.lex_state = 12}, [1315] = {.lex_state = 12}, [1316] = {.lex_state = 12}, - [1317] = {.lex_state = 16}, - [1318] = {.lex_state = 16}, - [1319] = {.lex_state = 12}, + [1317] = {.lex_state = 12}, + [1318] = {.lex_state = 12}, + [1319] = {.lex_state = 16}, [1320] = {.lex_state = 16}, - [1321] = {.lex_state = 12}, - [1322] = {.lex_state = 16}, - [1323] = {.lex_state = 16}, + [1321] = {.lex_state = 16}, + [1322] = {.lex_state = 12}, + [1323] = {.lex_state = 12}, [1324] = {.lex_state = 12}, [1325] = {.lex_state = 12}, [1326] = {.lex_state = 12}, [1327] = {.lex_state = 12}, [1328] = {.lex_state = 12}, [1329] = {.lex_state = 12}, - [1330] = {.lex_state = 12}, - [1331] = {.lex_state = 12}, + [1330] = {.lex_state = 16}, + [1331] = {.lex_state = 16}, [1332] = {.lex_state = 12}, [1333] = {.lex_state = 12}, [1334] = {.lex_state = 12}, @@ -11650,1338 +11538,1303 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1346] = {.lex_state = 12}, [1347] = {.lex_state = 12}, [1348] = {.lex_state = 12}, - [1349] = {.lex_state = 65}, - [1350] = {.lex_state = 65}, - [1351] = {.lex_state = 65}, - [1352] = {.lex_state = 65}, - [1353] = {.lex_state = 65}, - [1354] = {.lex_state = 65}, - [1355] = {.lex_state = 65}, - [1356] = {.lex_state = 15}, - [1357] = {.lex_state = 66}, - [1358] = {.lex_state = 3, .external_lex_state = 3}, - [1359] = {.lex_state = 3, .external_lex_state = 3}, - [1360] = {.lex_state = 3, .external_lex_state = 4}, - [1361] = {.lex_state = 16}, - [1362] = {.lex_state = 16}, - [1363] = {.lex_state = 16}, - [1364] = {.lex_state = 16}, - [1365] = {.lex_state = 16}, - [1366] = {.lex_state = 16}, - [1367] = {.lex_state = 16}, - [1368] = {.lex_state = 16}, - [1369] = {.lex_state = 3, .external_lex_state = 3}, + [1349] = {.lex_state = 63}, + [1350] = {.lex_state = 63}, + [1351] = {.lex_state = 63}, + [1352] = {.lex_state = 63}, + [1353] = {.lex_state = 63}, + [1354] = {.lex_state = 63}, + [1355] = {.lex_state = 63}, + [1356] = {.lex_state = 63}, + [1357] = {.lex_state = 63}, + [1358] = {.lex_state = 63}, + [1359] = {.lex_state = 63}, + [1360] = {.lex_state = 63}, + [1361] = {.lex_state = 63}, + [1362] = {.lex_state = 15}, + [1363] = {.lex_state = 64}, + [1364] = {.lex_state = 63}, + [1365] = {.lex_state = 63}, + [1366] = {.lex_state = 63}, + [1367] = {.lex_state = 3, .external_lex_state = 3}, + [1368] = {.lex_state = 3, .external_lex_state = 3}, + [1369] = {.lex_state = 16}, [1370] = {.lex_state = 16}, [1371] = {.lex_state = 16}, - [1372] = {.lex_state = 3, .external_lex_state = 3}, + [1372] = {.lex_state = 16}, [1373] = {.lex_state = 16}, [1374] = {.lex_state = 16}, - [1375] = {.lex_state = 3, .external_lex_state = 3}, - [1376] = {.lex_state = 16}, + [1375] = {.lex_state = 16}, + [1376] = {.lex_state = 3, .external_lex_state = 3}, [1377] = {.lex_state = 16}, [1378] = {.lex_state = 16}, [1379] = {.lex_state = 16}, - [1380] = {.lex_state = 16}, - [1381] = {.lex_state = 9, .external_lex_state = 5}, - [1382] = {.lex_state = 65}, - [1383] = {.lex_state = 65}, - [1384] = {.lex_state = 9, .external_lex_state = 5}, - [1385] = {.lex_state = 9, .external_lex_state = 6}, - [1386] = {.lex_state = 65}, - [1387] = {.lex_state = 65}, + [1380] = {.lex_state = 3, .external_lex_state = 3}, + [1381] = {.lex_state = 3, .external_lex_state = 3}, + [1382] = {.lex_state = 16}, + [1383] = {.lex_state = 16}, + [1384] = {.lex_state = 16}, + [1385] = {.lex_state = 16}, + [1386] = {.lex_state = 16}, + [1387] = {.lex_state = 3, .external_lex_state = 4}, [1388] = {.lex_state = 16}, - [1389] = {.lex_state = 9, .external_lex_state = 5}, - [1390] = {.lex_state = 9, .external_lex_state = 6}, + [1389] = {.lex_state = 16}, + [1390] = {.lex_state = 16}, [1391] = {.lex_state = 16}, - [1392] = {.lex_state = 16}, - [1393] = {.lex_state = 9, .external_lex_state = 6}, - [1394] = {.lex_state = 16}, - [1395] = {.lex_state = 9, .external_lex_state = 5}, + [1392] = {.lex_state = 63}, + [1393] = {.lex_state = 9, .external_lex_state = 5}, + [1394] = {.lex_state = 9, .external_lex_state = 6}, + [1395] = {.lex_state = 16}, [1396] = {.lex_state = 9, .external_lex_state = 6}, - [1397] = {.lex_state = 9, .external_lex_state = 6}, + [1397] = {.lex_state = 9, .external_lex_state = 5}, [1398] = {.lex_state = 16}, [1399] = {.lex_state = 16}, [1400] = {.lex_state = 16}, [1401] = {.lex_state = 16}, - [1402] = {.lex_state = 9, .external_lex_state = 5}, + [1402] = {.lex_state = 16}, [1403] = {.lex_state = 16}, [1404] = {.lex_state = 16}, [1405] = {.lex_state = 16}, [1406] = {.lex_state = 16}, - [1407] = {.lex_state = 17}, + [1407] = {.lex_state = 16}, [1408] = {.lex_state = 16}, - [1409] = {.lex_state = 16}, + [1409] = {.lex_state = 9, .external_lex_state = 6}, [1410] = {.lex_state = 16}, - [1411] = {.lex_state = 16}, + [1411] = {.lex_state = 9, .external_lex_state = 5}, [1412] = {.lex_state = 16}, - [1413] = {.lex_state = 16}, + [1413] = {.lex_state = 17}, [1414] = {.lex_state = 16}, - [1415] = {.lex_state = 16}, - [1416] = {.lex_state = 9, .external_lex_state = 4}, - [1417] = {.lex_state = 65}, - [1418] = {.lex_state = 65}, - [1419] = {.lex_state = 65}, - [1420] = {.lex_state = 65}, - [1421] = {.lex_state = 65}, - [1422] = {.lex_state = 65}, - [1423] = {.lex_state = 65}, - [1424] = {.lex_state = 17}, - [1425] = {.lex_state = 65}, - [1426] = {.lex_state = 17}, - [1427] = {.lex_state = 17}, - [1428] = {.lex_state = 17}, - [1429] = {.lex_state = 66}, - [1430] = {.lex_state = 65}, - [1431] = {.lex_state = 66}, - [1432] = {.lex_state = 65}, - [1433] = {.lex_state = 65}, - [1434] = {.lex_state = 65}, - [1435] = {.lex_state = 3, .external_lex_state = 7}, - [1436] = {.lex_state = 65}, - [1437] = {.lex_state = 65}, - [1438] = {.lex_state = 65}, - [1439] = {.lex_state = 65}, - [1440] = {.lex_state = 65}, - [1441] = {.lex_state = 65}, - [1442] = {.lex_state = 65}, + [1415] = {.lex_state = 63}, + [1416] = {.lex_state = 9, .external_lex_state = 6}, + [1417] = {.lex_state = 16}, + [1418] = {.lex_state = 16}, + [1419] = {.lex_state = 16}, + [1420] = {.lex_state = 9, .external_lex_state = 5}, + [1421] = {.lex_state = 9, .external_lex_state = 6}, + [1422] = {.lex_state = 9, .external_lex_state = 5}, + [1423] = {.lex_state = 63}, + [1424] = {.lex_state = 9, .external_lex_state = 4}, + [1425] = {.lex_state = 63}, + [1426] = {.lex_state = 63}, + [1427] = {.lex_state = 63}, + [1428] = {.lex_state = 64}, + [1429] = {.lex_state = 17}, + [1430] = {.lex_state = 63}, + [1431] = {.lex_state = 63}, + [1432] = {.lex_state = 63}, + [1433] = {.lex_state = 17}, + [1434] = {.lex_state = 17}, + [1435] = {.lex_state = 17}, + [1436] = {.lex_state = 63}, + [1437] = {.lex_state = 63}, + [1438] = {.lex_state = 63}, + [1439] = {.lex_state = 63}, + [1440] = {.lex_state = 64}, + [1441] = {.lex_state = 17}, + [1442] = {.lex_state = 17}, [1443] = {.lex_state = 3, .external_lex_state = 7}, [1444] = {.lex_state = 17}, - [1445] = {.lex_state = 65}, - [1446] = {.lex_state = 17}, - [1447] = {.lex_state = 65}, - [1448] = {.lex_state = 17}, - [1449] = {.lex_state = 17}, - [1450] = {.lex_state = 65}, - [1451] = {.lex_state = 65}, - [1452] = {.lex_state = 65}, - [1453] = {.lex_state = 65}, - [1454] = {.lex_state = 17}, - [1455] = {.lex_state = 65}, - [1456] = {.lex_state = 65}, - [1457] = {.lex_state = 65}, - [1458] = {.lex_state = 65}, - [1459] = {.lex_state = 65}, - [1460] = {.lex_state = 65}, - [1461] = {.lex_state = 65}, - [1462] = {.lex_state = 65}, - [1463] = {.lex_state = 65}, - [1464] = {.lex_state = 65}, - [1465] = {.lex_state = 65}, - [1466] = {.lex_state = 65}, - [1467] = {.lex_state = 65}, - [1468] = {.lex_state = 9, .external_lex_state = 8}, - [1469] = {.lex_state = 65}, - [1470] = {.lex_state = 65}, - [1471] = {.lex_state = 9, .external_lex_state = 9}, - [1472] = {.lex_state = 65}, - [1473] = {.lex_state = 65}, - [1474] = {.lex_state = 65}, - [1475] = {.lex_state = 65}, - [1476] = {.lex_state = 65}, - [1477] = {.lex_state = 17}, - [1478] = {.lex_state = 65}, - [1479] = {.lex_state = 65}, - [1480] = {.lex_state = 65}, - [1481] = {.lex_state = 65}, - [1482] = {.lex_state = 65}, - [1483] = {.lex_state = 65}, - [1484] = {.lex_state = 65}, - [1485] = {.lex_state = 65}, - [1486] = {.lex_state = 65}, - [1487] = {.lex_state = 65}, - [1488] = {.lex_state = 65}, - [1489] = {.lex_state = 65}, - [1490] = {.lex_state = 65}, - [1491] = {.lex_state = 65}, - [1492] = {.lex_state = 65}, - [1493] = {.lex_state = 65}, - [1494] = {.lex_state = 65}, - [1495] = {.lex_state = 65}, - [1496] = {.lex_state = 65}, - [1497] = {.lex_state = 65}, - [1498] = {.lex_state = 9, .external_lex_state = 9}, - [1499] = {.lex_state = 65}, - [1500] = {.lex_state = 65}, - [1501] = {.lex_state = 65}, - [1502] = {.lex_state = 65}, - [1503] = {.lex_state = 65}, - [1504] = {.lex_state = 65}, - [1505] = {.lex_state = 65}, - [1506] = {.lex_state = 9, .external_lex_state = 8}, - [1507] = {.lex_state = 65}, - [1508] = {.lex_state = 65}, - [1509] = {.lex_state = 65}, - [1510] = {.lex_state = 65}, - [1511] = {.lex_state = 65}, - [1512] = {.lex_state = 65}, - [1513] = {.lex_state = 65}, - [1514] = {.lex_state = 65}, - [1515] = {.lex_state = 65}, - [1516] = {.lex_state = 65}, - [1517] = {.lex_state = 65}, - [1518] = {.lex_state = 65}, - [1519] = {.lex_state = 65}, - [1520] = {.lex_state = 65}, - [1521] = {.lex_state = 65}, - [1522] = {.lex_state = 65}, - [1523] = {.lex_state = 65}, - [1524] = {.lex_state = 65}, - [1525] = {.lex_state = 65}, - [1526] = {.lex_state = 65}, - [1527] = {.lex_state = 65, .external_lex_state = 2}, - [1528] = {.lex_state = 65, .external_lex_state = 2}, - [1529] = {.lex_state = 65}, - [1530] = {.lex_state = 65}, - [1531] = {.lex_state = 65}, - [1532] = {.lex_state = 65}, - [1533] = {.lex_state = 65}, - [1534] = {.lex_state = 65}, - [1535] = {.lex_state = 17}, - [1536] = {.lex_state = 3, .external_lex_state = 3}, - [1537] = {.lex_state = 3, .external_lex_state = 3}, - [1538] = {.lex_state = 65}, - [1539] = {.lex_state = 65, .external_lex_state = 2}, - [1540] = {.lex_state = 65}, - [1541] = {.lex_state = 65}, - [1542] = {.lex_state = 65}, - [1543] = {.lex_state = 65}, - [1544] = {.lex_state = 65}, - [1545] = {.lex_state = 65}, - [1546] = {.lex_state = 3, .external_lex_state = 3}, - [1547] = {.lex_state = 65}, - [1548] = {.lex_state = 3, .external_lex_state = 3}, - [1549] = {.lex_state = 65}, - [1550] = {.lex_state = 65}, + [1445] = {.lex_state = 63}, + [1446] = {.lex_state = 63}, + [1447] = {.lex_state = 63}, + [1448] = {.lex_state = 63}, + [1449] = {.lex_state = 63}, + [1450] = {.lex_state = 63}, + [1451] = {.lex_state = 3, .external_lex_state = 7}, + [1452] = {.lex_state = 63}, + [1453] = {.lex_state = 17}, + [1454] = {.lex_state = 63}, + [1455] = {.lex_state = 63}, + [1456] = {.lex_state = 63}, + [1457] = {.lex_state = 63}, + [1458] = {.lex_state = 63}, + [1459] = {.lex_state = 17}, + [1460] = {.lex_state = 63}, + [1461] = {.lex_state = 63}, + [1462] = {.lex_state = 9, .external_lex_state = 8}, + [1463] = {.lex_state = 63}, + [1464] = {.lex_state = 63}, + [1465] = {.lex_state = 63}, + [1466] = {.lex_state = 63}, + [1467] = {.lex_state = 63}, + [1468] = {.lex_state = 63}, + [1469] = {.lex_state = 63}, + [1470] = {.lex_state = 63}, + [1471] = {.lex_state = 63}, + [1472] = {.lex_state = 63}, + [1473] = {.lex_state = 63}, + [1474] = {.lex_state = 63}, + [1475] = {.lex_state = 63}, + [1476] = {.lex_state = 63}, + [1477] = {.lex_state = 63}, + [1478] = {.lex_state = 63}, + [1479] = {.lex_state = 17}, + [1480] = {.lex_state = 63}, + [1481] = {.lex_state = 63}, + [1482] = {.lex_state = 63}, + [1483] = {.lex_state = 63}, + [1484] = {.lex_state = 63}, + [1485] = {.lex_state = 63}, + [1486] = {.lex_state = 63}, + [1487] = {.lex_state = 63}, + [1488] = {.lex_state = 63}, + [1489] = {.lex_state = 9, .external_lex_state = 8}, + [1490] = {.lex_state = 63}, + [1491] = {.lex_state = 63}, + [1492] = {.lex_state = 63}, + [1493] = {.lex_state = 63}, + [1494] = {.lex_state = 63}, + [1495] = {.lex_state = 63}, + [1496] = {.lex_state = 63}, + [1497] = {.lex_state = 63}, + [1498] = {.lex_state = 63}, + [1499] = {.lex_state = 63}, + [1500] = {.lex_state = 63}, + [1501] = {.lex_state = 9, .external_lex_state = 9}, + [1502] = {.lex_state = 63}, + [1503] = {.lex_state = 63}, + [1504] = {.lex_state = 63}, + [1505] = {.lex_state = 63}, + [1506] = {.lex_state = 63}, + [1507] = {.lex_state = 63}, + [1508] = {.lex_state = 63}, + [1509] = {.lex_state = 63}, + [1510] = {.lex_state = 63}, + [1511] = {.lex_state = 63}, + [1512] = {.lex_state = 63}, + [1513] = {.lex_state = 63}, + [1514] = {.lex_state = 63}, + [1515] = {.lex_state = 63}, + [1516] = {.lex_state = 63}, + [1517] = {.lex_state = 63}, + [1518] = {.lex_state = 9, .external_lex_state = 9}, + [1519] = {.lex_state = 63}, + [1520] = {.lex_state = 63}, + [1521] = {.lex_state = 63}, + [1522] = {.lex_state = 63}, + [1523] = {.lex_state = 63}, + [1524] = {.lex_state = 63}, + [1525] = {.lex_state = 63}, + [1526] = {.lex_state = 63}, + [1527] = {.lex_state = 63}, + [1528] = {.lex_state = 63}, + [1529] = {.lex_state = 63}, + [1530] = {.lex_state = 63}, + [1531] = {.lex_state = 63}, + [1532] = {.lex_state = 63}, + [1533] = {.lex_state = 63}, + [1534] = {.lex_state = 63, .external_lex_state = 2}, + [1535] = {.lex_state = 63}, + [1536] = {.lex_state = 63, .external_lex_state = 2}, + [1537] = {.lex_state = 63}, + [1538] = {.lex_state = 63}, + [1539] = {.lex_state = 3, .external_lex_state = 3}, + [1540] = {.lex_state = 3, .external_lex_state = 3}, + [1541] = {.lex_state = 63}, + [1542] = {.lex_state = 63}, + [1543] = {.lex_state = 63}, + [1544] = {.lex_state = 63}, + [1545] = {.lex_state = 8}, + [1546] = {.lex_state = 63}, + [1547] = {.lex_state = 17}, + [1548] = {.lex_state = 64}, + [1549] = {.lex_state = 63}, + [1550] = {.lex_state = 63}, [1551] = {.lex_state = 3, .external_lex_state = 3}, - [1552] = {.lex_state = 65}, - [1553] = {.lex_state = 65}, - [1554] = {.lex_state = 65}, - [1555] = {.lex_state = 65}, - [1556] = {.lex_state = 65}, - [1557] = {.lex_state = 8}, - [1558] = {.lex_state = 3, .external_lex_state = 3}, - [1559] = {.lex_state = 65}, - [1560] = {.lex_state = 66}, + [1552] = {.lex_state = 63}, + [1553] = {.lex_state = 8}, + [1554] = {.lex_state = 63}, + [1555] = {.lex_state = 63}, + [1556] = {.lex_state = 3, .external_lex_state = 3}, + [1557] = {.lex_state = 3, .external_lex_state = 3}, + [1558] = {.lex_state = 63}, + [1559] = {.lex_state = 63}, + [1560] = {.lex_state = 63, .external_lex_state = 2}, [1561] = {.lex_state = 3, .external_lex_state = 3}, [1562] = {.lex_state = 3, .external_lex_state = 3}, - [1563] = {.lex_state = 65, .external_lex_state = 2}, - [1564] = {.lex_state = 8}, - [1565] = {.lex_state = 65}, - [1566] = {.lex_state = 3, .external_lex_state = 3}, - [1567] = {.lex_state = 65}, - [1568] = {.lex_state = 3, .external_lex_state = 3}, - [1569] = {.lex_state = 65}, - [1570] = {.lex_state = 65}, - [1571] = {.lex_state = 65}, - [1572] = {.lex_state = 65}, - [1573] = {.lex_state = 65}, - [1574] = {.lex_state = 8}, - [1575] = {.lex_state = 65}, - [1576] = {.lex_state = 65}, - [1577] = {.lex_state = 65}, - [1578] = {.lex_state = 65}, - [1579] = {.lex_state = 65}, - [1580] = {.lex_state = 65}, - [1581] = {.lex_state = 65}, - [1582] = {.lex_state = 65}, - [1583] = {.lex_state = 65, .external_lex_state = 2}, - [1584] = {.lex_state = 65}, - [1585] = {.lex_state = 65}, - [1586] = {.lex_state = 65}, - [1587] = {.lex_state = 65}, - [1588] = {.lex_state = 9, .external_lex_state = 6}, - [1589] = {.lex_state = 65}, - [1590] = {.lex_state = 65, .external_lex_state = 2}, - [1591] = {.lex_state = 65}, - [1592] = {.lex_state = 65}, - [1593] = {.lex_state = 65}, - [1594] = {.lex_state = 65}, - [1595] = {.lex_state = 65}, - [1596] = {.lex_state = 65}, - [1597] = {.lex_state = 65}, - [1598] = {.lex_state = 65}, + [1563] = {.lex_state = 63, .external_lex_state = 2}, + [1564] = {.lex_state = 63}, + [1565] = {.lex_state = 3, .external_lex_state = 3}, + [1566] = {.lex_state = 63}, + [1567] = {.lex_state = 63}, + [1568] = {.lex_state = 63}, + [1569] = {.lex_state = 3, .external_lex_state = 3}, + [1570] = {.lex_state = 63}, + [1571] = {.lex_state = 3, .external_lex_state = 3}, + [1572] = {.lex_state = 8}, + [1573] = {.lex_state = 63}, + [1574] = {.lex_state = 63}, + [1575] = {.lex_state = 63}, + [1576] = {.lex_state = 63}, + [1577] = {.lex_state = 63}, + [1578] = {.lex_state = 63}, + [1579] = {.lex_state = 63}, + [1580] = {.lex_state = 63}, + [1581] = {.lex_state = 63}, + [1582] = {.lex_state = 63}, + [1583] = {.lex_state = 63}, + [1584] = {.lex_state = 63}, + [1585] = {.lex_state = 63}, + [1586] = {.lex_state = 63}, + [1587] = {.lex_state = 63}, + [1588] = {.lex_state = 65, .external_lex_state = 10}, + [1589] = {.lex_state = 63}, + [1590] = {.lex_state = 63}, + [1591] = {.lex_state = 63}, + [1592] = {.lex_state = 63}, + [1593] = {.lex_state = 9, .external_lex_state = 6}, + [1594] = {.lex_state = 63}, + [1595] = {.lex_state = 63}, + [1596] = {.lex_state = 63}, + [1597] = {.lex_state = 63}, + [1598] = {.lex_state = 9, .external_lex_state = 6}, [1599] = {.lex_state = 9, .external_lex_state = 5}, [1600] = {.lex_state = 9, .external_lex_state = 6}, - [1601] = {.lex_state = 9, .external_lex_state = 5}, - [1602] = {.lex_state = 65, .external_lex_state = 2}, - [1603] = {.lex_state = 65}, - [1604] = {.lex_state = 65}, - [1605] = {.lex_state = 65}, - [1606] = {.lex_state = 65}, - [1607] = {.lex_state = 65}, - [1608] = {.lex_state = 9, .external_lex_state = 5}, - [1609] = {.lex_state = 9, .external_lex_state = 5}, - [1610] = {.lex_state = 65}, - [1611] = {.lex_state = 9, .external_lex_state = 6}, - [1612] = {.lex_state = 65}, - [1613] = {.lex_state = 67, .external_lex_state = 10}, - [1614] = {.lex_state = 9, .external_lex_state = 6}, - [1615] = {.lex_state = 65}, - [1616] = {.lex_state = 65}, - [1617] = {.lex_state = 65}, - [1618] = {.lex_state = 9, .external_lex_state = 5}, - [1619] = {.lex_state = 65}, - [1620] = {.lex_state = 65}, - [1621] = {.lex_state = 65}, - [1622] = {.lex_state = 9, .external_lex_state = 6}, - [1623] = {.lex_state = 9, .external_lex_state = 5}, - [1624] = {.lex_state = 65}, - [1625] = {.lex_state = 65}, - [1626] = {.lex_state = 65}, - [1627] = {.lex_state = 9, .external_lex_state = 6}, - [1628] = {.lex_state = 9, .external_lex_state = 6}, - [1629] = {.lex_state = 65}, - [1630] = {.lex_state = 65}, - [1631] = {.lex_state = 65}, - [1632] = {.lex_state = 65}, - [1633] = {.lex_state = 65}, - [1634] = {.lex_state = 65}, - [1635] = {.lex_state = 65}, - [1636] = {.lex_state = 65}, - [1637] = {.lex_state = 9, .external_lex_state = 6}, - [1638] = {.lex_state = 65}, - [1639] = {.lex_state = 65}, + [1601] = {.lex_state = 63}, + [1602] = {.lex_state = 9, .external_lex_state = 5}, + [1603] = {.lex_state = 63, .external_lex_state = 2}, + [1604] = {.lex_state = 9, .external_lex_state = 6}, + [1605] = {.lex_state = 63}, + [1606] = {.lex_state = 63}, + [1607] = {.lex_state = 63}, + [1608] = {.lex_state = 63}, + [1609] = {.lex_state = 63}, + [1610] = {.lex_state = 63}, + [1611] = {.lex_state = 63}, + [1612] = {.lex_state = 63}, + [1613] = {.lex_state = 63}, + [1614] = {.lex_state = 63}, + [1615] = {.lex_state = 63}, + [1616] = {.lex_state = 9, .external_lex_state = 6}, + [1617] = {.lex_state = 63}, + [1618] = {.lex_state = 63}, + [1619] = {.lex_state = 63, .external_lex_state = 2}, + [1620] = {.lex_state = 63}, + [1621] = {.lex_state = 63}, + [1622] = {.lex_state = 63}, + [1623] = {.lex_state = 63, .external_lex_state = 2}, + [1624] = {.lex_state = 63}, + [1625] = {.lex_state = 9, .external_lex_state = 5}, + [1626] = {.lex_state = 9, .external_lex_state = 6}, + [1627] = {.lex_state = 9, .external_lex_state = 5}, + [1628] = {.lex_state = 63}, + [1629] = {.lex_state = 63}, + [1630] = {.lex_state = 9, .external_lex_state = 5}, + [1631] = {.lex_state = 63}, + [1632] = {.lex_state = 63}, + [1633] = {.lex_state = 9, .external_lex_state = 6}, + [1634] = {.lex_state = 63}, + [1635] = {.lex_state = 9, .external_lex_state = 5}, + [1636] = {.lex_state = 63}, + [1637] = {.lex_state = 9, .external_lex_state = 5}, + [1638] = {.lex_state = 63}, + [1639] = {.lex_state = 63}, [1640] = {.lex_state = 9, .external_lex_state = 5}, - [1641] = {.lex_state = 9, .external_lex_state = 5}, - [1642] = {.lex_state = 9, .external_lex_state = 5}, - [1643] = {.lex_state = 65}, - [1644] = {.lex_state = 65}, - [1645] = {.lex_state = 9, .external_lex_state = 6}, + [1641] = {.lex_state = 63}, + [1642] = {.lex_state = 63}, + [1643] = {.lex_state = 9, .external_lex_state = 6}, + [1644] = {.lex_state = 63}, + [1645] = {.lex_state = 63}, [1646] = {.lex_state = 9, .external_lex_state = 6}, - [1647] = {.lex_state = 65}, - [1648] = {.lex_state = 65}, - [1649] = {.lex_state = 65}, - [1650] = {.lex_state = 65}, - [1651] = {.lex_state = 9, .external_lex_state = 5}, - [1652] = {.lex_state = 65}, - [1653] = {.lex_state = 65}, - [1654] = {.lex_state = 66}, - [1655] = {.lex_state = 65}, - [1656] = {.lex_state = 67}, - [1657] = {.lex_state = 65}, - [1658] = {.lex_state = 65, .external_lex_state = 2}, - [1659] = {.lex_state = 65, .external_lex_state = 2}, - [1660] = {.lex_state = 65}, - [1661] = {.lex_state = 65}, - [1662] = {.lex_state = 65, .external_lex_state = 2}, - [1663] = {.lex_state = 65}, - [1664] = {.lex_state = 65, .external_lex_state = 2}, - [1665] = {.lex_state = 65, .external_lex_state = 2}, - [1666] = {.lex_state = 65}, - [1667] = {.lex_state = 65}, - [1668] = {.lex_state = 65, .external_lex_state = 2}, - [1669] = {.lex_state = 65, .external_lex_state = 2}, + [1647] = {.lex_state = 63}, + [1648] = {.lex_state = 63}, + [1649] = {.lex_state = 9, .external_lex_state = 5}, + [1650] = {.lex_state = 63}, + [1651] = {.lex_state = 63}, + [1652] = {.lex_state = 63}, + [1653] = {.lex_state = 9, .external_lex_state = 6}, + [1654] = {.lex_state = 63}, + [1655] = {.lex_state = 63}, + [1656] = {.lex_state = 9, .external_lex_state = 5}, + [1657] = {.lex_state = 63, .external_lex_state = 2}, + [1658] = {.lex_state = 63, .external_lex_state = 2}, + [1659] = {.lex_state = 63}, + [1660] = {.lex_state = 63, .external_lex_state = 2}, + [1661] = {.lex_state = 63}, + [1662] = {.lex_state = 63, .external_lex_state = 2}, + [1663] = {.lex_state = 63, .external_lex_state = 2}, + [1664] = {.lex_state = 63}, + [1665] = {.lex_state = 63}, + [1666] = {.lex_state = 63, .external_lex_state = 2}, + [1667] = {.lex_state = 63, .external_lex_state = 2}, + [1668] = {.lex_state = 63}, + [1669] = {.lex_state = 63, .external_lex_state = 2}, [1670] = {.lex_state = 65}, - [1671] = {.lex_state = 65, .external_lex_state = 2}, - [1672] = {.lex_state = 65}, - [1673] = {.lex_state = 65}, - [1674] = {.lex_state = 65}, - [1675] = {.lex_state = 67}, - [1676] = {.lex_state = 65, .external_lex_state = 2}, - [1677] = {.lex_state = 65}, - [1678] = {.lex_state = 65, .external_lex_state = 2}, - [1679] = {.lex_state = 65}, - [1680] = {.lex_state = 65}, - [1681] = {.lex_state = 66}, - [1682] = {.lex_state = 65}, - [1683] = {.lex_state = 65, .external_lex_state = 2}, - [1684] = {.lex_state = 65}, - [1685] = {.lex_state = 65}, + [1671] = {.lex_state = 63}, + [1672] = {.lex_state = 63}, + [1673] = {.lex_state = 63}, + [1674] = {.lex_state = 63}, + [1675] = {.lex_state = 63}, + [1676] = {.lex_state = 63}, + [1677] = {.lex_state = 63, .external_lex_state = 2}, + [1678] = {.lex_state = 63}, + [1679] = {.lex_state = 64}, + [1680] = {.lex_state = 63}, + [1681] = {.lex_state = 63}, + [1682] = {.lex_state = 63}, + [1683] = {.lex_state = 63, .external_lex_state = 2}, + [1684] = {.lex_state = 63}, + [1685] = {.lex_state = 63}, [1686] = {.lex_state = 65}, - [1687] = {.lex_state = 65, .external_lex_state = 2}, - [1688] = {.lex_state = 65, .external_lex_state = 2}, - [1689] = {.lex_state = 65}, - [1690] = {.lex_state = 65}, - [1691] = {.lex_state = 66}, - [1692] = {.lex_state = 65, .external_lex_state = 2}, - [1693] = {.lex_state = 65}, - [1694] = {.lex_state = 65}, - [1695] = {.lex_state = 65, .external_lex_state = 2}, - [1696] = {.lex_state = 65, .external_lex_state = 2}, - [1697] = {.lex_state = 65, .external_lex_state = 2}, - [1698] = {.lex_state = 65}, - [1699] = {.lex_state = 65, .external_lex_state = 2}, - [1700] = {.lex_state = 65}, - [1701] = {.lex_state = 65, .external_lex_state = 2}, - [1702] = {.lex_state = 65, .external_lex_state = 2}, - [1703] = {.lex_state = 65}, - [1704] = {.lex_state = 66}, - [1705] = {.lex_state = 65}, - [1706] = {.lex_state = 65, .external_lex_state = 2}, - [1707] = {.lex_state = 65}, - [1708] = {.lex_state = 65, .external_lex_state = 2}, - [1709] = {.lex_state = 65}, - [1710] = {.lex_state = 65}, - [1711] = {.lex_state = 65}, - [1712] = {.lex_state = 65}, - [1713] = {.lex_state = 65, .external_lex_state = 2}, - [1714] = {.lex_state = 65, .external_lex_state = 2}, - [1715] = {.lex_state = 65}, - [1716] = {.lex_state = 65}, - [1717] = {.lex_state = 65}, - [1718] = {.lex_state = 65, .external_lex_state = 2}, - [1719] = {.lex_state = 65, .external_lex_state = 2}, - [1720] = {.lex_state = 66}, - [1721] = {.lex_state = 65}, - [1722] = {.lex_state = 65}, - [1723] = {.lex_state = 66}, - [1724] = {.lex_state = 65, .external_lex_state = 2}, - [1725] = {.lex_state = 65, .external_lex_state = 2}, - [1726] = {.lex_state = 65, .external_lex_state = 2}, - [1727] = {.lex_state = 65, .external_lex_state = 2}, - [1728] = {.lex_state = 65, .external_lex_state = 2}, - [1729] = {.lex_state = 65, .external_lex_state = 2}, - [1730] = {.lex_state = 65}, - [1731] = {.lex_state = 66}, - [1732] = {.lex_state = 65}, - [1733] = {.lex_state = 66}, - [1734] = {.lex_state = 67, .external_lex_state = 10}, - [1735] = {.lex_state = 65, .external_lex_state = 2}, - [1736] = {.lex_state = 65}, - [1737] = {.lex_state = 65}, - [1738] = {.lex_state = 65}, - [1739] = {.lex_state = 65, .external_lex_state = 2}, - [1740] = {.lex_state = 65}, - [1741] = {.lex_state = 65, .external_lex_state = 2}, - [1742] = {.lex_state = 65}, - [1743] = {.lex_state = 65, .external_lex_state = 2}, - [1744] = {.lex_state = 65}, - [1745] = {.lex_state = 65}, - [1746] = {.lex_state = 65}, - [1747] = {.lex_state = 65}, - [1748] = {.lex_state = 65, .external_lex_state = 2}, - [1749] = {.lex_state = 65, .external_lex_state = 2}, - [1750] = {.lex_state = 65, .external_lex_state = 2}, - [1751] = {.lex_state = 65, .external_lex_state = 2}, - [1752] = {.lex_state = 65}, - [1753] = {.lex_state = 65}, - [1754] = {.lex_state = 67, .external_lex_state = 10}, - [1755] = {.lex_state = 65}, - [1756] = {.lex_state = 65}, - [1757] = {.lex_state = 65}, - [1758] = {.lex_state = 65, .external_lex_state = 2}, - [1759] = {.lex_state = 65}, - [1760] = {.lex_state = 65}, - [1761] = {.lex_state = 65}, - [1762] = {.lex_state = 65, .external_lex_state = 2}, - [1763] = {.lex_state = 65}, - [1764] = {.lex_state = 65, .external_lex_state = 2}, - [1765] = {.lex_state = 65, .external_lex_state = 2}, - [1766] = {.lex_state = 65, .external_lex_state = 2}, - [1767] = {.lex_state = 65}, - [1768] = {.lex_state = 65}, - [1769] = {.lex_state = 65}, - [1770] = {.lex_state = 65}, - [1771] = {.lex_state = 65, .external_lex_state = 2}, - [1772] = {.lex_state = 65}, - [1773] = {.lex_state = 67, .external_lex_state = 10}, - [1774] = {.lex_state = 65}, - [1775] = {.lex_state = 65}, - [1776] = {.lex_state = 65, .external_lex_state = 2}, - [1777] = {.lex_state = 65}, - [1778] = {.lex_state = 65}, - [1779] = {.lex_state = 65}, - [1780] = {.lex_state = 65, .external_lex_state = 2}, - [1781] = {.lex_state = 3, .external_lex_state = 11}, - [1782] = {.lex_state = 65}, - [1783] = {.lex_state = 65, .external_lex_state = 2}, - [1784] = {.lex_state = 65, .external_lex_state = 2}, - [1785] = {.lex_state = 65}, - [1786] = {.lex_state = 66}, - [1787] = {.lex_state = 65}, - [1788] = {.lex_state = 65}, - [1789] = {.lex_state = 65, .external_lex_state = 2}, - [1790] = {.lex_state = 65}, - [1791] = {.lex_state = 65, .external_lex_state = 2}, - [1792] = {.lex_state = 65}, - [1793] = {.lex_state = 65, .external_lex_state = 2}, - [1794] = {.lex_state = 65, .external_lex_state = 2}, - [1795] = {.lex_state = 65, .external_lex_state = 2}, - [1796] = {.lex_state = 65, .external_lex_state = 2}, - [1797] = {.lex_state = 65, .external_lex_state = 2}, - [1798] = {.lex_state = 65, .external_lex_state = 2}, - [1799] = {.lex_state = 65, .external_lex_state = 2}, - [1800] = {.lex_state = 65}, - [1801] = {.lex_state = 65, .external_lex_state = 2}, - [1802] = {.lex_state = 65, .external_lex_state = 2}, - [1803] = {.lex_state = 65}, - [1804] = {.lex_state = 65}, - [1805] = {.lex_state = 65}, - [1806] = {.lex_state = 65}, - [1807] = {.lex_state = 65}, - [1808] = {.lex_state = 65}, - [1809] = {.lex_state = 65, .external_lex_state = 2}, - [1810] = {.lex_state = 65}, - [1811] = {.lex_state = 65, .external_lex_state = 2}, - [1812] = {.lex_state = 65}, - [1813] = {.lex_state = 65, .external_lex_state = 2}, - [1814] = {.lex_state = 65, .external_lex_state = 2}, - [1815] = {.lex_state = 65}, - [1816] = {.lex_state = 65, .external_lex_state = 2}, - [1817] = {.lex_state = 65, .external_lex_state = 2}, - [1818] = {.lex_state = 65}, - [1819] = {.lex_state = 65}, - [1820] = {.lex_state = 65, .external_lex_state = 2}, - [1821] = {.lex_state = 65, .external_lex_state = 2}, - [1822] = {.lex_state = 66}, - [1823] = {.lex_state = 3, .external_lex_state = 11}, - [1824] = {.lex_state = 65}, - [1825] = {.lex_state = 65}, - [1826] = {.lex_state = 65}, - [1827] = {.lex_state = 18}, - [1828] = {.lex_state = 65}, - [1829] = {.lex_state = 65}, - [1830] = {.lex_state = 65}, - [1831] = {.lex_state = 65}, - [1832] = {.lex_state = 65}, - [1833] = {.lex_state = 65}, - [1834] = {.lex_state = 66}, - [1835] = {.lex_state = 65}, - [1836] = {.lex_state = 65}, - [1837] = {.lex_state = 65}, - [1838] = {.lex_state = 65, .external_lex_state = 2}, - [1839] = {.lex_state = 18}, - [1840] = {.lex_state = 65}, - [1841] = {.lex_state = 65}, - [1842] = {.lex_state = 65}, - [1843] = {.lex_state = 65}, - [1844] = {.lex_state = 65}, - [1845] = {.lex_state = 65, .external_lex_state = 2}, - [1846] = {.lex_state = 65}, - [1847] = {.lex_state = 65, .external_lex_state = 2}, - [1848] = {.lex_state = 65}, - [1849] = {.lex_state = 65}, - [1850] = {.lex_state = 65, .external_lex_state = 2}, - [1851] = {.lex_state = 65}, - [1852] = {.lex_state = 65}, - [1853] = {.lex_state = 65, .external_lex_state = 2}, - [1854] = {.lex_state = 65, .external_lex_state = 2}, - [1855] = {.lex_state = 65, .external_lex_state = 2}, - [1856] = {.lex_state = 65}, - [1857] = {.lex_state = 65, .external_lex_state = 2}, - [1858] = {.lex_state = 65, .external_lex_state = 2}, - [1859] = {.lex_state = 65}, - [1860] = {.lex_state = 65, .external_lex_state = 2}, - [1861] = {.lex_state = 65, .external_lex_state = 2}, - [1862] = {.lex_state = 65, .external_lex_state = 2}, - [1863] = {.lex_state = 65}, - [1864] = {.lex_state = 65}, - [1865] = {.lex_state = 65}, - [1866] = {.lex_state = 65, .external_lex_state = 2}, - [1867] = {.lex_state = 65}, - [1868] = {.lex_state = 65}, - [1869] = {.lex_state = 65}, - [1870] = {.lex_state = 65}, - [1871] = {.lex_state = 65, .external_lex_state = 2}, - [1872] = {.lex_state = 65}, - [1873] = {.lex_state = 65}, - [1874] = {.lex_state = 65}, - [1875] = {.lex_state = 65}, - [1876] = {.lex_state = 65, .external_lex_state = 2}, - [1877] = {.lex_state = 65, .external_lex_state = 2}, - [1878] = {.lex_state = 65, .external_lex_state = 2}, - [1879] = {.lex_state = 65, .external_lex_state = 2}, - [1880] = {.lex_state = 65}, - [1881] = {.lex_state = 65}, - [1882] = {.lex_state = 65, .external_lex_state = 2}, - [1883] = {.lex_state = 18}, - [1884] = {.lex_state = 65, .external_lex_state = 2}, - [1885] = {.lex_state = 65, .external_lex_state = 2}, - [1886] = {.lex_state = 65, .external_lex_state = 2}, - [1887] = {.lex_state = 65, .external_lex_state = 2}, - [1888] = {.lex_state = 65, .external_lex_state = 2}, - [1889] = {.lex_state = 65}, - [1890] = {.lex_state = 65, .external_lex_state = 2}, - [1891] = {.lex_state = 18}, - [1892] = {.lex_state = 65}, - [1893] = {.lex_state = 65, .external_lex_state = 2}, - [1894] = {.lex_state = 65}, - [1895] = {.lex_state = 65}, - [1896] = {.lex_state = 65}, - [1897] = {.lex_state = 65}, - [1898] = {.lex_state = 65}, - [1899] = {.lex_state = 65}, - [1900] = {.lex_state = 65}, - [1901] = {.lex_state = 65, .external_lex_state = 2}, - [1902] = {.lex_state = 65, .external_lex_state = 2}, - [1903] = {.lex_state = 65, .external_lex_state = 2}, - [1904] = {.lex_state = 65, .external_lex_state = 2}, - [1905] = {.lex_state = 65}, - [1906] = {.lex_state = 65, .external_lex_state = 2}, - [1907] = {.lex_state = 65, .external_lex_state = 2}, - [1908] = {.lex_state = 18}, - [1909] = {.lex_state = 65}, - [1910] = {.lex_state = 67}, - [1911] = {.lex_state = 65}, - [1912] = {.lex_state = 65}, - [1913] = {.lex_state = 65}, - [1914] = {.lex_state = 65}, - [1915] = {.lex_state = 65}, - [1916] = {.lex_state = 65}, - [1917] = {.lex_state = 65}, - [1918] = {.lex_state = 3, .external_lex_state = 12}, - [1919] = {.lex_state = 65}, - [1920] = {.lex_state = 65}, - [1921] = {.lex_state = 65}, - [1922] = {.lex_state = 65}, - [1923] = {.lex_state = 65}, - [1924] = {.lex_state = 65}, - [1925] = {.lex_state = 65}, - [1926] = {.lex_state = 65}, - [1927] = {.lex_state = 65, .external_lex_state = 2}, - [1928] = {.lex_state = 65}, - [1929] = {.lex_state = 65}, - [1930] = {.lex_state = 65, .external_lex_state = 13}, - [1931] = {.lex_state = 65}, - [1932] = {.lex_state = 65}, - [1933] = {.lex_state = 65}, - [1934] = {.lex_state = 65}, - [1935] = {.lex_state = 65}, - [1936] = {.lex_state = 65}, - [1937] = {.lex_state = 65}, - [1938] = {.lex_state = 65}, - [1939] = {.lex_state = 65}, - [1940] = {.lex_state = 65}, - [1941] = {.lex_state = 65}, - [1942] = {.lex_state = 65}, - [1943] = {.lex_state = 65}, - [1944] = {.lex_state = 65}, - [1945] = {.lex_state = 65}, - [1946] = {.lex_state = 65}, - [1947] = {.lex_state = 65}, - [1948] = {.lex_state = 65}, - [1949] = {.lex_state = 65}, - [1950] = {.lex_state = 65}, - [1951] = {.lex_state = 65}, - [1952] = {.lex_state = 65}, - [1953] = {.lex_state = 65}, - [1954] = {.lex_state = 65}, - [1955] = {.lex_state = 65}, - [1956] = {.lex_state = 65}, - [1957] = {.lex_state = 65}, - [1958] = {.lex_state = 65}, - [1959] = {.lex_state = 65}, - [1960] = {.lex_state = 65}, - [1961] = {.lex_state = 65}, - [1962] = {.lex_state = 65}, - [1963] = {.lex_state = 65}, - [1964] = {.lex_state = 65}, - [1965] = {.lex_state = 65}, - [1966] = {.lex_state = 65}, - [1967] = {.lex_state = 65}, - [1968] = {.lex_state = 65}, - [1969] = {.lex_state = 65}, - [1970] = {.lex_state = 65}, - [1971] = {.lex_state = 65}, - [1972] = {.lex_state = 65}, - [1973] = {.lex_state = 65}, - [1974] = {.lex_state = 65}, - [1975] = {.lex_state = 65}, - [1976] = {.lex_state = 65, .external_lex_state = 2}, - [1977] = {.lex_state = 65}, - [1978] = {.lex_state = 65}, - [1979] = {.lex_state = 65}, - [1980] = {.lex_state = 65}, - [1981] = {.lex_state = 65}, - [1982] = {.lex_state = 65}, - [1983] = {.lex_state = 65}, - [1984] = {.lex_state = 65, .external_lex_state = 2}, - [1985] = {.lex_state = 65}, - [1986] = {.lex_state = 65}, - [1987] = {.lex_state = 3, .external_lex_state = 12}, - [1988] = {.lex_state = 3, .external_lex_state = 12}, - [1989] = {.lex_state = 65}, - [1990] = {.lex_state = 65}, - [1991] = {.lex_state = 65}, - [1992] = {.lex_state = 65}, - [1993] = {.lex_state = 65}, - [1994] = {.lex_state = 65}, - [1995] = {.lex_state = 65, .external_lex_state = 2}, - [1996] = {.lex_state = 18}, - [1997] = {.lex_state = 65}, - [1998] = {.lex_state = 3, .external_lex_state = 12}, - [1999] = {.lex_state = 65}, - [2000] = {.lex_state = 65}, - [2001] = {.lex_state = 65}, - [2002] = {.lex_state = 65}, - [2003] = {.lex_state = 65}, - [2004] = {.lex_state = 65}, - [2005] = {.lex_state = 65}, - [2006] = {.lex_state = 65}, - [2007] = {.lex_state = 65}, - [2008] = {.lex_state = 65}, - [2009] = {.lex_state = 65}, - [2010] = {.lex_state = 65, .external_lex_state = 2}, - [2011] = {.lex_state = 65}, - [2012] = {.lex_state = 65}, - [2013] = {.lex_state = 65}, - [2014] = {.lex_state = 66}, - [2015] = {.lex_state = 65}, - [2016] = {.lex_state = 65}, - [2017] = {.lex_state = 65}, - [2018] = {.lex_state = 65}, - [2019] = {.lex_state = 65}, - [2020] = {.lex_state = 65}, - [2021] = {.lex_state = 65}, - [2022] = {.lex_state = 65}, - [2023] = {.lex_state = 65}, - [2024] = {.lex_state = 65}, - [2025] = {.lex_state = 65}, - [2026] = {.lex_state = 65}, - [2027] = {.lex_state = 65}, - [2028] = {.lex_state = 65}, - [2029] = {.lex_state = 65}, - [2030] = {.lex_state = 65}, - [2031] = {.lex_state = 65}, - [2032] = {.lex_state = 65}, - [2033] = {.lex_state = 65}, - [2034] = {.lex_state = 65}, - [2035] = {.lex_state = 65}, - [2036] = {.lex_state = 65}, - [2037] = {.lex_state = 65}, - [2038] = {.lex_state = 65}, - [2039] = {.lex_state = 65}, - [2040] = {.lex_state = 65}, - [2041] = {.lex_state = 65}, - [2042] = {.lex_state = 65}, - [2043] = {.lex_state = 65}, - [2044] = {.lex_state = 65}, - [2045] = {.lex_state = 65}, - [2046] = {.lex_state = 65}, - [2047] = {.lex_state = 65}, - [2048] = {.lex_state = 65}, - [2049] = {.lex_state = 65}, - [2050] = {.lex_state = 65}, - [2051] = {.lex_state = 65}, - [2052] = {.lex_state = 65}, - [2053] = {.lex_state = 65}, - [2054] = {.lex_state = 65}, - [2055] = {.lex_state = 65}, - [2056] = {.lex_state = 65}, - [2057] = {.lex_state = 65}, - [2058] = {.lex_state = 65, .external_lex_state = 2}, - [2059] = {.lex_state = 65, .external_lex_state = 2}, - [2060] = {.lex_state = 65}, - [2061] = {.lex_state = 65}, - [2062] = {.lex_state = 65}, - [2063] = {.lex_state = 65}, - [2064] = {.lex_state = 65}, - [2065] = {.lex_state = 65}, - [2066] = {.lex_state = 65}, - [2067] = {.lex_state = 65}, - [2068] = {.lex_state = 65}, - [2069] = {.lex_state = 65}, - [2070] = {.lex_state = 65, .external_lex_state = 2}, - [2071] = {.lex_state = 65}, - [2072] = {.lex_state = 65, .external_lex_state = 2}, - [2073] = {.lex_state = 65}, - [2074] = {.lex_state = 65}, - [2075] = {.lex_state = 65}, - [2076] = {.lex_state = 65}, - [2077] = {.lex_state = 65}, - [2078] = {.lex_state = 65, .external_lex_state = 2}, - [2079] = {.lex_state = 65, .external_lex_state = 2}, - [2080] = {.lex_state = 65}, - [2081] = {.lex_state = 65}, - [2082] = {.lex_state = 185, .external_lex_state = 14}, - [2083] = {.lex_state = 65}, - [2084] = {.lex_state = 65, .external_lex_state = 2}, - [2085] = {.lex_state = 65}, - [2086] = {.lex_state = 65}, - [2087] = {.lex_state = 65}, - [2088] = {.lex_state = 65}, - [2089] = {.lex_state = 65}, - [2090] = {.lex_state = 65}, - [2091] = {.lex_state = 65}, - [2092] = {.lex_state = 65}, - [2093] = {.lex_state = 66}, - [2094] = {.lex_state = 65}, - [2095] = {.lex_state = 65}, - [2096] = {.lex_state = 65}, - [2097] = {.lex_state = 65}, - [2098] = {.lex_state = 3, .external_lex_state = 11}, - [2099] = {.lex_state = 65}, - [2100] = {.lex_state = 65}, - [2101] = {.lex_state = 65}, - [2102] = {.lex_state = 66}, - [2103] = {.lex_state = 65}, - [2104] = {.lex_state = 65}, - [2105] = {.lex_state = 65}, - [2106] = {.lex_state = 65}, - [2107] = {.lex_state = 65}, - [2108] = {.lex_state = 65}, - [2109] = {.lex_state = 65}, - [2110] = {.lex_state = 65}, - [2111] = {.lex_state = 65}, - [2112] = {.lex_state = 65}, - [2113] = {.lex_state = 65}, - [2114] = {.lex_state = 65}, - [2115] = {.lex_state = 65}, - [2116] = {.lex_state = 65}, - [2117] = {.lex_state = 65}, - [2118] = {.lex_state = 65}, - [2119] = {.lex_state = 65}, - [2120] = {.lex_state = 65}, - [2121] = {.lex_state = 65}, - [2122] = {.lex_state = 65, .external_lex_state = 2}, - [2123] = {.lex_state = 65, .external_lex_state = 2}, - [2124] = {.lex_state = 65}, - [2125] = {.lex_state = 65, .external_lex_state = 2}, - [2126] = {.lex_state = 65}, - [2127] = {.lex_state = 65}, - [2128] = {.lex_state = 65}, - [2129] = {.lex_state = 65}, - [2130] = {.lex_state = 65, .external_lex_state = 2}, - [2131] = {.lex_state = 65}, - [2132] = {.lex_state = 65}, - [2133] = {.lex_state = 65}, - [2134] = {.lex_state = 65}, - [2135] = {.lex_state = 65}, - [2136] = {.lex_state = 65, .external_lex_state = 13}, - [2137] = {.lex_state = 65}, - [2138] = {.lex_state = 65}, - [2139] = {.lex_state = 65}, - [2140] = {.lex_state = 65, .external_lex_state = 2}, - [2141] = {.lex_state = 65}, - [2142] = {.lex_state = 66}, - [2143] = {.lex_state = 65}, - [2144] = {.lex_state = 65}, - [2145] = {.lex_state = 65}, - [2146] = {.lex_state = 65}, - [2147] = {.lex_state = 65}, - [2148] = {.lex_state = 65}, - [2149] = {.lex_state = 65}, - [2150] = {.lex_state = 65}, - [2151] = {.lex_state = 65}, - [2152] = {.lex_state = 65}, - [2153] = {.lex_state = 65}, - [2154] = {.lex_state = 65}, - [2155] = {.lex_state = 65}, - [2156] = {.lex_state = 65}, - [2157] = {.lex_state = 65}, - [2158] = {.lex_state = 65}, - [2159] = {.lex_state = 65}, - [2160] = {.lex_state = 65}, - [2161] = {.lex_state = 65}, - [2162] = {.lex_state = 65}, - [2163] = {.lex_state = 65}, - [2164] = {.lex_state = 65}, - [2165] = {.lex_state = 65}, - [2166] = {.lex_state = 65}, - [2167] = {.lex_state = 65}, - [2168] = {.lex_state = 65}, - [2169] = {.lex_state = 65}, - [2170] = {.lex_state = 65}, - [2171] = {.lex_state = 65}, - [2172] = {.lex_state = 65}, - [2173] = {.lex_state = 65}, - [2174] = {.lex_state = 3, .external_lex_state = 12}, - [2175] = {.lex_state = 65}, - [2176] = {.lex_state = 3, .external_lex_state = 12}, - [2177] = {.lex_state = 65}, - [2178] = {.lex_state = 65}, - [2179] = {.lex_state = 65}, - [2180] = {.lex_state = 65}, - [2181] = {.lex_state = 65}, - [2182] = {.lex_state = 65}, - [2183] = {.lex_state = 65, .external_lex_state = 2}, - [2184] = {.lex_state = 65}, - [2185] = {.lex_state = 65}, - [2186] = {.lex_state = 65}, - [2187] = {.lex_state = 65, .external_lex_state = 2}, - [2188] = {.lex_state = 65}, - [2189] = {.lex_state = 65}, - [2190] = {.lex_state = 66}, - [2191] = {.lex_state = 66, .external_lex_state = 10}, - [2192] = {.lex_state = 65}, - [2193] = {.lex_state = 65, .external_lex_state = 2}, - [2194] = {.lex_state = 65}, - [2195] = {.lex_state = 65, .external_lex_state = 2}, - [2196] = {.lex_state = 65}, - [2197] = {.lex_state = 65}, - [2198] = {.lex_state = 65}, - [2199] = {.lex_state = 65}, - [2200] = {.lex_state = 65}, - [2201] = {.lex_state = 65}, - [2202] = {.lex_state = 65}, - [2203] = {.lex_state = 65}, - [2204] = {.lex_state = 65}, - [2205] = {.lex_state = 65, .external_lex_state = 2}, - [2206] = {.lex_state = 65}, - [2207] = {.lex_state = 65}, - [2208] = {.lex_state = 65}, - [2209] = {.lex_state = 65}, - [2210] = {.lex_state = 65}, - [2211] = {.lex_state = 65}, - [2212] = {.lex_state = 65}, - [2213] = {.lex_state = 65}, - [2214] = {.lex_state = 65, .external_lex_state = 2}, - [2215] = {.lex_state = 65}, - [2216] = {.lex_state = 65}, - [2217] = {.lex_state = 65}, - [2218] = {.lex_state = 65}, - [2219] = {.lex_state = 65}, - [2220] = {.lex_state = 65}, - [2221] = {.lex_state = 65}, - [2222] = {.lex_state = 65, .external_lex_state = 2}, - [2223] = {.lex_state = 65}, - [2224] = {.lex_state = 65}, - [2225] = {.lex_state = 65}, - [2226] = {.lex_state = 65}, - [2227] = {.lex_state = 65}, - [2228] = {.lex_state = 65}, - [2229] = {.lex_state = 65}, - [2230] = {.lex_state = 65}, - [2231] = {.lex_state = 65}, - [2232] = {.lex_state = 65}, - [2233] = {.lex_state = 65}, - [2234] = {.lex_state = 65}, - [2235] = {.lex_state = 65}, - [2236] = {.lex_state = 65}, - [2237] = {.lex_state = 65}, - [2238] = {.lex_state = 65}, - [2239] = {.lex_state = 65}, - [2240] = {.lex_state = 65}, - [2241] = {.lex_state = 65}, - [2242] = {.lex_state = 65}, - [2243] = {.lex_state = 65, .external_lex_state = 2}, - [2244] = {.lex_state = 65}, - [2245] = {.lex_state = 65}, - [2246] = {.lex_state = 65, .external_lex_state = 2}, - [2247] = {.lex_state = 65}, - [2248] = {.lex_state = 65, .external_lex_state = 2}, - [2249] = {.lex_state = 65}, - [2250] = {.lex_state = 65}, - [2251] = {.lex_state = 65}, - [2252] = {.lex_state = 65, .external_lex_state = 2}, - [2253] = {.lex_state = 65}, - [2254] = {.lex_state = 65}, - [2255] = {.lex_state = 65}, - [2256] = {.lex_state = 65, .external_lex_state = 2}, - [2257] = {.lex_state = 65}, - [2258] = {.lex_state = 65}, - [2259] = {.lex_state = 65, .external_lex_state = 2}, - [2260] = {.lex_state = 65}, - [2261] = {.lex_state = 65}, - [2262] = {.lex_state = 65, .external_lex_state = 2}, - [2263] = {.lex_state = 65, .external_lex_state = 2}, - [2264] = {.lex_state = 65}, - [2265] = {.lex_state = 65}, - [2266] = {.lex_state = 65, .external_lex_state = 2}, - [2267] = {.lex_state = 65}, - [2268] = {.lex_state = 65}, - [2269] = {.lex_state = 65}, - [2270] = {.lex_state = 65}, - [2271] = {.lex_state = 65}, - [2272] = {.lex_state = 65}, - [2273] = {.lex_state = 65, .external_lex_state = 2}, - [2274] = {.lex_state = 65, .external_lex_state = 2}, - [2275] = {.lex_state = 65}, - [2276] = {.lex_state = 3, .external_lex_state = 12}, - [2277] = {.lex_state = 65}, - [2278] = {.lex_state = 65}, - [2279] = {.lex_state = 65}, - [2280] = {.lex_state = 65}, - [2281] = {.lex_state = 65}, - [2282] = {.lex_state = 65, .external_lex_state = 2}, - [2283] = {.lex_state = 65, .external_lex_state = 2}, - [2284] = {.lex_state = 65}, - [2285] = {.lex_state = 65, .external_lex_state = 2}, - [2286] = {.lex_state = 65, .external_lex_state = 2}, - [2287] = {.lex_state = 65, .external_lex_state = 2}, - [2288] = {.lex_state = 65, .external_lex_state = 2}, - [2289] = {.lex_state = 65}, - [2290] = {.lex_state = 65}, - [2291] = {.lex_state = 65}, - [2292] = {.lex_state = 65}, - [2293] = {.lex_state = 65}, - [2294] = {.lex_state = 65, .external_lex_state = 2}, - [2295] = {.lex_state = 65}, - [2296] = {.lex_state = 65}, - [2297] = {.lex_state = 65}, - [2298] = {.lex_state = 65, .external_lex_state = 2}, - [2299] = {.lex_state = 65}, - [2300] = {.lex_state = 65}, - [2301] = {.lex_state = 65}, - [2302] = {.lex_state = 65}, - [2303] = {.lex_state = 65}, - [2304] = {.lex_state = 65}, - [2305] = {.lex_state = 65}, - [2306] = {.lex_state = 65}, - [2307] = {.lex_state = 65}, - [2308] = {.lex_state = 65}, - [2309] = {.lex_state = 65}, - [2310] = {.lex_state = 65}, - [2311] = {.lex_state = 65}, - [2312] = {.lex_state = 65, .external_lex_state = 2}, - [2313] = {.lex_state = 65}, - [2314] = {.lex_state = 65}, - [2315] = {.lex_state = 65, .external_lex_state = 2}, - [2316] = {.lex_state = 65, .external_lex_state = 2}, - [2317] = {.lex_state = 65}, - [2318] = {.lex_state = 65}, - [2319] = {.lex_state = 65, .external_lex_state = 2}, - [2320] = {.lex_state = 65}, - [2321] = {.lex_state = 65}, - [2322] = {.lex_state = 65}, - [2323] = {.lex_state = 65}, - [2324] = {.lex_state = 65}, - [2325] = {.lex_state = 65}, - [2326] = {.lex_state = 65, .external_lex_state = 2}, - [2327] = {.lex_state = 65}, - [2328] = {.lex_state = 65, .external_lex_state = 2}, - [2329] = {.lex_state = 65, .external_lex_state = 2}, - [2330] = {.lex_state = 65}, - [2331] = {.lex_state = 65, .external_lex_state = 2}, - [2332] = {.lex_state = 65, .external_lex_state = 2}, - [2333] = {.lex_state = 65, .external_lex_state = 2}, - [2334] = {.lex_state = 65}, - [2335] = {.lex_state = 3, .external_lex_state = 12}, - [2336] = {.lex_state = 65}, - [2337] = {.lex_state = 65}, - [2338] = {.lex_state = 65}, - [2339] = {.lex_state = 65}, - [2340] = {.lex_state = 65}, - [2341] = {.lex_state = 65}, - [2342] = {.lex_state = 65}, - [2343] = {.lex_state = 65, .external_lex_state = 2}, - [2344] = {.lex_state = 65, .external_lex_state = 2}, - [2345] = {.lex_state = 65, .external_lex_state = 2}, - [2346] = {.lex_state = 65}, - [2347] = {.lex_state = 65}, - [2348] = {.lex_state = 65}, - [2349] = {.lex_state = 65, .external_lex_state = 2}, - [2350] = {.lex_state = 65}, - [2351] = {.lex_state = 65, .external_lex_state = 2}, - [2352] = {.lex_state = 65, .external_lex_state = 2}, - [2353] = {.lex_state = 65}, - [2354] = {.lex_state = 65}, - [2355] = {.lex_state = 65}, - [2356] = {.lex_state = 65, .external_lex_state = 2}, - [2357] = {.lex_state = 65}, - [2358] = {.lex_state = 65}, - [2359] = {.lex_state = 65}, - [2360] = {.lex_state = 65}, - [2361] = {.lex_state = 65}, - [2362] = {.lex_state = 65}, - [2363] = {.lex_state = 65}, - [2364] = {.lex_state = 65}, - [2365] = {.lex_state = 65}, - [2366] = {.lex_state = 3, .external_lex_state = 12}, - [2367] = {.lex_state = 65, .external_lex_state = 2}, - [2368] = {.lex_state = 3, .external_lex_state = 12}, - [2369] = {.lex_state = 65}, - [2370] = {.lex_state = 65, .external_lex_state = 2}, - [2371] = {.lex_state = 65}, - [2372] = {.lex_state = 65}, - [2373] = {.lex_state = 65, .external_lex_state = 2}, - [2374] = {.lex_state = 65, .external_lex_state = 2}, - [2375] = {.lex_state = 65, .external_lex_state = 2}, - [2376] = {.lex_state = 65, .external_lex_state = 2}, - [2377] = {.lex_state = 65}, - [2378] = {.lex_state = 65}, - [2379] = {.lex_state = 65}, - [2380] = {.lex_state = 65}, - [2381] = {.lex_state = 65}, - [2382] = {.lex_state = 65, .external_lex_state = 2}, - [2383] = {.lex_state = 65}, - [2384] = {.lex_state = 65, .external_lex_state = 2}, - [2385] = {.lex_state = 65}, - [2386] = {.lex_state = 65}, - [2387] = {.lex_state = 65}, - [2388] = {.lex_state = 65}, - [2389] = {.lex_state = 65}, - [2390] = {.lex_state = 65}, - [2391] = {.lex_state = 65}, - [2392] = {.lex_state = 65}, - [2393] = {.lex_state = 65}, - [2394] = {.lex_state = 65}, - [2395] = {.lex_state = 65}, - [2396] = {.lex_state = 65}, - [2397] = {.lex_state = 65}, - [2398] = {.lex_state = 65}, - [2399] = {.lex_state = 65}, - [2400] = {.lex_state = 65}, - [2401] = {.lex_state = 65}, - [2402] = {.lex_state = 65}, - [2403] = {.lex_state = 65}, - [2404] = {.lex_state = 65}, - [2405] = {.lex_state = 65}, - [2406] = {.lex_state = 65}, - [2407] = {.lex_state = 65, .external_lex_state = 2}, - [2408] = {.lex_state = 65}, - [2409] = {.lex_state = 65}, - [2410] = {.lex_state = 65}, - [2411] = {.lex_state = 65, .external_lex_state = 2}, - [2412] = {.lex_state = 65, .external_lex_state = 2}, - [2413] = {.lex_state = 3, .external_lex_state = 12}, - [2414] = {.lex_state = 65, .external_lex_state = 2}, - [2415] = {.lex_state = 65}, - [2416] = {.lex_state = 65}, - [2417] = {.lex_state = 65, .external_lex_state = 2}, - [2418] = {.lex_state = 65}, - [2419] = {.lex_state = 65}, - [2420] = {.lex_state = 65}, - [2421] = {.lex_state = 65}, - [2422] = {.lex_state = 65}, - [2423] = {.lex_state = 65}, - [2424] = {.lex_state = 65}, - [2425] = {.lex_state = 65}, - [2426] = {.lex_state = 65}, - [2427] = {.lex_state = 65}, - [2428] = {.lex_state = 65}, - [2429] = {.lex_state = 65}, - [2430] = {.lex_state = 65}, - [2431] = {.lex_state = 65}, - [2432] = {.lex_state = 65}, - [2433] = {.lex_state = 65}, - [2434] = {.lex_state = 65}, - [2435] = {.lex_state = 65}, - [2436] = {.lex_state = 65}, - [2437] = {.lex_state = 65, .external_lex_state = 2}, - [2438] = {.lex_state = 65}, - [2439] = {.lex_state = 65, .external_lex_state = 2}, - [2440] = {.lex_state = 65}, - [2441] = {.lex_state = 65}, - [2442] = {.lex_state = 65, .external_lex_state = 2}, - [2443] = {.lex_state = 65}, - [2444] = {.lex_state = 65}, - [2445] = {.lex_state = 65, .external_lex_state = 2}, - [2446] = {.lex_state = 65}, - [2447] = {.lex_state = 65}, - [2448] = {.lex_state = 65}, - [2449] = {.lex_state = 3, .external_lex_state = 12}, - [2450] = {.lex_state = 65}, - [2451] = {.lex_state = 3, .external_lex_state = 12}, - [2452] = {.lex_state = 65}, - [2453] = {.lex_state = 65}, - [2454] = {.lex_state = 65}, - [2455] = {.lex_state = 65}, - [2456] = {.lex_state = 65}, - [2457] = {.lex_state = 65}, - [2458] = {.lex_state = 65}, - [2459] = {.lex_state = 65, .external_lex_state = 2}, - [2460] = {.lex_state = 65}, - [2461] = {.lex_state = 65}, - [2462] = {.lex_state = 65}, - [2463] = {.lex_state = 65}, - [2464] = {.lex_state = 65}, - [2465] = {.lex_state = 65}, - [2466] = {.lex_state = 65}, - [2467] = {.lex_state = 65}, - [2468] = {.lex_state = 65}, - [2469] = {.lex_state = 65}, - [2470] = {.lex_state = 65}, - [2471] = {.lex_state = 65}, - [2472] = {.lex_state = 65}, - [2473] = {.lex_state = 65}, - [2474] = {.lex_state = 65}, - [2475] = {.lex_state = 65}, - [2476] = {.lex_state = 65}, - [2477] = {.lex_state = 65}, - [2478] = {.lex_state = 65}, - [2479] = {.lex_state = 65}, - [2480] = {.lex_state = 65}, - [2481] = {.lex_state = 65}, - [2482] = {.lex_state = 65}, - [2483] = {.lex_state = 65}, - [2484] = {.lex_state = 65}, - [2485] = {.lex_state = 65}, - [2486] = {.lex_state = 65}, - [2487] = {.lex_state = 65}, - [2488] = {.lex_state = 65}, - [2489] = {.lex_state = 65}, - [2490] = {.lex_state = 65}, - [2491] = {.lex_state = 65}, - [2492] = {.lex_state = 65}, - [2493] = {.lex_state = 8}, - [2494] = {.lex_state = 8}, - [2495] = {.lex_state = 65}, - [2496] = {.lex_state = 65}, - [2497] = {.lex_state = 65}, - [2498] = {.lex_state = 65}, - [2499] = {.lex_state = 65, .external_lex_state = 12}, - [2500] = {.lex_state = 65}, - [2501] = {.lex_state = 65, .external_lex_state = 12}, - [2502] = {.lex_state = 65}, - [2503] = {.lex_state = 65}, - [2504] = {.lex_state = 65}, - [2505] = {.lex_state = 65}, - [2506] = {.lex_state = 65}, - [2507] = {.lex_state = 65}, - [2508] = {.lex_state = 65}, - [2509] = {.lex_state = 65}, - [2510] = {.lex_state = 65}, - [2511] = {.lex_state = 65}, - [2512] = {.lex_state = 65}, - [2513] = {.lex_state = 65}, - [2514] = {.lex_state = 65}, - [2515] = {.lex_state = 65}, - [2516] = {.lex_state = 65, .external_lex_state = 13}, - [2517] = {.lex_state = 65, .external_lex_state = 13}, - [2518] = {.lex_state = 65}, - [2519] = {.lex_state = 65}, - [2520] = {.lex_state = 65}, - [2521] = {.lex_state = 65}, - [2522] = {.lex_state = 65}, - [2523] = {.lex_state = 65}, - [2524] = {.lex_state = 65}, - [2525] = {.lex_state = 65}, - [2526] = {.lex_state = 65}, - [2527] = {.lex_state = 65, .external_lex_state = 12}, - [2528] = {.lex_state = 65}, - [2529] = {.lex_state = 65}, - [2530] = {.lex_state = 65}, - [2531] = {.lex_state = 65, .external_lex_state = 12}, - [2532] = {.lex_state = 65}, - [2533] = {.lex_state = 65}, - [2534] = {.lex_state = 65}, - [2535] = {.lex_state = 65}, - [2536] = {.lex_state = 65}, - [2537] = {.lex_state = 65}, - [2538] = {.lex_state = 65}, - [2539] = {.lex_state = 65}, - [2540] = {.lex_state = 65}, - [2541] = {.lex_state = 65}, - [2542] = {.lex_state = 65}, - [2543] = {.lex_state = 65}, - [2544] = {.lex_state = 65}, - [2545] = {.lex_state = 65}, - [2546] = {.lex_state = 65}, - [2547] = {.lex_state = 65, .external_lex_state = 12}, - [2548] = {.lex_state = 65}, - [2549] = {.lex_state = 65}, - [2550] = {.lex_state = 65}, - [2551] = {.lex_state = 65}, - [2552] = {.lex_state = 8}, - [2553] = {.lex_state = 65}, - [2554] = {.lex_state = 65}, - [2555] = {.lex_state = 65}, - [2556] = {.lex_state = 65}, - [2557] = {.lex_state = 8}, - [2558] = {.lex_state = 65}, - [2559] = {.lex_state = 65}, - [2560] = {.lex_state = 65}, - [2561] = {.lex_state = 65}, - [2562] = {.lex_state = 65}, - [2563] = {.lex_state = 65}, - [2564] = {.lex_state = 65}, - [2565] = {.lex_state = 65}, - [2566] = {.lex_state = 65}, - [2567] = {.lex_state = 65}, - [2568] = {.lex_state = 65}, - [2569] = {.lex_state = 65}, - [2570] = {.lex_state = 65}, - [2571] = {.lex_state = 65}, - [2572] = {.lex_state = 65}, - [2573] = {.lex_state = 65}, - [2574] = {.lex_state = 65}, - [2575] = {.lex_state = 65}, - [2576] = {.lex_state = 65}, - [2577] = {.lex_state = 65}, - [2578] = {.lex_state = 65}, - [2579] = {.lex_state = 65}, - [2580] = {.lex_state = 65}, - [2581] = {.lex_state = 65}, - [2582] = {.lex_state = 65}, - [2583] = {.lex_state = 65}, - [2584] = {.lex_state = 65, .external_lex_state = 13}, - [2585] = {.lex_state = 65, .external_lex_state = 13}, - [2586] = {.lex_state = 65}, - [2587] = {.lex_state = 65}, - [2588] = {.lex_state = 65}, - [2589] = {.lex_state = 65}, - [2590] = {.lex_state = 65}, - [2591] = {.lex_state = 65}, - [2592] = {.lex_state = 65}, - [2593] = {.lex_state = 65}, - [2594] = {.lex_state = 65}, - [2595] = {.lex_state = 65}, - [2596] = {.lex_state = 65}, - [2597] = {.lex_state = 65}, - [2598] = {.lex_state = 65}, - [2599] = {.lex_state = 65}, - [2600] = {.lex_state = 65}, - [2601] = {.lex_state = 65}, - [2602] = {.lex_state = 65}, - [2603] = {.lex_state = 65}, - [2604] = {.lex_state = 65}, - [2605] = {.lex_state = 65}, - [2606] = {.lex_state = 65}, - [2607] = {.lex_state = 65}, - [2608] = {.lex_state = 65}, - [2609] = {.lex_state = 65}, - [2610] = {.lex_state = 65}, - [2611] = {.lex_state = 65}, - [2612] = {.lex_state = 65}, - [2613] = {.lex_state = 65}, - [2614] = {.lex_state = 65}, - [2615] = {.lex_state = 65}, - [2616] = {.lex_state = 65}, - [2617] = {.lex_state = 65}, - [2618] = {.lex_state = 65}, - [2619] = {.lex_state = 65}, - [2620] = {.lex_state = 65}, - [2621] = {.lex_state = 65}, - [2622] = {.lex_state = 65}, - [2623] = {.lex_state = 65}, - [2624] = {.lex_state = 65}, - [2625] = {.lex_state = 65}, - [2626] = {.lex_state = 65}, - [2627] = {.lex_state = 65}, - [2628] = {.lex_state = 65}, - [2629] = {.lex_state = 65}, - [2630] = {.lex_state = 65}, - [2631] = {.lex_state = 65}, - [2632] = {.lex_state = 65}, - [2633] = {.lex_state = 65}, - [2634] = {.lex_state = 65}, - [2635] = {.lex_state = 65}, - [2636] = {.lex_state = 65}, - [2637] = {.lex_state = 65}, - [2638] = {.lex_state = 65}, - [2639] = {.lex_state = 65}, - [2640] = {.lex_state = 65}, - [2641] = {.lex_state = 65}, - [2642] = {.lex_state = 65}, - [2643] = {.lex_state = 65}, - [2644] = {.lex_state = 65}, - [2645] = {.lex_state = 65}, - [2646] = {.lex_state = 65}, - [2647] = {.lex_state = 65}, - [2648] = {.lex_state = 65}, - [2649] = {.lex_state = 65}, - [2650] = {.lex_state = 65}, - [2651] = {.lex_state = 65}, - [2652] = {.lex_state = 65}, - [2653] = {.lex_state = 65}, - [2654] = {.lex_state = 65}, - [2655] = {.lex_state = 65}, - [2656] = {.lex_state = 65}, - [2657] = {.lex_state = 65}, - [2658] = {.lex_state = 65}, - [2659] = {.lex_state = 65}, - [2660] = {.lex_state = 65}, - [2661] = {.lex_state = 65, .external_lex_state = 12}, - [2662] = {.lex_state = 65}, - [2663] = {.lex_state = 65}, - [2664] = {.lex_state = 65}, - [2665] = {.lex_state = 65}, - [2666] = {.lex_state = 65}, - [2667] = {.lex_state = 65}, - [2668] = {.lex_state = 65}, - [2669] = {.lex_state = 65}, - [2670] = {.lex_state = 65}, - [2671] = {.lex_state = 65}, - [2672] = {.lex_state = 65}, - [2673] = {.lex_state = 65}, - [2674] = {.lex_state = 65}, - [2675] = {.lex_state = 65}, - [2676] = {.lex_state = 65}, - [2677] = {.lex_state = 65}, - [2678] = {.lex_state = 65}, - [2679] = {(TSStateId)(-1)}, - [2680] = {(TSStateId)(-1)}, + [1687] = {.lex_state = 63}, + [1688] = {.lex_state = 63, .external_lex_state = 2}, + [1689] = {.lex_state = 63}, + [1690] = {.lex_state = 63}, + [1691] = {.lex_state = 63}, + [1692] = {.lex_state = 63, .external_lex_state = 2}, + [1693] = {.lex_state = 63}, + [1694] = {.lex_state = 63, .external_lex_state = 2}, + [1695] = {.lex_state = 63, .external_lex_state = 2}, + [1696] = {.lex_state = 63}, + [1697] = {.lex_state = 63, .external_lex_state = 2}, + [1698] = {.lex_state = 63, .external_lex_state = 2}, + [1699] = {.lex_state = 63}, + [1700] = {.lex_state = 64}, + [1701] = {.lex_state = 65, .external_lex_state = 10}, + [1702] = {.lex_state = 63, .external_lex_state = 2}, + [1703] = {.lex_state = 63}, + [1704] = {.lex_state = 63}, + [1705] = {.lex_state = 63}, + [1706] = {.lex_state = 63}, + [1707] = {.lex_state = 63}, + [1708] = {.lex_state = 63}, + [1709] = {.lex_state = 64}, + [1710] = {.lex_state = 63, .external_lex_state = 2}, + [1711] = {.lex_state = 63, .external_lex_state = 2}, + [1712] = {.lex_state = 63}, + [1713] = {.lex_state = 63}, + [1714] = {.lex_state = 63}, + [1715] = {.lex_state = 63, .external_lex_state = 2}, + [1716] = {.lex_state = 63}, + [1717] = {.lex_state = 63, .external_lex_state = 2}, + [1718] = {.lex_state = 63, .external_lex_state = 2}, + [1719] = {.lex_state = 65, .external_lex_state = 10}, + [1720] = {.lex_state = 63, .external_lex_state = 2}, + [1721] = {.lex_state = 63, .external_lex_state = 2}, + [1722] = {.lex_state = 63, .external_lex_state = 2}, + [1723] = {.lex_state = 63, .external_lex_state = 2}, + [1724] = {.lex_state = 63, .external_lex_state = 2}, + [1725] = {.lex_state = 63}, + [1726] = {.lex_state = 64}, + [1727] = {.lex_state = 63}, + [1728] = {.lex_state = 63}, + [1729] = {.lex_state = 63, .external_lex_state = 2}, + [1730] = {.lex_state = 63, .external_lex_state = 2}, + [1731] = {.lex_state = 63}, + [1732] = {.lex_state = 64}, + [1733] = {.lex_state = 63}, + [1734] = {.lex_state = 63}, + [1735] = {.lex_state = 63}, + [1736] = {.lex_state = 63, .external_lex_state = 2}, + [1737] = {.lex_state = 63}, + [1738] = {.lex_state = 63}, + [1739] = {.lex_state = 63}, + [1740] = {.lex_state = 63}, + [1741] = {.lex_state = 63}, + [1742] = {.lex_state = 63, .external_lex_state = 2}, + [1743] = {.lex_state = 63}, + [1744] = {.lex_state = 63, .external_lex_state = 2}, + [1745] = {.lex_state = 63}, + [1746] = {.lex_state = 63}, + [1747] = {.lex_state = 64}, + [1748] = {.lex_state = 63}, + [1749] = {.lex_state = 63, .external_lex_state = 2}, + [1750] = {.lex_state = 63, .external_lex_state = 2}, + [1751] = {.lex_state = 64}, + [1752] = {.lex_state = 63}, + [1753] = {.lex_state = 64}, + [1754] = {.lex_state = 63, .external_lex_state = 2}, + [1755] = {.lex_state = 63, .external_lex_state = 2}, + [1756] = {.lex_state = 63}, + [1757] = {.lex_state = 63, .external_lex_state = 2}, + [1758] = {.lex_state = 63}, + [1759] = {.lex_state = 63, .external_lex_state = 2}, + [1760] = {.lex_state = 63}, + [1761] = {.lex_state = 63, .external_lex_state = 2}, + [1762] = {.lex_state = 63, .external_lex_state = 2}, + [1763] = {.lex_state = 63, .external_lex_state = 2}, + [1764] = {.lex_state = 63}, + [1765] = {.lex_state = 63}, + [1766] = {.lex_state = 63}, + [1767] = {.lex_state = 63, .external_lex_state = 2}, + [1768] = {.lex_state = 63}, + [1769] = {.lex_state = 63}, + [1770] = {.lex_state = 63}, + [1771] = {.lex_state = 63}, + [1772] = {.lex_state = 63}, + [1773] = {.lex_state = 63, .external_lex_state = 2}, + [1774] = {.lex_state = 63, .external_lex_state = 2}, + [1775] = {.lex_state = 63}, + [1776] = {.lex_state = 63}, + [1777] = {.lex_state = 63, .external_lex_state = 2}, + [1778] = {.lex_state = 63}, + [1779] = {.lex_state = 3, .external_lex_state = 11}, + [1780] = {.lex_state = 63}, + [1781] = {.lex_state = 63}, + [1782] = {.lex_state = 63, .external_lex_state = 2}, + [1783] = {.lex_state = 63, .external_lex_state = 2}, + [1784] = {.lex_state = 63}, + [1785] = {.lex_state = 63}, + [1786] = {.lex_state = 63}, + [1787] = {.lex_state = 63, .external_lex_state = 2}, + [1788] = {.lex_state = 63, .external_lex_state = 2}, + [1789] = {.lex_state = 18}, + [1790] = {.lex_state = 63}, + [1791] = {.lex_state = 63, .external_lex_state = 2}, + [1792] = {.lex_state = 63}, + [1793] = {.lex_state = 63}, + [1794] = {.lex_state = 63, .external_lex_state = 2}, + [1795] = {.lex_state = 63}, + [1796] = {.lex_state = 63, .external_lex_state = 2}, + [1797] = {.lex_state = 63}, + [1798] = {.lex_state = 63}, + [1799] = {.lex_state = 63}, + [1800] = {.lex_state = 63}, + [1801] = {.lex_state = 63, .external_lex_state = 2}, + [1802] = {.lex_state = 63, .external_lex_state = 2}, + [1803] = {.lex_state = 63, .external_lex_state = 2}, + [1804] = {.lex_state = 63, .external_lex_state = 2}, + [1805] = {.lex_state = 63}, + [1806] = {.lex_state = 63, .external_lex_state = 2}, + [1807] = {.lex_state = 65, .external_lex_state = 10}, + [1808] = {.lex_state = 63}, + [1809] = {.lex_state = 63}, + [1810] = {.lex_state = 63, .external_lex_state = 2}, + [1811] = {.lex_state = 18}, + [1812] = {.lex_state = 63, .external_lex_state = 2}, + [1813] = {.lex_state = 18}, + [1814] = {.lex_state = 63, .external_lex_state = 2}, + [1815] = {.lex_state = 63, .external_lex_state = 2}, + [1816] = {.lex_state = 63, .external_lex_state = 2}, + [1817] = {.lex_state = 63, .external_lex_state = 2}, + [1818] = {.lex_state = 63}, + [1819] = {.lex_state = 63, .external_lex_state = 2}, + [1820] = {.lex_state = 63, .external_lex_state = 2}, + [1821] = {.lex_state = 63}, + [1822] = {.lex_state = 63, .external_lex_state = 2}, + [1823] = {.lex_state = 63}, + [1824] = {.lex_state = 63, .external_lex_state = 2}, + [1825] = {.lex_state = 63}, + [1826] = {.lex_state = 63}, + [1827] = {.lex_state = 63}, + [1828] = {.lex_state = 63}, + [1829] = {.lex_state = 63, .external_lex_state = 2}, + [1830] = {.lex_state = 63, .external_lex_state = 2}, + [1831] = {.lex_state = 63}, + [1832] = {.lex_state = 63, .external_lex_state = 2}, + [1833] = {.lex_state = 63, .external_lex_state = 2}, + [1834] = {.lex_state = 64}, + [1835] = {.lex_state = 63, .external_lex_state = 2}, + [1836] = {.lex_state = 63, .external_lex_state = 2}, + [1837] = {.lex_state = 63, .external_lex_state = 2}, + [1838] = {.lex_state = 63}, + [1839] = {.lex_state = 63}, + [1840] = {.lex_state = 63}, + [1841] = {.lex_state = 63, .external_lex_state = 2}, + [1842] = {.lex_state = 63}, + [1843] = {.lex_state = 63}, + [1844] = {.lex_state = 63}, + [1845] = {.lex_state = 63}, + [1846] = {.lex_state = 63}, + [1847] = {.lex_state = 63}, + [1848] = {.lex_state = 63}, + [1849] = {.lex_state = 63, .external_lex_state = 2}, + [1850] = {.lex_state = 63}, + [1851] = {.lex_state = 63}, + [1852] = {.lex_state = 63}, + [1853] = {.lex_state = 18}, + [1854] = {.lex_state = 63}, + [1855] = {.lex_state = 63}, + [1856] = {.lex_state = 63}, + [1857] = {.lex_state = 63}, + [1858] = {.lex_state = 63, .external_lex_state = 2}, + [1859] = {.lex_state = 63}, + [1860] = {.lex_state = 63, .external_lex_state = 2}, + [1861] = {.lex_state = 63}, + [1862] = {.lex_state = 63}, + [1863] = {.lex_state = 63}, + [1864] = {.lex_state = 63, .external_lex_state = 2}, + [1865] = {.lex_state = 63, .external_lex_state = 2}, + [1866] = {.lex_state = 18}, + [1867] = {.lex_state = 63}, + [1868] = {.lex_state = 63}, + [1869] = {.lex_state = 63}, + [1870] = {.lex_state = 63}, + [1871] = {.lex_state = 63}, + [1872] = {.lex_state = 63}, + [1873] = {.lex_state = 63}, + [1874] = {.lex_state = 63}, + [1875] = {.lex_state = 63, .external_lex_state = 2}, + [1876] = {.lex_state = 63}, + [1877] = {.lex_state = 63, .external_lex_state = 2}, + [1878] = {.lex_state = 63, .external_lex_state = 2}, + [1879] = {.lex_state = 63, .external_lex_state = 2}, + [1880] = {.lex_state = 63}, + [1881] = {.lex_state = 63, .external_lex_state = 2}, + [1882] = {.lex_state = 65}, + [1883] = {.lex_state = 63}, + [1884] = {.lex_state = 63, .external_lex_state = 2}, + [1885] = {.lex_state = 63, .external_lex_state = 2}, + [1886] = {.lex_state = 63, .external_lex_state = 2}, + [1887] = {.lex_state = 63}, + [1888] = {.lex_state = 63}, + [1889] = {.lex_state = 63, .external_lex_state = 2}, + [1890] = {.lex_state = 63, .external_lex_state = 2}, + [1891] = {.lex_state = 63, .external_lex_state = 2}, + [1892] = {.lex_state = 3, .external_lex_state = 11}, + [1893] = {.lex_state = 63, .external_lex_state = 2}, + [1894] = {.lex_state = 63}, + [1895] = {.lex_state = 63}, + [1896] = {.lex_state = 63, .external_lex_state = 2}, + [1897] = {.lex_state = 63, .external_lex_state = 2}, + [1898] = {.lex_state = 64}, + [1899] = {.lex_state = 63}, + [1900] = {.lex_state = 63}, + [1901] = {.lex_state = 63}, + [1902] = {.lex_state = 64}, + [1903] = {.lex_state = 63, .external_lex_state = 2}, + [1904] = {.lex_state = 63}, + [1905] = {.lex_state = 63}, + [1906] = {.lex_state = 63}, + [1907] = {.lex_state = 63}, + [1908] = {.lex_state = 63}, + [1909] = {.lex_state = 3, .external_lex_state = 12}, + [1910] = {.lex_state = 63}, + [1911] = {.lex_state = 63}, + [1912] = {.lex_state = 63}, + [1913] = {.lex_state = 63}, + [1914] = {.lex_state = 63}, + [1915] = {.lex_state = 63}, + [1916] = {.lex_state = 63}, + [1917] = {.lex_state = 63}, + [1918] = {.lex_state = 63}, + [1919] = {.lex_state = 63}, + [1920] = {.lex_state = 63}, + [1921] = {.lex_state = 63}, + [1922] = {.lex_state = 63}, + [1923] = {.lex_state = 63}, + [1924] = {.lex_state = 63}, + [1925] = {.lex_state = 63, .external_lex_state = 2}, + [1926] = {.lex_state = 18}, + [1927] = {.lex_state = 3, .external_lex_state = 12}, + [1928] = {.lex_state = 63}, + [1929] = {.lex_state = 63}, + [1930] = {.lex_state = 63, .external_lex_state = 2}, + [1931] = {.lex_state = 63}, + [1932] = {.lex_state = 63}, + [1933] = {.lex_state = 64}, + [1934] = {.lex_state = 63}, + [1935] = {.lex_state = 63}, + [1936] = {.lex_state = 63}, + [1937] = {.lex_state = 63}, + [1938] = {.lex_state = 63}, + [1939] = {.lex_state = 63}, + [1940] = {.lex_state = 63}, + [1941] = {.lex_state = 63}, + [1942] = {.lex_state = 63}, + [1943] = {.lex_state = 63}, + [1944] = {.lex_state = 63}, + [1945] = {.lex_state = 63}, + [1946] = {.lex_state = 63}, + [1947] = {.lex_state = 63}, + [1948] = {.lex_state = 63}, + [1949] = {.lex_state = 63}, + [1950] = {.lex_state = 63}, + [1951] = {.lex_state = 63}, + [1952] = {.lex_state = 63}, + [1953] = {.lex_state = 63}, + [1954] = {.lex_state = 63}, + [1955] = {.lex_state = 63}, + [1956] = {.lex_state = 63}, + [1957] = {.lex_state = 63, .external_lex_state = 13}, + [1958] = {.lex_state = 63}, + [1959] = {.lex_state = 63}, + [1960] = {.lex_state = 63}, + [1961] = {.lex_state = 63}, + [1962] = {.lex_state = 3, .external_lex_state = 12}, + [1963] = {.lex_state = 3, .external_lex_state = 12}, + [1964] = {.lex_state = 63}, + [1965] = {.lex_state = 63}, + [1966] = {.lex_state = 63}, + [1967] = {.lex_state = 63}, + [1968] = {.lex_state = 63}, + [1969] = {.lex_state = 63}, + [1970] = {.lex_state = 63}, + [1971] = {.lex_state = 63}, + [1972] = {.lex_state = 63}, + [1973] = {.lex_state = 63}, + [1974] = {.lex_state = 63}, + [1975] = {.lex_state = 63}, + [1976] = {.lex_state = 63}, + [1977] = {.lex_state = 63}, + [1978] = {.lex_state = 63}, + [1979] = {.lex_state = 63}, + [1980] = {.lex_state = 63}, + [1981] = {.lex_state = 63}, + [1982] = {.lex_state = 63}, + [1983] = {.lex_state = 63}, + [1984] = {.lex_state = 63}, + [1985] = {.lex_state = 63}, + [1986] = {.lex_state = 63}, + [1987] = {.lex_state = 63}, + [1988] = {.lex_state = 63}, + [1989] = {.lex_state = 63}, + [1990] = {.lex_state = 63}, + [1991] = {.lex_state = 63}, + [1992] = {.lex_state = 63}, + [1993] = {.lex_state = 63}, + [1994] = {.lex_state = 63}, + [1995] = {.lex_state = 63}, + [1996] = {.lex_state = 63}, + [1997] = {.lex_state = 63}, + [1998] = {.lex_state = 63}, + [1999] = {.lex_state = 63}, + [2000] = {.lex_state = 63}, + [2001] = {.lex_state = 63}, + [2002] = {.lex_state = 63}, + [2003] = {.lex_state = 63}, + [2004] = {.lex_state = 63}, + [2005] = {.lex_state = 63}, + [2006] = {.lex_state = 63}, + [2007] = {.lex_state = 63}, + [2008] = {.lex_state = 63}, + [2009] = {.lex_state = 63}, + [2010] = {.lex_state = 63}, + [2011] = {.lex_state = 63}, + [2012] = {.lex_state = 63}, + [2013] = {.lex_state = 63}, + [2014] = {.lex_state = 63}, + [2015] = {.lex_state = 63}, + [2016] = {.lex_state = 63}, + [2017] = {.lex_state = 63, .external_lex_state = 2}, + [2018] = {.lex_state = 63}, + [2019] = {.lex_state = 63}, + [2020] = {.lex_state = 63}, + [2021] = {.lex_state = 63}, + [2022] = {.lex_state = 63}, + [2023] = {.lex_state = 63}, + [2024] = {.lex_state = 63}, + [2025] = {.lex_state = 63}, + [2026] = {.lex_state = 63}, + [2027] = {.lex_state = 63}, + [2028] = {.lex_state = 63}, + [2029] = {.lex_state = 63}, + [2030] = {.lex_state = 63}, + [2031] = {.lex_state = 63}, + [2032] = {.lex_state = 63}, + [2033] = {.lex_state = 63}, + [2034] = {.lex_state = 63, .external_lex_state = 2}, + [2035] = {.lex_state = 63, .external_lex_state = 2}, + [2036] = {.lex_state = 63}, + [2037] = {.lex_state = 63}, + [2038] = {.lex_state = 63}, + [2039] = {.lex_state = 63}, + [2040] = {.lex_state = 63}, + [2041] = {.lex_state = 63}, + [2042] = {.lex_state = 63}, + [2043] = {.lex_state = 63}, + [2044] = {.lex_state = 63}, + [2045] = {.lex_state = 63}, + [2046] = {.lex_state = 63}, + [2047] = {.lex_state = 63}, + [2048] = {.lex_state = 63}, + [2049] = {.lex_state = 63, .external_lex_state = 2}, + [2050] = {.lex_state = 63}, + [2051] = {.lex_state = 63}, + [2052] = {.lex_state = 63}, + [2053] = {.lex_state = 63}, + [2054] = {.lex_state = 63}, + [2055] = {.lex_state = 63}, + [2056] = {.lex_state = 63}, + [2057] = {.lex_state = 63}, + [2058] = {.lex_state = 63}, + [2059] = {.lex_state = 63, .external_lex_state = 2}, + [2060] = {.lex_state = 63}, + [2061] = {.lex_state = 63}, + [2062] = {.lex_state = 63, .external_lex_state = 2}, + [2063] = {.lex_state = 63, .external_lex_state = 2}, + [2064] = {.lex_state = 63}, + [2065] = {.lex_state = 63}, + [2066] = {.lex_state = 63}, + [2067] = {.lex_state = 63}, + [2068] = {.lex_state = 63}, + [2069] = {.lex_state = 64}, + [2070] = {.lex_state = 63}, + [2071] = {.lex_state = 63}, + [2072] = {.lex_state = 64}, + [2073] = {.lex_state = 63}, + [2074] = {.lex_state = 63}, + [2075] = {.lex_state = 63}, + [2076] = {.lex_state = 63}, + [2077] = {.lex_state = 63, .external_lex_state = 13}, + [2078] = {.lex_state = 63}, + [2079] = {.lex_state = 63}, + [2080] = {.lex_state = 63}, + [2081] = {.lex_state = 63, .external_lex_state = 2}, + [2082] = {.lex_state = 63}, + [2083] = {.lex_state = 63}, + [2084] = {.lex_state = 63, .external_lex_state = 2}, + [2085] = {.lex_state = 63}, + [2086] = {.lex_state = 63}, + [2087] = {.lex_state = 63, .external_lex_state = 2}, + [2088] = {.lex_state = 63}, + [2089] = {.lex_state = 63}, + [2090] = {.lex_state = 63}, + [2091] = {.lex_state = 63, .external_lex_state = 2}, + [2092] = {.lex_state = 63}, + [2093] = {.lex_state = 63}, + [2094] = {.lex_state = 63}, + [2095] = {.lex_state = 63}, + [2096] = {.lex_state = 63}, + [2097] = {.lex_state = 63}, + [2098] = {.lex_state = 63}, + [2099] = {.lex_state = 63}, + [2100] = {.lex_state = 63}, + [2101] = {.lex_state = 63}, + [2102] = {.lex_state = 63}, + [2103] = {.lex_state = 63}, + [2104] = {.lex_state = 63}, + [2105] = {.lex_state = 63}, + [2106] = {.lex_state = 63}, + [2107] = {.lex_state = 63}, + [2108] = {.lex_state = 63}, + [2109] = {.lex_state = 63}, + [2110] = {.lex_state = 63}, + [2111] = {.lex_state = 63, .external_lex_state = 2}, + [2112] = {.lex_state = 3, .external_lex_state = 12}, + [2113] = {.lex_state = 63, .external_lex_state = 2}, + [2114] = {.lex_state = 63}, + [2115] = {.lex_state = 63}, + [2116] = {.lex_state = 63}, + [2117] = {.lex_state = 63}, + [2118] = {.lex_state = 63}, + [2119] = {.lex_state = 63}, + [2120] = {.lex_state = 63}, + [2121] = {.lex_state = 3, .external_lex_state = 12}, + [2122] = {.lex_state = 63}, + [2123] = {.lex_state = 63}, + [2124] = {.lex_state = 63}, + [2125] = {.lex_state = 63}, + [2126] = {.lex_state = 3, .external_lex_state = 11}, + [2127] = {.lex_state = 63}, + [2128] = {.lex_state = 63}, + [2129] = {.lex_state = 63}, + [2130] = {.lex_state = 63}, + [2131] = {.lex_state = 63}, + [2132] = {.lex_state = 63}, + [2133] = {.lex_state = 63}, + [2134] = {.lex_state = 63}, + [2135] = {.lex_state = 64}, + [2136] = {.lex_state = 63}, + [2137] = {.lex_state = 63}, + [2138] = {.lex_state = 63}, + [2139] = {.lex_state = 63}, + [2140] = {.lex_state = 63}, + [2141] = {.lex_state = 63}, + [2142] = {.lex_state = 63}, + [2143] = {.lex_state = 63, .external_lex_state = 2}, + [2144] = {.lex_state = 63}, + [2145] = {.lex_state = 63, .external_lex_state = 2}, + [2146] = {.lex_state = 63}, + [2147] = {.lex_state = 63}, + [2148] = {.lex_state = 63}, + [2149] = {.lex_state = 63}, + [2150] = {.lex_state = 63}, + [2151] = {.lex_state = 63}, + [2152] = {.lex_state = 63}, + [2153] = {.lex_state = 63}, + [2154] = {.lex_state = 63}, + [2155] = {.lex_state = 63}, + [2156] = {.lex_state = 63}, + [2157] = {.lex_state = 63}, + [2158] = {.lex_state = 63}, + [2159] = {.lex_state = 63}, + [2160] = {.lex_state = 63}, + [2161] = {.lex_state = 63}, + [2162] = {.lex_state = 63}, + [2163] = {.lex_state = 63}, + [2164] = {.lex_state = 63, .external_lex_state = 2}, + [2165] = {.lex_state = 63}, + [2166] = {.lex_state = 63}, + [2167] = {.lex_state = 183, .external_lex_state = 14}, + [2168] = {.lex_state = 63}, + [2169] = {.lex_state = 63}, + [2170] = {.lex_state = 63}, + [2171] = {.lex_state = 63, .external_lex_state = 2}, + [2172] = {.lex_state = 64}, + [2173] = {.lex_state = 64, .external_lex_state = 10}, + [2174] = {.lex_state = 63}, + [2175] = {.lex_state = 63}, + [2176] = {.lex_state = 63}, + [2177] = {.lex_state = 63}, + [2178] = {.lex_state = 63}, + [2179] = {.lex_state = 63}, + [2180] = {.lex_state = 63}, + [2181] = {.lex_state = 63}, + [2182] = {.lex_state = 63}, + [2183] = {.lex_state = 63}, + [2184] = {.lex_state = 63, .external_lex_state = 2}, + [2185] = {.lex_state = 63, .external_lex_state = 2}, + [2186] = {.lex_state = 63, .external_lex_state = 2}, + [2187] = {.lex_state = 63, .external_lex_state = 2}, + [2188] = {.lex_state = 63, .external_lex_state = 2}, + [2189] = {.lex_state = 63, .external_lex_state = 2}, + [2190] = {.lex_state = 63}, + [2191] = {.lex_state = 63, .external_lex_state = 2}, + [2192] = {.lex_state = 63}, + [2193] = {.lex_state = 63, .external_lex_state = 2}, + [2194] = {.lex_state = 63}, + [2195] = {.lex_state = 63}, + [2196] = {.lex_state = 63}, + [2197] = {.lex_state = 63}, + [2198] = {.lex_state = 63}, + [2199] = {.lex_state = 63}, + [2200] = {.lex_state = 63}, + [2201] = {.lex_state = 63}, + [2202] = {.lex_state = 63}, + [2203] = {.lex_state = 63}, + [2204] = {.lex_state = 63}, + [2205] = {.lex_state = 63, .external_lex_state = 2}, + [2206] = {.lex_state = 63}, + [2207] = {.lex_state = 63, .external_lex_state = 2}, + [2208] = {.lex_state = 63}, + [2209] = {.lex_state = 63, .external_lex_state = 2}, + [2210] = {.lex_state = 63, .external_lex_state = 2}, + [2211] = {.lex_state = 63}, + [2212] = {.lex_state = 63}, + [2213] = {.lex_state = 63}, + [2214] = {.lex_state = 63}, + [2215] = {.lex_state = 63}, + [2216] = {.lex_state = 63}, + [2217] = {.lex_state = 63}, + [2218] = {.lex_state = 63}, + [2219] = {.lex_state = 63}, + [2220] = {.lex_state = 3, .external_lex_state = 12}, + [2221] = {.lex_state = 3, .external_lex_state = 12}, + [2222] = {.lex_state = 63}, + [2223] = {.lex_state = 63}, + [2224] = {.lex_state = 63}, + [2225] = {.lex_state = 63, .external_lex_state = 2}, + [2226] = {.lex_state = 63, .external_lex_state = 2}, + [2227] = {.lex_state = 63, .external_lex_state = 2}, + [2228] = {.lex_state = 63}, + [2229] = {.lex_state = 63, .external_lex_state = 2}, + [2230] = {.lex_state = 63}, + [2231] = {.lex_state = 63, .external_lex_state = 2}, + [2232] = {.lex_state = 63}, + [2233] = {.lex_state = 63, .external_lex_state = 2}, + [2234] = {.lex_state = 63}, + [2235] = {.lex_state = 63}, + [2236] = {.lex_state = 63}, + [2237] = {.lex_state = 63, .external_lex_state = 2}, + [2238] = {.lex_state = 63}, + [2239] = {.lex_state = 63, .external_lex_state = 2}, + [2240] = {.lex_state = 63}, + [2241] = {.lex_state = 63}, + [2242] = {.lex_state = 63}, + [2243] = {.lex_state = 63}, + [2244] = {.lex_state = 63}, + [2245] = {.lex_state = 63}, + [2246] = {.lex_state = 63}, + [2247] = {.lex_state = 63}, + [2248] = {.lex_state = 63}, + [2249] = {.lex_state = 63}, + [2250] = {.lex_state = 63}, + [2251] = {.lex_state = 63}, + [2252] = {.lex_state = 63}, + [2253] = {.lex_state = 63, .external_lex_state = 2}, + [2254] = {.lex_state = 63}, + [2255] = {.lex_state = 63, .external_lex_state = 2}, + [2256] = {.lex_state = 63}, + [2257] = {.lex_state = 63, .external_lex_state = 2}, + [2258] = {.lex_state = 63, .external_lex_state = 2}, + [2259] = {.lex_state = 63, .external_lex_state = 2}, + [2260] = {.lex_state = 63}, + [2261] = {.lex_state = 63, .external_lex_state = 2}, + [2262] = {.lex_state = 63}, + [2263] = {.lex_state = 63}, + [2264] = {.lex_state = 63}, + [2265] = {.lex_state = 63}, + [2266] = {.lex_state = 63}, + [2267] = {.lex_state = 63}, + [2268] = {.lex_state = 63}, + [2269] = {.lex_state = 3, .external_lex_state = 12}, + [2270] = {.lex_state = 63}, + [2271] = {.lex_state = 63}, + [2272] = {.lex_state = 63}, + [2273] = {.lex_state = 63}, + [2274] = {.lex_state = 63}, + [2275] = {.lex_state = 63}, + [2276] = {.lex_state = 63, .external_lex_state = 2}, + [2277] = {.lex_state = 63}, + [2278] = {.lex_state = 63}, + [2279] = {.lex_state = 63}, + [2280] = {.lex_state = 63}, + [2281] = {.lex_state = 63}, + [2282] = {.lex_state = 63}, + [2283] = {.lex_state = 63}, + [2284] = {.lex_state = 63}, + [2285] = {.lex_state = 63, .external_lex_state = 2}, + [2286] = {.lex_state = 63}, + [2287] = {.lex_state = 63}, + [2288] = {.lex_state = 63}, + [2289] = {.lex_state = 63}, + [2290] = {.lex_state = 63}, + [2291] = {.lex_state = 63}, + [2292] = {.lex_state = 63}, + [2293] = {.lex_state = 63}, + [2294] = {.lex_state = 3, .external_lex_state = 12}, + [2295] = {.lex_state = 63}, + [2296] = {.lex_state = 63}, + [2297] = {.lex_state = 63}, + [2298] = {.lex_state = 63, .external_lex_state = 2}, + [2299] = {.lex_state = 63, .external_lex_state = 2}, + [2300] = {.lex_state = 63}, + [2301] = {.lex_state = 63}, + [2302] = {.lex_state = 63}, + [2303] = {.lex_state = 63}, + [2304] = {.lex_state = 63}, + [2305] = {.lex_state = 63}, + [2306] = {.lex_state = 63}, + [2307] = {.lex_state = 63, .external_lex_state = 2}, + [2308] = {.lex_state = 63}, + [2309] = {.lex_state = 63}, + [2310] = {.lex_state = 63}, + [2311] = {.lex_state = 63}, + [2312] = {.lex_state = 63}, + [2313] = {.lex_state = 63}, + [2314] = {.lex_state = 63}, + [2315] = {.lex_state = 63}, + [2316] = {.lex_state = 63}, + [2317] = {.lex_state = 63, .external_lex_state = 2}, + [2318] = {.lex_state = 63}, + [2319] = {.lex_state = 63, .external_lex_state = 2}, + [2320] = {.lex_state = 63, .external_lex_state = 2}, + [2321] = {.lex_state = 63, .external_lex_state = 2}, + [2322] = {.lex_state = 63, .external_lex_state = 2}, + [2323] = {.lex_state = 63}, + [2324] = {.lex_state = 63, .external_lex_state = 2}, + [2325] = {.lex_state = 63}, + [2326] = {.lex_state = 63, .external_lex_state = 2}, + [2327] = {.lex_state = 63}, + [2328] = {.lex_state = 63}, + [2329] = {.lex_state = 63, .external_lex_state = 2}, + [2330] = {.lex_state = 63, .external_lex_state = 2}, + [2331] = {.lex_state = 63}, + [2332] = {.lex_state = 63, .external_lex_state = 2}, + [2333] = {.lex_state = 63}, + [2334] = {.lex_state = 63}, + [2335] = {.lex_state = 63}, + [2336] = {.lex_state = 63}, + [2337] = {.lex_state = 63}, + [2338] = {.lex_state = 63}, + [2339] = {.lex_state = 63}, + [2340] = {.lex_state = 63, .external_lex_state = 2}, + [2341] = {.lex_state = 63, .external_lex_state = 2}, + [2342] = {.lex_state = 63, .external_lex_state = 2}, + [2343] = {.lex_state = 63, .external_lex_state = 2}, + [2344] = {.lex_state = 63}, + [2345] = {.lex_state = 63, .external_lex_state = 2}, + [2346] = {.lex_state = 63, .external_lex_state = 2}, + [2347] = {.lex_state = 63, .external_lex_state = 2}, + [2348] = {.lex_state = 63}, + [2349] = {.lex_state = 63}, + [2350] = {.lex_state = 63}, + [2351] = {.lex_state = 63, .external_lex_state = 2}, + [2352] = {.lex_state = 63}, + [2353] = {.lex_state = 63}, + [2354] = {.lex_state = 63}, + [2355] = {.lex_state = 63, .external_lex_state = 2}, + [2356] = {.lex_state = 63}, + [2357] = {.lex_state = 63}, + [2358] = {.lex_state = 63}, + [2359] = {.lex_state = 63}, + [2360] = {.lex_state = 63}, + [2361] = {.lex_state = 63, .external_lex_state = 2}, + [2362] = {.lex_state = 3, .external_lex_state = 12}, + [2363] = {.lex_state = 63}, + [2364] = {.lex_state = 63}, + [2365] = {.lex_state = 63}, + [2366] = {.lex_state = 63}, + [2367] = {.lex_state = 63}, + [2368] = {.lex_state = 63, .external_lex_state = 2}, + [2369] = {.lex_state = 63}, + [2370] = {.lex_state = 63, .external_lex_state = 2}, + [2371] = {.lex_state = 63}, + [2372] = {.lex_state = 63, .external_lex_state = 2}, + [2373] = {.lex_state = 63}, + [2374] = {.lex_state = 63}, + [2375] = {.lex_state = 63}, + [2376] = {.lex_state = 63}, + [2377] = {.lex_state = 63}, + [2378] = {.lex_state = 63}, + [2379] = {.lex_state = 63}, + [2380] = {.lex_state = 63}, + [2381] = {.lex_state = 63, .external_lex_state = 2}, + [2382] = {.lex_state = 63}, + [2383] = {.lex_state = 63, .external_lex_state = 2}, + [2384] = {.lex_state = 63}, + [2385] = {.lex_state = 63}, + [2386] = {.lex_state = 63}, + [2387] = {.lex_state = 63}, + [2388] = {.lex_state = 63}, + [2389] = {.lex_state = 63}, + [2390] = {.lex_state = 63}, + [2391] = {.lex_state = 63}, + [2392] = {.lex_state = 63}, + [2393] = {.lex_state = 63}, + [2394] = {.lex_state = 63}, + [2395] = {.lex_state = 63}, + [2396] = {.lex_state = 63}, + [2397] = {.lex_state = 3, .external_lex_state = 12}, + [2398] = {.lex_state = 3, .external_lex_state = 12}, + [2399] = {.lex_state = 63, .external_lex_state = 2}, + [2400] = {.lex_state = 63}, + [2401] = {.lex_state = 63, .external_lex_state = 2}, + [2402] = {.lex_state = 63}, + [2403] = {.lex_state = 63}, + [2404] = {.lex_state = 63, .external_lex_state = 2}, + [2405] = {.lex_state = 63}, + [2406] = {.lex_state = 63, .external_lex_state = 2}, + [2407] = {.lex_state = 63}, + [2408] = {.lex_state = 63}, + [2409] = {.lex_state = 63}, + [2410] = {.lex_state = 63}, + [2411] = {.lex_state = 63}, + [2412] = {.lex_state = 63}, + [2413] = {.lex_state = 63}, + [2414] = {.lex_state = 63}, + [2415] = {.lex_state = 63}, + [2416] = {.lex_state = 63}, + [2417] = {.lex_state = 63}, + [2418] = {.lex_state = 63}, + [2419] = {.lex_state = 63}, + [2420] = {.lex_state = 63, .external_lex_state = 2}, + [2421] = {.lex_state = 63}, + [2422] = {.lex_state = 63}, + [2423] = {.lex_state = 63}, + [2424] = {.lex_state = 63}, + [2425] = {.lex_state = 63}, + [2426] = {.lex_state = 63}, + [2427] = {.lex_state = 63}, + [2428] = {.lex_state = 63}, + [2429] = {.lex_state = 63}, + [2430] = {.lex_state = 63}, + [2431] = {.lex_state = 63}, + [2432] = {.lex_state = 63}, + [2433] = {.lex_state = 63}, + [2434] = {.lex_state = 63}, + [2435] = {.lex_state = 63}, + [2436] = {.lex_state = 63}, + [2437] = {.lex_state = 63}, + [2438] = {.lex_state = 63}, + [2439] = {.lex_state = 63}, + [2440] = {.lex_state = 63}, + [2441] = {.lex_state = 63}, + [2442] = {.lex_state = 63}, + [2443] = {.lex_state = 63}, + [2444] = {.lex_state = 63}, + [2445] = {.lex_state = 63}, + [2446] = {.lex_state = 63}, + [2447] = {.lex_state = 63}, + [2448] = {.lex_state = 63}, + [2449] = {.lex_state = 63}, + [2450] = {.lex_state = 63}, + [2451] = {.lex_state = 63}, + [2452] = {.lex_state = 63}, + [2453] = {.lex_state = 63}, + [2454] = {.lex_state = 63}, + [2455] = {.lex_state = 63}, + [2456] = {.lex_state = 63}, + [2457] = {.lex_state = 63, .external_lex_state = 12}, + [2458] = {.lex_state = 63}, + [2459] = {.lex_state = 63}, + [2460] = {.lex_state = 63}, + [2461] = {.lex_state = 63}, + [2462] = {.lex_state = 63}, + [2463] = {.lex_state = 63}, + [2464] = {.lex_state = 63}, + [2465] = {.lex_state = 63}, + [2466] = {.lex_state = 63}, + [2467] = {.lex_state = 63}, + [2468] = {.lex_state = 63}, + [2469] = {.lex_state = 63}, + [2470] = {.lex_state = 63}, + [2471] = {.lex_state = 63}, + [2472] = {.lex_state = 63}, + [2473] = {.lex_state = 63}, + [2474] = {.lex_state = 63}, + [2475] = {.lex_state = 63}, + [2476] = {.lex_state = 63, .external_lex_state = 12}, + [2477] = {.lex_state = 63, .external_lex_state = 12}, + [2478] = {.lex_state = 63}, + [2479] = {.lex_state = 63}, + [2480] = {.lex_state = 63}, + [2481] = {.lex_state = 63}, + [2482] = {.lex_state = 63}, + [2483] = {.lex_state = 63}, + [2484] = {.lex_state = 63}, + [2485] = {.lex_state = 63}, + [2486] = {.lex_state = 63}, + [2487] = {.lex_state = 63}, + [2488] = {.lex_state = 63}, + [2489] = {.lex_state = 63}, + [2490] = {.lex_state = 63}, + [2491] = {.lex_state = 63}, + [2492] = {.lex_state = 63}, + [2493] = {.lex_state = 63}, + [2494] = {.lex_state = 63}, + [2495] = {.lex_state = 63}, + [2496] = {.lex_state = 63}, + [2497] = {.lex_state = 63}, + [2498] = {.lex_state = 63}, + [2499] = {.lex_state = 63}, + [2500] = {.lex_state = 63}, + [2501] = {.lex_state = 63}, + [2502] = {.lex_state = 63}, + [2503] = {.lex_state = 63}, + [2504] = {.lex_state = 63}, + [2505] = {.lex_state = 63}, + [2506] = {.lex_state = 63}, + [2507] = {.lex_state = 63}, + [2508] = {.lex_state = 63}, + [2509] = {.lex_state = 8}, + [2510] = {.lex_state = 8}, + [2511] = {.lex_state = 63}, + [2512] = {.lex_state = 63}, + [2513] = {.lex_state = 63}, + [2514] = {.lex_state = 63}, + [2515] = {.lex_state = 63}, + [2516] = {.lex_state = 63}, + [2517] = {.lex_state = 8}, + [2518] = {.lex_state = 63}, + [2519] = {.lex_state = 63}, + [2520] = {.lex_state = 63}, + [2521] = {.lex_state = 63}, + [2522] = {.lex_state = 8}, + [2523] = {.lex_state = 63}, + [2524] = {.lex_state = 63}, + [2525] = {.lex_state = 63}, + [2526] = {.lex_state = 63}, + [2527] = {.lex_state = 63}, + [2528] = {.lex_state = 63}, + [2529] = {.lex_state = 63}, + [2530] = {.lex_state = 63}, + [2531] = {.lex_state = 63}, + [2532] = {.lex_state = 63}, + [2533] = {.lex_state = 63}, + [2534] = {.lex_state = 63}, + [2535] = {.lex_state = 63}, + [2536] = {.lex_state = 63}, + [2537] = {.lex_state = 63}, + [2538] = {.lex_state = 63}, + [2539] = {.lex_state = 63}, + [2540] = {.lex_state = 63}, + [2541] = {.lex_state = 63}, + [2542] = {.lex_state = 63}, + [2543] = {.lex_state = 63}, + [2544] = {.lex_state = 63}, + [2545] = {.lex_state = 63}, + [2546] = {.lex_state = 63}, + [2547] = {.lex_state = 63}, + [2548] = {.lex_state = 63}, + [2549] = {.lex_state = 63}, + [2550] = {.lex_state = 63}, + [2551] = {.lex_state = 63}, + [2552] = {.lex_state = 63, .external_lex_state = 13}, + [2553] = {.lex_state = 63, .external_lex_state = 13}, + [2554] = {.lex_state = 63}, + [2555] = {.lex_state = 63}, + [2556] = {.lex_state = 63}, + [2557] = {.lex_state = 63}, + [2558] = {.lex_state = 63}, + [2559] = {.lex_state = 63}, + [2560] = {.lex_state = 63}, + [2561] = {.lex_state = 63}, + [2562] = {.lex_state = 63}, + [2563] = {.lex_state = 63}, + [2564] = {.lex_state = 63}, + [2565] = {.lex_state = 63, .external_lex_state = 12}, + [2566] = {.lex_state = 63}, + [2567] = {.lex_state = 63, .external_lex_state = 13}, + [2568] = {.lex_state = 63}, + [2569] = {.lex_state = 63, .external_lex_state = 13}, + [2570] = {.lex_state = 63}, + [2571] = {.lex_state = 63}, + [2572] = {.lex_state = 63}, + [2573] = {.lex_state = 63}, + [2574] = {.lex_state = 63}, + [2575] = {.lex_state = 63}, + [2576] = {.lex_state = 63}, + [2577] = {.lex_state = 63}, + [2578] = {.lex_state = 63}, + [2579] = {.lex_state = 63}, + [2580] = {.lex_state = 63}, + [2581] = {.lex_state = 63}, + [2582] = {.lex_state = 63}, + [2583] = {.lex_state = 63}, + [2584] = {.lex_state = 63}, + [2585] = {.lex_state = 63}, + [2586] = {.lex_state = 63}, + [2587] = {.lex_state = 63}, + [2588] = {.lex_state = 63}, + [2589] = {.lex_state = 63}, + [2590] = {.lex_state = 63}, + [2591] = {.lex_state = 63, .external_lex_state = 12}, + [2592] = {.lex_state = 63}, + [2593] = {.lex_state = 63, .external_lex_state = 12}, + [2594] = {.lex_state = 63}, + [2595] = {.lex_state = 63}, + [2596] = {.lex_state = 63}, + [2597] = {.lex_state = 63}, + [2598] = {.lex_state = 63}, + [2599] = {.lex_state = 63}, + [2600] = {.lex_state = 63}, + [2601] = {.lex_state = 63}, + [2602] = {.lex_state = 63}, + [2603] = {.lex_state = 63}, + [2604] = {.lex_state = 63}, + [2605] = {.lex_state = 63}, + [2606] = {.lex_state = 63}, + [2607] = {.lex_state = 63}, + [2608] = {.lex_state = 63}, + [2609] = {.lex_state = 63}, + [2610] = {.lex_state = 63}, + [2611] = {.lex_state = 63}, + [2612] = {.lex_state = 63}, + [2613] = {.lex_state = 63}, + [2614] = {.lex_state = 63}, + [2615] = {.lex_state = 63}, + [2616] = {.lex_state = 63}, + [2617] = {.lex_state = 63}, + [2618] = {.lex_state = 63}, + [2619] = {.lex_state = 63}, + [2620] = {.lex_state = 63}, + [2621] = {.lex_state = 63}, + [2622] = {.lex_state = 63}, + [2623] = {.lex_state = 63}, + [2624] = {.lex_state = 63}, + [2625] = {.lex_state = 63}, + [2626] = {.lex_state = 63}, + [2627] = {.lex_state = 63}, + [2628] = {.lex_state = 63}, + [2629] = {.lex_state = 63}, + [2630] = {.lex_state = 63}, + [2631] = {.lex_state = 63}, + [2632] = {.lex_state = 63}, + [2633] = {.lex_state = 63}, + [2634] = {.lex_state = 63}, + [2635] = {.lex_state = 63}, + [2636] = {.lex_state = 63}, + [2637] = {.lex_state = 63}, + [2638] = {.lex_state = 63}, + [2639] = {.lex_state = 63}, + [2640] = {.lex_state = 63}, + [2641] = {.lex_state = 63}, + [2642] = {.lex_state = 63}, + [2643] = {.lex_state = 63}, + [2644] = {(TSStateId)(-1)}, + [2645] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -13170,10 +13023,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_sentinel_error] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(2675), + [sym_program] = STATE(2590), [sym_text_interpolation] = STATE(1), - [sym_text] = STATE(2190), - [aux_sym_text_repeat1] = STATE(1656), + [sym_text] = STATE(2172), + [aux_sym_text_repeat1] = STATE(1686), [ts_builtin_sym_end] = ACTIONS(7), [sym_php_tag] = ACTIONS(9), [anon_sym_QMARK_GT] = ACTIONS(11), @@ -13183,103 +13036,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [2] = { [sym_text_interpolation] = STATE(2), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(975), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), [ts_builtin_sym_end] = ACTIONS(17), [sym_name] = ACTIONS(19), [anon_sym_QMARK_GT] = ACTIONS(3), @@ -13301,876 +13158,1444 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_final_modifier_token1] = ACTIONS(63), [aux_sym_abstract_modifier_token1] = ACTIONS(66), [aux_sym_readonly_modifier_token1] = ACTIONS(69), - [aux_sym_visibility_modifier_token1] = ACTIONS(72), - [aux_sym_visibility_modifier_token2] = ACTIONS(72), - [aux_sym_visibility_modifier_token3] = ACTIONS(72), - [aux_sym__arrow_function_header_token1] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(78), - [aux_sym_cast_type_token1] = ACTIONS(81), - [aux_sym_echo_statement_token1] = ACTIONS(84), - [aux_sym_exit_statement_token1] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(90), - [aux_sym_declare_statement_token1] = ACTIONS(93), + [sym_var_modifier] = ACTIONS(72), + [aux_sym_visibility_modifier_token1] = ACTIONS(75), + [aux_sym_visibility_modifier_token2] = ACTIONS(75), + [aux_sym_visibility_modifier_token3] = ACTIONS(75), + [aux_sym__arrow_function_header_token1] = ACTIONS(78), + [anon_sym_LPAREN] = ACTIONS(81), + [aux_sym_cast_type_token1] = ACTIONS(84), + [aux_sym_echo_statement_token1] = ACTIONS(87), + [aux_sym_exit_statement_token1] = ACTIONS(90), + [anon_sym_unset] = ACTIONS(93), + [aux_sym_declare_statement_token1] = ACTIONS(96), [aux_sym_declare_statement_token2] = ACTIONS(58), - [sym_float] = ACTIONS(96), - [aux_sym_try_statement_token1] = ACTIONS(99), - [aux_sym_goto_statement_token1] = ACTIONS(102), - [aux_sym_continue_statement_token1] = ACTIONS(105), - [aux_sym_break_statement_token1] = ACTIONS(108), - [sym_integer] = ACTIONS(96), - [aux_sym_return_statement_token1] = ACTIONS(111), - [aux_sym_throw_expression_token1] = ACTIONS(114), - [aux_sym_while_statement_token1] = ACTIONS(117), + [sym_float] = ACTIONS(99), + [aux_sym_try_statement_token1] = ACTIONS(102), + [aux_sym_goto_statement_token1] = ACTIONS(105), + [aux_sym_continue_statement_token1] = ACTIONS(108), + [aux_sym_break_statement_token1] = ACTIONS(111), + [sym_integer] = ACTIONS(99), + [aux_sym_return_statement_token1] = ACTIONS(114), + [aux_sym_throw_expression_token1] = ACTIONS(117), + [aux_sym_while_statement_token1] = ACTIONS(120), [aux_sym_while_statement_token2] = ACTIONS(58), - [aux_sym_do_statement_token1] = ACTIONS(120), - [aux_sym_for_statement_token1] = ACTIONS(123), + [aux_sym_do_statement_token1] = ACTIONS(123), + [aux_sym_for_statement_token1] = ACTIONS(126), [aux_sym_for_statement_token2] = ACTIONS(58), - [aux_sym_foreach_statement_token1] = ACTIONS(126), + [aux_sym_foreach_statement_token1] = ACTIONS(129), [aux_sym_foreach_statement_token2] = ACTIONS(58), - [aux_sym_if_statement_token1] = ACTIONS(129), + [aux_sym_if_statement_token1] = ACTIONS(132), [aux_sym_if_statement_token2] = ACTIONS(58), - [aux_sym_match_expression_token1] = ACTIONS(132), + [aux_sym_match_expression_token1] = ACTIONS(135), [aux_sym_match_default_expression_token1] = ACTIONS(58), - [aux_sym_switch_statement_token1] = ACTIONS(135), + [aux_sym_switch_statement_token1] = ACTIONS(138), [aux_sym_switch_block_token1] = ACTIONS(58), - [anon_sym_PLUS] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_TILDE] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_AT] = ACTIONS(144), - [aux_sym_clone_expression_token1] = ACTIONS(147), - [aux_sym_print_intrinsic_token1] = ACTIONS(150), - [aux_sym_object_creation_expression_token1] = ACTIONS(153), - [anon_sym_DASH_DASH] = ACTIONS(156), - [anon_sym_PLUS_PLUS] = ACTIONS(156), - [aux_sym__list_destructing_token1] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_self] = ACTIONS(165), - [anon_sym_parent] = ACTIONS(165), - [aux_sym__argument_name_token1] = ACTIONS(168), - [aux_sym__argument_name_token2] = ACTIONS(171), - [anon_sym_POUND_LBRACK] = ACTIONS(174), - [aux_sym_encapsed_string_token1] = ACTIONS(177), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_string_token1] = ACTIONS(180), - [anon_sym_SQUOTE] = ACTIONS(180), - [anon_sym_LT_LT_LT] = ACTIONS(183), - [anon_sym_BQUOTE] = ACTIONS(186), - [anon_sym_DOLLAR] = ACTIONS(189), - [aux_sym_yield_expression_token1] = ACTIONS(192), - [aux_sym_include_expression_token1] = ACTIONS(195), - [aux_sym_include_once_expression_token1] = ACTIONS(198), - [aux_sym_require_expression_token1] = ACTIONS(201), - [aux_sym_require_once_expression_token1] = ACTIONS(204), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_TILDE] = ACTIONS(144), + [anon_sym_BANG] = ACTIONS(144), + [anon_sym_AT] = ACTIONS(147), + [aux_sym_clone_expression_token1] = ACTIONS(150), + [aux_sym_print_intrinsic_token1] = ACTIONS(153), + [aux_sym_object_creation_expression_token1] = ACTIONS(156), + [anon_sym_DASH_DASH] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [aux_sym__list_destructing_token1] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(165), + [anon_sym_self] = ACTIONS(168), + [anon_sym_parent] = ACTIONS(168), + [aux_sym__argument_name_token1] = ACTIONS(171), + [aux_sym__argument_name_token2] = ACTIONS(174), + [anon_sym_POUND_LBRACK] = ACTIONS(177), + [aux_sym_encapsed_string_token1] = ACTIONS(180), + [anon_sym_DQUOTE] = ACTIONS(180), + [aux_sym_string_token1] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_LT_LT_LT] = ACTIONS(186), + [anon_sym_BQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(192), + [aux_sym_yield_expression_token1] = ACTIONS(195), + [aux_sym_include_expression_token1] = ACTIONS(198), + [aux_sym_include_once_expression_token1] = ACTIONS(201), + [aux_sym_require_expression_token1] = ACTIONS(204), + [aux_sym_require_once_expression_token1] = ACTIONS(207), [sym_comment] = ACTIONS(5), }, [3] = { [sym_text_interpolation] = STATE(3), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(5), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_RBRACE] = ACTIONS(227), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_enum_case_token1] = ACTIONS(235), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_match_default_expression_token1] = ACTIONS(235), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [aux_sym_switch_block_token1] = ACTIONS(235), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(4), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(230), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_enum_case_token1] = ACTIONS(238), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_match_default_expression_token1] = ACTIONS(238), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [aux_sym_switch_block_token1] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [4] = { [sym_text_interpolation] = STATE(4), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(6), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_RBRACE] = ACTIONS(335), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_enum_case_token1] = ACTIONS(337), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_match_default_expression_token1] = ACTIONS(337), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [aux_sym_switch_block_token1] = ACTIONS(337), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(340), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_enum_case_token1] = ACTIONS(342), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_match_default_expression_token1] = ACTIONS(342), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [aux_sym_switch_block_token1] = ACTIONS(342), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [5] = { [sym_text_interpolation] = STATE(5), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_RBRACE] = ACTIONS(339), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_enum_case_token1] = ACTIONS(341), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_match_default_expression_token1] = ACTIONS(341), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [aux_sym_switch_block_token1] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(6), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(344), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_enum_case_token1] = ACTIONS(346), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_match_default_expression_token1] = ACTIONS(346), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [aux_sym_switch_block_token1] = ACTIONS(346), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [6] = { [sym_text_interpolation] = STATE(6), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_RBRACE] = ACTIONS(343), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_enum_case_token1] = ACTIONS(345), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_match_default_expression_token1] = ACTIONS(345), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [aux_sym_switch_block_token1] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(348), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_enum_case_token1] = ACTIONS(350), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_match_default_expression_token1] = ACTIONS(350), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [aux_sym_switch_block_token1] = ACTIONS(350), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [7] = { [sym_text_interpolation] = STATE(7), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_if_statement_token2] = ACTIONS(362), + [aux_sym_else_if_clause_token1] = ACTIONS(362), + [aux_sym_else_clause_token1] = ACTIONS(362), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + }, + [8] = { + [sym_text_interpolation] = STATE(8), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_while_statement_token2] = ACTIONS(364), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_foreach_statement_token2] = ACTIONS(364), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_if_statement_token2] = ACTIONS(364), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + }, + [9] = { + [sym_text_interpolation] = STATE(9), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_attribute_list_repeat1] = STATE(975), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_if_statement_token2] = ACTIONS(364), + [aux_sym_else_if_clause_token1] = ACTIONS(364), + [aux_sym_else_clause_token1] = ACTIONS(364), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + }, + [10] = { + [sym_text_interpolation] = STATE(10), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), [sym_name] = ACTIONS(19), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(22), @@ -14189,51189 +14614,51313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_final_modifier_token1] = ACTIONS(63), [aux_sym_abstract_modifier_token1] = ACTIONS(66), [aux_sym_readonly_modifier_token1] = ACTIONS(69), - [aux_sym_visibility_modifier_token1] = ACTIONS(72), - [aux_sym_visibility_modifier_token2] = ACTIONS(72), - [aux_sym_visibility_modifier_token3] = ACTIONS(72), - [aux_sym__arrow_function_header_token1] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(78), - [aux_sym_cast_type_token1] = ACTIONS(81), - [aux_sym_echo_statement_token1] = ACTIONS(84), - [aux_sym_exit_statement_token1] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(90), - [aux_sym_declare_statement_token1] = ACTIONS(347), - [sym_float] = ACTIONS(96), - [aux_sym_try_statement_token1] = ACTIONS(99), - [aux_sym_goto_statement_token1] = ACTIONS(102), - [aux_sym_continue_statement_token1] = ACTIONS(105), - [aux_sym_break_statement_token1] = ACTIONS(108), - [sym_integer] = ACTIONS(96), - [aux_sym_return_statement_token1] = ACTIONS(111), - [aux_sym_throw_expression_token1] = ACTIONS(114), - [aux_sym_while_statement_token1] = ACTIONS(350), - [aux_sym_do_statement_token1] = ACTIONS(120), - [aux_sym_for_statement_token1] = ACTIONS(353), - [aux_sym_foreach_statement_token1] = ACTIONS(356), - [aux_sym_if_statement_token1] = ACTIONS(359), + [sym_var_modifier] = ACTIONS(72), + [aux_sym_visibility_modifier_token1] = ACTIONS(75), + [aux_sym_visibility_modifier_token2] = ACTIONS(75), + [aux_sym_visibility_modifier_token3] = ACTIONS(75), + [aux_sym__arrow_function_header_token1] = ACTIONS(78), + [anon_sym_LPAREN] = ACTIONS(81), + [aux_sym_cast_type_token1] = ACTIONS(84), + [aux_sym_echo_statement_token1] = ACTIONS(87), + [aux_sym_exit_statement_token1] = ACTIONS(90), + [anon_sym_unset] = ACTIONS(93), + [aux_sym_declare_statement_token1] = ACTIONS(366), + [sym_float] = ACTIONS(99), + [aux_sym_try_statement_token1] = ACTIONS(102), + [aux_sym_goto_statement_token1] = ACTIONS(105), + [aux_sym_continue_statement_token1] = ACTIONS(108), + [aux_sym_break_statement_token1] = ACTIONS(111), + [sym_integer] = ACTIONS(99), + [aux_sym_return_statement_token1] = ACTIONS(114), + [aux_sym_throw_expression_token1] = ACTIONS(117), + [aux_sym_while_statement_token1] = ACTIONS(369), + [aux_sym_do_statement_token1] = ACTIONS(123), + [aux_sym_for_statement_token1] = ACTIONS(372), + [aux_sym_foreach_statement_token1] = ACTIONS(375), + [aux_sym_if_statement_token1] = ACTIONS(378), [aux_sym_if_statement_token2] = ACTIONS(58), [aux_sym_else_if_clause_token1] = ACTIONS(58), [aux_sym_else_clause_token1] = ACTIONS(58), - [aux_sym_match_expression_token1] = ACTIONS(132), - [aux_sym_switch_statement_token1] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_TILDE] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_AT] = ACTIONS(144), - [aux_sym_clone_expression_token1] = ACTIONS(147), - [aux_sym_print_intrinsic_token1] = ACTIONS(150), - [aux_sym_object_creation_expression_token1] = ACTIONS(153), - [anon_sym_DASH_DASH] = ACTIONS(156), - [anon_sym_PLUS_PLUS] = ACTIONS(156), - [aux_sym__list_destructing_token1] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_self] = ACTIONS(165), - [anon_sym_parent] = ACTIONS(165), - [aux_sym__argument_name_token1] = ACTIONS(168), - [aux_sym__argument_name_token2] = ACTIONS(171), - [anon_sym_POUND_LBRACK] = ACTIONS(174), - [aux_sym_encapsed_string_token1] = ACTIONS(177), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_string_token1] = ACTIONS(180), - [anon_sym_SQUOTE] = ACTIONS(180), - [anon_sym_LT_LT_LT] = ACTIONS(183), - [anon_sym_BQUOTE] = ACTIONS(186), - [anon_sym_DOLLAR] = ACTIONS(189), - [aux_sym_yield_expression_token1] = ACTIONS(192), - [aux_sym_include_expression_token1] = ACTIONS(195), - [aux_sym_include_once_expression_token1] = ACTIONS(198), - [aux_sym_require_expression_token1] = ACTIONS(201), - [aux_sym_require_once_expression_token1] = ACTIONS(204), - [sym_comment] = ACTIONS(5), - }, - [8] = { - [sym_text_interpolation] = STATE(8), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(362), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(364), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(366), - [aux_sym_foreach_statement_token1] = ACTIONS(368), - [aux_sym_if_statement_token1] = ACTIONS(370), - [aux_sym_if_statement_token2] = ACTIONS(372), - [aux_sym_else_if_clause_token1] = ACTIONS(372), - [aux_sym_else_clause_token1] = ACTIONS(372), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - }, - [9] = { - [sym_text_interpolation] = STATE(9), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(10), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_while_statement_token2] = ACTIONS(372), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_foreach_statement_token2] = ACTIONS(372), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_if_statement_token2] = ACTIONS(372), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - }, - [10] = { - [sym_text_interpolation] = STATE(10), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_while_statement_token2] = ACTIONS(374), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_foreach_statement_token2] = ACTIONS(374), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_if_statement_token2] = ACTIONS(374), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [aux_sym_match_expression_token1] = ACTIONS(135), + [aux_sym_switch_statement_token1] = ACTIONS(138), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_TILDE] = ACTIONS(144), + [anon_sym_BANG] = ACTIONS(144), + [anon_sym_AT] = ACTIONS(147), + [aux_sym_clone_expression_token1] = ACTIONS(150), + [aux_sym_print_intrinsic_token1] = ACTIONS(153), + [aux_sym_object_creation_expression_token1] = ACTIONS(156), + [anon_sym_DASH_DASH] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [aux_sym__list_destructing_token1] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(165), + [anon_sym_self] = ACTIONS(168), + [anon_sym_parent] = ACTIONS(168), + [aux_sym__argument_name_token1] = ACTIONS(171), + [aux_sym__argument_name_token2] = ACTIONS(174), + [anon_sym_POUND_LBRACK] = ACTIONS(177), + [aux_sym_encapsed_string_token1] = ACTIONS(180), + [anon_sym_DQUOTE] = ACTIONS(180), + [aux_sym_string_token1] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_LT_LT_LT] = ACTIONS(186), + [anon_sym_BQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(192), + [aux_sym_yield_expression_token1] = ACTIONS(195), + [aux_sym_include_expression_token1] = ACTIONS(198), + [aux_sym_include_once_expression_token1] = ACTIONS(201), + [aux_sym_require_expression_token1] = ACTIONS(204), + [aux_sym_require_once_expression_token1] = ACTIONS(207), [sym_comment] = ACTIONS(5), }, [11] = { [sym_text_interpolation] = STATE(11), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(362), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(364), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(366), - [aux_sym_foreach_statement_token1] = ACTIONS(368), - [aux_sym_if_statement_token1] = ACTIONS(370), - [aux_sym_if_statement_token2] = ACTIONS(374), - [aux_sym_else_if_clause_token1] = ACTIONS(374), - [aux_sym_else_clause_token1] = ACTIONS(374), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_while_statement_token2] = ACTIONS(362), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_foreach_statement_token2] = ACTIONS(362), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_if_statement_token2] = ACTIONS(362), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [12] = { [sym_text_interpolation] = STATE(12), - [sym_empty_statement] = STATE(1991), - [sym_function_static_declaration] = STATE(1991), - [sym_global_declaration] = STATE(1991), - [sym_namespace_definition] = STATE(1991), - [sym_namespace_use_declaration] = STATE(1991), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(1991), - [sym_interface_declaration] = STATE(1991), - [sym_enum_declaration] = STATE(1991), - [sym_class_declaration] = STATE(1991), - [sym_final_modifier] = STATE(1954), - [sym_abstract_modifier] = STATE(1954), - [sym_readonly_modifier] = STATE(2576), - [sym_const_declaration] = STATE(1991), - [sym__const_declaration] = STATE(2071), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2578), - [sym_function_definition] = STATE(1991), - [sym__function_definition_header] = STATE(2455), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(1991), - [sym_exit_statement] = STATE(1991), - [sym_unset_statement] = STATE(1991), - [sym_declare_statement] = STATE(1991), - [sym_try_statement] = STATE(1991), - [sym_goto_statement] = STATE(1991), - [sym_continue_statement] = STATE(1991), - [sym_break_statement] = STATE(1991), - [sym_return_statement] = STATE(1991), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(1991), - [sym_do_statement] = STATE(1991), - [sym_for_statement] = STATE(1991), - [sym_foreach_statement] = STATE(1991), - [sym_if_statement] = STATE(1991), - [sym_colon_block] = STATE(2519), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(1991), - [sym_compound_statement] = STATE(1991), - [sym_named_label_statement] = STATE(1991), - [sym_expression_statement] = STATE(1991), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1387), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(376), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(378), - [aux_sym_function_static_declaration_token1] = ACTIONS(380), - [aux_sym_global_declaration_token1] = ACTIONS(382), - [aux_sym_namespace_definition_token1] = ACTIONS(384), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(388), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(390), - [aux_sym_trait_declaration_token1] = ACTIONS(392), - [aux_sym_interface_declaration_token1] = ACTIONS(394), - [aux_sym_enum_declaration_token1] = ACTIONS(396), - [anon_sym_COLON] = ACTIONS(398), - [aux_sym_class_declaration_token1] = ACTIONS(400), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(402), - [aux_sym_exit_statement_token1] = ACTIONS(404), - [anon_sym_unset] = ACTIONS(406), - [aux_sym_declare_statement_token1] = ACTIONS(408), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(410), - [aux_sym_goto_statement_token1] = ACTIONS(412), - [aux_sym_continue_statement_token1] = ACTIONS(414), - [aux_sym_break_statement_token1] = ACTIONS(416), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(418), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(420), - [aux_sym_do_statement_token1] = ACTIONS(422), - [aux_sym_for_statement_token1] = ACTIONS(424), - [aux_sym_foreach_statement_token1] = ACTIONS(426), - [aux_sym_if_statement_token1] = ACTIONS(428), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(432), + [sym_statement] = STATE(476), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_colon_block] = STATE(2482), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(381), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(383), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(385), }, [13] = { [sym_text_interpolation] = STATE(13), - [sym_empty_statement] = STATE(484), - [sym_function_static_declaration] = STATE(484), - [sym_global_declaration] = STATE(484), - [sym_namespace_definition] = STATE(484), - [sym_namespace_use_declaration] = STATE(484), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(484), - [sym_interface_declaration] = STATE(484), - [sym_enum_declaration] = STATE(484), - [sym_class_declaration] = STATE(484), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(484), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(484), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(484), - [sym_exit_statement] = STATE(484), - [sym_unset_statement] = STATE(484), - [sym_declare_statement] = STATE(484), - [sym_try_statement] = STATE(484), - [sym_goto_statement] = STATE(484), - [sym_continue_statement] = STATE(484), - [sym_break_statement] = STATE(484), - [sym_return_statement] = STATE(484), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(484), - [sym_do_statement] = STATE(484), - [sym_for_statement] = STATE(484), - [sym_foreach_statement] = STATE(484), - [sym_if_statement] = STATE(484), - [sym_colon_block] = STATE(2642), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(484), - [sym_compound_statement] = STATE(484), - [sym_named_label_statement] = STATE(484), - [sym_expression_statement] = STATE(484), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(434), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(398), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(436), + [sym_statement] = STATE(476), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_colon_block] = STATE(2482), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(381), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(383), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(385), }, [14] = { [sym_text_interpolation] = STATE(14), - [sym_empty_statement] = STATE(1991), - [sym_function_static_declaration] = STATE(1991), - [sym_global_declaration] = STATE(1991), - [sym_namespace_definition] = STATE(1991), - [sym_namespace_use_declaration] = STATE(1991), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(1991), - [sym_interface_declaration] = STATE(1991), - [sym_enum_declaration] = STATE(1991), - [sym_class_declaration] = STATE(1991), - [sym_final_modifier] = STATE(1954), - [sym_abstract_modifier] = STATE(1954), - [sym_readonly_modifier] = STATE(2576), - [sym_const_declaration] = STATE(1991), - [sym__const_declaration] = STATE(2071), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2578), - [sym_function_definition] = STATE(1991), - [sym__function_definition_header] = STATE(2455), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(1991), - [sym_exit_statement] = STATE(1991), - [sym_unset_statement] = STATE(1991), - [sym_declare_statement] = STATE(1991), - [sym_try_statement] = STATE(1991), - [sym_goto_statement] = STATE(1991), - [sym_continue_statement] = STATE(1991), - [sym_break_statement] = STATE(1991), - [sym_return_statement] = STATE(1991), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(1991), - [sym_do_statement] = STATE(1991), - [sym_for_statement] = STATE(1991), - [sym_foreach_statement] = STATE(1991), - [sym_if_statement] = STATE(1991), - [sym_colon_block] = STATE(2519), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(1991), - [sym_compound_statement] = STATE(1991), - [sym_named_label_statement] = STATE(1991), - [sym_expression_statement] = STATE(1991), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1387), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(376), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(378), - [aux_sym_function_static_declaration_token1] = ACTIONS(380), - [aux_sym_global_declaration_token1] = ACTIONS(382), - [aux_sym_namespace_definition_token1] = ACTIONS(384), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(388), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(390), - [aux_sym_trait_declaration_token1] = ACTIONS(392), - [aux_sym_interface_declaration_token1] = ACTIONS(394), - [aux_sym_enum_declaration_token1] = ACTIONS(396), - [anon_sym_COLON] = ACTIONS(398), - [aux_sym_class_declaration_token1] = ACTIONS(400), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(402), - [aux_sym_exit_statement_token1] = ACTIONS(404), - [anon_sym_unset] = ACTIONS(406), - [aux_sym_declare_statement_token1] = ACTIONS(438), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(410), - [aux_sym_goto_statement_token1] = ACTIONS(412), - [aux_sym_continue_statement_token1] = ACTIONS(414), - [aux_sym_break_statement_token1] = ACTIONS(416), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(418), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(440), - [aux_sym_do_statement_token1] = ACTIONS(422), - [aux_sym_for_statement_token1] = ACTIONS(442), - [aux_sym_foreach_statement_token1] = ACTIONS(444), - [aux_sym_if_statement_token1] = ACTIONS(446), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(432), + [sym_statement] = STATE(1969), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_colon_block] = STATE(2480), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(389), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(383), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(417), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(429), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(433), + [aux_sym_foreach_statement_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(441), }, [15] = { [sym_text_interpolation] = STATE(15), - [sym_empty_statement] = STATE(484), - [sym_function_static_declaration] = STATE(484), - [sym_global_declaration] = STATE(484), - [sym_namespace_definition] = STATE(484), - [sym_namespace_use_declaration] = STATE(484), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(484), - [sym_interface_declaration] = STATE(484), - [sym_enum_declaration] = STATE(484), - [sym_class_declaration] = STATE(484), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(484), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(484), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(484), - [sym_exit_statement] = STATE(484), - [sym_unset_statement] = STATE(484), - [sym_declare_statement] = STATE(484), - [sym_try_statement] = STATE(484), - [sym_goto_statement] = STATE(484), - [sym_continue_statement] = STATE(484), - [sym_break_statement] = STATE(484), - [sym_return_statement] = STATE(484), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(484), - [sym_do_statement] = STATE(484), - [sym_for_statement] = STATE(484), - [sym_foreach_statement] = STATE(484), - [sym_if_statement] = STATE(484), - [sym_colon_block] = STATE(2642), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(484), - [sym_compound_statement] = STATE(484), - [sym_named_label_statement] = STATE(484), - [sym_expression_statement] = STATE(484), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(434), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(398), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(362), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(364), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(366), - [aux_sym_foreach_statement_token1] = ACTIONS(368), - [aux_sym_if_statement_token1] = ACTIONS(370), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(436), + [sym_statement] = STATE(1969), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_colon_block] = STATE(2480), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(389), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(383), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(441), }, [16] = { [sym_text_interpolation] = STATE(16), - [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(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(549), - [sym_interface_declaration] = STATE(549), - [sym_enum_declaration] = STATE(549), - [sym_class_declaration] = STATE(549), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(549), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(549), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(549), - [sym_exit_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(1112), - [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_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(549), - [sym_compound_statement] = STATE(549), - [sym_named_label_statement] = STATE(549), - [sym_expression_statement] = STATE(549), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(448), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(450), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(452), + [sym_statement] = STATE(1989), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(453), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(455), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(457), }, [17] = { [sym_text_interpolation] = STATE(17), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(56), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [aux_sym_declare_statement_token2] = ACTIONS(454), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [ts_builtin_sym_end] = ACTIONS(459), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [18] = { [sym_text_interpolation] = STATE(18), - [sym_empty_statement] = STATE(2069), - [sym_function_static_declaration] = STATE(2069), - [sym_global_declaration] = STATE(2069), - [sym_namespace_definition] = STATE(2069), - [sym_namespace_use_declaration] = STATE(2069), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(2069), - [sym_interface_declaration] = STATE(2069), - [sym_enum_declaration] = STATE(2069), - [sym_class_declaration] = STATE(2069), - [sym_final_modifier] = STATE(1954), - [sym_abstract_modifier] = STATE(1954), - [sym_readonly_modifier] = STATE(2576), - [sym_const_declaration] = STATE(2069), - [sym__const_declaration] = STATE(2071), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2578), - [sym_function_definition] = STATE(2069), - [sym__function_definition_header] = STATE(2455), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(2069), - [sym_exit_statement] = STATE(2069), - [sym_unset_statement] = STATE(2069), - [sym_declare_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_goto_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_break_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_colon_block] = STATE(2560), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(2069), - [sym_compound_statement] = STATE(2069), - [sym_named_label_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1387), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(376), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(456), - [aux_sym_function_static_declaration_token1] = ACTIONS(380), - [aux_sym_global_declaration_token1] = ACTIONS(382), - [aux_sym_namespace_definition_token1] = ACTIONS(384), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(388), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(390), - [aux_sym_trait_declaration_token1] = ACTIONS(392), - [aux_sym_interface_declaration_token1] = ACTIONS(394), - [aux_sym_enum_declaration_token1] = ACTIONS(396), - [anon_sym_COLON] = ACTIONS(398), - [aux_sym_class_declaration_token1] = ACTIONS(400), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(402), - [aux_sym_exit_statement_token1] = ACTIONS(404), - [anon_sym_unset] = ACTIONS(406), - [aux_sym_declare_statement_token1] = ACTIONS(438), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(410), - [aux_sym_goto_statement_token1] = ACTIONS(412), - [aux_sym_continue_statement_token1] = ACTIONS(414), - [aux_sym_break_statement_token1] = ACTIONS(416), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(418), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(440), - [aux_sym_do_statement_token1] = ACTIONS(422), - [aux_sym_for_statement_token1] = ACTIONS(442), - [aux_sym_foreach_statement_token1] = ACTIONS(444), - [aux_sym_if_statement_token1] = ACTIONS(446), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(461), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [19] = { [sym_text_interpolation] = STATE(19), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_for_statement_token2] = ACTIONS(458), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(502), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_colon_block] = STATE(2516), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(383), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [20] = { [sym_text_interpolation] = STATE(20), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_for_statement_token2] = ACTIONS(460), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(1592), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_colon_block] = STATE(1609), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(463), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(465), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [21] = { [sym_text_interpolation] = STATE(21), - [sym_empty_statement] = STATE(1926), - [sym_function_static_declaration] = STATE(1926), - [sym_global_declaration] = STATE(1926), - [sym_namespace_definition] = STATE(1926), - [sym_namespace_use_declaration] = STATE(1926), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(1926), - [sym_interface_declaration] = STATE(1926), - [sym_enum_declaration] = STATE(1926), - [sym_class_declaration] = STATE(1926), - [sym_final_modifier] = STATE(1954), - [sym_abstract_modifier] = STATE(1954), - [sym_readonly_modifier] = STATE(2576), - [sym_const_declaration] = STATE(1926), - [sym__const_declaration] = STATE(2071), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2578), - [sym_function_definition] = STATE(1926), - [sym__function_definition_header] = STATE(2455), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(1926), - [sym_exit_statement] = STATE(1926), - [sym_unset_statement] = STATE(1926), - [sym_declare_statement] = STATE(1926), - [sym_try_statement] = STATE(1926), - [sym_goto_statement] = STATE(1926), - [sym_continue_statement] = STATE(1926), - [sym_break_statement] = STATE(1926), - [sym_return_statement] = STATE(1926), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(1926), - [sym_do_statement] = STATE(1926), - [sym_for_statement] = STATE(1926), - [sym_foreach_statement] = STATE(1926), - [sym_if_statement] = STATE(1926), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(1926), - [sym_compound_statement] = STATE(1926), - [sym_named_label_statement] = STATE(1926), - [sym_expression_statement] = STATE(1926), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1387), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(376), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(462), - [aux_sym_function_static_declaration_token1] = ACTIONS(380), - [aux_sym_global_declaration_token1] = ACTIONS(382), - [aux_sym_namespace_definition_token1] = ACTIONS(384), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(388), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(390), - [aux_sym_trait_declaration_token1] = ACTIONS(392), - [aux_sym_interface_declaration_token1] = ACTIONS(394), - [aux_sym_enum_declaration_token1] = ACTIONS(396), - [anon_sym_COLON] = ACTIONS(464), - [aux_sym_class_declaration_token1] = ACTIONS(400), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(402), - [aux_sym_exit_statement_token1] = ACTIONS(404), - [anon_sym_unset] = ACTIONS(406), - [aux_sym_declare_statement_token1] = ACTIONS(408), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(410), - [aux_sym_goto_statement_token1] = ACTIONS(412), - [aux_sym_continue_statement_token1] = ACTIONS(414), - [aux_sym_break_statement_token1] = ACTIONS(416), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(418), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(420), - [aux_sym_do_statement_token1] = ACTIONS(422), - [aux_sym_for_statement_token1] = ACTIONS(424), - [aux_sym_foreach_statement_token1] = ACTIONS(426), - [aux_sym_if_statement_token1] = ACTIONS(428), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(466), + [sym_statement] = STATE(462), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(467), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(469), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(471), }, [22] = { [sym_text_interpolation] = STATE(22), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_for_statement_token2] = ACTIONS(468), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(45), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(473), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [23] = { [sym_text_interpolation] = STATE(23), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_for_statement_token2] = ACTIONS(468), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), + [sym_statement] = STATE(2009), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(475), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(477), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(417), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(429), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(433), + [aux_sym_foreach_statement_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(479), }, [24] = { [sym_text_interpolation] = STATE(24), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(39), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_RBRACE] = ACTIONS(470), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(481), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [25] = { [sym_text_interpolation] = STATE(25), - [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(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(549), - [sym_interface_declaration] = STATE(549), - [sym_enum_declaration] = STATE(549), - [sym_class_declaration] = STATE(549), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(549), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(549), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(549), - [sym_exit_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(1112), - [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_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(549), - [sym_compound_statement] = STATE(549), - [sym_named_label_statement] = STATE(549), - [sym_expression_statement] = STATE(549), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(448), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(450), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(362), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(364), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(366), - [aux_sym_foreach_statement_token1] = ACTIONS(368), - [aux_sym_if_statement_token1] = ACTIONS(370), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(452), + [sym_statement] = STATE(457), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(483), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(485), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(487), }, [26] = { [sym_text_interpolation] = STATE(26), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_for_statement_token2] = ACTIONS(472), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), + [sym_statement] = STATE(520), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(489), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(491), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(493), }, [27] = { [sym_text_interpolation] = STATE(27), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_for_statement_token2] = ACTIONS(472), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(495), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [28] = { [sym_text_interpolation] = STATE(28), - [sym_empty_statement] = STATE(428), - [sym_function_static_declaration] = STATE(428), - [sym_global_declaration] = STATE(428), - [sym_namespace_definition] = STATE(428), - [sym_namespace_use_declaration] = STATE(428), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(428), - [sym_interface_declaration] = STATE(428), - [sym_enum_declaration] = STATE(428), - [sym_class_declaration] = STATE(428), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(428), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(428), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(428), - [sym_exit_statement] = STATE(428), - [sym_unset_statement] = STATE(428), - [sym_declare_statement] = STATE(428), - [sym_try_statement] = STATE(428), - [sym_goto_statement] = STATE(428), - [sym_continue_statement] = STATE(428), - [sym_break_statement] = STATE(428), - [sym_return_statement] = STATE(428), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(428), - [sym_do_statement] = STATE(428), - [sym_for_statement] = STATE(428), - [sym_foreach_statement] = STATE(428), - [sym_if_statement] = STATE(428), - [sym_colon_block] = STATE(1647), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(428), - [sym_compound_statement] = STATE(428), - [sym_named_label_statement] = STATE(428), - [sym_expression_statement] = STATE(428), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(474), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(362), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(364), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(366), - [aux_sym_foreach_statement_token1] = ACTIONS(368), - [aux_sym_if_statement_token1] = ACTIONS(370), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(56), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(497), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [29] = { [sym_text_interpolation] = STATE(29), - [sym_empty_statement] = STATE(520), - [sym_function_static_declaration] = STATE(520), - [sym_global_declaration] = STATE(520), - [sym_namespace_definition] = STATE(520), - [sym_namespace_use_declaration] = STATE(520), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(520), - [sym_interface_declaration] = STATE(520), - [sym_enum_declaration] = STATE(520), - [sym_class_declaration] = STATE(520), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(520), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(520), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(520), - [sym_exit_statement] = STATE(520), - [sym_unset_statement] = STATE(520), - [sym_declare_statement] = STATE(520), - [sym_try_statement] = STATE(520), - [sym_goto_statement] = STATE(520), - [sym_continue_statement] = STATE(520), - [sym_break_statement] = STATE(520), - [sym_return_statement] = STATE(520), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(520), - [sym_do_statement] = STATE(520), - [sym_for_statement] = STATE(520), - [sym_foreach_statement] = STATE(520), - [sym_if_statement] = STATE(520), - [sym_colon_block] = STATE(2488), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(520), - [sym_compound_statement] = STATE(520), - [sym_named_label_statement] = STATE(520), - [sym_expression_statement] = STATE(520), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(398), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(497), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [30] = { [sym_text_interpolation] = STATE(30), - [sym_empty_statement] = STATE(465), - [sym_function_static_declaration] = STATE(465), - [sym_global_declaration] = STATE(465), - [sym_namespace_definition] = STATE(465), - [sym_namespace_use_declaration] = STATE(465), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(465), - [sym_interface_declaration] = STATE(465), - [sym_enum_declaration] = STATE(465), - [sym_class_declaration] = STATE(465), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(465), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(465), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(465), - [sym_exit_statement] = STATE(465), - [sym_unset_statement] = STATE(465), - [sym_declare_statement] = STATE(465), - [sym_try_statement] = STATE(465), - [sym_goto_statement] = STATE(465), - [sym_continue_statement] = STATE(465), - [sym_break_statement] = STATE(465), - [sym_return_statement] = STATE(465), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(465), - [sym_do_statement] = STATE(465), - [sym_for_statement] = STATE(465), - [sym_foreach_statement] = STATE(465), - [sym_if_statement] = STATE(465), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(465), - [sym_compound_statement] = STATE(465), - [sym_named_label_statement] = STATE(465), - [sym_expression_statement] = STATE(465), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(476), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(478), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(362), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(364), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(366), - [aux_sym_foreach_statement_token1] = ACTIONS(368), - [aux_sym_if_statement_token1] = ACTIONS(370), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(480), + [sym_statement] = STATE(1954), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(499), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(501), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(503), }, [31] = { [sym_text_interpolation] = STATE(31), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(27), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_for_statement_token2] = ACTIONS(482), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), + [sym_statement] = STATE(1958), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(505), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(507), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(509), }, [32] = { [sym_text_interpolation] = STATE(32), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_for_statement_token2] = ACTIONS(482), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), + [sym_statement] = STATE(1989), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(453), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(455), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(417), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(429), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(433), + [aux_sym_foreach_statement_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(457), }, [33] = { [sym_text_interpolation] = STATE(33), - [sym_empty_statement] = STATE(425), - [sym_function_static_declaration] = STATE(425), - [sym_global_declaration] = STATE(425), - [sym_namespace_definition] = STATE(425), - [sym_namespace_use_declaration] = STATE(425), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(425), - [sym_interface_declaration] = STATE(425), - [sym_enum_declaration] = STATE(425), - [sym_class_declaration] = STATE(425), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(425), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(425), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(425), - [sym_exit_statement] = STATE(425), - [sym_unset_statement] = STATE(425), - [sym_declare_statement] = STATE(425), - [sym_try_statement] = STATE(425), - [sym_goto_statement] = STATE(425), - [sym_continue_statement] = STATE(425), - [sym_break_statement] = STATE(425), - [sym_return_statement] = STATE(425), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(425), - [sym_do_statement] = STATE(425), - [sym_for_statement] = STATE(425), - [sym_foreach_statement] = STATE(425), - [sym_if_statement] = STATE(425), - [sym_colon_block] = STATE(1647), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(425), - [sym_compound_statement] = STATE(425), - [sym_named_label_statement] = STATE(425), - [sym_expression_statement] = STATE(425), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(474), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(362), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(364), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(366), - [aux_sym_foreach_statement_token1] = ACTIONS(368), - [aux_sym_if_statement_token1] = ACTIONS(370), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), + [sym_statement] = STATE(457), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(483), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(485), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(487), }, [34] = { [sym_text_interpolation] = STATE(34), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(72), - [aux_sym_attribute_list_repeat1] = STATE(975), - [ts_builtin_sym_end] = ACTIONS(484), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), + [sym_statement] = STATE(1973), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(511), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(513), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(515), }, [35] = { [sym_text_interpolation] = STATE(35), - [sym_empty_statement] = STATE(1937), - [sym_function_static_declaration] = STATE(1937), - [sym_global_declaration] = STATE(1937), - [sym_namespace_definition] = STATE(1937), - [sym_namespace_use_declaration] = STATE(1937), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(1937), - [sym_interface_declaration] = STATE(1937), - [sym_enum_declaration] = STATE(1937), - [sym_class_declaration] = STATE(1937), - [sym_final_modifier] = STATE(1954), - [sym_abstract_modifier] = STATE(1954), - [sym_readonly_modifier] = STATE(2576), - [sym_const_declaration] = STATE(1937), - [sym__const_declaration] = STATE(2071), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2578), - [sym_function_definition] = STATE(1937), - [sym__function_definition_header] = STATE(2455), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(1937), - [sym_exit_statement] = STATE(1937), - [sym_unset_statement] = STATE(1937), - [sym_declare_statement] = STATE(1937), - [sym_try_statement] = STATE(1937), - [sym_goto_statement] = STATE(1937), - [sym_continue_statement] = STATE(1937), - [sym_break_statement] = STATE(1937), - [sym_return_statement] = STATE(1937), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(1937), - [sym_do_statement] = STATE(1937), - [sym_for_statement] = STATE(1937), - [sym_foreach_statement] = STATE(1937), - [sym_if_statement] = STATE(1937), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(1937), - [sym_compound_statement] = STATE(1937), - [sym_named_label_statement] = STATE(1937), - [sym_expression_statement] = STATE(1937), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1387), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(376), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(486), - [aux_sym_function_static_declaration_token1] = ACTIONS(380), - [aux_sym_global_declaration_token1] = ACTIONS(382), - [aux_sym_namespace_definition_token1] = ACTIONS(384), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(388), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(390), - [aux_sym_trait_declaration_token1] = ACTIONS(392), - [aux_sym_interface_declaration_token1] = ACTIONS(394), - [aux_sym_enum_declaration_token1] = ACTIONS(396), - [anon_sym_COLON] = ACTIONS(488), - [aux_sym_class_declaration_token1] = ACTIONS(400), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(402), - [aux_sym_exit_statement_token1] = ACTIONS(404), - [anon_sym_unset] = ACTIONS(406), - [aux_sym_declare_statement_token1] = ACTIONS(408), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(410), - [aux_sym_goto_statement_token1] = ACTIONS(412), - [aux_sym_continue_statement_token1] = ACTIONS(414), - [aux_sym_break_statement_token1] = ACTIONS(416), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(418), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(420), - [aux_sym_do_statement_token1] = ACTIONS(422), - [aux_sym_for_statement_token1] = ACTIONS(424), - [aux_sym_foreach_statement_token1] = ACTIONS(426), - [aux_sym_if_statement_token1] = ACTIONS(428), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(490), + [sym_statement] = STATE(462), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(467), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(469), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(471), }, [36] = { [sym_text_interpolation] = STATE(36), - [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(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(473), - [sym_interface_declaration] = STATE(473), - [sym_enum_declaration] = STATE(473), - [sym_class_declaration] = STATE(473), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(473), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(473), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(473), - [sym_exit_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(1112), - [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_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(473), - [sym_compound_statement] = STATE(473), - [sym_named_label_statement] = STATE(473), - [sym_expression_statement] = STATE(473), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(492), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(494), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(362), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(364), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(366), - [aux_sym_foreach_statement_token1] = ACTIONS(368), - [aux_sym_if_statement_token1] = ACTIONS(370), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(496), + [sym_statement] = STATE(1973), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(511), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(513), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(417), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(429), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(433), + [aux_sym_foreach_statement_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(515), }, [37] = { [sym_text_interpolation] = STATE(37), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(32), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_for_statement_token2] = ACTIONS(498), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), + [sym_statement] = STATE(520), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(489), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(491), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(493), }, [38] = { [sym_text_interpolation] = STATE(38), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [aux_sym_declare_statement_token2] = ACTIONS(500), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(429), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_colon_block] = STATE(1608), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(465), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [39] = { [sym_text_interpolation] = STATE(39), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_RBRACE] = ACTIONS(502), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), + [sym_statement] = STATE(1958), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(505), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(507), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(417), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(429), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(433), + [aux_sym_foreach_statement_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(509), }, [40] = { [sym_text_interpolation] = STATE(40), - [sym_empty_statement] = STATE(501), - [sym_function_static_declaration] = STATE(501), - [sym_global_declaration] = STATE(501), - [sym_namespace_definition] = STATE(501), - [sym_namespace_use_declaration] = STATE(501), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(501), - [sym_interface_declaration] = STATE(501), - [sym_enum_declaration] = STATE(501), - [sym_class_declaration] = STATE(501), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(501), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(501), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(501), - [sym_exit_statement] = STATE(501), - [sym_unset_statement] = STATE(501), - [sym_declare_statement] = STATE(501), - [sym_try_statement] = STATE(501), - [sym_goto_statement] = STATE(501), - [sym_continue_statement] = STATE(501), - [sym_break_statement] = STATE(501), - [sym_return_statement] = STATE(501), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(501), - [sym_do_statement] = STATE(501), - [sym_for_statement] = STATE(501), - [sym_foreach_statement] = STATE(501), - [sym_if_statement] = STATE(501), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(501), - [sym_compound_statement] = STATE(501), - [sym_named_label_statement] = STATE(501), - [sym_expression_statement] = STATE(501), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(504), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(506), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(362), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(364), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(366), - [aux_sym_foreach_statement_token1] = ACTIONS(368), - [aux_sym_if_statement_token1] = ACTIONS(370), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(508), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [aux_sym_declare_statement_token2] = ACTIONS(517), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [41] = { [sym_text_interpolation] = STATE(41), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(38), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [aux_sym_declare_statement_token2] = ACTIONS(510), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [aux_sym_declare_statement_token2] = ACTIONS(519), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [42] = { [sym_text_interpolation] = STATE(42), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(60), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_RBRACE] = ACTIONS(512), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), + [sym_statement] = STATE(1954), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(499), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(501), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(417), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(429), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(433), + [aux_sym_foreach_statement_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(503), }, [43] = { [sym_text_interpolation] = STATE(43), - [sym_empty_statement] = STATE(502), - [sym_function_static_declaration] = STATE(502), - [sym_global_declaration] = STATE(502), - [sym_namespace_definition] = STATE(502), - [sym_namespace_use_declaration] = STATE(502), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(502), - [sym_interface_declaration] = STATE(502), - [sym_enum_declaration] = STATE(502), - [sym_class_declaration] = STATE(502), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(502), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(502), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(502), - [sym_exit_statement] = STATE(502), - [sym_unset_statement] = STATE(502), - [sym_declare_statement] = STATE(502), - [sym_try_statement] = STATE(502), - [sym_goto_statement] = STATE(502), - [sym_continue_statement] = STATE(502), - [sym_break_statement] = STATE(502), - [sym_return_statement] = STATE(502), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(502), - [sym_do_statement] = STATE(502), - [sym_for_statement] = STATE(502), - [sym_foreach_statement] = STATE(502), - [sym_if_statement] = STATE(502), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(502), - [sym_compound_statement] = STATE(502), - [sym_named_label_statement] = STATE(502), - [sym_expression_statement] = STATE(502), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(514), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(516), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(362), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(364), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(366), - [aux_sym_foreach_statement_token1] = ACTIONS(368), - [aux_sym_if_statement_token1] = ACTIONS(370), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(518), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(63), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [ts_builtin_sym_end] = ACTIONS(459), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [44] = { [sym_text_interpolation] = STATE(44), - [sym_empty_statement] = STATE(2026), - [sym_function_static_declaration] = STATE(2026), - [sym_global_declaration] = STATE(2026), - [sym_namespace_definition] = STATE(2026), - [sym_namespace_use_declaration] = STATE(2026), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(2026), - [sym_interface_declaration] = STATE(2026), - [sym_enum_declaration] = STATE(2026), - [sym_class_declaration] = STATE(2026), - [sym_final_modifier] = STATE(1954), - [sym_abstract_modifier] = STATE(1954), - [sym_readonly_modifier] = STATE(2576), - [sym_const_declaration] = STATE(2026), - [sym__const_declaration] = STATE(2071), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2578), - [sym_function_definition] = STATE(2026), - [sym__function_definition_header] = STATE(2455), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(2026), - [sym_exit_statement] = STATE(2026), - [sym_unset_statement] = STATE(2026), - [sym_declare_statement] = STATE(2026), - [sym_try_statement] = STATE(2026), - [sym_goto_statement] = STATE(2026), - [sym_continue_statement] = STATE(2026), - [sym_break_statement] = STATE(2026), - [sym_return_statement] = STATE(2026), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(2026), - [sym_do_statement] = STATE(2026), - [sym_for_statement] = STATE(2026), - [sym_foreach_statement] = STATE(2026), - [sym_if_statement] = STATE(2026), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(2026), - [sym_compound_statement] = STATE(2026), - [sym_named_label_statement] = STATE(2026), - [sym_expression_statement] = STATE(2026), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1387), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(376), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(520), - [aux_sym_function_static_declaration_token1] = ACTIONS(380), - [aux_sym_global_declaration_token1] = ACTIONS(382), - [aux_sym_namespace_definition_token1] = ACTIONS(384), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(388), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(390), - [aux_sym_trait_declaration_token1] = ACTIONS(392), - [aux_sym_interface_declaration_token1] = ACTIONS(394), - [aux_sym_enum_declaration_token1] = ACTIONS(396), - [anon_sym_COLON] = ACTIONS(522), - [aux_sym_class_declaration_token1] = ACTIONS(400), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(402), - [aux_sym_exit_statement_token1] = ACTIONS(404), - [anon_sym_unset] = ACTIONS(406), - [aux_sym_declare_statement_token1] = ACTIONS(438), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(410), - [aux_sym_goto_statement_token1] = ACTIONS(412), - [aux_sym_continue_statement_token1] = ACTIONS(414), - [aux_sym_break_statement_token1] = ACTIONS(416), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(418), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(440), - [aux_sym_do_statement_token1] = ACTIONS(422), - [aux_sym_for_statement_token1] = ACTIONS(442), - [aux_sym_foreach_statement_token1] = ACTIONS(444), - [aux_sym_if_statement_token1] = ACTIONS(446), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(524), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(521), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [45] = { [sym_text_interpolation] = STATE(45), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(68), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_RBRACE] = ACTIONS(526), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(523), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [46] = { [sym_text_interpolation] = STATE(46), - [sym_empty_statement] = STATE(520), - [sym_function_static_declaration] = STATE(520), - [sym_global_declaration] = STATE(520), - [sym_namespace_definition] = STATE(520), - [sym_namespace_use_declaration] = STATE(520), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(520), - [sym_interface_declaration] = STATE(520), - [sym_enum_declaration] = STATE(520), - [sym_class_declaration] = STATE(520), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(520), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(520), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(520), - [sym_exit_statement] = STATE(520), - [sym_unset_statement] = STATE(520), - [sym_declare_statement] = STATE(520), - [sym_try_statement] = STATE(520), - [sym_goto_statement] = STATE(520), - [sym_continue_statement] = STATE(520), - [sym_break_statement] = STATE(520), - [sym_return_statement] = STATE(520), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(520), - [sym_do_statement] = STATE(520), - [sym_for_statement] = STATE(520), - [sym_foreach_statement] = STATE(520), - [sym_if_statement] = STATE(520), - [sym_colon_block] = STATE(2488), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(520), - [sym_compound_statement] = STATE(520), - [sym_named_label_statement] = STATE(520), - [sym_expression_statement] = STATE(520), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(398), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(362), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(364), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(366), - [aux_sym_foreach_statement_token1] = ACTIONS(368), - [aux_sym_if_statement_token1] = ACTIONS(370), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(72), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(525), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [47] = { [sym_text_interpolation] = STATE(47), - [sym_empty_statement] = STATE(1977), - [sym_function_static_declaration] = STATE(1977), - [sym_global_declaration] = STATE(1977), - [sym_namespace_definition] = STATE(1977), - [sym_namespace_use_declaration] = STATE(1977), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(1977), - [sym_interface_declaration] = STATE(1977), - [sym_enum_declaration] = STATE(1977), - [sym_class_declaration] = STATE(1977), - [sym_final_modifier] = STATE(1954), - [sym_abstract_modifier] = STATE(1954), - [sym_readonly_modifier] = STATE(2576), - [sym_const_declaration] = STATE(1977), - [sym__const_declaration] = STATE(2071), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2578), - [sym_function_definition] = STATE(1977), - [sym__function_definition_header] = STATE(2455), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(1977), - [sym_exit_statement] = STATE(1977), - [sym_unset_statement] = STATE(1977), - [sym_declare_statement] = STATE(1977), - [sym_try_statement] = STATE(1977), - [sym_goto_statement] = STATE(1977), - [sym_continue_statement] = STATE(1977), - [sym_break_statement] = STATE(1977), - [sym_return_statement] = STATE(1977), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(1977), - [sym_do_statement] = STATE(1977), - [sym_for_statement] = STATE(1977), - [sym_foreach_statement] = STATE(1977), - [sym_if_statement] = STATE(1977), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(1977), - [sym_compound_statement] = STATE(1977), - [sym_named_label_statement] = STATE(1977), - [sym_expression_statement] = STATE(1977), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1387), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(376), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(528), - [aux_sym_function_static_declaration_token1] = ACTIONS(380), - [aux_sym_global_declaration_token1] = ACTIONS(382), - [aux_sym_namespace_definition_token1] = ACTIONS(384), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(388), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(390), - [aux_sym_trait_declaration_token1] = ACTIONS(392), - [aux_sym_interface_declaration_token1] = ACTIONS(394), - [aux_sym_enum_declaration_token1] = ACTIONS(396), - [anon_sym_COLON] = ACTIONS(530), - [aux_sym_class_declaration_token1] = ACTIONS(400), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(402), - [aux_sym_exit_statement_token1] = ACTIONS(404), - [anon_sym_unset] = ACTIONS(406), - [aux_sym_declare_statement_token1] = ACTIONS(408), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(410), - [aux_sym_goto_statement_token1] = ACTIONS(412), - [aux_sym_continue_statement_token1] = ACTIONS(414), - [aux_sym_break_statement_token1] = ACTIONS(416), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(418), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(420), - [aux_sym_do_statement_token1] = ACTIONS(422), - [aux_sym_for_statement_token1] = ACTIONS(424), - [aux_sym_foreach_statement_token1] = ACTIONS(426), - [aux_sym_if_statement_token1] = ACTIONS(428), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(532), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(58), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(527), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [48] = { [sym_text_interpolation] = STATE(48), - [sym_empty_statement] = STATE(502), - [sym_function_static_declaration] = STATE(502), - [sym_global_declaration] = STATE(502), - [sym_namespace_definition] = STATE(502), - [sym_namespace_use_declaration] = STATE(502), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(502), - [sym_interface_declaration] = STATE(502), - [sym_enum_declaration] = STATE(502), - [sym_class_declaration] = STATE(502), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(502), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(502), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(502), - [sym_exit_statement] = STATE(502), - [sym_unset_statement] = STATE(502), - [sym_declare_statement] = STATE(502), - [sym_try_statement] = STATE(502), - [sym_goto_statement] = STATE(502), - [sym_continue_statement] = STATE(502), - [sym_break_statement] = STATE(502), - [sym_return_statement] = STATE(502), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(502), - [sym_do_statement] = STATE(502), - [sym_for_statement] = STATE(502), - [sym_foreach_statement] = STATE(502), - [sym_if_statement] = STATE(502), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(502), - [sym_compound_statement] = STATE(502), - [sym_named_label_statement] = STATE(502), - [sym_expression_statement] = STATE(502), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(514), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(516), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(518), + [sym_statement] = STATE(2009), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(475), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(477), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(479), }, [49] = { [sym_text_interpolation] = STATE(49), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(975), - [ts_builtin_sym_end] = ACTIONS(534), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), + [sym_statement] = STATE(482), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(529), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(531), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(533), }, [50] = { [sym_text_interpolation] = STATE(50), - [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(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(2019), - [sym_interface_declaration] = STATE(2019), - [sym_enum_declaration] = STATE(2019), - [sym_class_declaration] = STATE(2019), - [sym_final_modifier] = STATE(1954), - [sym_abstract_modifier] = STATE(1954), - [sym_readonly_modifier] = STATE(2576), - [sym_const_declaration] = STATE(2019), - [sym__const_declaration] = STATE(2071), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2578), - [sym_function_definition] = STATE(2019), - [sym__function_definition_header] = STATE(2455), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(2019), - [sym_exit_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(1112), - [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(1090), - [sym_switch_statement] = STATE(2019), - [sym_compound_statement] = STATE(2019), - [sym_named_label_statement] = STATE(2019), - [sym_expression_statement] = STATE(2019), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1387), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(376), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(536), - [aux_sym_function_static_declaration_token1] = ACTIONS(380), - [aux_sym_global_declaration_token1] = ACTIONS(382), - [aux_sym_namespace_definition_token1] = ACTIONS(384), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(388), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(390), - [aux_sym_trait_declaration_token1] = ACTIONS(392), - [aux_sym_interface_declaration_token1] = ACTIONS(394), - [aux_sym_enum_declaration_token1] = ACTIONS(396), - [anon_sym_COLON] = ACTIONS(538), - [aux_sym_class_declaration_token1] = ACTIONS(400), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(402), - [aux_sym_exit_statement_token1] = ACTIONS(404), - [anon_sym_unset] = ACTIONS(406), - [aux_sym_declare_statement_token1] = ACTIONS(438), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(410), - [aux_sym_goto_statement_token1] = ACTIONS(412), - [aux_sym_continue_statement_token1] = ACTIONS(414), - [aux_sym_break_statement_token1] = ACTIONS(416), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(418), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(440), - [aux_sym_do_statement_token1] = ACTIONS(422), - [aux_sym_for_statement_token1] = ACTIONS(442), - [aux_sym_foreach_statement_token1] = ACTIONS(444), - [aux_sym_if_statement_token1] = ACTIONS(446), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(540), + [sym_statement] = STATE(482), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(529), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(531), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(533), }, [51] = { [sym_text_interpolation] = STATE(51), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_for_statement_token2] = ACTIONS(542), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(502), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_colon_block] = STATE(2516), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(383), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [52] = { [sym_text_interpolation] = STATE(52), - [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(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(2019), - [sym_interface_declaration] = STATE(2019), - [sym_enum_declaration] = STATE(2019), - [sym_class_declaration] = STATE(2019), - [sym_final_modifier] = STATE(1954), - [sym_abstract_modifier] = STATE(1954), - [sym_readonly_modifier] = STATE(2576), - [sym_const_declaration] = STATE(2019), - [sym__const_declaration] = STATE(2071), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2578), - [sym_function_definition] = STATE(2019), - [sym__function_definition_header] = STATE(2455), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(2019), - [sym_exit_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(1112), - [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(1090), - [sym_switch_statement] = STATE(2019), - [sym_compound_statement] = STATE(2019), - [sym_named_label_statement] = STATE(2019), - [sym_expression_statement] = STATE(2019), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1387), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(376), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(536), - [aux_sym_function_static_declaration_token1] = ACTIONS(380), - [aux_sym_global_declaration_token1] = ACTIONS(382), - [aux_sym_namespace_definition_token1] = ACTIONS(384), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(388), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(390), - [aux_sym_trait_declaration_token1] = ACTIONS(392), - [aux_sym_interface_declaration_token1] = ACTIONS(394), - [aux_sym_enum_declaration_token1] = ACTIONS(396), - [anon_sym_COLON] = ACTIONS(538), - [aux_sym_class_declaration_token1] = ACTIONS(400), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(402), - [aux_sym_exit_statement_token1] = ACTIONS(404), - [anon_sym_unset] = ACTIONS(406), - [aux_sym_declare_statement_token1] = ACTIONS(408), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(410), - [aux_sym_goto_statement_token1] = ACTIONS(412), - [aux_sym_continue_statement_token1] = ACTIONS(414), - [aux_sym_break_statement_token1] = ACTIONS(416), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(418), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(420), - [aux_sym_do_statement_token1] = ACTIONS(422), - [aux_sym_for_statement_token1] = ACTIONS(424), - [aux_sym_foreach_statement_token1] = ACTIONS(426), - [aux_sym_if_statement_token1] = ACTIONS(428), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(540), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(40), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [aux_sym_declare_statement_token2] = ACTIONS(535), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [53] = { [sym_text_interpolation] = STATE(53), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(51), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_for_statement_token2] = ACTIONS(458), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(1601), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_colon_block] = STATE(1609), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(463), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(465), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [54] = { [sym_text_interpolation] = STATE(54), - [sym_empty_statement] = STATE(2026), - [sym_function_static_declaration] = STATE(2026), - [sym_global_declaration] = STATE(2026), - [sym_namespace_definition] = STATE(2026), - [sym_namespace_use_declaration] = STATE(2026), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(2026), - [sym_interface_declaration] = STATE(2026), - [sym_enum_declaration] = STATE(2026), - [sym_class_declaration] = STATE(2026), - [sym_final_modifier] = STATE(1954), - [sym_abstract_modifier] = STATE(1954), - [sym_readonly_modifier] = STATE(2576), - [sym_const_declaration] = STATE(2026), - [sym__const_declaration] = STATE(2071), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2578), - [sym_function_definition] = STATE(2026), - [sym__function_definition_header] = STATE(2455), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(2026), - [sym_exit_statement] = STATE(2026), - [sym_unset_statement] = STATE(2026), - [sym_declare_statement] = STATE(2026), - [sym_try_statement] = STATE(2026), - [sym_goto_statement] = STATE(2026), - [sym_continue_statement] = STATE(2026), - [sym_break_statement] = STATE(2026), - [sym_return_statement] = STATE(2026), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(2026), - [sym_do_statement] = STATE(2026), - [sym_for_statement] = STATE(2026), - [sym_foreach_statement] = STATE(2026), - [sym_if_statement] = STATE(2026), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(2026), - [sym_compound_statement] = STATE(2026), - [sym_named_label_statement] = STATE(2026), - [sym_expression_statement] = STATE(2026), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1387), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(376), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(520), - [aux_sym_function_static_declaration_token1] = ACTIONS(380), - [aux_sym_global_declaration_token1] = ACTIONS(382), - [aux_sym_namespace_definition_token1] = ACTIONS(384), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(388), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(390), - [aux_sym_trait_declaration_token1] = ACTIONS(392), - [aux_sym_interface_declaration_token1] = ACTIONS(394), - [aux_sym_enum_declaration_token1] = ACTIONS(396), - [anon_sym_COLON] = ACTIONS(522), - [aux_sym_class_declaration_token1] = ACTIONS(400), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(402), - [aux_sym_exit_statement_token1] = ACTIONS(404), - [anon_sym_unset] = ACTIONS(406), - [aux_sym_declare_statement_token1] = ACTIONS(408), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(410), - [aux_sym_goto_statement_token1] = ACTIONS(412), - [aux_sym_continue_statement_token1] = ACTIONS(414), - [aux_sym_break_statement_token1] = ACTIONS(416), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(418), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(420), - [aux_sym_do_statement_token1] = ACTIONS(422), - [aux_sym_for_statement_token1] = ACTIONS(424), - [aux_sym_foreach_statement_token1] = ACTIONS(426), - [aux_sym_if_statement_token1] = ACTIONS(428), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(524), + [sym_statement] = STATE(2039), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_colon_block] = STATE(2530), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(463), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(383), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(417), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(429), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(433), + [aux_sym_foreach_statement_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [55] = { [sym_text_interpolation] = STATE(55), - [sym_empty_statement] = STATE(1632), - [sym_function_static_declaration] = STATE(1632), - [sym_global_declaration] = STATE(1632), - [sym_namespace_definition] = STATE(1632), - [sym_namespace_use_declaration] = STATE(1632), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(1632), - [sym_interface_declaration] = STATE(1632), - [sym_enum_declaration] = STATE(1632), - [sym_class_declaration] = STATE(1632), - [sym_final_modifier] = STATE(1954), - [sym_abstract_modifier] = STATE(1954), - [sym_readonly_modifier] = STATE(2576), - [sym_const_declaration] = STATE(1632), - [sym__const_declaration] = STATE(2071), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2578), - [sym_function_definition] = STATE(1632), - [sym__function_definition_header] = STATE(2455), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(1632), - [sym_exit_statement] = STATE(1632), - [sym_unset_statement] = STATE(1632), - [sym_declare_statement] = STATE(1632), - [sym_try_statement] = STATE(1632), - [sym_goto_statement] = STATE(1632), - [sym_continue_statement] = STATE(1632), - [sym_break_statement] = STATE(1632), - [sym_return_statement] = STATE(1632), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(1632), - [sym_do_statement] = STATE(1632), - [sym_for_statement] = STATE(1632), - [sym_foreach_statement] = STATE(1632), - [sym_if_statement] = STATE(1632), - [sym_colon_block] = STATE(1626), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(1632), - [sym_compound_statement] = STATE(1632), - [sym_named_label_statement] = STATE(1632), - [sym_expression_statement] = STATE(1632), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1387), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(376), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(456), - [aux_sym_function_static_declaration_token1] = ACTIONS(380), - [aux_sym_global_declaration_token1] = ACTIONS(382), - [aux_sym_namespace_definition_token1] = ACTIONS(384), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(388), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(390), - [aux_sym_trait_declaration_token1] = ACTIONS(392), - [aux_sym_interface_declaration_token1] = ACTIONS(394), - [aux_sym_enum_declaration_token1] = ACTIONS(396), - [anon_sym_COLON] = ACTIONS(474), - [aux_sym_class_declaration_token1] = ACTIONS(400), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(402), - [aux_sym_exit_statement_token1] = ACTIONS(404), - [anon_sym_unset] = ACTIONS(406), - [aux_sym_declare_statement_token1] = ACTIONS(438), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(410), - [aux_sym_goto_statement_token1] = ACTIONS(412), - [aux_sym_continue_statement_token1] = ACTIONS(414), - [aux_sym_break_statement_token1] = ACTIONS(416), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(418), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(440), - [aux_sym_do_statement_token1] = ACTIONS(422), - [aux_sym_for_statement_token1] = ACTIONS(442), - [aux_sym_foreach_statement_token1] = ACTIONS(444), - [aux_sym_if_statement_token1] = ACTIONS(446), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(537), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [56] = { [sym_text_interpolation] = STATE(56), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [aux_sym_declare_statement_token2] = ACTIONS(544), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(539), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [57] = { [sym_text_interpolation] = STATE(57), - [sym_empty_statement] = STATE(1635), - [sym_function_static_declaration] = STATE(1635), - [sym_global_declaration] = STATE(1635), - [sym_namespace_definition] = STATE(1635), - [sym_namespace_use_declaration] = STATE(1635), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(1635), - [sym_interface_declaration] = STATE(1635), - [sym_enum_declaration] = STATE(1635), - [sym_class_declaration] = STATE(1635), - [sym_final_modifier] = STATE(1954), - [sym_abstract_modifier] = STATE(1954), - [sym_readonly_modifier] = STATE(2576), - [sym_const_declaration] = STATE(1635), - [sym__const_declaration] = STATE(2071), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2578), - [sym_function_definition] = STATE(1635), - [sym__function_definition_header] = STATE(2455), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(1635), - [sym_exit_statement] = STATE(1635), - [sym_unset_statement] = STATE(1635), - [sym_declare_statement] = STATE(1635), - [sym_try_statement] = STATE(1635), - [sym_goto_statement] = STATE(1635), - [sym_continue_statement] = STATE(1635), - [sym_break_statement] = STATE(1635), - [sym_return_statement] = STATE(1635), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(1635), - [sym_do_statement] = STATE(1635), - [sym_for_statement] = STATE(1635), - [sym_foreach_statement] = STATE(1635), - [sym_if_statement] = STATE(1635), - [sym_colon_block] = STATE(1626), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(1635), - [sym_compound_statement] = STATE(1635), - [sym_named_label_statement] = STATE(1635), - [sym_expression_statement] = STATE(1635), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1387), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(376), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(456), - [aux_sym_function_static_declaration_token1] = ACTIONS(380), - [aux_sym_global_declaration_token1] = ACTIONS(382), - [aux_sym_namespace_definition_token1] = ACTIONS(384), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(388), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(390), - [aux_sym_trait_declaration_token1] = ACTIONS(392), - [aux_sym_interface_declaration_token1] = ACTIONS(394), - [aux_sym_enum_declaration_token1] = ACTIONS(396), - [anon_sym_COLON] = ACTIONS(474), - [aux_sym_class_declaration_token1] = ACTIONS(400), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(402), - [aux_sym_exit_statement_token1] = ACTIONS(404), - [anon_sym_unset] = ACTIONS(406), - [aux_sym_declare_statement_token1] = ACTIONS(438), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(410), - [aux_sym_goto_statement_token1] = ACTIONS(412), - [aux_sym_continue_statement_token1] = ACTIONS(414), - [aux_sym_break_statement_token1] = ACTIONS(416), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(418), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(440), - [aux_sym_do_statement_token1] = ACTIONS(422), - [aux_sym_for_statement_token1] = ACTIONS(442), - [aux_sym_foreach_statement_token1] = ACTIONS(444), - [aux_sym_if_statement_token1] = ACTIONS(446), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(428), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_colon_block] = STATE(1608), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(465), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [58] = { [sym_text_interpolation] = STATE(58), - [sym_empty_statement] = STATE(2069), - [sym_function_static_declaration] = STATE(2069), - [sym_global_declaration] = STATE(2069), - [sym_namespace_definition] = STATE(2069), - [sym_namespace_use_declaration] = STATE(2069), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(2069), - [sym_interface_declaration] = STATE(2069), - [sym_enum_declaration] = STATE(2069), - [sym_class_declaration] = STATE(2069), - [sym_final_modifier] = STATE(1954), - [sym_abstract_modifier] = STATE(1954), - [sym_readonly_modifier] = STATE(2576), - [sym_const_declaration] = STATE(2069), - [sym__const_declaration] = STATE(2071), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2578), - [sym_function_definition] = STATE(2069), - [sym__function_definition_header] = STATE(2455), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(2069), - [sym_exit_statement] = STATE(2069), - [sym_unset_statement] = STATE(2069), - [sym_declare_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_goto_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_break_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_colon_block] = STATE(2560), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(2069), - [sym_compound_statement] = STATE(2069), - [sym_named_label_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1387), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(376), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(456), - [aux_sym_function_static_declaration_token1] = ACTIONS(380), - [aux_sym_global_declaration_token1] = ACTIONS(382), - [aux_sym_namespace_definition_token1] = ACTIONS(384), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(388), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(390), - [aux_sym_trait_declaration_token1] = ACTIONS(392), - [aux_sym_interface_declaration_token1] = ACTIONS(394), - [aux_sym_enum_declaration_token1] = ACTIONS(396), - [anon_sym_COLON] = ACTIONS(398), - [aux_sym_class_declaration_token1] = ACTIONS(400), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(402), - [aux_sym_exit_statement_token1] = ACTIONS(404), - [anon_sym_unset] = ACTIONS(406), - [aux_sym_declare_statement_token1] = ACTIONS(408), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(410), - [aux_sym_goto_statement_token1] = ACTIONS(412), - [aux_sym_continue_statement_token1] = ACTIONS(414), - [aux_sym_break_statement_token1] = ACTIONS(416), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(418), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(420), - [aux_sym_do_statement_token1] = ACTIONS(422), - [aux_sym_for_statement_token1] = ACTIONS(424), - [aux_sym_foreach_statement_token1] = ACTIONS(426), - [aux_sym_if_statement_token1] = ACTIONS(428), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(541), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [59] = { [sym_text_interpolation] = STATE(59), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(65), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_for_statement_token2] = ACTIONS(542), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(41), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [aux_sym_declare_statement_token2] = ACTIONS(543), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [60] = { [sym_text_interpolation] = STATE(60), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_RBRACE] = ACTIONS(546), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(73), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(541), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [61] = { [sym_text_interpolation] = STATE(61), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_for_statement_token2] = ACTIONS(548), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(545), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [62] = { [sym_text_interpolation] = STATE(62), - [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(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(473), - [sym_interface_declaration] = STATE(473), - [sym_enum_declaration] = STATE(473), - [sym_class_declaration] = STATE(473), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(473), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(473), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(473), - [sym_exit_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(1112), - [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_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(473), - [sym_compound_statement] = STATE(473), - [sym_named_label_statement] = STATE(473), - [sym_expression_statement] = STATE(473), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(492), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(494), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(496), + [sym_statement] = STATE(500), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(547), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(549), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(551), }, [63] = { [sym_text_interpolation] = STATE(63), - [sym_empty_statement] = STATE(465), - [sym_function_static_declaration] = STATE(465), - [sym_global_declaration] = STATE(465), - [sym_namespace_definition] = STATE(465), - [sym_namespace_use_declaration] = STATE(465), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(465), - [sym_interface_declaration] = STATE(465), - [sym_enum_declaration] = STATE(465), - [sym_class_declaration] = STATE(465), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(465), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(465), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(465), - [sym_exit_statement] = STATE(465), - [sym_unset_statement] = STATE(465), - [sym_declare_statement] = STATE(465), - [sym_try_statement] = STATE(465), - [sym_goto_statement] = STATE(465), - [sym_continue_statement] = STATE(465), - [sym_break_statement] = STATE(465), - [sym_return_statement] = STATE(465), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(465), - [sym_do_statement] = STATE(465), - [sym_for_statement] = STATE(465), - [sym_foreach_statement] = STATE(465), - [sym_if_statement] = STATE(465), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(465), - [sym_compound_statement] = STATE(465), - [sym_named_label_statement] = STATE(465), - [sym_expression_statement] = STATE(465), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(476), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(478), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(480), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [ts_builtin_sym_end] = ACTIONS(553), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [64] = { [sym_text_interpolation] = STATE(64), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(66), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_RBRACE] = ACTIONS(550), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(61), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(555), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [65] = { [sym_text_interpolation] = STATE(65), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_for_statement_token2] = ACTIONS(552), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(2039), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_colon_block] = STATE(2530), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(463), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(383), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [66] = { [sym_text_interpolation] = STATE(66), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_RBRACE] = ACTIONS(554), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(557), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [67] = { [sym_text_interpolation] = STATE(67), - [sym_empty_statement] = STATE(501), - [sym_function_static_declaration] = STATE(501), - [sym_global_declaration] = STATE(501), - [sym_namespace_definition] = STATE(501), - [sym_namespace_use_declaration] = STATE(501), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(501), - [sym_interface_declaration] = STATE(501), - [sym_enum_declaration] = STATE(501), - [sym_class_declaration] = STATE(501), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(501), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(501), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(501), - [sym_exit_statement] = STATE(501), - [sym_unset_statement] = STATE(501), - [sym_declare_statement] = STATE(501), - [sym_try_statement] = STATE(501), - [sym_goto_statement] = STATE(501), - [sym_continue_statement] = STATE(501), - [sym_break_statement] = STATE(501), - [sym_return_statement] = STATE(501), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(501), - [sym_do_statement] = STATE(501), - [sym_for_statement] = STATE(501), - [sym_foreach_statement] = STATE(501), - [sym_if_statement] = STATE(501), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(501), - [sym_compound_statement] = STATE(501), - [sym_named_label_statement] = STATE(501), - [sym_expression_statement] = STATE(501), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(504), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(506), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(508), + [sym_statement] = STATE(500), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(547), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(549), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(551), }, [68] = { [sym_text_interpolation] = STATE(68), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_RBRACE] = ACTIONS(556), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(29), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(559), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [69] = { [sym_text_interpolation] = STATE(69), - [sym_empty_statement] = STATE(1926), - [sym_function_static_declaration] = STATE(1926), - [sym_global_declaration] = STATE(1926), - [sym_namespace_definition] = STATE(1926), - [sym_namespace_use_declaration] = STATE(1926), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(1926), - [sym_interface_declaration] = STATE(1926), - [sym_enum_declaration] = STATE(1926), - [sym_class_declaration] = STATE(1926), - [sym_final_modifier] = STATE(1954), - [sym_abstract_modifier] = STATE(1954), - [sym_readonly_modifier] = STATE(2576), - [sym_const_declaration] = STATE(1926), - [sym__const_declaration] = STATE(2071), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2578), - [sym_function_definition] = STATE(1926), - [sym__function_definition_header] = STATE(2455), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(1926), - [sym_exit_statement] = STATE(1926), - [sym_unset_statement] = STATE(1926), - [sym_declare_statement] = STATE(1926), - [sym_try_statement] = STATE(1926), - [sym_goto_statement] = STATE(1926), - [sym_continue_statement] = STATE(1926), - [sym_break_statement] = STATE(1926), - [sym_return_statement] = STATE(1926), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(1926), - [sym_do_statement] = STATE(1926), - [sym_for_statement] = STATE(1926), - [sym_foreach_statement] = STATE(1926), - [sym_if_statement] = STATE(1926), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(1926), - [sym_compound_statement] = STATE(1926), - [sym_named_label_statement] = STATE(1926), - [sym_expression_statement] = STATE(1926), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1387), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(376), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(462), - [aux_sym_function_static_declaration_token1] = ACTIONS(380), - [aux_sym_global_declaration_token1] = ACTIONS(382), - [aux_sym_namespace_definition_token1] = ACTIONS(384), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(388), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(390), - [aux_sym_trait_declaration_token1] = ACTIONS(392), - [aux_sym_interface_declaration_token1] = ACTIONS(394), - [aux_sym_enum_declaration_token1] = ACTIONS(396), - [anon_sym_COLON] = ACTIONS(464), - [aux_sym_class_declaration_token1] = ACTIONS(400), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(402), - [aux_sym_exit_statement_token1] = ACTIONS(404), - [anon_sym_unset] = ACTIONS(406), - [aux_sym_declare_statement_token1] = ACTIONS(438), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(410), - [aux_sym_goto_statement_token1] = ACTIONS(412), - [aux_sym_continue_statement_token1] = ACTIONS(414), - [aux_sym_break_statement_token1] = ACTIONS(416), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(418), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(440), - [aux_sym_do_statement_token1] = ACTIONS(422), - [aux_sym_for_statement_token1] = ACTIONS(442), - [aux_sym_foreach_statement_token1] = ACTIONS(444), - [aux_sym_if_statement_token1] = ACTIONS(446), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(466), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(66), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(561), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [70] = { [sym_text_interpolation] = STATE(70), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_for_statement_token2] = ACTIONS(552), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(55), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(539), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [71] = { [sym_text_interpolation] = STATE(71), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_program_repeat1] = STATE(49), - [aux_sym_attribute_list_repeat1] = STATE(975), - [ts_builtin_sym_end] = ACTIONS(558), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [ts_builtin_sym_end] = ACTIONS(563), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [72] = { [sym_text_interpolation] = STATE(72), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(975), - [ts_builtin_sym_end] = ACTIONS(558), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(559), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [73] = { [sym_text_interpolation] = STATE(73), - [sym_empty_statement] = STATE(1937), - [sym_function_static_declaration] = STATE(1937), - [sym_global_declaration] = STATE(1937), - [sym_namespace_definition] = STATE(1937), - [sym_namespace_use_declaration] = STATE(1937), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(1937), - [sym_interface_declaration] = STATE(1937), - [sym_enum_declaration] = STATE(1937), - [sym_class_declaration] = STATE(1937), - [sym_final_modifier] = STATE(1954), - [sym_abstract_modifier] = STATE(1954), - [sym_readonly_modifier] = STATE(2576), - [sym_const_declaration] = STATE(1937), - [sym__const_declaration] = STATE(2071), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2578), - [sym_function_definition] = STATE(1937), - [sym__function_definition_header] = STATE(2455), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(1937), - [sym_exit_statement] = STATE(1937), - [sym_unset_statement] = STATE(1937), - [sym_declare_statement] = STATE(1937), - [sym_try_statement] = STATE(1937), - [sym_goto_statement] = STATE(1937), - [sym_continue_statement] = STATE(1937), - [sym_break_statement] = STATE(1937), - [sym_return_statement] = STATE(1937), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(1937), - [sym_do_statement] = STATE(1937), - [sym_for_statement] = STATE(1937), - [sym_foreach_statement] = STATE(1937), - [sym_if_statement] = STATE(1937), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(1937), - [sym_compound_statement] = STATE(1937), - [sym_named_label_statement] = STATE(1937), - [sym_expression_statement] = STATE(1937), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1387), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(376), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(486), - [aux_sym_function_static_declaration_token1] = ACTIONS(380), - [aux_sym_global_declaration_token1] = ACTIONS(382), - [aux_sym_namespace_definition_token1] = ACTIONS(384), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(388), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(390), - [aux_sym_trait_declaration_token1] = ACTIONS(392), - [aux_sym_interface_declaration_token1] = ACTIONS(394), - [aux_sym_enum_declaration_token1] = ACTIONS(396), - [anon_sym_COLON] = ACTIONS(488), - [aux_sym_class_declaration_token1] = ACTIONS(400), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(402), - [aux_sym_exit_statement_token1] = ACTIONS(404), - [anon_sym_unset] = ACTIONS(406), - [aux_sym_declare_statement_token1] = ACTIONS(438), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(410), - [aux_sym_goto_statement_token1] = ACTIONS(412), - [aux_sym_continue_statement_token1] = ACTIONS(414), - [aux_sym_break_statement_token1] = ACTIONS(416), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(418), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(440), - [aux_sym_do_statement_token1] = ACTIONS(422), - [aux_sym_for_statement_token1] = ACTIONS(442), - [aux_sym_foreach_statement_token1] = ACTIONS(444), - [aux_sym_if_statement_token1] = ACTIONS(446), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(490), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(565), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [74] = { [sym_text_interpolation] = STATE(74), - [sym_empty_statement] = STATE(1977), - [sym_function_static_declaration] = STATE(1977), - [sym_global_declaration] = STATE(1977), - [sym_namespace_definition] = STATE(1977), - [sym_namespace_use_declaration] = STATE(1977), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(1977), - [sym_interface_declaration] = STATE(1977), - [sym_enum_declaration] = STATE(1977), - [sym_class_declaration] = STATE(1977), - [sym_final_modifier] = STATE(1954), - [sym_abstract_modifier] = STATE(1954), - [sym_readonly_modifier] = STATE(2576), - [sym_const_declaration] = STATE(1977), - [sym__const_declaration] = STATE(2071), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2578), - [sym_function_definition] = STATE(1977), - [sym__function_definition_header] = STATE(2455), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(1977), - [sym_exit_statement] = STATE(1977), - [sym_unset_statement] = STATE(1977), - [sym_declare_statement] = STATE(1977), - [sym_try_statement] = STATE(1977), - [sym_goto_statement] = STATE(1977), - [sym_continue_statement] = STATE(1977), - [sym_break_statement] = STATE(1977), - [sym_return_statement] = STATE(1977), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(1977), - [sym_do_statement] = STATE(1977), - [sym_for_statement] = STATE(1977), - [sym_foreach_statement] = STATE(1977), - [sym_if_statement] = STATE(1977), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(1977), - [sym_compound_statement] = STATE(1977), - [sym_named_label_statement] = STATE(1977), - [sym_expression_statement] = STATE(1977), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1387), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(376), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(528), - [aux_sym_function_static_declaration_token1] = ACTIONS(380), - [aux_sym_global_declaration_token1] = ACTIONS(382), - [aux_sym_namespace_definition_token1] = ACTIONS(384), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(388), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(390), - [aux_sym_trait_declaration_token1] = ACTIONS(392), - [aux_sym_interface_declaration_token1] = ACTIONS(394), - [aux_sym_enum_declaration_token1] = ACTIONS(396), - [anon_sym_COLON] = ACTIONS(530), - [aux_sym_class_declaration_token1] = ACTIONS(400), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(402), - [aux_sym_exit_statement_token1] = ACTIONS(404), - [anon_sym_unset] = ACTIONS(406), - [aux_sym_declare_statement_token1] = ACTIONS(438), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(410), - [aux_sym_goto_statement_token1] = ACTIONS(412), - [aux_sym_continue_statement_token1] = ACTIONS(414), - [aux_sym_break_statement_token1] = ACTIONS(416), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(418), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(440), - [aux_sym_do_statement_token1] = ACTIONS(422), - [aux_sym_for_statement_token1] = ACTIONS(442), - [aux_sym_foreach_statement_token1] = ACTIONS(444), - [aux_sym_if_statement_token1] = ACTIONS(446), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(532), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_program_repeat1] = STATE(75), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(565), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [75] = { [sym_text_interpolation] = STATE(75), - [sym_empty_statement] = STATE(511), - [sym_function_static_declaration] = STATE(511), - [sym_global_declaration] = STATE(511), - [sym_namespace_definition] = STATE(511), - [sym_namespace_use_declaration] = STATE(511), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(511), - [sym_interface_declaration] = STATE(511), - [sym_enum_declaration] = STATE(511), - [sym_class_declaration] = STATE(511), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(511), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(511), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(511), - [sym_exit_statement] = STATE(511), - [sym_unset_statement] = STATE(511), - [sym_declare_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_goto_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_foreach_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(511), - [sym_compound_statement] = STATE(511), - [sym_named_label_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), + [sym_statement] = STATE(484), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_for_statement_token2] = ACTIONS(560), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_for_statement_token2] = ACTIONS(561), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [76] = { [sym_text_interpolation] = STATE(76), - [sym_empty_statement] = STATE(508), - [sym_function_static_declaration] = STATE(508), - [sym_global_declaration] = STATE(508), - [sym_namespace_definition] = STATE(508), - [sym_namespace_use_declaration] = STATE(508), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(508), - [sym_interface_declaration] = STATE(508), - [sym_enum_declaration] = STATE(508), - [sym_class_declaration] = STATE(508), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(508), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(508), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(508), - [sym_exit_statement] = STATE(508), - [sym_unset_statement] = STATE(508), - [sym_declare_statement] = STATE(508), - [sym_try_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_foreach_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(508), - [sym_compound_statement] = STATE(508), - [sym_named_label_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(362), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(364), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(366), - [aux_sym_foreach_statement_token1] = ACTIONS(368), - [aux_sym_if_statement_token1] = ACTIONS(370), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(1987), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(463), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [77] = { [sym_text_interpolation] = STATE(77), - [sym_empty_statement] = STATE(1939), - [sym_function_static_declaration] = STATE(1939), - [sym_global_declaration] = STATE(1939), - [sym_namespace_definition] = STATE(1939), - [sym_namespace_use_declaration] = STATE(1939), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(1939), - [sym_interface_declaration] = STATE(1939), - [sym_enum_declaration] = STATE(1939), - [sym_class_declaration] = STATE(1939), - [sym_final_modifier] = STATE(1954), - [sym_abstract_modifier] = STATE(1954), - [sym_readonly_modifier] = STATE(2576), - [sym_const_declaration] = STATE(1939), - [sym__const_declaration] = STATE(2071), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2578), - [sym_function_definition] = STATE(1939), - [sym__function_definition_header] = STATE(2455), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(1939), - [sym_exit_statement] = STATE(1939), - [sym_unset_statement] = STATE(1939), - [sym_declare_statement] = STATE(1939), - [sym_try_statement] = STATE(1939), - [sym_goto_statement] = STATE(1939), - [sym_continue_statement] = STATE(1939), - [sym_break_statement] = STATE(1939), - [sym_return_statement] = STATE(1939), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(1939), - [sym_do_statement] = STATE(1939), - [sym_for_statement] = STATE(1939), - [sym_foreach_statement] = STATE(1939), - [sym_if_statement] = STATE(1939), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(1939), - [sym_compound_statement] = STATE(1939), - [sym_named_label_statement] = STATE(1939), - [sym_expression_statement] = STATE(1939), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1387), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(376), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(456), - [aux_sym_function_static_declaration_token1] = ACTIONS(380), - [aux_sym_global_declaration_token1] = ACTIONS(382), - [aux_sym_namespace_definition_token1] = ACTIONS(384), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(388), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(390), - [aux_sym_trait_declaration_token1] = ACTIONS(392), - [aux_sym_interface_declaration_token1] = ACTIONS(394), - [aux_sym_enum_declaration_token1] = ACTIONS(396), - [aux_sym_class_declaration_token1] = ACTIONS(400), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(402), - [aux_sym_exit_statement_token1] = ACTIONS(404), - [anon_sym_unset] = ACTIONS(406), - [aux_sym_declare_statement_token1] = ACTIONS(438), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(410), - [aux_sym_goto_statement_token1] = ACTIONS(412), - [aux_sym_continue_statement_token1] = ACTIONS(414), - [aux_sym_break_statement_token1] = ACTIONS(416), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(418), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(440), - [aux_sym_do_statement_token1] = ACTIONS(422), - [aux_sym_for_statement_token1] = ACTIONS(442), - [aux_sym_foreach_statement_token1] = ACTIONS(444), - [aux_sym_if_statement_token1] = ACTIONS(446), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(2574), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(463), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(417), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(429), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(433), + [aux_sym_foreach_statement_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [78] = { [sym_text_interpolation] = STATE(78), - [sym_empty_statement] = STATE(529), - [sym_function_static_declaration] = STATE(529), - [sym_global_declaration] = STATE(529), - [sym_namespace_definition] = STATE(529), - [sym_namespace_use_declaration] = STATE(529), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(529), - [sym_interface_declaration] = STATE(529), - [sym_enum_declaration] = STATE(529), - [sym_class_declaration] = STATE(529), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(529), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(529), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(529), - [sym_exit_statement] = STATE(529), - [sym_unset_statement] = STATE(529), - [sym_declare_statement] = STATE(529), - [sym_try_statement] = STATE(529), - [sym_goto_statement] = STATE(529), - [sym_continue_statement] = STATE(529), - [sym_break_statement] = STATE(529), - [sym_return_statement] = STATE(529), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(529), - [sym_do_statement] = STATE(529), - [sym_for_statement] = STATE(529), - [sym_foreach_statement] = STATE(529), - [sym_if_statement] = STATE(529), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(529), - [sym_compound_statement] = STATE(529), - [sym_named_label_statement] = STATE(529), - [sym_expression_statement] = STATE(529), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(259), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(275), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(279), - [aux_sym_foreach_statement_token1] = ACTIONS(281), - [aux_sym_if_statement_token1] = ACTIONS(283), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(494), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [79] = { [sym_text_interpolation] = STATE(79), - [sym_empty_statement] = STATE(1960), - [sym_function_static_declaration] = STATE(1960), - [sym_global_declaration] = STATE(1960), - [sym_namespace_definition] = STATE(1960), - [sym_namespace_use_declaration] = STATE(1960), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(1960), - [sym_interface_declaration] = STATE(1960), - [sym_enum_declaration] = STATE(1960), - [sym_class_declaration] = STATE(1960), - [sym_final_modifier] = STATE(1954), - [sym_abstract_modifier] = STATE(1954), - [sym_readonly_modifier] = STATE(2576), - [sym_const_declaration] = STATE(1960), - [sym__const_declaration] = STATE(2071), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2578), - [sym_function_definition] = STATE(1960), - [sym__function_definition_header] = STATE(2455), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(1960), - [sym_exit_statement] = STATE(1960), - [sym_unset_statement] = STATE(1960), - [sym_declare_statement] = STATE(1960), - [sym_try_statement] = STATE(1960), - [sym_goto_statement] = STATE(1960), - [sym_continue_statement] = STATE(1960), - [sym_break_statement] = STATE(1960), - [sym_return_statement] = STATE(1960), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(1960), - [sym_do_statement] = STATE(1960), - [sym_for_statement] = STATE(1960), - [sym_foreach_statement] = STATE(1960), - [sym_if_statement] = STATE(1960), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(1960), - [sym_compound_statement] = STATE(1960), - [sym_named_label_statement] = STATE(1960), - [sym_expression_statement] = STATE(1960), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1387), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(376), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(456), - [aux_sym_function_static_declaration_token1] = ACTIONS(380), - [aux_sym_global_declaration_token1] = ACTIONS(382), - [aux_sym_namespace_definition_token1] = ACTIONS(384), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(388), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(390), - [aux_sym_trait_declaration_token1] = ACTIONS(392), - [aux_sym_interface_declaration_token1] = ACTIONS(394), - [aux_sym_enum_declaration_token1] = ACTIONS(396), - [aux_sym_class_declaration_token1] = ACTIONS(400), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(402), - [aux_sym_exit_statement_token1] = ACTIONS(404), - [anon_sym_unset] = ACTIONS(406), - [aux_sym_declare_statement_token1] = ACTIONS(408), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(410), - [aux_sym_goto_statement_token1] = ACTIONS(412), - [aux_sym_continue_statement_token1] = ACTIONS(414), - [aux_sym_break_statement_token1] = ACTIONS(416), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(418), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(420), - [aux_sym_do_statement_token1] = ACTIONS(422), - [aux_sym_for_statement_token1] = ACTIONS(424), - [aux_sym_foreach_statement_token1] = ACTIONS(426), - [aux_sym_if_statement_token1] = ACTIONS(428), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(559), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(352), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(354), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(356), + [aux_sym_foreach_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token1] = ACTIONS(360), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [80] = { [sym_text_interpolation] = STATE(80), - [sym_empty_statement] = STATE(1960), - [sym_function_static_declaration] = STATE(1960), - [sym_global_declaration] = STATE(1960), - [sym_namespace_definition] = STATE(1960), - [sym_namespace_use_declaration] = STATE(1960), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(1960), - [sym_interface_declaration] = STATE(1960), - [sym_enum_declaration] = STATE(1960), - [sym_class_declaration] = STATE(1960), - [sym_final_modifier] = STATE(1954), - [sym_abstract_modifier] = STATE(1954), - [sym_readonly_modifier] = STATE(2576), - [sym_const_declaration] = STATE(1960), - [sym__const_declaration] = STATE(2071), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2578), - [sym_function_definition] = STATE(1960), - [sym__function_definition_header] = STATE(2455), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(1960), - [sym_exit_statement] = STATE(1960), - [sym_unset_statement] = STATE(1960), - [sym_declare_statement] = STATE(1960), - [sym_try_statement] = STATE(1960), - [sym_goto_statement] = STATE(1960), - [sym_continue_statement] = STATE(1960), - [sym_break_statement] = STATE(1960), - [sym_return_statement] = STATE(1960), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(1960), - [sym_do_statement] = STATE(1960), - [sym_for_statement] = STATE(1960), - [sym_foreach_statement] = STATE(1960), - [sym_if_statement] = STATE(1960), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(1960), - [sym_compound_statement] = STATE(1960), - [sym_named_label_statement] = STATE(1960), - [sym_expression_statement] = STATE(1960), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1387), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(376), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(456), - [aux_sym_function_static_declaration_token1] = ACTIONS(380), - [aux_sym_global_declaration_token1] = ACTIONS(382), - [aux_sym_namespace_definition_token1] = ACTIONS(384), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(388), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(390), - [aux_sym_trait_declaration_token1] = ACTIONS(392), - [aux_sym_interface_declaration_token1] = ACTIONS(394), - [aux_sym_enum_declaration_token1] = ACTIONS(396), - [aux_sym_class_declaration_token1] = ACTIONS(400), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(402), - [aux_sym_exit_statement_token1] = ACTIONS(404), - [anon_sym_unset] = ACTIONS(406), - [aux_sym_declare_statement_token1] = ACTIONS(438), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(410), - [aux_sym_goto_statement_token1] = ACTIONS(412), - [aux_sym_continue_statement_token1] = ACTIONS(414), - [aux_sym_break_statement_token1] = ACTIONS(416), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(418), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(440), - [aux_sym_do_statement_token1] = ACTIONS(422), - [aux_sym_for_statement_token1] = ACTIONS(442), - [aux_sym_foreach_statement_token1] = ACTIONS(444), - [aux_sym_if_statement_token1] = ACTIONS(446), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(2550), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(463), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(417), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(429), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(433), + [aux_sym_foreach_statement_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [81] = { [sym_text_interpolation] = STATE(81), - [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(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(2541), - [sym_interface_declaration] = STATE(2541), - [sym_enum_declaration] = STATE(2541), - [sym_class_declaration] = STATE(2541), - [sym_final_modifier] = STATE(1954), - [sym_abstract_modifier] = STATE(1954), - [sym_readonly_modifier] = STATE(2576), - [sym_const_declaration] = STATE(2541), - [sym__const_declaration] = STATE(2071), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2578), - [sym_function_definition] = STATE(2541), - [sym__function_definition_header] = STATE(2455), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(2541), - [sym_exit_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(1112), - [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(1090), - [sym_switch_statement] = STATE(2541), - [sym_compound_statement] = STATE(2541), - [sym_named_label_statement] = STATE(2541), - [sym_expression_statement] = STATE(2541), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1387), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(376), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(456), - [aux_sym_function_static_declaration_token1] = ACTIONS(380), - [aux_sym_global_declaration_token1] = ACTIONS(382), - [aux_sym_namespace_definition_token1] = ACTIONS(384), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(388), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(390), - [aux_sym_trait_declaration_token1] = ACTIONS(392), - [aux_sym_interface_declaration_token1] = ACTIONS(394), - [aux_sym_enum_declaration_token1] = ACTIONS(396), - [aux_sym_class_declaration_token1] = ACTIONS(400), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(402), - [aux_sym_exit_statement_token1] = ACTIONS(404), - [anon_sym_unset] = ACTIONS(406), - [aux_sym_declare_statement_token1] = ACTIONS(408), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(410), - [aux_sym_goto_statement_token1] = ACTIONS(412), - [aux_sym_continue_statement_token1] = ACTIONS(414), - [aux_sym_break_statement_token1] = ACTIONS(416), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(418), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(420), - [aux_sym_do_statement_token1] = ACTIONS(422), - [aux_sym_for_statement_token1] = ACTIONS(424), - [aux_sym_foreach_statement_token1] = ACTIONS(426), - [aux_sym_if_statement_token1] = ACTIONS(428), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(2004), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(463), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(417), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(429), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(433), + [aux_sym_foreach_statement_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [82] = { [sym_text_interpolation] = STATE(82), - [sym_empty_statement] = STATE(529), - [sym_function_static_declaration] = STATE(529), - [sym_global_declaration] = STATE(529), - [sym_namespace_definition] = STATE(529), - [sym_namespace_use_declaration] = STATE(529), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(529), - [sym_interface_declaration] = STATE(529), - [sym_enum_declaration] = STATE(529), - [sym_class_declaration] = STATE(529), - [sym_final_modifier] = STATE(1933), - [sym_abstract_modifier] = STATE(1933), - [sym_readonly_modifier] = STATE(2624), - [sym_const_declaration] = STATE(529), - [sym__const_declaration] = STATE(541), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2622), - [sym_function_definition] = STATE(529), - [sym__function_definition_header] = STATE(2242), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(529), - [sym_exit_statement] = STATE(529), - [sym_unset_statement] = STATE(529), - [sym_declare_statement] = STATE(529), - [sym_try_statement] = STATE(529), - [sym_goto_statement] = STATE(529), - [sym_continue_statement] = STATE(529), - [sym_break_statement] = STATE(529), - [sym_return_statement] = STATE(529), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(529), - [sym_do_statement] = STATE(529), - [sym_for_statement] = STATE(529), - [sym_foreach_statement] = STATE(529), - [sym_if_statement] = STATE(529), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(529), - [sym_compound_statement] = STATE(529), - [sym_named_label_statement] = STATE(529), - [sym_expression_statement] = STATE(529), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1382), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(209), - [aux_sym_function_static_declaration_token1] = ACTIONS(211), - [aux_sym_global_declaration_token1] = ACTIONS(213), - [aux_sym_namespace_definition_token1] = ACTIONS(215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(221), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(225), - [aux_sym_trait_declaration_token1] = ACTIONS(229), - [aux_sym_interface_declaration_token1] = ACTIONS(231), - [aux_sym_enum_declaration_token1] = ACTIONS(233), - [aux_sym_class_declaration_token1] = ACTIONS(237), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(253), - [aux_sym_exit_statement_token1] = ACTIONS(255), - [anon_sym_unset] = ACTIONS(257), - [aux_sym_declare_statement_token1] = ACTIONS(362), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(263), - [aux_sym_goto_statement_token1] = ACTIONS(265), - [aux_sym_continue_statement_token1] = ACTIONS(267), - [aux_sym_break_statement_token1] = ACTIONS(269), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(271), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(364), - [aux_sym_do_statement_token1] = ACTIONS(277), - [aux_sym_for_statement_token1] = ACTIONS(366), - [aux_sym_foreach_statement_token1] = ACTIONS(368), - [aux_sym_if_statement_token1] = ACTIONS(370), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(559), + [sym_empty_statement] = STATE(485), + [sym_function_static_declaration] = STATE(485), + [sym_global_declaration] = STATE(485), + [sym_namespace_definition] = STATE(485), + [sym_namespace_use_declaration] = STATE(485), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(498), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2183), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_foreach_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1354), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1359), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(212), + [aux_sym_function_static_declaration_token1] = ACTIONS(214), + [aux_sym_global_declaration_token1] = ACTIONS(216), + [aux_sym_namespace_definition_token1] = ACTIONS(218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [aux_sym_trait_declaration_token1] = ACTIONS(232), + [aux_sym_interface_declaration_token1] = ACTIONS(234), + [aux_sym_enum_declaration_token1] = ACTIONS(236), + [aux_sym_class_declaration_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(258), + [aux_sym_exit_statement_token1] = ACTIONS(260), + [anon_sym_unset] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(264), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(268), + [aux_sym_goto_statement_token1] = ACTIONS(270), + [aux_sym_continue_statement_token1] = ACTIONS(272), + [aux_sym_break_statement_token1] = ACTIONS(274), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(276), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(280), + [aux_sym_do_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(288), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [83] = { [sym_text_interpolation] = STATE(83), - [sym_empty_statement] = STATE(2583), - [sym_function_static_declaration] = STATE(2583), - [sym_global_declaration] = STATE(2583), - [sym_namespace_definition] = STATE(2583), - [sym_namespace_use_declaration] = STATE(2583), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_trait_declaration] = STATE(2583), - [sym_interface_declaration] = STATE(2583), - [sym_enum_declaration] = STATE(2583), - [sym_class_declaration] = STATE(2583), - [sym_final_modifier] = STATE(1954), - [sym_abstract_modifier] = STATE(1954), - [sym_readonly_modifier] = STATE(2576), - [sym_const_declaration] = STATE(2583), - [sym__const_declaration] = STATE(2071), - [sym_static_modifier] = STATE(2239), - [sym_visibility_modifier] = STATE(2578), - [sym_function_definition] = STATE(2583), - [sym__function_definition_header] = STATE(2455), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_echo_statement] = STATE(2583), - [sym_exit_statement] = STATE(2583), - [sym_unset_statement] = STATE(2583), - [sym_declare_statement] = STATE(2583), - [sym_try_statement] = STATE(2583), - [sym_goto_statement] = STATE(2583), - [sym_continue_statement] = STATE(2583), - [sym_break_statement] = STATE(2583), - [sym_return_statement] = STATE(2583), - [sym_throw_expression] = STATE(1112), - [sym_while_statement] = STATE(2583), - [sym_do_statement] = STATE(2583), - [sym_for_statement] = STATE(2583), - [sym_foreach_statement] = STATE(2583), - [sym_if_statement] = STATE(2583), - [sym_match_expression] = STATE(1090), - [sym_switch_statement] = STATE(2583), - [sym_compound_statement] = STATE(2583), - [sym_named_label_statement] = STATE(2583), - [sym_expression_statement] = STATE(2583), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1387), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(376), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(456), - [aux_sym_function_static_declaration_token1] = ACTIONS(380), - [aux_sym_global_declaration_token1] = ACTIONS(382), - [aux_sym_namespace_definition_token1] = ACTIONS(384), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(388), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_LBRACE] = ACTIONS(390), - [aux_sym_trait_declaration_token1] = ACTIONS(392), - [aux_sym_interface_declaration_token1] = ACTIONS(394), - [aux_sym_enum_declaration_token1] = ACTIONS(396), - [aux_sym_class_declaration_token1] = ACTIONS(400), - [aux_sym_final_modifier_token1] = ACTIONS(239), - [aux_sym_abstract_modifier_token1] = ACTIONS(241), - [aux_sym_readonly_modifier_token1] = ACTIONS(243), - [aux_sym_visibility_modifier_token1] = ACTIONS(245), - [aux_sym_visibility_modifier_token2] = ACTIONS(245), - [aux_sym_visibility_modifier_token3] = ACTIONS(245), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [aux_sym_echo_statement_token1] = ACTIONS(402), - [aux_sym_exit_statement_token1] = ACTIONS(404), - [anon_sym_unset] = ACTIONS(406), - [aux_sym_declare_statement_token1] = ACTIONS(408), - [sym_float] = ACTIONS(261), - [aux_sym_try_statement_token1] = ACTIONS(410), - [aux_sym_goto_statement_token1] = ACTIONS(412), - [aux_sym_continue_statement_token1] = ACTIONS(414), - [aux_sym_break_statement_token1] = ACTIONS(416), - [sym_integer] = ACTIONS(261), - [aux_sym_return_statement_token1] = ACTIONS(418), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_while_statement_token1] = ACTIONS(420), - [aux_sym_do_statement_token1] = ACTIONS(422), - [aux_sym_for_statement_token1] = ACTIONS(424), - [aux_sym_foreach_statement_token1] = ACTIONS(426), - [aux_sym_if_statement_token1] = ACTIONS(428), - [aux_sym_match_expression_token1] = ACTIONS(285), - [aux_sym_switch_statement_token1] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_statement] = STATE(2004), + [sym_empty_statement] = STATE(2086), + [sym_function_static_declaration] = STATE(2086), + [sym_global_declaration] = STATE(2086), + [sym_namespace_definition] = STATE(2086), + [sym_namespace_use_declaration] = STATE(2086), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_trait_declaration] = STATE(2086), + [sym_interface_declaration] = STATE(2086), + [sym_enum_declaration] = STATE(2086), + [sym_class_declaration] = STATE(2086), + [sym_final_modifier] = STATE(1327), + [sym_abstract_modifier] = STATE(1327), + [sym_readonly_modifier] = STATE(1327), + [sym_const_declaration] = STATE(2086), + [sym__const_declaration] = STATE(2085), + [sym__modifier] = STATE(1329), + [sym_static_modifier] = STATE(1425), + [sym_visibility_modifier] = STATE(1327), + [sym_function_definition] = STATE(2086), + [sym__function_definition_header] = STATE(2308), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_echo_statement] = STATE(2086), + [sym_exit_statement] = STATE(2086), + [sym_unset_statement] = STATE(2086), + [sym_declare_statement] = STATE(2086), + [sym_literal] = STATE(1148), + [sym_try_statement] = STATE(2086), + [sym_goto_statement] = STATE(2086), + [sym_continue_statement] = STATE(2086), + [sym_break_statement] = STATE(2086), + [sym_return_statement] = STATE(2086), + [sym_throw_expression] = STATE(1148), + [sym_while_statement] = STATE(2086), + [sym_do_statement] = STATE(2086), + [sym_for_statement] = STATE(2086), + [sym_foreach_statement] = STATE(2086), + [sym_if_statement] = STATE(2086), + [sym_match_expression] = STATE(1145), + [sym_switch_statement] = STATE(2086), + [sym_compound_statement] = STATE(2086), + [sym_named_label_statement] = STATE(2086), + [sym_expression_statement] = STATE(2086), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1353), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_class_declaration_repeat1] = STATE(1361), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(387), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(463), + [aux_sym_function_static_declaration_token1] = ACTIONS(391), + [aux_sym_global_declaration_token1] = ACTIONS(393), + [aux_sym_namespace_definition_token1] = ACTIONS(395), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(397), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(401), + [aux_sym_trait_declaration_token1] = ACTIONS(403), + [aux_sym_interface_declaration_token1] = ACTIONS(405), + [aux_sym_enum_declaration_token1] = ACTIONS(407), + [aux_sym_class_declaration_token1] = ACTIONS(409), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [sym_var_modifier] = ACTIONS(248), + [aux_sym_visibility_modifier_token1] = ACTIONS(250), + [aux_sym_visibility_modifier_token2] = ACTIONS(250), + [aux_sym_visibility_modifier_token3] = ACTIONS(250), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [aux_sym_echo_statement_token1] = ACTIONS(411), + [aux_sym_exit_statement_token1] = ACTIONS(413), + [anon_sym_unset] = ACTIONS(415), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(266), + [aux_sym_try_statement_token1] = ACTIONS(419), + [aux_sym_goto_statement_token1] = ACTIONS(421), + [aux_sym_continue_statement_token1] = ACTIONS(423), + [aux_sym_break_statement_token1] = ACTIONS(425), + [sym_integer] = ACTIONS(266), + [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [84] = { [sym_text_interpolation] = STATE(84), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(991), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(982), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_variadic_unpacking] = STATE(913), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_by_ref] = STATE(913), - [sym_yield_expression] = STATE(962), - [sym_array_element_initializer] = STATE(951), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(566), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(574), - [anon_sym_RBRACE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_EQ_GT] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(576), - [anon_sym_RPAREN] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(574), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_yield_expression_token2] = ACTIONS(620), - [aux_sym_binary_expression_token1] = ACTIONS(574), - [anon_sym_QMARK_QMARK] = ACTIONS(564), - [anon_sym_STAR_STAR] = ACTIONS(564), - [aux_sym_binary_expression_token2] = ACTIONS(574), - [aux_sym_binary_expression_token3] = ACTIONS(574), - [aux_sym_binary_expression_token4] = ACTIONS(574), - [anon_sym_PIPE_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(574), - [anon_sym_BANG_EQ] = ACTIONS(574), - [anon_sym_LT_GT] = ACTIONS(564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(564), - [anon_sym_BANG_EQ_EQ] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_LT_EQ] = ACTIONS(574), - [anon_sym_GT_EQ] = ACTIONS(564), - [anon_sym_LT_EQ_GT] = ACTIONS(564), - [anon_sym_LT_LT] = ACTIONS(574), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(574), - [anon_sym_STAR] = ACTIONS(574), - [anon_sym_SLASH] = ACTIONS(574), - [anon_sym_PERCENT] = ACTIONS(564), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(929), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(571), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(579), + [anon_sym_RBRACE] = ACTIONS(569), + [anon_sym_COLON] = ACTIONS(569), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_EQ_GT] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(583), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_PIPE] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_yield_expression_token2] = ACTIONS(625), + [aux_sym_binary_expression_token1] = ACTIONS(579), + [anon_sym_QMARK_QMARK] = ACTIONS(569), + [anon_sym_STAR_STAR] = ACTIONS(569), + [aux_sym_binary_expression_token2] = ACTIONS(579), + [aux_sym_binary_expression_token3] = ACTIONS(579), + [aux_sym_binary_expression_token4] = ACTIONS(579), + [anon_sym_PIPE_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(579), + [anon_sym_BANG_EQ] = ACTIONS(579), + [anon_sym_LT_GT] = ACTIONS(569), + [anon_sym_EQ_EQ_EQ] = ACTIONS(569), + [anon_sym_BANG_EQ_EQ] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(579), + [anon_sym_LT_EQ] = ACTIONS(579), + [anon_sym_GT_EQ] = ACTIONS(569), + [anon_sym_LT_EQ_GT] = ACTIONS(569), + [anon_sym_LT_LT] = ACTIONS(579), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_STAR] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(579), + [anon_sym_PERCENT] = ACTIONS(569), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [85] = { [sym_text_interpolation] = STATE(85), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1045), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1044), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_variadic_unpacking] = STATE(913), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_by_ref] = STATE(913), - [sym_yield_expression] = STATE(962), - [sym_array_element_initializer] = STATE(951), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(566), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_RBRACE] = ACTIONS(564), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_EQ_GT] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(632), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(574), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_RBRACK] = ACTIONS(564), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_yield_expression_token2] = ACTIONS(650), - [aux_sym_binary_expression_token1] = ACTIONS(574), - [anon_sym_QMARK_QMARK] = ACTIONS(564), - [anon_sym_STAR_STAR] = ACTIONS(564), - [aux_sym_binary_expression_token2] = ACTIONS(574), - [aux_sym_binary_expression_token3] = ACTIONS(574), - [aux_sym_binary_expression_token4] = ACTIONS(574), - [anon_sym_PIPE_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(574), - [anon_sym_BANG_EQ] = ACTIONS(574), - [anon_sym_LT_GT] = ACTIONS(564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(564), - [anon_sym_BANG_EQ_EQ] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_LT_EQ] = ACTIONS(574), - [anon_sym_GT_EQ] = ACTIONS(564), - [anon_sym_LT_EQ_GT] = ACTIONS(564), - [anon_sym_LT_LT] = ACTIONS(574), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(574), - [anon_sym_STAR] = ACTIONS(574), - [anon_sym_SLASH] = ACTIONS(574), - [anon_sym_PERCENT] = ACTIONS(564), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(929), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(571), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(569), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_RBRACE] = ACTIONS(569), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_EQ_GT] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_PIPE] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(569), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_yield_expression_token2] = ACTIONS(655), + [aux_sym_binary_expression_token1] = ACTIONS(579), + [anon_sym_QMARK_QMARK] = ACTIONS(569), + [anon_sym_STAR_STAR] = ACTIONS(569), + [aux_sym_binary_expression_token2] = ACTIONS(579), + [aux_sym_binary_expression_token3] = ACTIONS(579), + [aux_sym_binary_expression_token4] = ACTIONS(579), + [anon_sym_PIPE_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(579), + [anon_sym_BANG_EQ] = ACTIONS(579), + [anon_sym_LT_GT] = ACTIONS(569), + [anon_sym_EQ_EQ_EQ] = ACTIONS(569), + [anon_sym_BANG_EQ_EQ] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(579), + [anon_sym_LT_EQ] = ACTIONS(579), + [anon_sym_GT_EQ] = ACTIONS(569), + [anon_sym_LT_EQ_GT] = ACTIONS(569), + [anon_sym_LT_LT] = ACTIONS(579), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_STAR] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(579), + [anon_sym_PERCENT] = ACTIONS(569), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [86] = { [sym_text_interpolation] = STATE(86), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1095), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_variadic_unpacking] = STATE(1079), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_by_ref] = STATE(1079), - [sym_yield_expression] = STATE(1090), - [sym_array_element_initializer] = STATE(1092), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(662), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_EQ_GT] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(574), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(289), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_yield_expression_token2] = ACTIONS(668), - [aux_sym_binary_expression_token1] = ACTIONS(574), - [anon_sym_QMARK_QMARK] = ACTIONS(564), - [anon_sym_STAR_STAR] = ACTIONS(564), - [aux_sym_binary_expression_token2] = ACTIONS(574), - [aux_sym_binary_expression_token3] = ACTIONS(574), - [aux_sym_binary_expression_token4] = ACTIONS(574), - [anon_sym_PIPE_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(574), - [anon_sym_BANG_EQ] = ACTIONS(574), - [anon_sym_LT_GT] = ACTIONS(564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(564), - [anon_sym_BANG_EQ_EQ] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_LT_EQ] = ACTIONS(574), - [anon_sym_GT_EQ] = ACTIONS(564), - [anon_sym_LT_EQ_GT] = ACTIONS(564), - [anon_sym_LT_LT] = ACTIONS(574), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(574), - [anon_sym_STAR] = ACTIONS(574), - [anon_sym_SLASH] = ACTIONS(574), - [anon_sym_PERCENT] = ACTIONS(564), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(564), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1100), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_variadic_unpacking] = STATE(1111), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_by_ref] = STATE(1111), + [sym_yield_expression] = STATE(1145), + [sym_array_element_initializer] = STATE(1099), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(667), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(569), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_EQ_GT] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_PIPE] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_yield_expression_token2] = ACTIONS(673), + [aux_sym_binary_expression_token1] = ACTIONS(579), + [anon_sym_QMARK_QMARK] = ACTIONS(569), + [anon_sym_STAR_STAR] = ACTIONS(569), + [aux_sym_binary_expression_token2] = ACTIONS(579), + [aux_sym_binary_expression_token3] = ACTIONS(579), + [aux_sym_binary_expression_token4] = ACTIONS(579), + [anon_sym_PIPE_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(579), + [anon_sym_BANG_EQ] = ACTIONS(579), + [anon_sym_LT_GT] = ACTIONS(569), + [anon_sym_EQ_EQ_EQ] = ACTIONS(569), + [anon_sym_BANG_EQ_EQ] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(579), + [anon_sym_LT_EQ] = ACTIONS(579), + [anon_sym_GT_EQ] = ACTIONS(569), + [anon_sym_LT_EQ_GT] = ACTIONS(569), + [anon_sym_LT_LT] = ACTIONS(579), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_STAR] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(579), + [anon_sym_PERCENT] = ACTIONS(569), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(569), }, [87] = { [sym_text_interpolation] = STATE(87), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1184), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1169), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(913), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_by_ref] = STATE(913), - [sym_yield_expression] = STATE(962), - [sym_array_element_initializer] = STATE(951), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(566), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_EQ_GT] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(574), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_yield_expression_token2] = ACTIONS(690), - [aux_sym_binary_expression_token1] = ACTIONS(574), - [anon_sym_QMARK_QMARK] = ACTIONS(564), - [anon_sym_STAR_STAR] = ACTIONS(564), - [aux_sym_binary_expression_token2] = ACTIONS(574), - [aux_sym_binary_expression_token3] = ACTIONS(574), - [aux_sym_binary_expression_token4] = ACTIONS(574), - [anon_sym_PIPE_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(574), - [anon_sym_BANG_EQ] = ACTIONS(574), - [anon_sym_LT_GT] = ACTIONS(564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(564), - [anon_sym_BANG_EQ_EQ] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_LT_EQ] = ACTIONS(574), - [anon_sym_GT_EQ] = ACTIONS(564), - [anon_sym_LT_EQ_GT] = ACTIONS(564), - [anon_sym_LT_LT] = ACTIONS(574), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(574), - [anon_sym_STAR] = ACTIONS(574), - [anon_sym_SLASH] = ACTIONS(574), - [anon_sym_PERCENT] = ACTIONS(564), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(929), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(571), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(569), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_EQ_GT] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_PIPE] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_yield_expression_token2] = ACTIONS(695), + [aux_sym_binary_expression_token1] = ACTIONS(579), + [anon_sym_QMARK_QMARK] = ACTIONS(569), + [anon_sym_STAR_STAR] = ACTIONS(569), + [aux_sym_binary_expression_token2] = ACTIONS(579), + [aux_sym_binary_expression_token3] = ACTIONS(579), + [aux_sym_binary_expression_token4] = ACTIONS(579), + [anon_sym_PIPE_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(579), + [anon_sym_BANG_EQ] = ACTIONS(579), + [anon_sym_LT_GT] = ACTIONS(569), + [anon_sym_EQ_EQ_EQ] = ACTIONS(569), + [anon_sym_BANG_EQ_EQ] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(579), + [anon_sym_LT_EQ] = ACTIONS(579), + [anon_sym_GT_EQ] = ACTIONS(569), + [anon_sym_LT_EQ_GT] = ACTIONS(569), + [anon_sym_LT_LT] = ACTIONS(579), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_STAR] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(579), + [anon_sym_PERCENT] = ACTIONS(569), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [88] = { [sym_text_interpolation] = STATE(88), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_cast_type] = STATE(2523), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1311), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2528), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1295), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(700), - [aux_sym_cast_type_token2] = ACTIONS(702), - [aux_sym_cast_type_token3] = ACTIONS(702), - [aux_sym_cast_type_token4] = ACTIONS(702), - [aux_sym_cast_type_token5] = ACTIONS(702), - [aux_sym_cast_type_token6] = ACTIONS(702), - [aux_sym_cast_type_token7] = ACTIONS(702), - [aux_sym_cast_type_token8] = ACTIONS(702), - [aux_sym_cast_type_token9] = ACTIONS(702), - [aux_sym_cast_type_token10] = ACTIONS(702), - [aux_sym_cast_type_token11] = ACTIONS(702), - [aux_sym_cast_type_token12] = ACTIONS(702), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [89] = { [sym_text_interpolation] = STATE(89), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_cast_type] = STATE(2559), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1311), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2512), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1300), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(700), - [aux_sym_cast_type_token2] = ACTIONS(702), - [aux_sym_cast_type_token3] = ACTIONS(702), - [aux_sym_cast_type_token4] = ACTIONS(702), - [aux_sym_cast_type_token5] = ACTIONS(702), - [aux_sym_cast_type_token6] = ACTIONS(702), - [aux_sym_cast_type_token7] = ACTIONS(702), - [aux_sym_cast_type_token8] = ACTIONS(702), - [aux_sym_cast_type_token9] = ACTIONS(702), - [aux_sym_cast_type_token10] = ACTIONS(702), - [aux_sym_cast_type_token11] = ACTIONS(702), - [aux_sym_cast_type_token12] = ACTIONS(702), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [90] = { [sym_text_interpolation] = STATE(90), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_cast_type] = STATE(2484), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1311), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2541), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1300), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(700), - [aux_sym_cast_type_token2] = ACTIONS(702), - [aux_sym_cast_type_token3] = ACTIONS(702), - [aux_sym_cast_type_token4] = ACTIONS(702), - [aux_sym_cast_type_token5] = ACTIONS(702), - [aux_sym_cast_type_token6] = ACTIONS(702), - [aux_sym_cast_type_token7] = ACTIONS(702), - [aux_sym_cast_type_token8] = ACTIONS(702), - [aux_sym_cast_type_token9] = ACTIONS(702), - [aux_sym_cast_type_token10] = ACTIONS(702), - [aux_sym_cast_type_token11] = ACTIONS(702), - [aux_sym_cast_type_token12] = ACTIONS(702), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [91] = { [sym_text_interpolation] = STATE(91), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_cast_type] = STATE(2475), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1311), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2583), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1295), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(700), - [aux_sym_cast_type_token2] = ACTIONS(702), - [aux_sym_cast_type_token3] = ACTIONS(702), - [aux_sym_cast_type_token4] = ACTIONS(702), - [aux_sym_cast_type_token5] = ACTIONS(702), - [aux_sym_cast_type_token6] = ACTIONS(702), - [aux_sym_cast_type_token7] = ACTIONS(702), - [aux_sym_cast_type_token8] = ACTIONS(702), - [aux_sym_cast_type_token9] = ACTIONS(702), - [aux_sym_cast_type_token10] = ACTIONS(702), - [aux_sym_cast_type_token11] = ACTIONS(702), - [aux_sym_cast_type_token12] = ACTIONS(702), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [92] = { [sym_text_interpolation] = STATE(92), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_cast_type] = STATE(2473), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1311), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2505), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1300), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(700), - [aux_sym_cast_type_token2] = ACTIONS(702), - [aux_sym_cast_type_token3] = ACTIONS(702), - [aux_sym_cast_type_token4] = ACTIONS(702), - [aux_sym_cast_type_token5] = ACTIONS(702), - [aux_sym_cast_type_token6] = ACTIONS(702), - [aux_sym_cast_type_token7] = ACTIONS(702), - [aux_sym_cast_type_token8] = ACTIONS(702), - [aux_sym_cast_type_token9] = ACTIONS(702), - [aux_sym_cast_type_token10] = ACTIONS(702), - [aux_sym_cast_type_token11] = ACTIONS(702), - [aux_sym_cast_type_token12] = ACTIONS(702), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [93] = { [sym_text_interpolation] = STATE(93), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_cast_type] = STATE(2571), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1311), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2520), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1300), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(700), - [aux_sym_cast_type_token2] = ACTIONS(702), - [aux_sym_cast_type_token3] = ACTIONS(702), - [aux_sym_cast_type_token4] = ACTIONS(702), - [aux_sym_cast_type_token5] = ACTIONS(702), - [aux_sym_cast_type_token6] = ACTIONS(702), - [aux_sym_cast_type_token7] = ACTIONS(702), - [aux_sym_cast_type_token8] = ACTIONS(702), - [aux_sym_cast_type_token9] = ACTIONS(702), - [aux_sym_cast_type_token10] = ACTIONS(702), - [aux_sym_cast_type_token11] = ACTIONS(702), - [aux_sym_cast_type_token12] = ACTIONS(702), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [94] = { [sym_text_interpolation] = STATE(94), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_cast_type] = STATE(2551), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1311), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2506), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1300), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(700), - [aux_sym_cast_type_token2] = ACTIONS(702), - [aux_sym_cast_type_token3] = ACTIONS(702), - [aux_sym_cast_type_token4] = ACTIONS(702), - [aux_sym_cast_type_token5] = ACTIONS(702), - [aux_sym_cast_type_token6] = ACTIONS(702), - [aux_sym_cast_type_token7] = ACTIONS(702), - [aux_sym_cast_type_token8] = ACTIONS(702), - [aux_sym_cast_type_token9] = ACTIONS(702), - [aux_sym_cast_type_token10] = ACTIONS(702), - [aux_sym_cast_type_token11] = ACTIONS(702), - [aux_sym_cast_type_token12] = ACTIONS(702), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [95] = { [sym_text_interpolation] = STATE(95), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_cast_type] = STATE(2536), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1311), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2541), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1295), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(700), - [aux_sym_cast_type_token2] = ACTIONS(702), - [aux_sym_cast_type_token3] = ACTIONS(702), - [aux_sym_cast_type_token4] = ACTIONS(702), - [aux_sym_cast_type_token5] = ACTIONS(702), - [aux_sym_cast_type_token6] = ACTIONS(702), - [aux_sym_cast_type_token7] = ACTIONS(702), - [aux_sym_cast_type_token8] = ACTIONS(702), - [aux_sym_cast_type_token9] = ACTIONS(702), - [aux_sym_cast_type_token10] = ACTIONS(702), - [aux_sym_cast_type_token11] = ACTIONS(702), - [aux_sym_cast_type_token12] = ACTIONS(702), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [96] = { [sym_text_interpolation] = STATE(96), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_cast_type] = STATE(2550), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1305), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2528), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1300), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(700), - [aux_sym_cast_type_token2] = ACTIONS(702), - [aux_sym_cast_type_token3] = ACTIONS(702), - [aux_sym_cast_type_token4] = ACTIONS(702), - [aux_sym_cast_type_token5] = ACTIONS(702), - [aux_sym_cast_type_token6] = ACTIONS(702), - [aux_sym_cast_type_token7] = ACTIONS(702), - [aux_sym_cast_type_token8] = ACTIONS(702), - [aux_sym_cast_type_token9] = ACTIONS(702), - [aux_sym_cast_type_token10] = ACTIONS(702), - [aux_sym_cast_type_token11] = ACTIONS(702), - [aux_sym_cast_type_token12] = ACTIONS(702), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [97] = { [sym_text_interpolation] = STATE(97), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_cast_type] = STATE(2543), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1311), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2610), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1300), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(700), - [aux_sym_cast_type_token2] = ACTIONS(702), - [aux_sym_cast_type_token3] = ACTIONS(702), - [aux_sym_cast_type_token4] = ACTIONS(702), - [aux_sym_cast_type_token5] = ACTIONS(702), - [aux_sym_cast_type_token6] = ACTIONS(702), - [aux_sym_cast_type_token7] = ACTIONS(702), - [aux_sym_cast_type_token8] = ACTIONS(702), - [aux_sym_cast_type_token9] = ACTIONS(702), - [aux_sym_cast_type_token10] = ACTIONS(702), - [aux_sym_cast_type_token11] = ACTIONS(702), - [aux_sym_cast_type_token12] = ACTIONS(702), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [98] = { [sym_text_interpolation] = STATE(98), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_cast_type] = STATE(2484), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1305), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2454), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1300), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(700), - [aux_sym_cast_type_token2] = ACTIONS(702), - [aux_sym_cast_type_token3] = ACTIONS(702), - [aux_sym_cast_type_token4] = ACTIONS(702), - [aux_sym_cast_type_token5] = ACTIONS(702), - [aux_sym_cast_type_token6] = ACTIONS(702), - [aux_sym_cast_type_token7] = ACTIONS(702), - [aux_sym_cast_type_token8] = ACTIONS(702), - [aux_sym_cast_type_token9] = ACTIONS(702), - [aux_sym_cast_type_token10] = ACTIONS(702), - [aux_sym_cast_type_token11] = ACTIONS(702), - [aux_sym_cast_type_token12] = ACTIONS(702), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [99] = { [sym_text_interpolation] = STATE(99), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1189), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(642), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(642), - [sym_nullsafe_member_access_expression] = STATE(642), - [sym_scoped_property_access_expression] = STATE(642), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(1982), - [sym__array_destructing_element] = STATE(1983), - [sym_function_call_expression] = STATE(618), - [sym_scoped_call_expression] = STATE(618), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_cast_type] = STATE(2443), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1300), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(618), - [sym_nullsafe_member_call_expression] = STATE(618), - [sym_variadic_unpacking] = STATE(913), - [sym_subscript_expression] = STATE(618), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(618), - [sym_variable_name] = STATE(618), - [sym_by_ref] = STATE(2354), - [sym_yield_expression] = STATE(962), - [sym_array_element_initializer] = STATE(1916), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym__array_destructing_repeat1] = STATE(1986), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(706), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(632), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_RBRACK] = ACTIONS(708), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(705), + [aux_sym_cast_type_token2] = ACTIONS(707), + [aux_sym_cast_type_token3] = ACTIONS(707), + [aux_sym_cast_type_token4] = ACTIONS(707), + [aux_sym_cast_type_token5] = ACTIONS(707), + [aux_sym_cast_type_token6] = ACTIONS(707), + [aux_sym_cast_type_token7] = ACTIONS(707), + [aux_sym_cast_type_token8] = ACTIONS(707), + [aux_sym_cast_type_token9] = ACTIONS(707), + [aux_sym_cast_type_token10] = ACTIONS(707), + [aux_sym_cast_type_token11] = ACTIONS(707), + [aux_sym_cast_type_token12] = ACTIONS(707), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [100] = { [sym_text_interpolation] = STATE(100), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1189), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(642), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(642), - [sym_nullsafe_member_access_expression] = STATE(642), - [sym_scoped_property_access_expression] = STATE(642), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(1982), - [sym__array_destructing_element] = STATE(1983), - [sym_function_call_expression] = STATE(618), - [sym_scoped_call_expression] = STATE(618), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(618), - [sym_nullsafe_member_call_expression] = STATE(618), - [sym_variadic_unpacking] = STATE(913), - [sym_subscript_expression] = STATE(618), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(618), - [sym_variable_name] = STATE(618), - [sym_by_ref] = STATE(2354), - [sym_yield_expression] = STATE(962), - [sym_array_element_initializer] = STATE(1916), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym__array_destructing_repeat1] = STATE(1986), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(706), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(632), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_RBRACK] = ACTIONS(710), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_variadic_placeholder] = STATE(2616), + [sym_argument] = STATE(2095), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(715), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(723), + [anon_sym_DOT_DOT_DOT] = ACTIONS(725), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [101] = { [sym_text_interpolation] = STATE(101), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1189), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(633), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(633), + [sym_nullsafe_member_access_expression] = STATE(633), + [sym_scoped_property_access_expression] = STATE(633), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(1919), + [sym__array_destructing_element] = STATE(1921), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_variadic_placeholder] = STATE(2673), - [sym_argument] = STATE(2181), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [anon_sym_COMMA] = ACTIONS(718), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(726), - [anon_sym_DOT_DOT_DOT] = ACTIONS(728), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_by_ref] = STATE(2242), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(1908), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym__array_destructing_repeat1] = STATE(1923), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(739), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_RBRACK] = ACTIONS(741), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [102] = { [sym_text_interpolation] = STATE(102), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_variadic_placeholder] = STATE(2580), - [sym_argument] = STATE(1953), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [anon_sym_COMMA] = ACTIONS(740), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(742), - [anon_sym_DOT_DOT_DOT] = ACTIONS(728), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_variadic_placeholder] = STATE(2638), + [sym_argument] = STATE(2134), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(743), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(745), + [anon_sym_DOT_DOT_DOT] = ACTIONS(725), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [103] = { [sym_text_interpolation] = STATE(103), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1189), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(642), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(642), - [sym_nullsafe_member_access_expression] = STATE(642), - [sym_scoped_property_access_expression] = STATE(642), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(1982), - [sym__array_destructing_element] = STATE(1983), - [sym_function_call_expression] = STATE(618), - [sym_scoped_call_expression] = STATE(618), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1189), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(633), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(633), + [sym_nullsafe_member_access_expression] = STATE(633), + [sym_scoped_property_access_expression] = STATE(633), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(1919), + [sym__array_destructing_element] = STATE(1921), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(618), - [sym_nullsafe_member_call_expression] = STATE(618), - [sym_variadic_unpacking] = STATE(913), - [sym_subscript_expression] = STATE(618), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(618), - [sym_variable_name] = STATE(618), - [sym_by_ref] = STATE(2354), - [sym_yield_expression] = STATE(962), - [sym_array_element_initializer] = STATE(1916), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym__array_destructing_repeat1] = STATE(1986), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(706), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(632), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_RBRACK] = ACTIONS(744), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_by_ref] = STATE(2242), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(1908), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym__array_destructing_repeat1] = STATE(1923), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(739), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_RBRACK] = ACTIONS(747), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [104] = { [sym_text_interpolation] = STATE(104), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_variadic_placeholder] = STATE(2637), - [sym_argument] = STATE(2166), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [anon_sym_COMMA] = ACTIONS(746), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(748), - [anon_sym_DOT_DOT_DOT] = ACTIONS(728), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_variadic_placeholder] = STATE(2508), + [sym_argument] = STATE(2001), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(749), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_DOT_DOT_DOT] = ACTIONS(725), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [105] = { [sym_text_interpolation] = STATE(105), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_variadic_placeholder] = STATE(2621), - [sym_argument] = STATE(2147), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [anon_sym_COMMA] = ACTIONS(750), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(752), - [anon_sym_DOT_DOT_DOT] = ACTIONS(728), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_variadic_placeholder] = STATE(2538), + [sym_argument] = STATE(1917), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(753), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(725), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [106] = { [sym_text_interpolation] = STATE(106), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1189), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(642), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(642), - [sym_nullsafe_member_access_expression] = STATE(642), - [sym_scoped_property_access_expression] = STATE(642), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(1982), - [sym__array_destructing_element] = STATE(1983), - [sym_function_call_expression] = STATE(618), - [sym_scoped_call_expression] = STATE(618), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(618), - [sym_nullsafe_member_call_expression] = STATE(618), - [sym_variadic_unpacking] = STATE(913), - [sym_subscript_expression] = STATE(618), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(618), - [sym_variable_name] = STATE(618), - [sym_by_ref] = STATE(2354), - [sym_yield_expression] = STATE(962), - [sym_array_element_initializer] = STATE(1985), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym__array_destructing_repeat1] = STATE(1986), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(754), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(632), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_RBRACK] = ACTIONS(756), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_variadic_placeholder] = STATE(2608), + [sym_argument] = STATE(2073), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(757), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(725), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [107] = { [sym_text_interpolation] = STATE(107), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1189), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(633), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(633), + [sym_nullsafe_member_access_expression] = STATE(633), + [sym_scoped_property_access_expression] = STATE(633), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(1919), + [sym__array_destructing_element] = STATE(1921), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_variadic_placeholder] = STATE(2565), - [sym_argument] = STATE(2126), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [anon_sym_COMMA] = ACTIONS(758), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(728), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_by_ref] = STATE(2242), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(1922), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym__array_destructing_repeat1] = STATE(1923), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(761), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_RBRACK] = ACTIONS(763), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [108] = { [sym_text_interpolation] = STATE(108), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_variadic_placeholder] = STATE(2630), - [sym_argument] = STATE(2152), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [anon_sym_COMMA] = ACTIONS(762), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(728), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_variadic_placeholder] = STATE(2587), + [sym_argument] = STATE(2011), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(765), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(725), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [109] = { [sym_text_interpolation] = STATE(109), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1189), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(642), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(642), - [sym_nullsafe_member_access_expression] = STATE(642), - [sym_scoped_property_access_expression] = STATE(642), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(1982), - [sym__array_destructing_element] = STATE(1983), - [sym_function_call_expression] = STATE(618), - [sym_scoped_call_expression] = STATE(618), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(618), - [sym_nullsafe_member_call_expression] = STATE(618), - [sym_variadic_unpacking] = STATE(913), - [sym_subscript_expression] = STATE(618), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(618), - [sym_variable_name] = STATE(618), - [sym_by_ref] = STATE(2354), - [sym_yield_expression] = STATE(962), - [sym_array_element_initializer] = STATE(1916), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym__array_destructing_repeat1] = STATE(1986), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(706), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(632), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_RBRACK] = ACTIONS(766), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_variadic_placeholder] = STATE(2643), + [sym_argument] = STATE(2158), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(769), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_DOT_DOT_DOT] = ACTIONS(725), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [110] = { [sym_text_interpolation] = STATE(110), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_variadic_placeholder] = STATE(2640), - [sym_argument] = STATE(2173), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [anon_sym_COMMA] = ACTIONS(768), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(770), - [anon_sym_DOT_DOT_DOT] = ACTIONS(728), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_variadic_placeholder] = STATE(2594), + [sym_argument] = STATE(2030), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [anon_sym_COMMA] = ACTIONS(773), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_DOT_DOT_DOT] = ACTIONS(725), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [111] = { [sym_text_interpolation] = STATE(111), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1189), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(633), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(633), + [sym_nullsafe_member_access_expression] = STATE(633), + [sym_scoped_property_access_expression] = STATE(633), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(1919), + [sym__array_destructing_element] = STATE(1921), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_variadic_placeholder] = STATE(2497), - [sym_argument] = STATE(2057), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [anon_sym_COMMA] = ACTIONS(772), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(774), - [anon_sym_DOT_DOT_DOT] = ACTIONS(728), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_by_ref] = STATE(2242), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(1908), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym__array_destructing_repeat1] = STATE(1923), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(739), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_RBRACK] = ACTIONS(777), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [112] = { [sym_text_interpolation] = STATE(112), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1189), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(633), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(633), + [sym_nullsafe_member_access_expression] = STATE(633), + [sym_scoped_property_access_expression] = STATE(633), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(1919), + [sym__array_destructing_element] = STATE(1921), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_argument] = STATE(2369), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_by_ref] = STATE(2242), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(1908), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym__array_destructing_repeat1] = STATE(1923), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(739), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_RBRACK] = ACTIONS(779), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [113] = { [sym_text_interpolation] = STATE(113), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_argument] = STATE(2369), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(781), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [114] = { [sym_text_interpolation] = STATE(114), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1191), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(913), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_by_ref] = STATE(913), - [sym_yield_expression] = STATE(962), - [sym_array_element_initializer] = STATE(2030), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(780), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(783), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [115] = { [sym_text_interpolation] = STATE(115), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1195), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_argument] = STATE(2369), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(784), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(1908), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(785), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(787), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [116] = { [sym_text_interpolation] = STATE(116), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_argument] = STATE(2369), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(786), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [117] = { [sym_text_interpolation] = STATE(117), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_argument] = STATE(2369), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(788), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [118] = { [sym_text_interpolation] = STATE(118), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1195), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_argument] = STATE(2369), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(1922), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(793), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(795), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [119] = { [sym_text_interpolation] = STATE(119), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1193), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_variadic_unpacking] = STATE(913), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_by_ref] = STATE(913), - [sym_yield_expression] = STATE(962), - [sym_array_element_initializer] = STATE(1985), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(792), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(632), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_RBRACK] = ACTIONS(794), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [120] = { [sym_text_interpolation] = STATE(120), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_argument] = STATE(2369), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(796), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [121] = { [sym_text_interpolation] = STATE(121), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_argument] = STATE(2369), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [122] = { [sym_text_interpolation] = STATE(122), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_argument] = STATE(2369), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(800), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [123] = { [sym_text_interpolation] = STATE(123), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_argument] = STATE(2369), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(802), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [124] = { [sym_text_interpolation] = STATE(124), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_argument] = STATE(2369), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [125] = { [sym_text_interpolation] = STATE(125), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1191), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1188), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(913), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_by_ref] = STATE(913), - [sym_yield_expression] = STATE(962), - [sym_array_element_initializer] = STATE(1940), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(806), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(808), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(1939), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(809), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [126] = { [sym_text_interpolation] = STATE(126), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_argument] = STATE(2369), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(810), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(813), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [127] = { [sym_text_interpolation] = STATE(127), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_argument] = STATE(2369), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(812), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [128] = { [sym_text_interpolation] = STATE(128), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_argument] = STATE(2369), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(814), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [129] = { [sym_text_interpolation] = STATE(129), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_argument] = STATE(2369), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(816), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(819), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [130] = { [sym_text_interpolation] = STATE(130), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_argument] = STATE(2369), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(818), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [131] = { [sym_text_interpolation] = STATE(131), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1193), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_variadic_unpacking] = STATE(913), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_by_ref] = STATE(913), - [sym_yield_expression] = STATE(962), - [sym_array_element_initializer] = STATE(1916), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(820), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(632), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_RBRACK] = ACTIONS(822), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(823), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [132] = { [sym_text_interpolation] = STATE(132), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1191), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1188), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(913), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_by_ref] = STATE(913), - [sym_yield_expression] = STATE(962), - [sym_array_element_initializer] = STATE(2164), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(824), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(1911), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(825), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(827), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [133] = { [sym_text_interpolation] = STATE(133), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1191), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1195), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(913), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_by_ref] = STATE(913), - [sym_yield_expression] = STATE(962), - [sym_array_element_initializer] = STATE(2164), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(2107), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(829), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [134] = { [sym_text_interpolation] = STATE(134), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1193), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1188), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_variadic_unpacking] = STATE(913), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_by_ref] = STATE(913), - [sym_yield_expression] = STATE(962), - [sym_array_element_initializer] = STATE(2164), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(632), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_RBRACK] = ACTIONS(828), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(2107), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [135] = { [sym_text_interpolation] = STATE(135), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1193), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1195), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_variadic_unpacking] = STATE(913), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_by_ref] = STATE(913), - [sym_yield_expression] = STATE(962), - [sym_array_element_initializer] = STATE(2164), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(632), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_RBRACK] = ACTIONS(830), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(2107), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(833), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [136] = { [sym_text_interpolation] = STATE(136), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1191), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1188), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(913), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_by_ref] = STATE(913), - [sym_yield_expression] = STATE(962), - [sym_array_element_initializer] = STATE(2164), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(2107), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [137] = { [sym_text_interpolation] = STATE(137), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_reference_modifier] = STATE(187), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_argument] = STATE(2369), - [sym__argument_name] = STATE(153), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2401), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1461), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(712), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(716), - [aux_sym_namespace_definition_token1] = ACTIONS(720), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(722), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(730), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(734), - [anon_sym_parent] = ACTIONS(734), - [aux_sym__argument_name_token1] = ACTIONS(736), - [aux_sym__argument_name_token2] = ACTIONS(738), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_argument] = STATE(2396), + [sym__argument_name] = STATE(154), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2300), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(709), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(717), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(719), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(727), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(731), + [anon_sym_parent] = ACTIONS(731), + [aux_sym__argument_name_token1] = ACTIONS(733), + [aux_sym__argument_name_token2] = ACTIONS(735), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [138] = { [sym_text_interpolation] = STATE(138), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym_match_condition_list] = STATE(2618), - [sym_match_conditional_expression] = STATE(2143), - [sym_match_default_expression] = STATE(2143), - [sym__expression] = STATE(1195), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_match_condition_list] = STATE(2468), + [sym_match_conditional_expression] = STATE(1950), + [sym_match_default_expression] = STATE(1950), + [sym_expression] = STATE(1190), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(834), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_RBRACE] = ACTIONS(836), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [aux_sym_match_default_expression_token1] = ACTIONS(838), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(837), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_RBRACE] = ACTIONS(839), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [aux_sym_match_default_expression_token1] = ACTIONS(841), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [139] = { [sym_text_interpolation] = STATE(139), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1193), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1188), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_variadic_unpacking] = STATE(913), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_by_ref] = STATE(913), - [sym_yield_expression] = STATE(962), - [sym_array_element_initializer] = STATE(2164), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(632), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_RBRACK] = ACTIONS(840), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(2107), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [140] = { [sym_text_interpolation] = STATE(140), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym_match_condition_list] = STATE(2618), - [sym_match_conditional_expression] = STATE(1975), - [sym_match_default_expression] = STATE(1975), - [sym__expression] = STATE(1195), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1195), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(842), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_RBRACE] = ACTIONS(844), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [aux_sym_match_default_expression_token1] = ACTIONS(838), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(2107), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(845), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [141] = { [sym_text_interpolation] = STATE(141), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1193), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1188), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_variadic_unpacking] = STATE(913), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_by_ref] = STATE(913), - [sym_yield_expression] = STATE(962), - [sym_array_element_initializer] = STATE(2164), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(632), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_RBRACK] = ACTIONS(846), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(2107), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [142] = { [sym_text_interpolation] = STATE(142), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1191), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_match_condition_list] = STATE(2468), + [sym_match_conditional_expression] = STATE(2096), + [sym_match_default_expression] = STATE(2096), + [sym_expression] = STATE(1190), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(913), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_by_ref] = STATE(913), - [sym_yield_expression] = STATE(962), - [sym_array_element_initializer] = STATE(2164), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(848), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(849), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_RBRACE] = ACTIONS(851), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [aux_sym_match_default_expression_token1] = ACTIONS(841), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [143] = { [sym_text_interpolation] = STATE(143), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1191), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1195), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(913), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_by_ref] = STATE(913), - [sym_yield_expression] = STATE(962), - [sym_array_element_initializer] = STATE(2164), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(2107), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(853), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [144] = { [sym_text_interpolation] = STATE(144), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym_match_condition_list] = STATE(2618), - [sym_match_conditional_expression] = STATE(2446), - [sym_match_default_expression] = STATE(2446), - [sym__expression] = STATE(1195), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1289), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(1919), + [sym__array_destructing_element] = STATE(2306), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_RBRACE] = ACTIONS(850), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [aux_sym_match_default_expression_token1] = ACTIONS(838), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(2292), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(855), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(857), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(859), + [anon_sym_RBRACK] = ACTIONS(861), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [145] = { [sym_text_interpolation] = STATE(145), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1301), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(1833), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(606), - [sym_scoped_call_expression] = STATE(606), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1290), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(629), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(629), + [sym_nullsafe_member_access_expression] = STATE(629), + [sym_scoped_property_access_expression] = STATE(629), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(1869), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(606), - [sym_nullsafe_member_call_expression] = STATE(606), - [sym_subscript_expression] = STATE(606), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(606), - [sym_variable_name] = STATE(606), - [sym_by_ref] = STATE(2040), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym__list_destructing_repeat1] = STATE(2041), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(852), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(854), - [anon_sym_RPAREN] = ACTIONS(856), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_by_ref] = STATE(1942), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym__list_destructing_repeat1] = STATE(1924), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(864), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_RPAREN] = ACTIONS(866), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [146] = { [sym_text_interpolation] = STATE(146), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1309), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(1982), - [sym__array_destructing_element] = STATE(2424), - [sym_function_call_expression] = STATE(615), - [sym_scoped_call_expression] = STATE(615), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_match_condition_list] = STATE(2468), + [sym_match_conditional_expression] = STATE(2367), + [sym_match_default_expression] = STATE(2367), + [sym_expression] = STATE(1190), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(615), - [sym_nullsafe_member_call_expression] = STATE(615), - [sym_subscript_expression] = STATE(615), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(615), - [sym_variable_name] = STATE(615), - [sym_by_ref] = STATE(2391), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(858), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(854), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_RBRACK] = ACTIONS(862), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_RBRACE] = ACTIONS(868), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [aux_sym_match_default_expression_token1] = ACTIONS(841), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [147] = { [sym_text_interpolation] = STATE(147), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym_match_condition_list] = STATE(2618), - [sym_match_conditional_expression] = STATE(2446), - [sym_match_default_expression] = STATE(2446), - [sym__expression] = STATE(1195), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1195), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_RBRACE] = ACTIONS(865), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [aux_sym_match_default_expression_token1] = ACTIONS(838), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(2107), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [148] = { [sym_text_interpolation] = STATE(148), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1309), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(1982), - [sym__array_destructing_element] = STATE(2424), - [sym_function_call_expression] = STATE(615), - [sym_scoped_call_expression] = STATE(615), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1289), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(1919), + [sym__array_destructing_element] = STATE(2306), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(615), - [sym_nullsafe_member_call_expression] = STATE(615), - [sym_subscript_expression] = STATE(615), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(615), - [sym_variable_name] = STATE(615), - [sym_by_ref] = STATE(2391), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(858), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(854), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_RBRACK] = ACTIONS(867), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(2292), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(855), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(857), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(859), + [anon_sym_RBRACK] = ACTIONS(855), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [149] = { [sym_text_interpolation] = STATE(149), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1309), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(1982), - [sym__array_destructing_element] = STATE(2424), - [sym_function_call_expression] = STATE(615), - [sym_scoped_call_expression] = STATE(615), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1188), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(615), - [sym_nullsafe_member_call_expression] = STATE(615), - [sym_subscript_expression] = STATE(615), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(615), - [sym_variable_name] = STATE(615), - [sym_by_ref] = STATE(2391), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(858), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(854), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_RBRACK] = ACTIONS(858), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(960), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_by_ref] = STATE(960), + [sym_yield_expression] = STATE(926), + [sym_array_element_initializer] = STATE(2107), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [150] = { [sym_text_interpolation] = STATE(150), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym_match_condition_list] = STATE(2618), - [sym_match_conditional_expression] = STATE(2446), - [sym_match_default_expression] = STATE(2446), - [sym__expression] = STATE(1195), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_match_condition_list] = STATE(2468), + [sym_match_conditional_expression] = STATE(2367), + [sym_match_default_expression] = STATE(2367), + [sym_expression] = STATE(1190), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), [anon_sym_RBRACE] = ACTIONS(870), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [aux_sym_match_default_expression_token1] = ACTIONS(838), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [aux_sym_match_default_expression_token1] = ACTIONS(841), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [151] = { [sym_text_interpolation] = STATE(151), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym_match_condition_list] = STATE(2618), - [sym_match_conditional_expression] = STATE(2446), - [sym_match_default_expression] = STATE(2446), - [sym__expression] = STATE(1195), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1289), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(1919), + [sym__array_destructing_element] = STATE(2306), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_RBRACE] = ACTIONS(872), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [aux_sym_match_default_expression_token1] = ACTIONS(838), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(2292), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(855), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(857), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(859), + [anon_sym_RBRACK] = ACTIONS(872), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [152] = { [sym_text_interpolation] = STATE(152), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1193), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_match_condition_list] = STATE(2468), + [sym_match_conditional_expression] = STATE(2367), + [sym_match_default_expression] = STATE(2367), + [sym_expression] = STATE(1190), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_variadic_unpacking] = STATE(913), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_by_ref] = STATE(913), - [sym_yield_expression] = STATE(962), - [sym_array_element_initializer] = STATE(2164), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(632), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_RBRACE] = ACTIONS(875), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [aux_sym_match_default_expression_token1] = ACTIONS(841), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [153] = { [sym_text_interpolation] = STATE(153), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_match_condition_list] = STATE(2468), + [sym_match_conditional_expression] = STATE(2367), + [sym_match_default_expression] = STATE(2367), + [sym_expression] = STATE(1190), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2200), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1513), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(714), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_RBRACE] = ACTIONS(877), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [aux_sym_match_default_expression_token1] = ACTIONS(841), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [154] = { [sym_text_interpolation] = STATE(154), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym_match_condition_list] = STATE(2618), - [sym_match_conditional_expression] = STATE(2446), - [sym_match_default_expression] = STATE(2446), - [sym__expression] = STATE(1195), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_reference_modifier] = STATE(200), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1217), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [aux_sym_match_default_expression_token1] = ACTIONS(838), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2415), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1496), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(711), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [155] = { [sym_text_interpolation] = STATE(155), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1283), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(643), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(643), - [sym_nullsafe_member_access_expression] = STATE(643), - [sym_scoped_property_access_expression] = STATE(643), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2150), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(624), - [sym_scoped_call_expression] = STATE(624), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_match_condition_list] = STATE(2468), + [sym_match_conditional_expression] = STATE(2367), + [sym_match_default_expression] = STATE(2367), + [sym_expression] = STATE(1190), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(624), - [sym_nullsafe_member_call_expression] = STATE(624), - [sym_subscript_expression] = STATE(624), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(624), - [sym_variable_name] = STATE(624), - [sym_by_ref] = STATE(2232), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(874), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(854), - [anon_sym_RPAREN] = ACTIONS(874), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [aux_sym_match_default_expression_token1] = ACTIONS(841), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [156] = { [sym_text_interpolation] = STATE(156), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2607), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1267), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(632), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(632), + [sym_nullsafe_member_access_expression] = STATE(632), + [sym_scoped_property_access_expression] = STATE(632), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2099), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(612), + [sym_scoped_call_expression] = STATE(612), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(876), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(612), + [sym_nullsafe_member_call_expression] = STATE(612), + [sym_subscript_expression] = STATE(612), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(612), + [sym_variable_name] = STATE(612), + [sym_by_ref] = STATE(2408), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(879), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_RPAREN] = ACTIONS(879), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [157] = { [sym_text_interpolation] = STATE(157), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2549), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1214), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2519), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(878), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(881), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [158] = { [sym_text_interpolation] = STATE(158), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2616), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2568), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(880), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(883), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [159] = { [sym_text_interpolation] = STATE(159), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2505), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2475), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(882), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(885), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [160] = { [sym_text_interpolation] = STATE(160), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2614), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2596), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(884), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(887), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [161] = { [sym_text_interpolation] = STATE(161), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2649), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2637), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(886), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(889), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [162] = { [sym_text_interpolation] = STATE(162), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_foreach_pair] = STATE(2548), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1201), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2337), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2492), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_by_ref] = STATE(2548), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(891), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [163] = { [sym_text_interpolation] = STATE(163), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_foreach_pair] = STATE(2467), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1224), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2458), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2479), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_by_ref] = STATE(2467), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(893), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [164] = { [sym_text_interpolation] = STATE(164), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2472), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2630), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(888), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(895), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [165] = { [sym_text_interpolation] = STATE(165), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2672), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1214), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2573), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(890), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(897), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [166] = { [sym_text_interpolation] = STATE(166), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2470), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2486), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(892), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(899), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [167] = { [sym_text_interpolation] = STATE(167), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2592), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1214), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2575), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(894), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(901), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [168] = { [sym_text_interpolation] = STATE(168), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2554), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_foreach_pair] = STATE(2576), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1206), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2238), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(896), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_by_ref] = STATE(2576), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [169] = { [sym_text_interpolation] = STATE(169), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2665), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1214), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2627), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(898), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(903), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [170] = { [sym_text_interpolation] = STATE(170), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_foreach_pair] = STATE(2610), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2251), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2581), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_by_ref] = STATE(2610), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(905), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [171] = { [sym_text_interpolation] = STATE(171), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2530), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_foreach_pair] = STATE(2542), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1245), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2438), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(900), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_by_ref] = STATE(2542), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [172] = { [sym_text_interpolation] = STATE(172), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2631), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1214), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2624), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(902), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(907), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [173] = { [sym_text_interpolation] = STATE(173), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2483), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1214), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2622), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(904), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(909), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [174] = { [sym_text_interpolation] = STATE(174), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2465), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2599), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(906), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(911), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [175] = { [sym_text_interpolation] = STATE(175), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2662), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1214), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2442), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(908), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(913), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [176] = { [sym_text_interpolation] = STATE(176), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_foreach_pair] = STATE(2529), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1243), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2358), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2441), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_by_ref] = STATE(2529), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(915), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [177] = { [sym_text_interpolation] = STATE(177), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2609), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1214), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2444), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(910), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(917), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [178] = { [sym_text_interpolation] = STATE(178), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2635), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1214), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2579), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(912), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(919), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [179] = { [sym_text_interpolation] = STATE(179), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2603), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1214), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_foreach_pair] = STATE(2491), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1227), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2327), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(914), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_by_ref] = STATE(2491), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [180] = { [sym_text_interpolation] = STATE(180), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2659), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1214), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2451), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(916), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(921), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [181] = { [sym_text_interpolation] = STATE(181), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2521), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2452), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(918), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(923), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [182] = { [sym_text_interpolation] = STATE(182), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2657), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1214), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_foreach_pair] = STATE(2462), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1223), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2410), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(920), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_by_ref] = STATE(2462), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [183] = { [sym_text_interpolation] = STATE(183), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__expressions] = STATE(2520), - [sym_sequence_expression] = STATE(2307), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2481), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(922), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(925), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [184] = { [sym_text_interpolation] = STATE(184), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym__expressions] = STATE(2329), - [sym_sequence_expression] = STATE(2331), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__expressions] = STATE(2521), + [sym_sequence_expression] = STATE(2314), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1233), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(927), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [185] = { [sym_text_interpolation] = STATE(185), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1044), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_by_ref] = STATE(954), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1136), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_by_ref] = STATE(1140), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(929), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [186] = { [sym_text_interpolation] = STATE(186), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(924), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(924), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym__expressions] = STATE(2299), + [sym_sequence_expression] = STATE(2237), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1193), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [187] = { [sym_text_interpolation] = STATE(187), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(926), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(926), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1199), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2414), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1463), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), + [sym_comment] = ACTIONS(5), }, [188] = { [sym_text_interpolation] = STATE(188), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(928), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(928), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1216), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(931), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(931), }, [189] = { [sym_text_interpolation] = STATE(189), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1008), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1270), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2338), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_by_ref] = STATE(954), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(930), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_by_ref] = STATE(2484), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [190] = { [sym_text_interpolation] = STATE(190), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1199), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(932), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(932), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1215), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(933), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(933), }, [191] = { [sym_text_interpolation] = STATE(191), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1044), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(644), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(644), - [sym_nullsafe_member_access_expression] = STATE(644), - [sym_scoped_property_access_expression] = STATE(644), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2163), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_by_ref] = STATE(2221), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), - [sym_comment] = ACTIONS(5), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1214), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(935), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(935), }, [192] = { [sym_text_interpolation] = STATE(192), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1178), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1019), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(635), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(635), + [sym_nullsafe_member_access_expression] = STATE(635), + [sym_scoped_property_access_expression] = STATE(635), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2106), + [sym_function_call_expression] = STATE(628), + [sym_scoped_call_expression] = STATE(628), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_by_ref] = STATE(954), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(628), + [sym_nullsafe_member_call_expression] = STATE(628), + [sym_subscript_expression] = STATE(628), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(628), + [sym_variable_name] = STATE(628), + [sym_by_ref] = STATE(2411), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [193] = { [sym_text_interpolation] = STATE(193), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1044), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1019), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_by_ref] = STATE(954), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(930), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(912), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [194] = { [sym_text_interpolation] = STATE(194), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1211), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(934), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(934), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(979), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_by_ref] = STATE(912), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(937), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(5), }, [195] = { [sym_text_interpolation] = STATE(195), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym__expressions] = STATE(2352), - [sym_sequence_expression] = STATE(2331), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1019), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(912), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(937), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [196] = { [sym_text_interpolation] = STATE(196), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1212), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(936), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(936), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym__expressions] = STATE(2231), + [sym_sequence_expression] = STATE(2237), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1193), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), }, [197] = { [sym_text_interpolation] = STATE(197), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1227), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2381), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1467), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), - [sym_comment] = ACTIONS(5), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1209), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(939), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(939), }, [198] = { [sym_text_interpolation] = STATE(198), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1178), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1182), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_by_ref] = STATE(954), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(930), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_by_ref] = STATE(912), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(937), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [199] = { [sym_text_interpolation] = STATE(199), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1129), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_by_ref] = STATE(1060), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(938), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1182), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_by_ref] = STATE(912), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(737), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [200] = { [sym_text_interpolation] = STATE(200), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1216), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1210), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_variadic_unpacking] = STATE(2202), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1512), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_variadic_unpacking] = STATE(2395), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_DOT_DOT_DOT] = ACTIONS(677), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [201] = { [sym_text_interpolation] = STATE(201), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1310), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2220), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_by_ref] = STATE(2569), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(704), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), - [sym_comment] = ACTIONS(5), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1207), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(941), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(941), }, [202] = { [sym_text_interpolation] = STATE(202), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_sequence_expression] = STATE(2416), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1241), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), - [sym_comment] = ACTIONS(5), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1212), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(943), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(943), }, [203] = { [sym_text_interpolation] = STATE(203), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1315), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_sequence_expression] = STATE(2313), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1221), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_RBRACK] = ACTIONS(940), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [204] = { [sym_text_interpolation] = STATE(204), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1275), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1258), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_RBRACK] = ACTIONS(942), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(945), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [205] = { [sym_text_interpolation] = STATE(205), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1225), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1165), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(947), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [206] = { [sym_text_interpolation] = STATE(206), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1256), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1318), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_RBRACK] = ACTIONS(946), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_COLON] = ACTIONS(949), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [207] = { [sym_text_interpolation] = STATE(207), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1163), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1250), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(948), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(951), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [208] = { [sym_text_interpolation] = STATE(208), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1259), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1316), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [anon_sym_RPAREN] = ACTIONS(950), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(953), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [209] = { [sym_text_interpolation] = STATE(209), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1225), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_EQ_GT] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1065), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(955), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [210] = { [sym_text_interpolation] = STATE(210), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1265), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1239), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [anon_sym_RPAREN] = ACTIONS(954), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_EQ_GT] = ACTIONS(957), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [211] = { [sym_text_interpolation] = STATE(211), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1285), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(956), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(959), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [212] = { [sym_text_interpolation] = STATE(212), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1292), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1042), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_RBRACK] = ACTIONS(958), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(961), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [213] = { [sym_text_interpolation] = STATE(213), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1295), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1315), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_RBRACK] = ACTIONS(960), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_COLON] = ACTIONS(963), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [214] = { [sym_text_interpolation] = STATE(214), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1274), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(962), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_sequence_expression] = STATE(2340), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1196), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [215] = { [sym_text_interpolation] = STATE(215), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1084), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(964), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_sequence_expression] = STATE(2313), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1234), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [216] = { [sym_text_interpolation] = STATE(216), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1261), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1011), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(966), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(965), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [217] = { [sym_text_interpolation] = STATE(217), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1262), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1279), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(968), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(967), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [218] = { [sym_text_interpolation] = STATE(218), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_sequence_expression] = STATE(2288), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1296), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(969), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [219] = { [sym_text_interpolation] = STATE(219), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1268), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1269), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_RBRACK] = ACTIONS(970), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(971), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [220] = { [sym_text_interpolation] = STATE(220), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_sequence_expression] = STATE(2416), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1179), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(973), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [221] = { [sym_text_interpolation] = STATE(221), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1028), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1314), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(972), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_COLON] = ACTIONS(975), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [222] = { [sym_text_interpolation] = STATE(222), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1169), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1280), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_RPAREN] = ACTIONS(974), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_RBRACK] = ACTIONS(977), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [223] = { [sym_text_interpolation] = STATE(223), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1245), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1271), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(976), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_COLON] = ACTIONS(979), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [224] = { [sym_text_interpolation] = STATE(224), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1130), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1239), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_EQ_GT] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [225] = { [sym_text_interpolation] = STATE(225), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(992), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1155), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [226] = { [sym_text_interpolation] = STATE(226), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1016), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1127), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [227] = { [sym_text_interpolation] = STATE(227), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1272), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1026), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [228] = { [sym_text_interpolation] = STATE(228), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1271), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1132), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [229] = { [sym_text_interpolation] = STATE(229), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1152), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1022), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [230] = { [sym_text_interpolation] = STATE(230), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1270), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1268), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [231] = { [sym_text_interpolation] = STATE(231), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1159), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1288), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [232] = { [sym_text_interpolation] = STATE(232), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1297), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1020), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [233] = { [sym_text_interpolation] = STATE(233), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1300), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1017), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [234] = { [sym_text_interpolation] = STATE(234), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1288), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1010), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [235] = { [sym_text_interpolation] = STATE(235), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1208), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1309), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [236] = { [sym_text_interpolation] = STATE(236), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1207), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1241), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [237] = { [sym_text_interpolation] = STATE(237), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1215), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1032), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [238] = { [sym_text_interpolation] = STATE(238), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1217), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1014), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [239] = { [sym_text_interpolation] = STATE(239), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1039), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [240] = { [sym_text_interpolation] = STATE(240), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(996), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [241] = { [sym_text_interpolation] = STATE(241), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1219), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(913), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [242] = { [sym_text_interpolation] = STATE(242), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1282), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [243] = { [sym_text_interpolation] = STATE(243), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1255), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(918), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [244] = { [sym_text_interpolation] = STATE(244), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1225), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1008), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [245] = { [sym_text_interpolation] = STATE(245), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1239), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1133), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [246] = { [sym_text_interpolation] = STATE(246), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1141), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(986), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [247] = { [sym_text_interpolation] = STATE(247), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(980), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1023), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [248] = { [sym_text_interpolation] = STATE(248), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1126), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1179), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [249] = { [sym_text_interpolation] = STATE(249), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(925), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1024), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [250] = { [sym_text_interpolation] = STATE(250), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(926), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1299), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [251] = { [sym_text_interpolation] = STATE(251), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1004), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(988), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [252] = { [sym_text_interpolation] = STATE(252), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1069), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1292), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [253] = { [sym_text_interpolation] = STATE(253), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1081), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(990), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [254] = { [sym_text_interpolation] = STATE(254), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1082), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1170), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [255] = { [sym_text_interpolation] = STATE(255), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1086), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1293), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [256] = { [sym_text_interpolation] = STATE(256), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(989), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1226), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [257] = { [sym_text_interpolation] = STATE(257), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1164), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1284), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [258] = { [sym_text_interpolation] = STATE(258), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(988), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(991), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [259] = { [sym_text_interpolation] = STATE(259), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(987), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1077), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [260] = { [sym_text_interpolation] = STATE(260), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(985), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1274), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [261] = { [sym_text_interpolation] = STATE(261), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1074), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1063), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [262] = { [sym_text_interpolation] = STATE(262), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1056), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1058), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [263] = { [sym_text_interpolation] = STATE(263), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1073), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1053), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [264] = { [sym_text_interpolation] = STATE(264), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1123), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1117), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [265] = { [sym_text_interpolation] = STATE(265), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1049), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1144), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [266] = { [sym_text_interpolation] = STATE(266), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1051), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1131), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [267] = { [sym_text_interpolation] = STATE(267), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1052), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1123), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [268] = { [sym_text_interpolation] = STATE(268), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1053), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1122), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [269] = { [sym_text_interpolation] = STATE(269), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1054), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1119), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [270] = { [sym_text_interpolation] = STATE(270), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1055), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1101), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [271] = { [sym_text_interpolation] = STATE(271), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1057), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1098), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [272] = { [sym_text_interpolation] = STATE(272), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1058), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1093), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [273] = { [sym_text_interpolation] = STATE(273), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1059), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1088), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [274] = { [sym_text_interpolation] = STATE(274), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1061), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1080), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [275] = { [sym_text_interpolation] = STATE(275), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1063), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1075), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [276] = { [sym_text_interpolation] = STATE(276), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1064), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1066), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [277] = { [sym_text_interpolation] = STATE(277), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1066), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1291), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [278] = { [sym_text_interpolation] = STATE(278), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1067), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1028), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [279] = { [sym_text_interpolation] = STATE(279), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1232), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1064), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [280] = { [sym_text_interpolation] = STATE(280), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1140), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1031), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [281] = { [sym_text_interpolation] = STATE(281), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(990), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1277), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [282] = { [sym_text_interpolation] = STATE(282), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1281), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1033), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [283] = { [sym_text_interpolation] = STATE(283), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(993), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1286), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [284] = { [sym_text_interpolation] = STATE(284), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1136), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1252), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [285] = { [sym_text_interpolation] = STATE(285), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1285), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1224), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [286] = { [sym_text_interpolation] = STATE(286), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1314), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1249), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [287] = { [sym_text_interpolation] = STATE(287), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1183), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1114), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [288] = { [sym_text_interpolation] = STATE(288), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1221), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1035), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [289] = { [sym_text_interpolation] = STATE(289), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1177), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1243), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [290] = { [sym_text_interpolation] = STATE(290), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1176), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1036), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [291] = { [sym_text_interpolation] = STATE(291), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1235), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(993), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [292] = { [sym_text_interpolation] = STATE(292), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1246), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [293] = { [sym_text_interpolation] = STATE(293), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1120), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1152), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [294] = { [sym_text_interpolation] = STATE(294), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1280), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1220), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [295] = { [sym_text_interpolation] = STATE(295), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1174), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(997), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [296] = { [sym_text_interpolation] = STATE(296), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1148), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1001), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [297] = { [sym_text_interpolation] = STATE(297), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1190), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(980), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [298] = { [sym_text_interpolation] = STATE(298), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1223), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1038), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [299] = { [sym_text_interpolation] = STATE(299), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1153), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1174), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [300] = { [sym_text_interpolation] = STATE(300), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1150), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1191), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [301] = { [sym_text_interpolation] = STATE(301), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1171), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(998), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [302] = { [sym_text_interpolation] = STATE(302), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(997), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(913), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [303] = { [sym_text_interpolation] = STATE(303), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1151), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(995), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [304] = { [sym_text_interpolation] = STATE(304), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1311), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1242), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [305] = { [sym_text_interpolation] = STATE(305), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1154), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(994), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [306] = { [sym_text_interpolation] = STATE(306), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1156), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(918), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [307] = { [sym_text_interpolation] = STATE(307), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1157), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(992), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [308] = { [sym_text_interpolation] = STATE(308), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1158), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1230), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [309] = { [sym_text_interpolation] = STATE(309), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1155), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1247), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [310] = { [sym_text_interpolation] = STATE(310), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1162), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(989), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [311] = { [sym_text_interpolation] = STATE(311), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1005), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1015), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [312] = { [sym_text_interpolation] = STATE(312), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1003), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1303), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [313] = { [sym_text_interpolation] = STATE(313), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1172), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(984), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [314] = { [sym_text_interpolation] = STATE(314), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1166), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(983), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [315] = { [sym_text_interpolation] = STATE(315), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1180), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(981), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [316] = { [sym_text_interpolation] = STATE(316), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1277), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1218), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [317] = { [sym_text_interpolation] = STATE(317), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1173), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1163), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [318] = { [sym_text_interpolation] = STATE(318), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1276), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1304), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [319] = { [sym_text_interpolation] = STATE(319), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1161), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(987), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [320] = { [sym_text_interpolation] = STATE(320), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1269), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1308), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [321] = { [sym_text_interpolation] = STATE(321), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1168), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1018), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [322] = { [sym_text_interpolation] = STATE(322), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1170), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1150), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [323] = { [sym_text_interpolation] = STATE(323), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1010), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1287), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [324] = { [sym_text_interpolation] = STATE(324), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1147), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1049), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [325] = { [sym_text_interpolation] = STATE(325), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1273), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1172), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [326] = { [sym_text_interpolation] = STATE(326), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1160), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1002), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [327] = { [sym_text_interpolation] = STATE(327), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1006), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1171), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [328] = { [sym_text_interpolation] = STATE(328), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(926), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1045), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [329] = { [sym_text_interpolation] = STATE(329), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1254), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1313), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [330] = { [sym_text_interpolation] = STATE(330), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(925), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1176), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [331] = { [sym_text_interpolation] = STATE(331), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1251), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1310), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [332] = { [sym_text_interpolation] = STATE(332), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1175), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1168), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [333] = { [sym_text_interpolation] = STATE(333), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1252), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1251), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [334] = { [sym_text_interpolation] = STATE(334), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1248), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1004), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [335] = { [sym_text_interpolation] = STATE(335), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1244), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1005), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [336] = { [sym_text_interpolation] = STATE(336), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1186), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1006), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [337] = { [sym_text_interpolation] = STATE(337), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1284), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1256), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [338] = { [sym_text_interpolation] = STATE(338), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1101), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1151), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [339] = { [sym_text_interpolation] = STATE(339), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1185), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1194), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [340] = { [sym_text_interpolation] = STATE(340), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1305), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1275), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [341] = { [sym_text_interpolation] = STATE(341), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(996), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1187), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [342] = { [sym_text_interpolation] = STATE(342), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1197), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1007), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [343] = { [sym_text_interpolation] = STATE(343), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(979), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1157), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [344] = { [sym_text_interpolation] = STATE(344), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1286), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1021), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [345] = { [sym_text_interpolation] = STATE(345), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1264), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1240), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [346] = { [sym_text_interpolation] = STATE(346), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1287), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1013), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [347] = { [sym_text_interpolation] = STATE(347), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(998), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(918), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [348] = { [sym_text_interpolation] = STATE(348), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1201), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [349] = { [sym_text_interpolation] = STATE(349), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(982), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1164), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [350] = { [sym_text_interpolation] = STATE(350), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1260), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1203), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [351] = { [sym_text_interpolation] = STATE(351), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(983), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1317), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [352] = { [sym_text_interpolation] = STATE(352), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1312), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1204), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [353] = { [sym_text_interpolation] = STATE(353), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1253), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1283), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [354] = { [sym_text_interpolation] = STATE(354), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(984), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1037), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [355] = { [sym_text_interpolation] = STATE(355), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1289), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1154), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [356] = { [sym_text_interpolation] = STATE(356), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(986), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(913), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [357] = { [sym_text_interpolation] = STATE(357), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1263), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [358] = { [sym_text_interpolation] = STATE(358), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(994), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1255), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [359] = { [sym_text_interpolation] = STATE(359), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1296), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1257), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [360] = { [sym_text_interpolation] = STATE(360), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1299), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1205), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [361] = { [sym_text_interpolation] = STATE(361), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1169), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1236), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [362] = { [sym_text_interpolation] = STATE(362), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(999), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1307), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [363] = { [sym_text_interpolation] = STATE(363), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1000), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1254), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [364] = { [sym_text_interpolation] = STATE(364), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1290), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1306), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [365] = { [sym_text_interpolation] = STATE(365), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1291), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1146), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [366] = { [sym_text_interpolation] = STATE(366), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1298), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1276), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [367] = { [sym_text_interpolation] = STATE(367), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1302), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1030), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [368] = { [sym_text_interpolation] = STATE(368), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1308), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1300), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [369] = { [sym_text_interpolation] = STATE(369), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1258), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1312), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [370] = { [sym_text_interpolation] = STATE(370), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1316), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1265), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [371] = { [sym_text_interpolation] = STATE(371), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1009), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1000), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [372] = { [sym_text_interpolation] = STATE(372), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1278), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1235), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [373] = { [sym_text_interpolation] = STATE(373), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1037), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1180), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [374] = { [sym_text_interpolation] = STATE(374), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(925), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1047), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [375] = { [sym_text_interpolation] = STATE(375), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(926), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1264), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [376] = { [sym_text_interpolation] = STATE(376), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1038), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1237), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [377] = { [sym_text_interpolation] = STATE(377), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1024), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1158), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [378] = { [sym_text_interpolation] = STATE(378), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1313), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1177), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [379] = { [sym_text_interpolation] = STATE(379), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1025), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1294), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [380] = { [sym_text_interpolation] = STATE(380), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1068), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1297), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [381] = { [sym_text_interpolation] = STATE(381), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1030), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1253), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [382] = { [sym_text_interpolation] = STATE(382), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1019), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1259), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [383] = { [sym_text_interpolation] = STATE(383), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1021), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1181), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [384] = { [sym_text_interpolation] = STATE(384), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1238), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1050), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [385] = { [sym_text_interpolation] = STATE(385), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1303), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1175), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [386] = { [sym_text_interpolation] = STATE(386), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1015), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1115), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [387] = { [sym_text_interpolation] = STATE(387), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1001), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1262), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [388] = { [sym_text_interpolation] = STATE(388), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1279), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1261), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [389] = { [sym_text_interpolation] = STATE(389), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1306), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1025), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [390] = { [sym_text_interpolation] = STATE(390), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(981), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1239), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [391] = { [sym_text_interpolation] = STATE(391), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1020), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1260), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [392] = { [sym_text_interpolation] = STATE(392), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(995), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1266), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [393] = { [sym_text_interpolation] = STATE(393), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1267), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1197), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [394] = { [sym_text_interpolation] = STATE(394), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1266), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1298), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [395] = { [sym_text_interpolation] = STATE(395), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1293), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1003), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [396] = { [sym_text_interpolation] = STATE(396), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1012), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1301), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [397] = { [sym_text_interpolation] = STATE(397), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1236), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1043), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [398] = { [sym_text_interpolation] = STATE(398), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1184), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [399] = { [sym_text_interpolation] = STATE(399), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1162), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [400] = { [sym_text_interpolation] = STATE(400), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1234), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2534), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1034), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(688), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [aux_sym_require_expression_token1] = ACTIONS(696), - [aux_sym_require_once_expression_token1] = ACTIONS(698), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [401] = { [sym_text_interpolation] = STATE(401), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1304), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1160), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [402] = { [sym_text_interpolation] = STATE(402), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1029), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1040), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [403] = { [sym_text_interpolation] = STATE(403), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1027), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1302), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [404] = { [sym_text_interpolation] = STATE(404), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1046), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1166), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [405] = { [sym_text_interpolation] = STATE(405), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1035), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1167), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [406] = { [sym_text_interpolation] = STATE(406), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1023), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1238), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [407] = { [sym_text_interpolation] = STATE(407), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1247), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1116), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [408] = { [sym_text_interpolation] = STATE(408), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1033), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(999), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [409] = { [sym_text_interpolation] = STATE(409), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1039), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1281), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [410] = { [sym_text_interpolation] = STATE(410), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1263), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1173), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [411] = { [sym_text_interpolation] = STATE(411), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1036), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1178), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [412] = { [sym_text_interpolation] = STATE(412), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1307), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2498), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(592), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(618), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [aux_sym_require_expression_token1] = ACTIONS(626), - [aux_sym_require_once_expression_token1] = ACTIONS(628), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1082), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [413] = { [sym_text_interpolation] = STATE(413), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1032), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1083), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [414] = { [sym_text_interpolation] = STATE(414), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1017), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1085), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [415] = { [sym_text_interpolation] = STATE(415), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1014), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1086), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [416] = { [sym_text_interpolation] = STATE(416), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1042), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1027), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [417] = { [sym_text_interpolation] = STATE(417), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1273), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [418] = { [sym_text_interpolation] = STATE(418), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1031), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1186), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2503), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(617), + [sym_scoped_call_expression] = STATE(617), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(617), + [sym_nullsafe_member_call_expression] = STATE(617), + [sym_subscript_expression] = STATE(617), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(617), + [sym_variable_name] = STATE(617), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(693), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [aux_sym_require_expression_token1] = ACTIONS(701), + [aux_sym_require_once_expression_token1] = ACTIONS(703), [sym_comment] = ACTIONS(5), }, [419] = { [sym_text_interpolation] = STATE(419), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1034), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1305), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [420] = { [sym_text_interpolation] = STATE(420), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1018), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1295), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [421] = { [sym_text_interpolation] = STATE(421), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym_match_expression] = STATE(962), - [sym__expression] = STATE(1041), - [sym__unary_expression] = STATE(972), - [sym_unary_op_expression] = STATE(970), - [sym_error_suppression_expression] = STATE(962), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(962), - [sym_reference_assignment_expression] = STATE(962), - [sym_conditional_expression] = STATE(962), - [sym_augmented_assignment_expression] = STATE(962), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2466), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1248), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2499), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_include_expression] = STATE(962), - [sym_include_once_expression] = STATE(962), - [sym_require_expression] = STATE(962), - [sym_require_once_expression] = STATE(962), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_match_expression_token1] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_yield_expression_token1] = ACTIONS(648), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), - [aux_sym_require_expression_token1] = ACTIONS(656), - [aux_sym_require_once_expression_token1] = ACTIONS(658), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(623), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [aux_sym_require_expression_token1] = ACTIONS(631), + [aux_sym_require_once_expression_token1] = ACTIONS(633), [sym_comment] = ACTIONS(5), }, [422] = { [sym_text_interpolation] = STATE(422), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym_match_expression] = STATE(1090), - [sym__expression] = STATE(1083), - [sym__unary_expression] = STATE(1115), - [sym_unary_op_expression] = STATE(1118), - [sym_error_suppression_expression] = STATE(1090), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1090), - [sym_reference_assignment_expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2619), - [sym__list_destructing] = STATE(2244), - [sym__array_destructing] = STATE(2244), - [sym_function_call_expression] = STATE(605), - [sym_scoped_call_expression] = STATE(605), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(605), - [sym_nullsafe_member_call_expression] = STATE(605), - [sym_subscript_expression] = STATE(605), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(605), - [sym_variable_name] = STATE(605), - [sym_yield_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_include_expression] = STATE(1090), - [sym_include_once_expression] = STATE(1090), - [sym_require_expression] = STATE(1090), - [sym_require_once_expression] = STATE(1090), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_match_expression_token1] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(293), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [aux_sym__list_destructing_token1] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_yield_expression_token1] = ACTIONS(325), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [aux_sym_require_expression_token1] = ACTIONS(331), - [aux_sym_require_once_expression_token1] = ACTIONS(333), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_match_expression] = STATE(926), + [sym_expression] = STATE(1041), + [sym__unary_expression] = STATE(924), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(926), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(610), + [sym_assignment_expression] = STATE(926), + [sym_reference_assignment_expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_augmented_assignment_expression] = STATE(926), + [sym_member_access_expression] = STATE(610), + [sym_nullsafe_member_access_expression] = STATE(610), + [sym_scoped_property_access_expression] = STATE(610), + [sym_list_literal] = STATE(2456), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(926), + [sym_binary_expression] = STATE(926), + [sym_include_expression] = STATE(926), + [sym_include_once_expression] = STATE(926), + [sym_require_expression] = STATE(926), + [sym_require_once_expression] = STATE(926), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_match_expression_token1] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(651), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_yield_expression_token1] = ACTIONS(653), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [aux_sym_require_expression_token1] = ACTIONS(661), + [aux_sym_require_once_expression_token1] = ACTIONS(663), [sym_comment] = ACTIONS(5), }, [423] = { [sym_text_interpolation] = STATE(423), - [sym_catch_clause] = STATE(431), - [sym_finally_clause] = STATE(431), - [aux_sym_try_statement_repeat1] = STATE(424), - [ts_builtin_sym_end] = ACTIONS(978), - [sym_name] = ACTIONS(980), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(978), - [aux_sym_function_static_declaration_token1] = ACTIONS(980), - [aux_sym_global_declaration_token1] = ACTIONS(980), - [aux_sym_namespace_definition_token1] = ACTIONS(980), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(980), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(980), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(980), - [anon_sym_BSLASH] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [aux_sym_trait_declaration_token1] = ACTIONS(980), - [aux_sym_interface_declaration_token1] = ACTIONS(980), - [aux_sym_enum_declaration_token1] = ACTIONS(980), - [aux_sym_enum_case_token1] = ACTIONS(980), - [aux_sym_class_declaration_token1] = ACTIONS(980), - [aux_sym_final_modifier_token1] = ACTIONS(980), - [aux_sym_abstract_modifier_token1] = ACTIONS(980), - [aux_sym_readonly_modifier_token1] = ACTIONS(980), - [aux_sym_visibility_modifier_token1] = ACTIONS(980), - [aux_sym_visibility_modifier_token2] = ACTIONS(980), - [aux_sym_visibility_modifier_token3] = ACTIONS(980), - [aux_sym__arrow_function_header_token1] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(978), - [aux_sym_cast_type_token1] = ACTIONS(980), - [aux_sym_echo_statement_token1] = ACTIONS(980), - [aux_sym_exit_statement_token1] = ACTIONS(980), - [anon_sym_unset] = ACTIONS(980), - [aux_sym_declare_statement_token1] = ACTIONS(980), - [aux_sym_declare_statement_token2] = ACTIONS(980), - [sym_float] = ACTIONS(980), - [aux_sym_try_statement_token1] = ACTIONS(980), - [aux_sym_catch_clause_token1] = ACTIONS(982), - [aux_sym_finally_clause_token1] = ACTIONS(984), - [aux_sym_goto_statement_token1] = ACTIONS(980), - [aux_sym_continue_statement_token1] = ACTIONS(980), - [aux_sym_break_statement_token1] = ACTIONS(980), - [sym_integer] = ACTIONS(980), - [aux_sym_return_statement_token1] = ACTIONS(980), - [aux_sym_throw_expression_token1] = ACTIONS(980), - [aux_sym_while_statement_token1] = ACTIONS(980), - [aux_sym_while_statement_token2] = ACTIONS(980), - [aux_sym_do_statement_token1] = ACTIONS(980), - [aux_sym_for_statement_token1] = ACTIONS(980), - [aux_sym_for_statement_token2] = ACTIONS(980), - [aux_sym_foreach_statement_token1] = ACTIONS(980), - [aux_sym_foreach_statement_token2] = ACTIONS(980), - [aux_sym_if_statement_token1] = ACTIONS(980), - [aux_sym_if_statement_token2] = ACTIONS(980), - [aux_sym_else_if_clause_token1] = ACTIONS(980), - [aux_sym_else_clause_token1] = ACTIONS(980), - [aux_sym_match_expression_token1] = ACTIONS(980), - [aux_sym_match_default_expression_token1] = ACTIONS(980), - [aux_sym_switch_statement_token1] = ACTIONS(980), - [aux_sym_switch_block_token1] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(978), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_AT] = ACTIONS(978), - [aux_sym_clone_expression_token1] = ACTIONS(980), - [aux_sym_print_intrinsic_token1] = ACTIONS(980), - [aux_sym_object_creation_expression_token1] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_PLUS_PLUS] = ACTIONS(978), - [aux_sym__list_destructing_token1] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(978), - [anon_sym_self] = ACTIONS(980), - [anon_sym_parent] = ACTIONS(980), - [aux_sym__argument_name_token1] = ACTIONS(980), - [aux_sym__argument_name_token2] = ACTIONS(980), - [anon_sym_POUND_LBRACK] = ACTIONS(978), - [aux_sym_encapsed_string_token1] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [aux_sym_string_token1] = ACTIONS(978), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_LT_LT_LT] = ACTIONS(978), - [anon_sym_BQUOTE] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(978), - [aux_sym_yield_expression_token1] = ACTIONS(980), - [aux_sym_include_expression_token1] = ACTIONS(980), - [aux_sym_include_once_expression_token1] = ACTIONS(980), - [aux_sym_require_expression_token1] = ACTIONS(980), - [aux_sym_require_once_expression_token1] = ACTIONS(980), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_match_expression] = STATE(1145), + [sym_expression] = STATE(1051), + [sym__unary_expression] = STATE(1124), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1145), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(1145), + [sym_reference_assignment_expression] = STATE(1145), + [sym_conditional_expression] = STATE(1145), + [sym_augmented_assignment_expression] = STATE(1145), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2601), + [sym__list_destructing] = STATE(2194), + [sym__array_destructing] = STATE(2194), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym_yield_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_include_expression] = STATE(1145), + [sym_include_once_expression] = STATE(1145), + [sym_require_expression] = STATE(1145), + [sym_require_once_expression] = STATE(1145), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [aux_sym__list_destructing_token1] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_yield_expression_token1] = ACTIONS(330), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [aux_sym_require_expression_token1] = ACTIONS(336), + [aux_sym_require_once_expression_token1] = ACTIONS(338), [sym_comment] = ACTIONS(5), }, [424] = { [sym_text_interpolation] = STATE(424), - [sym_catch_clause] = STATE(431), - [sym_finally_clause] = STATE(431), - [aux_sym_try_statement_repeat1] = STATE(424), - [ts_builtin_sym_end] = ACTIONS(986), - [sym_name] = ACTIONS(988), - [anon_sym_QMARK_GT] = ACTIONS(3), - [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), - [aux_sym_exit_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(990), - [aux_sym_finally_clause_token1] = ACTIONS(993), - [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_PLUS] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(988), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(986), - [anon_sym_PLUS_PLUS] = ACTIONS(986), - [aux_sym__list_destructing_token1] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(986), - [anon_sym_self] = ACTIONS(988), - [anon_sym_parent] = ACTIONS(988), - [aux_sym__argument_name_token1] = ACTIONS(988), - [aux_sym__argument_name_token2] = ACTIONS(988), - [anon_sym_POUND_LBRACK] = ACTIONS(986), - [aux_sym_encapsed_string_token1] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [aux_sym_string_token1] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_LT_LT_LT] = ACTIONS(986), - [anon_sym_BQUOTE] = ACTIONS(986), - [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_catch_clause] = STATE(435), + [sym_finally_clause] = STATE(435), + [aux_sym_try_statement_repeat1] = STATE(425), + [ts_builtin_sym_end] = ACTIONS(983), + [sym_name] = ACTIONS(985), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(983), + [aux_sym_function_static_declaration_token1] = ACTIONS(985), + [aux_sym_global_declaration_token1] = ACTIONS(985), + [aux_sym_namespace_definition_token1] = ACTIONS(985), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(985), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(985), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(985), + [anon_sym_BSLASH] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(983), + [aux_sym_trait_declaration_token1] = ACTIONS(985), + [aux_sym_interface_declaration_token1] = ACTIONS(985), + [aux_sym_enum_declaration_token1] = ACTIONS(985), + [aux_sym_enum_case_token1] = ACTIONS(985), + [aux_sym_class_declaration_token1] = ACTIONS(985), + [aux_sym_final_modifier_token1] = ACTIONS(985), + [aux_sym_abstract_modifier_token1] = ACTIONS(985), + [aux_sym_readonly_modifier_token1] = ACTIONS(985), + [sym_var_modifier] = ACTIONS(985), + [aux_sym_visibility_modifier_token1] = ACTIONS(985), + [aux_sym_visibility_modifier_token2] = ACTIONS(985), + [aux_sym_visibility_modifier_token3] = ACTIONS(985), + [aux_sym__arrow_function_header_token1] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(983), + [aux_sym_cast_type_token1] = ACTIONS(985), + [aux_sym_echo_statement_token1] = ACTIONS(985), + [aux_sym_exit_statement_token1] = ACTIONS(985), + [anon_sym_unset] = ACTIONS(985), + [aux_sym_declare_statement_token1] = ACTIONS(985), + [aux_sym_declare_statement_token2] = ACTIONS(985), + [sym_float] = ACTIONS(985), + [aux_sym_try_statement_token1] = ACTIONS(985), + [aux_sym_catch_clause_token1] = ACTIONS(987), + [aux_sym_finally_clause_token1] = ACTIONS(989), + [aux_sym_goto_statement_token1] = ACTIONS(985), + [aux_sym_continue_statement_token1] = ACTIONS(985), + [aux_sym_break_statement_token1] = ACTIONS(985), + [sym_integer] = ACTIONS(985), + [aux_sym_return_statement_token1] = ACTIONS(985), + [aux_sym_throw_expression_token1] = ACTIONS(985), + [aux_sym_while_statement_token1] = ACTIONS(985), + [aux_sym_while_statement_token2] = ACTIONS(985), + [aux_sym_do_statement_token1] = ACTIONS(985), + [aux_sym_for_statement_token1] = ACTIONS(985), + [aux_sym_for_statement_token2] = ACTIONS(985), + [aux_sym_foreach_statement_token1] = ACTIONS(985), + [aux_sym_foreach_statement_token2] = ACTIONS(985), + [aux_sym_if_statement_token1] = ACTIONS(985), + [aux_sym_if_statement_token2] = ACTIONS(985), + [aux_sym_else_if_clause_token1] = ACTIONS(985), + [aux_sym_else_clause_token1] = ACTIONS(985), + [aux_sym_match_expression_token1] = ACTIONS(985), + [aux_sym_match_default_expression_token1] = ACTIONS(985), + [aux_sym_switch_statement_token1] = ACTIONS(985), + [aux_sym_switch_block_token1] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(983), + [anon_sym_BANG] = ACTIONS(983), + [anon_sym_AT] = ACTIONS(983), + [aux_sym_clone_expression_token1] = ACTIONS(985), + [aux_sym_print_intrinsic_token1] = ACTIONS(985), + [aux_sym_object_creation_expression_token1] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [aux_sym__list_destructing_token1] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_self] = ACTIONS(985), + [anon_sym_parent] = ACTIONS(985), + [aux_sym__argument_name_token1] = ACTIONS(985), + [aux_sym__argument_name_token2] = ACTIONS(985), + [anon_sym_POUND_LBRACK] = ACTIONS(983), + [aux_sym_encapsed_string_token1] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(983), + [aux_sym_string_token1] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(983), + [anon_sym_LT_LT_LT] = ACTIONS(983), + [anon_sym_BQUOTE] = ACTIONS(983), + [anon_sym_DOLLAR] = ACTIONS(983), + [aux_sym_yield_expression_token1] = ACTIONS(985), + [aux_sym_include_expression_token1] = ACTIONS(985), + [aux_sym_include_once_expression_token1] = ACTIONS(985), + [aux_sym_require_expression_token1] = ACTIONS(985), + [aux_sym_require_once_expression_token1] = ACTIONS(985), [sym_comment] = ACTIONS(5), }, [425] = { [sym_text_interpolation] = STATE(425), - [sym_else_if_clause] = STATE(504), - [sym_else_clause] = STATE(527), - [aux_sym_if_statement_repeat1] = STATE(426), - [ts_builtin_sym_end] = ACTIONS(996), - [sym_name] = ACTIONS(998), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(996), - [aux_sym_function_static_declaration_token1] = ACTIONS(998), - [aux_sym_global_declaration_token1] = ACTIONS(998), - [aux_sym_namespace_definition_token1] = ACTIONS(998), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(998), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(998), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(998), - [anon_sym_BSLASH] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [aux_sym_trait_declaration_token1] = ACTIONS(998), - [aux_sym_interface_declaration_token1] = ACTIONS(998), - [aux_sym_enum_declaration_token1] = ACTIONS(998), - [aux_sym_enum_case_token1] = ACTIONS(998), - [aux_sym_class_declaration_token1] = ACTIONS(998), - [aux_sym_final_modifier_token1] = ACTIONS(998), - [aux_sym_abstract_modifier_token1] = ACTIONS(998), - [aux_sym_readonly_modifier_token1] = ACTIONS(998), - [aux_sym_visibility_modifier_token1] = ACTIONS(998), - [aux_sym_visibility_modifier_token2] = ACTIONS(998), - [aux_sym_visibility_modifier_token3] = ACTIONS(998), - [aux_sym__arrow_function_header_token1] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(996), - [aux_sym_cast_type_token1] = ACTIONS(998), - [aux_sym_echo_statement_token1] = ACTIONS(998), - [aux_sym_exit_statement_token1] = ACTIONS(998), - [anon_sym_unset] = ACTIONS(998), - [aux_sym_declare_statement_token1] = ACTIONS(998), - [aux_sym_declare_statement_token2] = ACTIONS(998), - [sym_float] = ACTIONS(998), - [aux_sym_try_statement_token1] = ACTIONS(998), - [aux_sym_goto_statement_token1] = ACTIONS(998), - [aux_sym_continue_statement_token1] = ACTIONS(998), - [aux_sym_break_statement_token1] = ACTIONS(998), - [sym_integer] = ACTIONS(998), - [aux_sym_return_statement_token1] = ACTIONS(998), - [aux_sym_throw_expression_token1] = ACTIONS(998), - [aux_sym_while_statement_token1] = ACTIONS(998), - [aux_sym_while_statement_token2] = ACTIONS(998), - [aux_sym_do_statement_token1] = ACTIONS(998), - [aux_sym_for_statement_token1] = ACTIONS(998), - [aux_sym_for_statement_token2] = ACTIONS(998), - [aux_sym_foreach_statement_token1] = ACTIONS(998), - [aux_sym_foreach_statement_token2] = ACTIONS(998), - [aux_sym_if_statement_token1] = ACTIONS(998), - [aux_sym_if_statement_token2] = ACTIONS(998), - [aux_sym_else_if_clause_token1] = ACTIONS(1000), - [aux_sym_else_clause_token1] = ACTIONS(1002), - [aux_sym_match_expression_token1] = ACTIONS(998), - [aux_sym_match_default_expression_token1] = ACTIONS(998), - [aux_sym_switch_statement_token1] = ACTIONS(998), - [aux_sym_switch_block_token1] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(996), - [anon_sym_BANG] = ACTIONS(996), - [anon_sym_AT] = ACTIONS(996), - [aux_sym_clone_expression_token1] = ACTIONS(998), - [aux_sym_print_intrinsic_token1] = ACTIONS(998), - [aux_sym_object_creation_expression_token1] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(996), - [aux_sym__list_destructing_token1] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_self] = ACTIONS(998), - [anon_sym_parent] = ACTIONS(998), - [aux_sym__argument_name_token1] = ACTIONS(998), - [aux_sym__argument_name_token2] = ACTIONS(998), - [anon_sym_POUND_LBRACK] = ACTIONS(996), - [aux_sym_encapsed_string_token1] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [aux_sym_string_token1] = ACTIONS(996), - [anon_sym_SQUOTE] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(996), - [anon_sym_BQUOTE] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(996), - [aux_sym_yield_expression_token1] = ACTIONS(998), - [aux_sym_include_expression_token1] = ACTIONS(998), - [aux_sym_include_once_expression_token1] = ACTIONS(998), - [aux_sym_require_expression_token1] = ACTIONS(998), - [aux_sym_require_once_expression_token1] = ACTIONS(998), + [sym_catch_clause] = STATE(435), + [sym_finally_clause] = STATE(435), + [aux_sym_try_statement_repeat1] = STATE(425), + [ts_builtin_sym_end] = ACTIONS(991), + [sym_name] = ACTIONS(993), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(991), + [aux_sym_function_static_declaration_token1] = ACTIONS(993), + [aux_sym_global_declaration_token1] = ACTIONS(993), + [aux_sym_namespace_definition_token1] = ACTIONS(993), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(993), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(993), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(993), + [anon_sym_BSLASH] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [aux_sym_trait_declaration_token1] = ACTIONS(993), + [aux_sym_interface_declaration_token1] = ACTIONS(993), + [aux_sym_enum_declaration_token1] = ACTIONS(993), + [aux_sym_enum_case_token1] = ACTIONS(993), + [aux_sym_class_declaration_token1] = ACTIONS(993), + [aux_sym_final_modifier_token1] = ACTIONS(993), + [aux_sym_abstract_modifier_token1] = ACTIONS(993), + [aux_sym_readonly_modifier_token1] = ACTIONS(993), + [sym_var_modifier] = ACTIONS(993), + [aux_sym_visibility_modifier_token1] = ACTIONS(993), + [aux_sym_visibility_modifier_token2] = ACTIONS(993), + [aux_sym_visibility_modifier_token3] = ACTIONS(993), + [aux_sym__arrow_function_header_token1] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(991), + [aux_sym_cast_type_token1] = ACTIONS(993), + [aux_sym_echo_statement_token1] = ACTIONS(993), + [aux_sym_exit_statement_token1] = ACTIONS(993), + [anon_sym_unset] = ACTIONS(993), + [aux_sym_declare_statement_token1] = ACTIONS(993), + [aux_sym_declare_statement_token2] = ACTIONS(993), + [sym_float] = ACTIONS(993), + [aux_sym_try_statement_token1] = ACTIONS(993), + [aux_sym_catch_clause_token1] = ACTIONS(995), + [aux_sym_finally_clause_token1] = ACTIONS(998), + [aux_sym_goto_statement_token1] = ACTIONS(993), + [aux_sym_continue_statement_token1] = ACTIONS(993), + [aux_sym_break_statement_token1] = ACTIONS(993), + [sym_integer] = ACTIONS(993), + [aux_sym_return_statement_token1] = ACTIONS(993), + [aux_sym_throw_expression_token1] = ACTIONS(993), + [aux_sym_while_statement_token1] = ACTIONS(993), + [aux_sym_while_statement_token2] = ACTIONS(993), + [aux_sym_do_statement_token1] = ACTIONS(993), + [aux_sym_for_statement_token1] = ACTIONS(993), + [aux_sym_for_statement_token2] = ACTIONS(993), + [aux_sym_foreach_statement_token1] = ACTIONS(993), + [aux_sym_foreach_statement_token2] = ACTIONS(993), + [aux_sym_if_statement_token1] = ACTIONS(993), + [aux_sym_if_statement_token2] = ACTIONS(993), + [aux_sym_else_if_clause_token1] = ACTIONS(993), + [aux_sym_else_clause_token1] = ACTIONS(993), + [aux_sym_match_expression_token1] = ACTIONS(993), + [aux_sym_match_default_expression_token1] = ACTIONS(993), + [aux_sym_switch_statement_token1] = ACTIONS(993), + [aux_sym_switch_block_token1] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_TILDE] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_AT] = ACTIONS(991), + [aux_sym_clone_expression_token1] = ACTIONS(993), + [aux_sym_print_intrinsic_token1] = ACTIONS(993), + [aux_sym_object_creation_expression_token1] = ACTIONS(993), + [anon_sym_DASH_DASH] = ACTIONS(991), + [anon_sym_PLUS_PLUS] = ACTIONS(991), + [aux_sym__list_destructing_token1] = ACTIONS(993), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_self] = ACTIONS(993), + [anon_sym_parent] = ACTIONS(993), + [aux_sym__argument_name_token1] = ACTIONS(993), + [aux_sym__argument_name_token2] = ACTIONS(993), + [anon_sym_POUND_LBRACK] = ACTIONS(991), + [aux_sym_encapsed_string_token1] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [aux_sym_string_token1] = ACTIONS(991), + [anon_sym_SQUOTE] = ACTIONS(991), + [anon_sym_LT_LT_LT] = ACTIONS(991), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_DOLLAR] = ACTIONS(991), + [aux_sym_yield_expression_token1] = ACTIONS(993), + [aux_sym_include_expression_token1] = ACTIONS(993), + [aux_sym_include_once_expression_token1] = ACTIONS(993), + [aux_sym_require_expression_token1] = ACTIONS(993), + [aux_sym_require_once_expression_token1] = ACTIONS(993), [sym_comment] = ACTIONS(5), }, [426] = { [sym_text_interpolation] = STATE(426), - [sym_else_if_clause] = STATE(504), - [sym_else_clause] = STATE(542), - [aux_sym_if_statement_repeat1] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(1004), - [sym_name] = ACTIONS(1006), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1004), - [aux_sym_function_static_declaration_token1] = ACTIONS(1006), - [aux_sym_global_declaration_token1] = ACTIONS(1006), - [aux_sym_namespace_definition_token1] = ACTIONS(1006), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1006), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1006), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1006), - [anon_sym_BSLASH] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [aux_sym_trait_declaration_token1] = ACTIONS(1006), - [aux_sym_interface_declaration_token1] = ACTIONS(1006), - [aux_sym_enum_declaration_token1] = ACTIONS(1006), - [aux_sym_enum_case_token1] = ACTIONS(1006), - [aux_sym_class_declaration_token1] = ACTIONS(1006), - [aux_sym_final_modifier_token1] = ACTIONS(1006), - [aux_sym_abstract_modifier_token1] = ACTIONS(1006), - [aux_sym_readonly_modifier_token1] = ACTIONS(1006), - [aux_sym_visibility_modifier_token1] = ACTIONS(1006), - [aux_sym_visibility_modifier_token2] = ACTIONS(1006), - [aux_sym_visibility_modifier_token3] = ACTIONS(1006), - [aux_sym__arrow_function_header_token1] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1004), - [aux_sym_cast_type_token1] = ACTIONS(1006), - [aux_sym_echo_statement_token1] = ACTIONS(1006), - [aux_sym_exit_statement_token1] = ACTIONS(1006), - [anon_sym_unset] = ACTIONS(1006), - [aux_sym_declare_statement_token1] = ACTIONS(1006), - [aux_sym_declare_statement_token2] = ACTIONS(1006), - [sym_float] = ACTIONS(1006), - [aux_sym_try_statement_token1] = ACTIONS(1006), - [aux_sym_goto_statement_token1] = ACTIONS(1006), - [aux_sym_continue_statement_token1] = ACTIONS(1006), - [aux_sym_break_statement_token1] = ACTIONS(1006), - [sym_integer] = ACTIONS(1006), - [aux_sym_return_statement_token1] = ACTIONS(1006), - [aux_sym_throw_expression_token1] = ACTIONS(1006), - [aux_sym_while_statement_token1] = ACTIONS(1006), - [aux_sym_while_statement_token2] = ACTIONS(1006), - [aux_sym_do_statement_token1] = ACTIONS(1006), - [aux_sym_for_statement_token1] = ACTIONS(1006), - [aux_sym_for_statement_token2] = ACTIONS(1006), - [aux_sym_foreach_statement_token1] = ACTIONS(1006), - [aux_sym_foreach_statement_token2] = ACTIONS(1006), - [aux_sym_if_statement_token1] = ACTIONS(1006), - [aux_sym_if_statement_token2] = ACTIONS(1006), - [aux_sym_else_if_clause_token1] = ACTIONS(1000), - [aux_sym_else_clause_token1] = ACTIONS(1002), - [aux_sym_match_expression_token1] = ACTIONS(1006), - [aux_sym_match_default_expression_token1] = ACTIONS(1006), - [aux_sym_switch_statement_token1] = ACTIONS(1006), - [aux_sym_switch_block_token1] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_AT] = ACTIONS(1004), - [aux_sym_clone_expression_token1] = ACTIONS(1006), - [aux_sym_print_intrinsic_token1] = ACTIONS(1006), - [aux_sym_object_creation_expression_token1] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1004), - [anon_sym_PLUS_PLUS] = ACTIONS(1004), - [aux_sym__list_destructing_token1] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1004), - [anon_sym_self] = ACTIONS(1006), - [anon_sym_parent] = ACTIONS(1006), - [aux_sym__argument_name_token1] = ACTIONS(1006), - [aux_sym__argument_name_token2] = ACTIONS(1006), - [anon_sym_POUND_LBRACK] = ACTIONS(1004), - [aux_sym_encapsed_string_token1] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1004), - [aux_sym_string_token1] = ACTIONS(1004), - [anon_sym_SQUOTE] = ACTIONS(1004), - [anon_sym_LT_LT_LT] = ACTIONS(1004), - [anon_sym_BQUOTE] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1004), - [aux_sym_yield_expression_token1] = ACTIONS(1006), - [aux_sym_include_expression_token1] = ACTIONS(1006), - [aux_sym_include_once_expression_token1] = ACTIONS(1006), - [aux_sym_require_expression_token1] = ACTIONS(1006), - [aux_sym_require_once_expression_token1] = ACTIONS(1006), + [sym_else_if_clause] = STATE(477), + [sym_else_clause] = STATE(550), + [aux_sym_if_statement_repeat1] = STATE(430), + [ts_builtin_sym_end] = ACTIONS(1001), + [sym_name] = ACTIONS(1003), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1001), + [aux_sym_function_static_declaration_token1] = ACTIONS(1003), + [aux_sym_global_declaration_token1] = ACTIONS(1003), + [aux_sym_namespace_definition_token1] = ACTIONS(1003), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1003), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1003), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1003), + [anon_sym_BSLASH] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1001), + [anon_sym_RBRACE] = ACTIONS(1001), + [aux_sym_trait_declaration_token1] = ACTIONS(1003), + [aux_sym_interface_declaration_token1] = ACTIONS(1003), + [aux_sym_enum_declaration_token1] = ACTIONS(1003), + [aux_sym_enum_case_token1] = ACTIONS(1003), + [aux_sym_class_declaration_token1] = ACTIONS(1003), + [aux_sym_final_modifier_token1] = ACTIONS(1003), + [aux_sym_abstract_modifier_token1] = ACTIONS(1003), + [aux_sym_readonly_modifier_token1] = ACTIONS(1003), + [sym_var_modifier] = ACTIONS(1003), + [aux_sym_visibility_modifier_token1] = ACTIONS(1003), + [aux_sym_visibility_modifier_token2] = ACTIONS(1003), + [aux_sym_visibility_modifier_token3] = ACTIONS(1003), + [aux_sym__arrow_function_header_token1] = ACTIONS(1003), + [anon_sym_LPAREN] = ACTIONS(1001), + [aux_sym_cast_type_token1] = ACTIONS(1003), + [aux_sym_echo_statement_token1] = ACTIONS(1003), + [aux_sym_exit_statement_token1] = ACTIONS(1003), + [anon_sym_unset] = ACTIONS(1003), + [aux_sym_declare_statement_token1] = ACTIONS(1003), + [aux_sym_declare_statement_token2] = ACTIONS(1003), + [sym_float] = ACTIONS(1003), + [aux_sym_try_statement_token1] = ACTIONS(1003), + [aux_sym_goto_statement_token1] = ACTIONS(1003), + [aux_sym_continue_statement_token1] = ACTIONS(1003), + [aux_sym_break_statement_token1] = ACTIONS(1003), + [sym_integer] = ACTIONS(1003), + [aux_sym_return_statement_token1] = ACTIONS(1003), + [aux_sym_throw_expression_token1] = ACTIONS(1003), + [aux_sym_while_statement_token1] = ACTIONS(1003), + [aux_sym_while_statement_token2] = ACTIONS(1003), + [aux_sym_do_statement_token1] = ACTIONS(1003), + [aux_sym_for_statement_token1] = ACTIONS(1003), + [aux_sym_for_statement_token2] = ACTIONS(1003), + [aux_sym_foreach_statement_token1] = ACTIONS(1003), + [aux_sym_foreach_statement_token2] = ACTIONS(1003), + [aux_sym_if_statement_token1] = ACTIONS(1003), + [aux_sym_if_statement_token2] = ACTIONS(1003), + [aux_sym_else_if_clause_token1] = ACTIONS(1005), + [aux_sym_else_clause_token1] = ACTIONS(1007), + [aux_sym_match_expression_token1] = ACTIONS(1003), + [aux_sym_match_default_expression_token1] = ACTIONS(1003), + [aux_sym_switch_statement_token1] = ACTIONS(1003), + [aux_sym_switch_block_token1] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_AT] = ACTIONS(1001), + [aux_sym_clone_expression_token1] = ACTIONS(1003), + [aux_sym_print_intrinsic_token1] = ACTIONS(1003), + [aux_sym_object_creation_expression_token1] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [aux_sym__list_destructing_token1] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1001), + [anon_sym_self] = ACTIONS(1003), + [anon_sym_parent] = ACTIONS(1003), + [aux_sym__argument_name_token1] = ACTIONS(1003), + [aux_sym__argument_name_token2] = ACTIONS(1003), + [anon_sym_POUND_LBRACK] = ACTIONS(1001), + [aux_sym_encapsed_string_token1] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1001), + [aux_sym_string_token1] = ACTIONS(1001), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_LT_LT_LT] = ACTIONS(1001), + [anon_sym_BQUOTE] = ACTIONS(1001), + [anon_sym_DOLLAR] = ACTIONS(1001), + [aux_sym_yield_expression_token1] = ACTIONS(1003), + [aux_sym_include_expression_token1] = ACTIONS(1003), + [aux_sym_include_once_expression_token1] = ACTIONS(1003), + [aux_sym_require_expression_token1] = ACTIONS(1003), + [aux_sym_require_once_expression_token1] = ACTIONS(1003), [sym_comment] = ACTIONS(5), }, [427] = { [sym_text_interpolation] = STATE(427), - [sym_else_if_clause] = STATE(504), - [sym_else_clause] = STATE(542), - [aux_sym_if_statement_repeat1] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(1004), - [sym_name] = ACTIONS(1006), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1004), - [aux_sym_function_static_declaration_token1] = ACTIONS(1006), - [aux_sym_global_declaration_token1] = ACTIONS(1006), - [aux_sym_namespace_definition_token1] = ACTIONS(1006), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1006), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1006), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1006), - [anon_sym_BSLASH] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [aux_sym_trait_declaration_token1] = ACTIONS(1006), - [aux_sym_interface_declaration_token1] = ACTIONS(1006), - [aux_sym_enum_declaration_token1] = ACTIONS(1006), - [aux_sym_enum_case_token1] = ACTIONS(1006), - [aux_sym_class_declaration_token1] = ACTIONS(1006), - [aux_sym_final_modifier_token1] = ACTIONS(1006), - [aux_sym_abstract_modifier_token1] = ACTIONS(1006), - [aux_sym_readonly_modifier_token1] = ACTIONS(1006), - [aux_sym_visibility_modifier_token1] = ACTIONS(1006), - [aux_sym_visibility_modifier_token2] = ACTIONS(1006), - [aux_sym_visibility_modifier_token3] = ACTIONS(1006), - [aux_sym__arrow_function_header_token1] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1004), - [aux_sym_cast_type_token1] = ACTIONS(1006), - [aux_sym_echo_statement_token1] = ACTIONS(1006), - [aux_sym_exit_statement_token1] = ACTIONS(1006), - [anon_sym_unset] = ACTIONS(1006), - [aux_sym_declare_statement_token1] = ACTIONS(1006), - [aux_sym_declare_statement_token2] = ACTIONS(1006), - [sym_float] = ACTIONS(1006), - [aux_sym_try_statement_token1] = ACTIONS(1006), - [aux_sym_goto_statement_token1] = ACTIONS(1006), - [aux_sym_continue_statement_token1] = ACTIONS(1006), - [aux_sym_break_statement_token1] = ACTIONS(1006), - [sym_integer] = ACTIONS(1006), - [aux_sym_return_statement_token1] = ACTIONS(1006), - [aux_sym_throw_expression_token1] = ACTIONS(1006), - [aux_sym_while_statement_token1] = ACTIONS(1006), - [aux_sym_while_statement_token2] = ACTIONS(1006), - [aux_sym_do_statement_token1] = ACTIONS(1006), - [aux_sym_for_statement_token1] = ACTIONS(1006), - [aux_sym_for_statement_token2] = ACTIONS(1006), - [aux_sym_foreach_statement_token1] = ACTIONS(1006), - [aux_sym_foreach_statement_token2] = ACTIONS(1006), - [aux_sym_if_statement_token1] = ACTIONS(1006), - [aux_sym_if_statement_token2] = ACTIONS(1006), - [aux_sym_else_if_clause_token1] = ACTIONS(1008), - [aux_sym_else_clause_token1] = ACTIONS(1011), - [aux_sym_match_expression_token1] = ACTIONS(1006), - [aux_sym_match_default_expression_token1] = ACTIONS(1006), - [aux_sym_switch_statement_token1] = ACTIONS(1006), - [aux_sym_switch_block_token1] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_AT] = ACTIONS(1004), - [aux_sym_clone_expression_token1] = ACTIONS(1006), - [aux_sym_print_intrinsic_token1] = ACTIONS(1006), - [aux_sym_object_creation_expression_token1] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1004), - [anon_sym_PLUS_PLUS] = ACTIONS(1004), - [aux_sym__list_destructing_token1] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1004), - [anon_sym_self] = ACTIONS(1006), - [anon_sym_parent] = ACTIONS(1006), - [aux_sym__argument_name_token1] = ACTIONS(1006), - [aux_sym__argument_name_token2] = ACTIONS(1006), - [anon_sym_POUND_LBRACK] = ACTIONS(1004), - [aux_sym_encapsed_string_token1] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1004), - [aux_sym_string_token1] = ACTIONS(1004), - [anon_sym_SQUOTE] = ACTIONS(1004), - [anon_sym_LT_LT_LT] = ACTIONS(1004), - [anon_sym_BQUOTE] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1004), - [aux_sym_yield_expression_token1] = ACTIONS(1006), - [aux_sym_include_expression_token1] = ACTIONS(1006), - [aux_sym_include_once_expression_token1] = ACTIONS(1006), - [aux_sym_require_expression_token1] = ACTIONS(1006), - [aux_sym_require_once_expression_token1] = ACTIONS(1006), + [sym_else_if_clause] = STATE(477), + [sym_else_clause] = STATE(550), + [aux_sym_if_statement_repeat1] = STATE(430), + [ts_builtin_sym_end] = ACTIONS(1001), + [sym_name] = ACTIONS(1003), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1001), + [aux_sym_function_static_declaration_token1] = ACTIONS(1003), + [aux_sym_global_declaration_token1] = ACTIONS(1003), + [aux_sym_namespace_definition_token1] = ACTIONS(1003), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1003), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1003), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1003), + [anon_sym_BSLASH] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1001), + [anon_sym_RBRACE] = ACTIONS(1001), + [aux_sym_trait_declaration_token1] = ACTIONS(1003), + [aux_sym_interface_declaration_token1] = ACTIONS(1003), + [aux_sym_enum_declaration_token1] = ACTIONS(1003), + [aux_sym_enum_case_token1] = ACTIONS(1003), + [aux_sym_class_declaration_token1] = ACTIONS(1003), + [aux_sym_final_modifier_token1] = ACTIONS(1003), + [aux_sym_abstract_modifier_token1] = ACTIONS(1003), + [aux_sym_readonly_modifier_token1] = ACTIONS(1003), + [sym_var_modifier] = ACTIONS(1003), + [aux_sym_visibility_modifier_token1] = ACTIONS(1003), + [aux_sym_visibility_modifier_token2] = ACTIONS(1003), + [aux_sym_visibility_modifier_token3] = ACTIONS(1003), + [aux_sym__arrow_function_header_token1] = ACTIONS(1003), + [anon_sym_LPAREN] = ACTIONS(1001), + [aux_sym_cast_type_token1] = ACTIONS(1003), + [aux_sym_echo_statement_token1] = ACTIONS(1003), + [aux_sym_exit_statement_token1] = ACTIONS(1003), + [anon_sym_unset] = ACTIONS(1003), + [aux_sym_declare_statement_token1] = ACTIONS(1003), + [aux_sym_declare_statement_token2] = ACTIONS(1003), + [sym_float] = ACTIONS(1003), + [aux_sym_try_statement_token1] = ACTIONS(1003), + [aux_sym_goto_statement_token1] = ACTIONS(1003), + [aux_sym_continue_statement_token1] = ACTIONS(1003), + [aux_sym_break_statement_token1] = ACTIONS(1003), + [sym_integer] = ACTIONS(1003), + [aux_sym_return_statement_token1] = ACTIONS(1003), + [aux_sym_throw_expression_token1] = ACTIONS(1003), + [aux_sym_while_statement_token1] = ACTIONS(1003), + [aux_sym_while_statement_token2] = ACTIONS(1003), + [aux_sym_do_statement_token1] = ACTIONS(1003), + [aux_sym_for_statement_token1] = ACTIONS(1003), + [aux_sym_for_statement_token2] = ACTIONS(1003), + [aux_sym_foreach_statement_token1] = ACTIONS(1003), + [aux_sym_foreach_statement_token2] = ACTIONS(1003), + [aux_sym_if_statement_token1] = ACTIONS(1003), + [aux_sym_if_statement_token2] = ACTIONS(1003), + [aux_sym_else_if_clause_token1] = ACTIONS(1009), + [aux_sym_else_clause_token1] = ACTIONS(1012), + [aux_sym_match_expression_token1] = ACTIONS(1003), + [aux_sym_match_default_expression_token1] = ACTIONS(1003), + [aux_sym_switch_statement_token1] = ACTIONS(1003), + [aux_sym_switch_block_token1] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_AT] = ACTIONS(1001), + [aux_sym_clone_expression_token1] = ACTIONS(1003), + [aux_sym_print_intrinsic_token1] = ACTIONS(1003), + [aux_sym_object_creation_expression_token1] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [aux_sym__list_destructing_token1] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1001), + [anon_sym_self] = ACTIONS(1003), + [anon_sym_parent] = ACTIONS(1003), + [aux_sym__argument_name_token1] = ACTIONS(1003), + [aux_sym__argument_name_token2] = ACTIONS(1003), + [anon_sym_POUND_LBRACK] = ACTIONS(1001), + [aux_sym_encapsed_string_token1] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1001), + [aux_sym_string_token1] = ACTIONS(1001), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_LT_LT_LT] = ACTIONS(1001), + [anon_sym_BQUOTE] = ACTIONS(1001), + [anon_sym_DOLLAR] = ACTIONS(1001), + [aux_sym_yield_expression_token1] = ACTIONS(1003), + [aux_sym_include_expression_token1] = ACTIONS(1003), + [aux_sym_include_once_expression_token1] = ACTIONS(1003), + [aux_sym_require_expression_token1] = ACTIONS(1003), + [aux_sym_require_once_expression_token1] = ACTIONS(1003), [sym_comment] = ACTIONS(5), }, [428] = { [sym_text_interpolation] = STATE(428), - [sym_else_if_clause] = STATE(504), - [sym_else_clause] = STATE(527), - [aux_sym_if_statement_repeat1] = STATE(427), - [ts_builtin_sym_end] = ACTIONS(996), - [sym_name] = ACTIONS(998), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(996), - [aux_sym_function_static_declaration_token1] = ACTIONS(998), - [aux_sym_global_declaration_token1] = ACTIONS(998), - [aux_sym_namespace_definition_token1] = ACTIONS(998), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(998), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(998), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(998), - [anon_sym_BSLASH] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [aux_sym_trait_declaration_token1] = ACTIONS(998), - [aux_sym_interface_declaration_token1] = ACTIONS(998), - [aux_sym_enum_declaration_token1] = ACTIONS(998), - [aux_sym_enum_case_token1] = ACTIONS(998), - [aux_sym_class_declaration_token1] = ACTIONS(998), - [aux_sym_final_modifier_token1] = ACTIONS(998), - [aux_sym_abstract_modifier_token1] = ACTIONS(998), - [aux_sym_readonly_modifier_token1] = ACTIONS(998), - [aux_sym_visibility_modifier_token1] = ACTIONS(998), - [aux_sym_visibility_modifier_token2] = ACTIONS(998), - [aux_sym_visibility_modifier_token3] = ACTIONS(998), - [aux_sym__arrow_function_header_token1] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(996), - [aux_sym_cast_type_token1] = ACTIONS(998), - [aux_sym_echo_statement_token1] = ACTIONS(998), - [aux_sym_exit_statement_token1] = ACTIONS(998), - [anon_sym_unset] = ACTIONS(998), - [aux_sym_declare_statement_token1] = ACTIONS(998), - [aux_sym_declare_statement_token2] = ACTIONS(998), - [sym_float] = ACTIONS(998), - [aux_sym_try_statement_token1] = ACTIONS(998), - [aux_sym_goto_statement_token1] = ACTIONS(998), - [aux_sym_continue_statement_token1] = ACTIONS(998), - [aux_sym_break_statement_token1] = ACTIONS(998), - [sym_integer] = ACTIONS(998), - [aux_sym_return_statement_token1] = ACTIONS(998), - [aux_sym_throw_expression_token1] = ACTIONS(998), - [aux_sym_while_statement_token1] = ACTIONS(998), - [aux_sym_while_statement_token2] = ACTIONS(998), - [aux_sym_do_statement_token1] = ACTIONS(998), - [aux_sym_for_statement_token1] = ACTIONS(998), - [aux_sym_for_statement_token2] = ACTIONS(998), - [aux_sym_foreach_statement_token1] = ACTIONS(998), - [aux_sym_foreach_statement_token2] = ACTIONS(998), - [aux_sym_if_statement_token1] = ACTIONS(998), - [aux_sym_if_statement_token2] = ACTIONS(998), - [aux_sym_else_if_clause_token1] = ACTIONS(1014), - [aux_sym_else_clause_token1] = ACTIONS(1017), - [aux_sym_match_expression_token1] = ACTIONS(998), - [aux_sym_match_default_expression_token1] = ACTIONS(998), - [aux_sym_switch_statement_token1] = ACTIONS(998), - [aux_sym_switch_block_token1] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(996), - [anon_sym_BANG] = ACTIONS(996), - [anon_sym_AT] = ACTIONS(996), - [aux_sym_clone_expression_token1] = ACTIONS(998), - [aux_sym_print_intrinsic_token1] = ACTIONS(998), - [aux_sym_object_creation_expression_token1] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(996), - [aux_sym__list_destructing_token1] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_self] = ACTIONS(998), - [anon_sym_parent] = ACTIONS(998), - [aux_sym__argument_name_token1] = ACTIONS(998), - [aux_sym__argument_name_token2] = ACTIONS(998), - [anon_sym_POUND_LBRACK] = ACTIONS(996), - [aux_sym_encapsed_string_token1] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [aux_sym_string_token1] = ACTIONS(996), - [anon_sym_SQUOTE] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(996), - [anon_sym_BQUOTE] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(996), - [aux_sym_yield_expression_token1] = ACTIONS(998), - [aux_sym_include_expression_token1] = ACTIONS(998), - [aux_sym_include_once_expression_token1] = ACTIONS(998), - [aux_sym_require_expression_token1] = ACTIONS(998), - [aux_sym_require_once_expression_token1] = ACTIONS(998), + [sym_else_if_clause] = STATE(477), + [sym_else_clause] = STATE(475), + [aux_sym_if_statement_repeat1] = STATE(426), + [ts_builtin_sym_end] = ACTIONS(1015), + [sym_name] = ACTIONS(1017), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1015), + [aux_sym_function_static_declaration_token1] = ACTIONS(1017), + [aux_sym_global_declaration_token1] = ACTIONS(1017), + [aux_sym_namespace_definition_token1] = ACTIONS(1017), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1017), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1017), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1017), + [anon_sym_BSLASH] = ACTIONS(1015), + [anon_sym_LBRACE] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1015), + [aux_sym_trait_declaration_token1] = ACTIONS(1017), + [aux_sym_interface_declaration_token1] = ACTIONS(1017), + [aux_sym_enum_declaration_token1] = ACTIONS(1017), + [aux_sym_enum_case_token1] = ACTIONS(1017), + [aux_sym_class_declaration_token1] = ACTIONS(1017), + [aux_sym_final_modifier_token1] = ACTIONS(1017), + [aux_sym_abstract_modifier_token1] = ACTIONS(1017), + [aux_sym_readonly_modifier_token1] = ACTIONS(1017), + [sym_var_modifier] = ACTIONS(1017), + [aux_sym_visibility_modifier_token1] = ACTIONS(1017), + [aux_sym_visibility_modifier_token2] = ACTIONS(1017), + [aux_sym_visibility_modifier_token3] = ACTIONS(1017), + [aux_sym__arrow_function_header_token1] = ACTIONS(1017), + [anon_sym_LPAREN] = ACTIONS(1015), + [aux_sym_cast_type_token1] = ACTIONS(1017), + [aux_sym_echo_statement_token1] = ACTIONS(1017), + [aux_sym_exit_statement_token1] = ACTIONS(1017), + [anon_sym_unset] = ACTIONS(1017), + [aux_sym_declare_statement_token1] = ACTIONS(1017), + [aux_sym_declare_statement_token2] = ACTIONS(1017), + [sym_float] = ACTIONS(1017), + [aux_sym_try_statement_token1] = ACTIONS(1017), + [aux_sym_goto_statement_token1] = ACTIONS(1017), + [aux_sym_continue_statement_token1] = ACTIONS(1017), + [aux_sym_break_statement_token1] = ACTIONS(1017), + [sym_integer] = ACTIONS(1017), + [aux_sym_return_statement_token1] = ACTIONS(1017), + [aux_sym_throw_expression_token1] = ACTIONS(1017), + [aux_sym_while_statement_token1] = ACTIONS(1017), + [aux_sym_while_statement_token2] = ACTIONS(1017), + [aux_sym_do_statement_token1] = ACTIONS(1017), + [aux_sym_for_statement_token1] = ACTIONS(1017), + [aux_sym_for_statement_token2] = ACTIONS(1017), + [aux_sym_foreach_statement_token1] = ACTIONS(1017), + [aux_sym_foreach_statement_token2] = ACTIONS(1017), + [aux_sym_if_statement_token1] = ACTIONS(1017), + [aux_sym_if_statement_token2] = ACTIONS(1017), + [aux_sym_else_if_clause_token1] = ACTIONS(1005), + [aux_sym_else_clause_token1] = ACTIONS(1007), + [aux_sym_match_expression_token1] = ACTIONS(1017), + [aux_sym_match_default_expression_token1] = ACTIONS(1017), + [aux_sym_switch_statement_token1] = ACTIONS(1017), + [aux_sym_switch_block_token1] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_TILDE] = ACTIONS(1015), + [anon_sym_BANG] = ACTIONS(1015), + [anon_sym_AT] = ACTIONS(1015), + [aux_sym_clone_expression_token1] = ACTIONS(1017), + [aux_sym_print_intrinsic_token1] = ACTIONS(1017), + [aux_sym_object_creation_expression_token1] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(1015), + [anon_sym_PLUS_PLUS] = ACTIONS(1015), + [aux_sym__list_destructing_token1] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1015), + [anon_sym_self] = ACTIONS(1017), + [anon_sym_parent] = ACTIONS(1017), + [aux_sym__argument_name_token1] = ACTIONS(1017), + [aux_sym__argument_name_token2] = ACTIONS(1017), + [anon_sym_POUND_LBRACK] = ACTIONS(1015), + [aux_sym_encapsed_string_token1] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(1015), + [aux_sym_string_token1] = ACTIONS(1015), + [anon_sym_SQUOTE] = ACTIONS(1015), + [anon_sym_LT_LT_LT] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1015), + [anon_sym_DOLLAR] = ACTIONS(1015), + [aux_sym_yield_expression_token1] = ACTIONS(1017), + [aux_sym_include_expression_token1] = ACTIONS(1017), + [aux_sym_include_once_expression_token1] = ACTIONS(1017), + [aux_sym_require_expression_token1] = ACTIONS(1017), + [aux_sym_require_once_expression_token1] = ACTIONS(1017), [sym_comment] = ACTIONS(5), }, [429] = { [sym_text_interpolation] = STATE(429), - [ts_builtin_sym_end] = ACTIONS(1020), - [sym_name] = ACTIONS(1022), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1020), - [aux_sym_function_static_declaration_token1] = ACTIONS(1022), - [aux_sym_global_declaration_token1] = ACTIONS(1022), - [aux_sym_namespace_definition_token1] = ACTIONS(1022), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1022), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1022), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1022), - [anon_sym_BSLASH] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_RBRACE] = ACTIONS(1020), - [aux_sym_trait_declaration_token1] = ACTIONS(1022), - [aux_sym_interface_declaration_token1] = ACTIONS(1022), - [aux_sym_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), - [aux_sym_exit_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_catch_clause_token1] = ACTIONS(1022), - [aux_sym_finally_clause_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), + [sym_else_if_clause] = STATE(477), + [sym_else_clause] = STATE(475), + [aux_sym_if_statement_repeat1] = STATE(427), + [ts_builtin_sym_end] = ACTIONS(1015), + [sym_name] = ACTIONS(1017), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1015), + [aux_sym_function_static_declaration_token1] = ACTIONS(1017), + [aux_sym_global_declaration_token1] = ACTIONS(1017), + [aux_sym_namespace_definition_token1] = ACTIONS(1017), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1017), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1017), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1017), + [anon_sym_BSLASH] = ACTIONS(1015), + [anon_sym_LBRACE] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1015), + [aux_sym_trait_declaration_token1] = ACTIONS(1017), + [aux_sym_interface_declaration_token1] = ACTIONS(1017), + [aux_sym_enum_declaration_token1] = ACTIONS(1017), + [aux_sym_enum_case_token1] = ACTIONS(1017), + [aux_sym_class_declaration_token1] = ACTIONS(1017), + [aux_sym_final_modifier_token1] = ACTIONS(1017), + [aux_sym_abstract_modifier_token1] = ACTIONS(1017), + [aux_sym_readonly_modifier_token1] = ACTIONS(1017), + [sym_var_modifier] = ACTIONS(1017), + [aux_sym_visibility_modifier_token1] = ACTIONS(1017), + [aux_sym_visibility_modifier_token2] = ACTIONS(1017), + [aux_sym_visibility_modifier_token3] = ACTIONS(1017), + [aux_sym__arrow_function_header_token1] = ACTIONS(1017), + [anon_sym_LPAREN] = ACTIONS(1015), + [aux_sym_cast_type_token1] = ACTIONS(1017), + [aux_sym_echo_statement_token1] = ACTIONS(1017), + [aux_sym_exit_statement_token1] = ACTIONS(1017), + [anon_sym_unset] = ACTIONS(1017), + [aux_sym_declare_statement_token1] = ACTIONS(1017), + [aux_sym_declare_statement_token2] = ACTIONS(1017), + [sym_float] = ACTIONS(1017), + [aux_sym_try_statement_token1] = ACTIONS(1017), + [aux_sym_goto_statement_token1] = ACTIONS(1017), + [aux_sym_continue_statement_token1] = ACTIONS(1017), + [aux_sym_break_statement_token1] = ACTIONS(1017), + [sym_integer] = ACTIONS(1017), + [aux_sym_return_statement_token1] = ACTIONS(1017), + [aux_sym_throw_expression_token1] = ACTIONS(1017), + [aux_sym_while_statement_token1] = ACTIONS(1017), + [aux_sym_while_statement_token2] = ACTIONS(1017), + [aux_sym_do_statement_token1] = ACTIONS(1017), + [aux_sym_for_statement_token1] = ACTIONS(1017), + [aux_sym_for_statement_token2] = ACTIONS(1017), + [aux_sym_foreach_statement_token1] = ACTIONS(1017), + [aux_sym_foreach_statement_token2] = ACTIONS(1017), + [aux_sym_if_statement_token1] = ACTIONS(1017), + [aux_sym_if_statement_token2] = ACTIONS(1017), + [aux_sym_else_if_clause_token1] = ACTIONS(1019), [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_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1020), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1020), - [anon_sym_PLUS_PLUS] = ACTIONS(1020), - [aux_sym__list_destructing_token1] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(1020), - [anon_sym_self] = ACTIONS(1022), - [anon_sym_parent] = ACTIONS(1022), - [aux_sym__argument_name_token1] = ACTIONS(1022), - [aux_sym__argument_name_token2] = ACTIONS(1022), - [anon_sym_POUND_LBRACK] = ACTIONS(1020), - [aux_sym_encapsed_string_token1] = ACTIONS(1020), - [anon_sym_DQUOTE] = ACTIONS(1020), - [aux_sym_string_token1] = ACTIONS(1020), - [anon_sym_SQUOTE] = ACTIONS(1020), - [anon_sym_LT_LT_LT] = ACTIONS(1020), - [anon_sym_BQUOTE] = ACTIONS(1020), - [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), + [aux_sym_match_expression_token1] = ACTIONS(1017), + [aux_sym_match_default_expression_token1] = ACTIONS(1017), + [aux_sym_switch_statement_token1] = ACTIONS(1017), + [aux_sym_switch_block_token1] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_TILDE] = ACTIONS(1015), + [anon_sym_BANG] = ACTIONS(1015), + [anon_sym_AT] = ACTIONS(1015), + [aux_sym_clone_expression_token1] = ACTIONS(1017), + [aux_sym_print_intrinsic_token1] = ACTIONS(1017), + [aux_sym_object_creation_expression_token1] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(1015), + [anon_sym_PLUS_PLUS] = ACTIONS(1015), + [aux_sym__list_destructing_token1] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1015), + [anon_sym_self] = ACTIONS(1017), + [anon_sym_parent] = ACTIONS(1017), + [aux_sym__argument_name_token1] = ACTIONS(1017), + [aux_sym__argument_name_token2] = ACTIONS(1017), + [anon_sym_POUND_LBRACK] = ACTIONS(1015), + [aux_sym_encapsed_string_token1] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(1015), + [aux_sym_string_token1] = ACTIONS(1015), + [anon_sym_SQUOTE] = ACTIONS(1015), + [anon_sym_LT_LT_LT] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1015), + [anon_sym_DOLLAR] = ACTIONS(1015), + [aux_sym_yield_expression_token1] = ACTIONS(1017), + [aux_sym_include_expression_token1] = ACTIONS(1017), + [aux_sym_include_once_expression_token1] = ACTIONS(1017), + [aux_sym_require_expression_token1] = ACTIONS(1017), + [aux_sym_require_once_expression_token1] = ACTIONS(1017), [sym_comment] = ACTIONS(5), }, [430] = { [sym_text_interpolation] = STATE(430), - [ts_builtin_sym_end] = ACTIONS(1024), - [sym_name] = ACTIONS(1026), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1024), - [aux_sym_function_static_declaration_token1] = ACTIONS(1026), - [aux_sym_global_declaration_token1] = ACTIONS(1026), - [aux_sym_namespace_definition_token1] = ACTIONS(1026), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1026), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1026), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1026), - [anon_sym_BSLASH] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_RBRACE] = ACTIONS(1024), - [aux_sym_trait_declaration_token1] = ACTIONS(1026), - [aux_sym_interface_declaration_token1] = ACTIONS(1026), - [aux_sym_enum_declaration_token1] = ACTIONS(1026), - [aux_sym_enum_case_token1] = ACTIONS(1026), - [aux_sym_class_declaration_token1] = ACTIONS(1026), - [aux_sym_final_modifier_token1] = ACTIONS(1026), - [aux_sym_abstract_modifier_token1] = ACTIONS(1026), - [aux_sym_readonly_modifier_token1] = ACTIONS(1026), - [aux_sym_visibility_modifier_token1] = ACTIONS(1026), - [aux_sym_visibility_modifier_token2] = ACTIONS(1026), - [aux_sym_visibility_modifier_token3] = ACTIONS(1026), - [aux_sym__arrow_function_header_token1] = ACTIONS(1026), - [anon_sym_LPAREN] = ACTIONS(1024), - [aux_sym_cast_type_token1] = ACTIONS(1026), - [aux_sym_echo_statement_token1] = ACTIONS(1026), - [aux_sym_exit_statement_token1] = ACTIONS(1026), - [anon_sym_unset] = ACTIONS(1026), - [aux_sym_declare_statement_token1] = ACTIONS(1026), - [aux_sym_declare_statement_token2] = ACTIONS(1026), - [sym_float] = ACTIONS(1026), - [aux_sym_try_statement_token1] = ACTIONS(1026), - [aux_sym_catch_clause_token1] = ACTIONS(1026), - [aux_sym_finally_clause_token1] = ACTIONS(1026), - [aux_sym_goto_statement_token1] = ACTIONS(1026), - [aux_sym_continue_statement_token1] = ACTIONS(1026), - [aux_sym_break_statement_token1] = ACTIONS(1026), - [sym_integer] = ACTIONS(1026), - [aux_sym_return_statement_token1] = ACTIONS(1026), - [aux_sym_throw_expression_token1] = ACTIONS(1026), - [aux_sym_while_statement_token1] = ACTIONS(1026), - [aux_sym_while_statement_token2] = ACTIONS(1026), - [aux_sym_do_statement_token1] = ACTIONS(1026), - [aux_sym_for_statement_token1] = ACTIONS(1026), - [aux_sym_for_statement_token2] = ACTIONS(1026), - [aux_sym_foreach_statement_token1] = ACTIONS(1026), - [aux_sym_foreach_statement_token2] = ACTIONS(1026), - [aux_sym_if_statement_token1] = ACTIONS(1026), - [aux_sym_if_statement_token2] = ACTIONS(1026), - [aux_sym_else_if_clause_token1] = ACTIONS(1026), - [aux_sym_else_clause_token1] = ACTIONS(1026), - [aux_sym_match_expression_token1] = ACTIONS(1026), - [aux_sym_match_default_expression_token1] = ACTIONS(1026), - [aux_sym_switch_statement_token1] = ACTIONS(1026), - [aux_sym_switch_block_token1] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_TILDE] = ACTIONS(1024), - [anon_sym_BANG] = ACTIONS(1024), - [anon_sym_AT] = ACTIONS(1024), - [aux_sym_clone_expression_token1] = ACTIONS(1026), - [aux_sym_print_intrinsic_token1] = ACTIONS(1026), - [aux_sym_object_creation_expression_token1] = ACTIONS(1026), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [aux_sym__list_destructing_token1] = ACTIONS(1026), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_self] = ACTIONS(1026), - [anon_sym_parent] = ACTIONS(1026), - [aux_sym__argument_name_token1] = ACTIONS(1026), - [aux_sym__argument_name_token2] = ACTIONS(1026), - [anon_sym_POUND_LBRACK] = ACTIONS(1024), - [aux_sym_encapsed_string_token1] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [aux_sym_string_token1] = ACTIONS(1024), - [anon_sym_SQUOTE] = ACTIONS(1024), - [anon_sym_LT_LT_LT] = ACTIONS(1024), - [anon_sym_BQUOTE] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1024), - [aux_sym_yield_expression_token1] = ACTIONS(1026), - [aux_sym_include_expression_token1] = ACTIONS(1026), - [aux_sym_include_once_expression_token1] = ACTIONS(1026), - [aux_sym_require_expression_token1] = ACTIONS(1026), - [aux_sym_require_once_expression_token1] = ACTIONS(1026), + [sym_else_if_clause] = STATE(477), + [aux_sym_if_statement_repeat1] = STATE(430), + [ts_builtin_sym_end] = ACTIONS(1025), + [sym_name] = ACTIONS(1027), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1025), + [aux_sym_function_static_declaration_token1] = ACTIONS(1027), + [aux_sym_global_declaration_token1] = ACTIONS(1027), + [aux_sym_namespace_definition_token1] = ACTIONS(1027), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1027), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1027), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1027), + [anon_sym_BSLASH] = ACTIONS(1025), + [anon_sym_LBRACE] = ACTIONS(1025), + [anon_sym_RBRACE] = ACTIONS(1025), + [aux_sym_trait_declaration_token1] = ACTIONS(1027), + [aux_sym_interface_declaration_token1] = ACTIONS(1027), + [aux_sym_enum_declaration_token1] = ACTIONS(1027), + [aux_sym_enum_case_token1] = ACTIONS(1027), + [aux_sym_class_declaration_token1] = ACTIONS(1027), + [aux_sym_final_modifier_token1] = ACTIONS(1027), + [aux_sym_abstract_modifier_token1] = ACTIONS(1027), + [aux_sym_readonly_modifier_token1] = ACTIONS(1027), + [sym_var_modifier] = ACTIONS(1027), + [aux_sym_visibility_modifier_token1] = ACTIONS(1027), + [aux_sym_visibility_modifier_token2] = ACTIONS(1027), + [aux_sym_visibility_modifier_token3] = ACTIONS(1027), + [aux_sym__arrow_function_header_token1] = ACTIONS(1027), + [anon_sym_LPAREN] = ACTIONS(1025), + [aux_sym_cast_type_token1] = ACTIONS(1027), + [aux_sym_echo_statement_token1] = ACTIONS(1027), + [aux_sym_exit_statement_token1] = ACTIONS(1027), + [anon_sym_unset] = ACTIONS(1027), + [aux_sym_declare_statement_token1] = ACTIONS(1027), + [aux_sym_declare_statement_token2] = ACTIONS(1027), + [sym_float] = ACTIONS(1027), + [aux_sym_try_statement_token1] = ACTIONS(1027), + [aux_sym_goto_statement_token1] = ACTIONS(1027), + [aux_sym_continue_statement_token1] = ACTIONS(1027), + [aux_sym_break_statement_token1] = ACTIONS(1027), + [sym_integer] = ACTIONS(1027), + [aux_sym_return_statement_token1] = ACTIONS(1027), + [aux_sym_throw_expression_token1] = ACTIONS(1027), + [aux_sym_while_statement_token1] = ACTIONS(1027), + [aux_sym_while_statement_token2] = ACTIONS(1027), + [aux_sym_do_statement_token1] = ACTIONS(1027), + [aux_sym_for_statement_token1] = ACTIONS(1027), + [aux_sym_for_statement_token2] = ACTIONS(1027), + [aux_sym_foreach_statement_token1] = ACTIONS(1027), + [aux_sym_foreach_statement_token2] = ACTIONS(1027), + [aux_sym_if_statement_token1] = ACTIONS(1027), + [aux_sym_if_statement_token2] = ACTIONS(1027), + [aux_sym_else_if_clause_token1] = ACTIONS(1029), + [aux_sym_else_clause_token1] = ACTIONS(1027), + [aux_sym_match_expression_token1] = ACTIONS(1027), + [aux_sym_match_default_expression_token1] = ACTIONS(1027), + [aux_sym_switch_statement_token1] = ACTIONS(1027), + [aux_sym_switch_block_token1] = ACTIONS(1027), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_TILDE] = ACTIONS(1025), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_AT] = ACTIONS(1025), + [aux_sym_clone_expression_token1] = ACTIONS(1027), + [aux_sym_print_intrinsic_token1] = ACTIONS(1027), + [aux_sym_object_creation_expression_token1] = ACTIONS(1027), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [aux_sym__list_destructing_token1] = ACTIONS(1027), + [anon_sym_LBRACK] = ACTIONS(1025), + [anon_sym_self] = ACTIONS(1027), + [anon_sym_parent] = ACTIONS(1027), + [aux_sym__argument_name_token1] = ACTIONS(1027), + [aux_sym__argument_name_token2] = ACTIONS(1027), + [anon_sym_POUND_LBRACK] = ACTIONS(1025), + [aux_sym_encapsed_string_token1] = ACTIONS(1025), + [anon_sym_DQUOTE] = ACTIONS(1025), + [aux_sym_string_token1] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1025), + [anon_sym_LT_LT_LT] = ACTIONS(1025), + [anon_sym_BQUOTE] = ACTIONS(1025), + [anon_sym_DOLLAR] = ACTIONS(1025), + [aux_sym_yield_expression_token1] = ACTIONS(1027), + [aux_sym_include_expression_token1] = ACTIONS(1027), + [aux_sym_include_once_expression_token1] = ACTIONS(1027), + [aux_sym_require_expression_token1] = ACTIONS(1027), + [aux_sym_require_once_expression_token1] = ACTIONS(1027), [sym_comment] = ACTIONS(5), }, [431] = { [sym_text_interpolation] = STATE(431), - [ts_builtin_sym_end] = ACTIONS(1028), - [sym_name] = ACTIONS(1030), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1028), - [aux_sym_function_static_declaration_token1] = ACTIONS(1030), - [aux_sym_global_declaration_token1] = ACTIONS(1030), - [aux_sym_namespace_definition_token1] = ACTIONS(1030), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1030), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1030), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1030), - [anon_sym_BSLASH] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1028), - [aux_sym_trait_declaration_token1] = ACTIONS(1030), - [aux_sym_interface_declaration_token1] = ACTIONS(1030), - [aux_sym_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), - [aux_sym_exit_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_catch_clause_token1] = ACTIONS(1030), - [aux_sym_finally_clause_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_PLUS] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1028), - [anon_sym_BANG] = ACTIONS(1028), - [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1028), - [anon_sym_PLUS_PLUS] = ACTIONS(1028), - [aux_sym__list_destructing_token1] = ACTIONS(1030), - [anon_sym_LBRACK] = ACTIONS(1028), - [anon_sym_self] = ACTIONS(1030), - [anon_sym_parent] = ACTIONS(1030), - [aux_sym__argument_name_token1] = ACTIONS(1030), - [aux_sym__argument_name_token2] = ACTIONS(1030), - [anon_sym_POUND_LBRACK] = ACTIONS(1028), - [aux_sym_encapsed_string_token1] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1028), - [aux_sym_string_token1] = ACTIONS(1028), - [anon_sym_SQUOTE] = ACTIONS(1028), - [anon_sym_LT_LT_LT] = ACTIONS(1028), - [anon_sym_BQUOTE] = ACTIONS(1028), - [anon_sym_DOLLAR] = ACTIONS(1028), - [aux_sym_yield_expression_token1] = ACTIONS(1030), - [aux_sym_include_expression_token1] = ACTIONS(1030), - [aux_sym_include_once_expression_token1] = ACTIONS(1030), - [aux_sym_require_expression_token1] = ACTIONS(1030), - [aux_sym_require_once_expression_token1] = ACTIONS(1030), - [sym_comment] = ACTIONS(5), - }, - [432] = { - [sym_text_interpolation] = STATE(432), [ts_builtin_sym_end] = ACTIONS(1032), [sym_name] = ACTIONS(1034), [anon_sym_QMARK_GT] = ACTIONS(3), @@ -65393,6 +65942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_final_modifier_token1] = ACTIONS(1034), [aux_sym_abstract_modifier_token1] = ACTIONS(1034), [aux_sym_readonly_modifier_token1] = ACTIONS(1034), + [sym_var_modifier] = ACTIONS(1034), [aux_sym_visibility_modifier_token1] = ACTIONS(1034), [aux_sym_visibility_modifier_token2] = ACTIONS(1034), [aux_sym_visibility_modifier_token3] = ACTIONS(1034), @@ -65460,8 +66010,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(1034), [sym_comment] = ACTIONS(5), }, - [433] = { - [sym_text_interpolation] = STATE(433), + [432] = { + [sym_text_interpolation] = STATE(432), [ts_builtin_sym_end] = ACTIONS(1036), [sym_name] = ACTIONS(1038), [anon_sym_QMARK_GT] = ACTIONS(3), @@ -65483,6 +66033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_final_modifier_token1] = ACTIONS(1038), [aux_sym_abstract_modifier_token1] = ACTIONS(1038), [aux_sym_readonly_modifier_token1] = ACTIONS(1038), + [sym_var_modifier] = ACTIONS(1038), [aux_sym_visibility_modifier_token1] = ACTIONS(1038), [aux_sym_visibility_modifier_token2] = ACTIONS(1038), [aux_sym_visibility_modifier_token3] = ACTIONS(1038), @@ -65550,8 +66101,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(1038), [sym_comment] = ACTIONS(5), }, - [434] = { - [sym_text_interpolation] = STATE(434), + [433] = { + [sym_text_interpolation] = STATE(433), [ts_builtin_sym_end] = ACTIONS(1040), [sym_name] = ACTIONS(1042), [anon_sym_QMARK_GT] = ACTIONS(3), @@ -65573,6 +66124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_final_modifier_token1] = ACTIONS(1042), [aux_sym_abstract_modifier_token1] = ACTIONS(1042), [aux_sym_readonly_modifier_token1] = ACTIONS(1042), + [sym_var_modifier] = ACTIONS(1042), [aux_sym_visibility_modifier_token1] = ACTIONS(1042), [aux_sym_visibility_modifier_token2] = ACTIONS(1042), [aux_sym_visibility_modifier_token3] = ACTIONS(1042), @@ -65640,10 +66192,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(1042), [sym_comment] = ACTIONS(5), }, - [435] = { - [sym_text_interpolation] = STATE(435), - [sym_else_if_clause] = STATE(504), - [aux_sym_if_statement_repeat1] = STATE(435), + [434] = { + [sym_text_interpolation] = STATE(434), [ts_builtin_sym_end] = ACTIONS(1044), [sym_name] = ACTIONS(1046), [anon_sym_QMARK_GT] = ACTIONS(3), @@ -65665,6 +66215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_final_modifier_token1] = ACTIONS(1046), [aux_sym_abstract_modifier_token1] = ACTIONS(1046), [aux_sym_readonly_modifier_token1] = ACTIONS(1046), + [sym_var_modifier] = ACTIONS(1046), [aux_sym_visibility_modifier_token1] = ACTIONS(1046), [aux_sym_visibility_modifier_token2] = ACTIONS(1046), [aux_sym_visibility_modifier_token3] = ACTIONS(1046), @@ -65678,6 +66229,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_declare_statement_token2] = ACTIONS(1046), [sym_float] = ACTIONS(1046), [aux_sym_try_statement_token1] = ACTIONS(1046), + [aux_sym_catch_clause_token1] = ACTIONS(1046), + [aux_sym_finally_clause_token1] = ACTIONS(1046), [aux_sym_goto_statement_token1] = ACTIONS(1046), [aux_sym_continue_statement_token1] = ACTIONS(1046), [aux_sym_break_statement_token1] = ACTIONS(1046), @@ -65693,7 +66246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_foreach_statement_token2] = ACTIONS(1046), [aux_sym_if_statement_token1] = ACTIONS(1046), [aux_sym_if_statement_token2] = ACTIONS(1046), - [aux_sym_else_if_clause_token1] = ACTIONS(1048), + [aux_sym_else_if_clause_token1] = ACTIONS(1046), [aux_sym_else_clause_token1] = ACTIONS(1046), [aux_sym_match_expression_token1] = ACTIONS(1046), [aux_sym_match_default_expression_token1] = ACTIONS(1046), @@ -65730,12638 +66283,12066 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(1046), [sym_comment] = ACTIONS(5), }, + [435] = { + [sym_text_interpolation] = STATE(435), + [ts_builtin_sym_end] = ACTIONS(1048), + [sym_name] = ACTIONS(1050), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1048), + [aux_sym_function_static_declaration_token1] = ACTIONS(1050), + [aux_sym_global_declaration_token1] = ACTIONS(1050), + [aux_sym_namespace_definition_token1] = ACTIONS(1050), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1050), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1050), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1050), + [anon_sym_BSLASH] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), + [aux_sym_trait_declaration_token1] = ACTIONS(1050), + [aux_sym_interface_declaration_token1] = ACTIONS(1050), + [aux_sym_enum_declaration_token1] = ACTIONS(1050), + [aux_sym_enum_case_token1] = ACTIONS(1050), + [aux_sym_class_declaration_token1] = ACTIONS(1050), + [aux_sym_final_modifier_token1] = ACTIONS(1050), + [aux_sym_abstract_modifier_token1] = ACTIONS(1050), + [aux_sym_readonly_modifier_token1] = ACTIONS(1050), + [sym_var_modifier] = ACTIONS(1050), + [aux_sym_visibility_modifier_token1] = ACTIONS(1050), + [aux_sym_visibility_modifier_token2] = ACTIONS(1050), + [aux_sym_visibility_modifier_token3] = ACTIONS(1050), + [aux_sym__arrow_function_header_token1] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1048), + [aux_sym_cast_type_token1] = ACTIONS(1050), + [aux_sym_echo_statement_token1] = ACTIONS(1050), + [aux_sym_exit_statement_token1] = ACTIONS(1050), + [anon_sym_unset] = ACTIONS(1050), + [aux_sym_declare_statement_token1] = ACTIONS(1050), + [aux_sym_declare_statement_token2] = ACTIONS(1050), + [sym_float] = ACTIONS(1050), + [aux_sym_try_statement_token1] = ACTIONS(1050), + [aux_sym_catch_clause_token1] = ACTIONS(1050), + [aux_sym_finally_clause_token1] = ACTIONS(1050), + [aux_sym_goto_statement_token1] = ACTIONS(1050), + [aux_sym_continue_statement_token1] = ACTIONS(1050), + [aux_sym_break_statement_token1] = ACTIONS(1050), + [sym_integer] = ACTIONS(1050), + [aux_sym_return_statement_token1] = ACTIONS(1050), + [aux_sym_throw_expression_token1] = ACTIONS(1050), + [aux_sym_while_statement_token1] = ACTIONS(1050), + [aux_sym_while_statement_token2] = ACTIONS(1050), + [aux_sym_do_statement_token1] = ACTIONS(1050), + [aux_sym_for_statement_token1] = ACTIONS(1050), + [aux_sym_for_statement_token2] = ACTIONS(1050), + [aux_sym_foreach_statement_token1] = ACTIONS(1050), + [aux_sym_foreach_statement_token2] = ACTIONS(1050), + [aux_sym_if_statement_token1] = ACTIONS(1050), + [aux_sym_if_statement_token2] = ACTIONS(1050), + [aux_sym_else_if_clause_token1] = ACTIONS(1050), + [aux_sym_else_clause_token1] = ACTIONS(1050), + [aux_sym_match_expression_token1] = ACTIONS(1050), + [aux_sym_match_default_expression_token1] = ACTIONS(1050), + [aux_sym_switch_statement_token1] = ACTIONS(1050), + [aux_sym_switch_block_token1] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_TILDE] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_AT] = ACTIONS(1048), + [aux_sym_clone_expression_token1] = ACTIONS(1050), + [aux_sym_print_intrinsic_token1] = ACTIONS(1050), + [aux_sym_object_creation_expression_token1] = ACTIONS(1050), + [anon_sym_DASH_DASH] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1048), + [aux_sym__list_destructing_token1] = ACTIONS(1050), + [anon_sym_LBRACK] = ACTIONS(1048), + [anon_sym_self] = ACTIONS(1050), + [anon_sym_parent] = ACTIONS(1050), + [aux_sym__argument_name_token1] = ACTIONS(1050), + [aux_sym__argument_name_token2] = ACTIONS(1050), + [anon_sym_POUND_LBRACK] = ACTIONS(1048), + [aux_sym_encapsed_string_token1] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [aux_sym_string_token1] = ACTIONS(1048), + [anon_sym_SQUOTE] = ACTIONS(1048), + [anon_sym_LT_LT_LT] = ACTIONS(1048), + [anon_sym_BQUOTE] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1048), + [aux_sym_yield_expression_token1] = ACTIONS(1050), + [aux_sym_include_expression_token1] = ACTIONS(1050), + [aux_sym_include_once_expression_token1] = ACTIONS(1050), + [aux_sym_require_expression_token1] = ACTIONS(1050), + [aux_sym_require_once_expression_token1] = ACTIONS(1050), + [sym_comment] = ACTIONS(5), + }, [436] = { [sym_text_interpolation] = STATE(436), - [ts_builtin_sym_end] = ACTIONS(1051), - [sym_name] = ACTIONS(1053), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1055), - [aux_sym_function_static_declaration_token1] = ACTIONS(1053), - [aux_sym_global_declaration_token1] = ACTIONS(1053), - [aux_sym_namespace_definition_token1] = ACTIONS(1053), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1053), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1053), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1053), - [anon_sym_BSLASH] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1051), - [aux_sym_trait_declaration_token1] = ACTIONS(1053), - [aux_sym_interface_declaration_token1] = ACTIONS(1053), - [aux_sym_enum_declaration_token1] = ACTIONS(1053), - [aux_sym_enum_case_token1] = ACTIONS(1053), - [aux_sym_class_declaration_token1] = ACTIONS(1053), - [aux_sym_final_modifier_token1] = ACTIONS(1053), - [aux_sym_abstract_modifier_token1] = ACTIONS(1053), - [aux_sym_readonly_modifier_token1] = ACTIONS(1053), - [aux_sym_visibility_modifier_token1] = ACTIONS(1053), - [aux_sym_visibility_modifier_token2] = ACTIONS(1053), - [aux_sym_visibility_modifier_token3] = ACTIONS(1053), - [aux_sym__arrow_function_header_token1] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(1051), - [aux_sym_cast_type_token1] = ACTIONS(1053), - [aux_sym_echo_statement_token1] = ACTIONS(1053), - [aux_sym_exit_statement_token1] = ACTIONS(1053), - [anon_sym_unset] = ACTIONS(1053), - [aux_sym_declare_statement_token1] = ACTIONS(1053), - [aux_sym_declare_statement_token2] = ACTIONS(1053), - [sym_float] = ACTIONS(1053), - [aux_sym_try_statement_token1] = ACTIONS(1053), - [aux_sym_goto_statement_token1] = ACTIONS(1053), - [aux_sym_continue_statement_token1] = ACTIONS(1053), - [aux_sym_break_statement_token1] = ACTIONS(1053), - [sym_integer] = ACTIONS(1053), - [aux_sym_return_statement_token1] = ACTIONS(1053), - [aux_sym_throw_expression_token1] = ACTIONS(1053), - [aux_sym_while_statement_token1] = ACTIONS(1053), - [aux_sym_while_statement_token2] = ACTIONS(1053), - [aux_sym_do_statement_token1] = ACTIONS(1053), - [aux_sym_for_statement_token1] = ACTIONS(1053), - [aux_sym_for_statement_token2] = ACTIONS(1053), - [aux_sym_foreach_statement_token1] = ACTIONS(1053), - [aux_sym_foreach_statement_token2] = ACTIONS(1053), - [aux_sym_if_statement_token1] = ACTIONS(1053), - [aux_sym_if_statement_token2] = ACTIONS(1053), - [aux_sym_else_if_clause_token1] = ACTIONS(1053), - [aux_sym_else_clause_token1] = ACTIONS(1053), - [aux_sym_match_expression_token1] = ACTIONS(1053), - [aux_sym_match_default_expression_token1] = ACTIONS(1053), - [aux_sym_switch_statement_token1] = ACTIONS(1053), - [aux_sym_switch_block_token1] = ACTIONS(1053), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_TILDE] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(1051), - [anon_sym_AT] = ACTIONS(1051), - [aux_sym_clone_expression_token1] = ACTIONS(1053), - [aux_sym_print_intrinsic_token1] = ACTIONS(1053), - [aux_sym_object_creation_expression_token1] = ACTIONS(1053), - [anon_sym_DASH_DASH] = ACTIONS(1051), - [anon_sym_PLUS_PLUS] = ACTIONS(1051), - [aux_sym__list_destructing_token1] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1051), - [anon_sym_self] = ACTIONS(1053), - [anon_sym_parent] = ACTIONS(1053), - [aux_sym__argument_name_token1] = ACTIONS(1053), - [aux_sym__argument_name_token2] = ACTIONS(1053), - [anon_sym_POUND_LBRACK] = ACTIONS(1051), - [aux_sym_encapsed_string_token1] = ACTIONS(1051), - [anon_sym_DQUOTE] = ACTIONS(1051), - [aux_sym_string_token1] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1051), - [anon_sym_BQUOTE] = ACTIONS(1051), - [anon_sym_DOLLAR] = ACTIONS(1051), - [aux_sym_yield_expression_token1] = ACTIONS(1053), - [aux_sym_include_expression_token1] = ACTIONS(1053), - [aux_sym_include_once_expression_token1] = ACTIONS(1053), - [aux_sym_require_expression_token1] = ACTIONS(1053), - [aux_sym_require_once_expression_token1] = ACTIONS(1053), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1055), + [ts_builtin_sym_end] = ACTIONS(1052), + [sym_name] = ACTIONS(1054), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1052), + [aux_sym_function_static_declaration_token1] = ACTIONS(1054), + [aux_sym_global_declaration_token1] = ACTIONS(1054), + [aux_sym_namespace_definition_token1] = ACTIONS(1054), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1054), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1054), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1054), + [anon_sym_BSLASH] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), + [aux_sym_trait_declaration_token1] = ACTIONS(1054), + [aux_sym_interface_declaration_token1] = ACTIONS(1054), + [aux_sym_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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_catch_clause_token1] = ACTIONS(1054), + [aux_sym_finally_clause_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_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1052), + [anon_sym_BANG] = ACTIONS(1052), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1052), + [anon_sym_PLUS_PLUS] = ACTIONS(1052), + [aux_sym__list_destructing_token1] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_self] = ACTIONS(1054), + [anon_sym_parent] = ACTIONS(1054), + [aux_sym__argument_name_token1] = ACTIONS(1054), + [aux_sym__argument_name_token2] = ACTIONS(1054), + [anon_sym_POUND_LBRACK] = ACTIONS(1052), + [aux_sym_encapsed_string_token1] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1052), + [aux_sym_string_token1] = ACTIONS(1052), + [anon_sym_SQUOTE] = ACTIONS(1052), + [anon_sym_LT_LT_LT] = ACTIONS(1052), + [anon_sym_BQUOTE] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(1052), + [aux_sym_yield_expression_token1] = ACTIONS(1054), + [aux_sym_include_expression_token1] = ACTIONS(1054), + [aux_sym_include_once_expression_token1] = ACTIONS(1054), + [aux_sym_require_expression_token1] = ACTIONS(1054), + [aux_sym_require_once_expression_token1] = ACTIONS(1054), + [sym_comment] = ACTIONS(5), }, [437] = { [sym_text_interpolation] = STATE(437), - [ts_builtin_sym_end] = ACTIONS(1057), - [sym_name] = ACTIONS(1059), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1061), - [aux_sym_function_static_declaration_token1] = ACTIONS(1059), - [aux_sym_global_declaration_token1] = ACTIONS(1059), - [aux_sym_namespace_definition_token1] = ACTIONS(1059), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1059), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1059), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1059), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(1057), - [aux_sym_trait_declaration_token1] = ACTIONS(1059), - [aux_sym_interface_declaration_token1] = ACTIONS(1059), - [aux_sym_enum_declaration_token1] = ACTIONS(1059), - [aux_sym_enum_case_token1] = ACTIONS(1059), - [aux_sym_class_declaration_token1] = ACTIONS(1059), - [aux_sym_final_modifier_token1] = ACTIONS(1059), - [aux_sym_abstract_modifier_token1] = ACTIONS(1059), - [aux_sym_readonly_modifier_token1] = ACTIONS(1059), - [aux_sym_visibility_modifier_token1] = ACTIONS(1059), - [aux_sym_visibility_modifier_token2] = ACTIONS(1059), - [aux_sym_visibility_modifier_token3] = ACTIONS(1059), - [aux_sym__arrow_function_header_token1] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1057), - [aux_sym_cast_type_token1] = ACTIONS(1059), - [aux_sym_echo_statement_token1] = ACTIONS(1059), - [aux_sym_exit_statement_token1] = ACTIONS(1059), - [anon_sym_unset] = ACTIONS(1059), - [aux_sym_declare_statement_token1] = ACTIONS(1059), - [aux_sym_declare_statement_token2] = ACTIONS(1059), - [sym_float] = ACTIONS(1059), - [aux_sym_try_statement_token1] = ACTIONS(1059), - [aux_sym_goto_statement_token1] = ACTIONS(1059), - [aux_sym_continue_statement_token1] = ACTIONS(1059), - [aux_sym_break_statement_token1] = ACTIONS(1059), - [sym_integer] = ACTIONS(1059), - [aux_sym_return_statement_token1] = ACTIONS(1059), - [aux_sym_throw_expression_token1] = ACTIONS(1059), - [aux_sym_while_statement_token1] = ACTIONS(1059), - [aux_sym_while_statement_token2] = ACTIONS(1059), - [aux_sym_do_statement_token1] = ACTIONS(1059), - [aux_sym_for_statement_token1] = ACTIONS(1059), - [aux_sym_for_statement_token2] = ACTIONS(1059), - [aux_sym_foreach_statement_token1] = ACTIONS(1059), - [aux_sym_foreach_statement_token2] = ACTIONS(1059), - [aux_sym_if_statement_token1] = ACTIONS(1059), - [aux_sym_if_statement_token2] = ACTIONS(1059), - [aux_sym_else_if_clause_token1] = ACTIONS(1059), - [aux_sym_else_clause_token1] = ACTIONS(1059), - [aux_sym_match_expression_token1] = ACTIONS(1059), - [aux_sym_match_default_expression_token1] = ACTIONS(1059), - [aux_sym_switch_statement_token1] = ACTIONS(1059), - [aux_sym_switch_block_token1] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AT] = ACTIONS(1057), - [aux_sym_clone_expression_token1] = ACTIONS(1059), - [aux_sym_print_intrinsic_token1] = ACTIONS(1059), - [aux_sym_object_creation_expression_token1] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1057), - [anon_sym_PLUS_PLUS] = ACTIONS(1057), - [aux_sym__list_destructing_token1] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_self] = ACTIONS(1059), - [anon_sym_parent] = ACTIONS(1059), - [aux_sym__argument_name_token1] = ACTIONS(1059), - [aux_sym__argument_name_token2] = ACTIONS(1059), - [anon_sym_POUND_LBRACK] = ACTIONS(1057), - [aux_sym_encapsed_string_token1] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1057), - [aux_sym_string_token1] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_LT_LT_LT] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1057), - [aux_sym_yield_expression_token1] = ACTIONS(1059), - [aux_sym_include_expression_token1] = ACTIONS(1059), - [aux_sym_include_once_expression_token1] = ACTIONS(1059), - [aux_sym_require_expression_token1] = ACTIONS(1059), - [aux_sym_require_once_expression_token1] = ACTIONS(1059), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1061), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__unary_expression] = STATE(911), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(911), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(592), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_function_call_expression] = STATE(575), + [sym_scoped_call_expression] = STATE(575), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(575), + [sym_nullsafe_member_call_expression] = STATE(575), + [sym_subscript_expression] = STATE(575), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(575), + [sym_variable_name] = STATE(575), + [sym_include_expression] = STATE(911), + [sym_include_once_expression] = STATE(911), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [aux_sym_clone_expression_token1] = ACTIONS(647), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(657), + [aux_sym_include_once_expression_token1] = ACTIONS(659), + [sym_comment] = ACTIONS(5), }, [438] = { [sym_text_interpolation] = STATE(438), - [ts_builtin_sym_end] = ACTIONS(1063), - [sym_name] = ACTIONS(1065), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1067), - [aux_sym_function_static_declaration_token1] = ACTIONS(1065), - [aux_sym_global_declaration_token1] = ACTIONS(1065), - [aux_sym_namespace_definition_token1] = ACTIONS(1065), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1065), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1065), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1065), - [anon_sym_BSLASH] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [aux_sym_trait_declaration_token1] = ACTIONS(1065), - [aux_sym_interface_declaration_token1] = ACTIONS(1065), - [aux_sym_enum_declaration_token1] = ACTIONS(1065), - [aux_sym_enum_case_token1] = ACTIONS(1065), - [aux_sym_class_declaration_token1] = ACTIONS(1065), - [aux_sym_final_modifier_token1] = ACTIONS(1065), - [aux_sym_abstract_modifier_token1] = ACTIONS(1065), - [aux_sym_readonly_modifier_token1] = ACTIONS(1065), - [aux_sym_visibility_modifier_token1] = ACTIONS(1065), - [aux_sym_visibility_modifier_token2] = ACTIONS(1065), - [aux_sym_visibility_modifier_token3] = ACTIONS(1065), - [aux_sym__arrow_function_header_token1] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1063), - [aux_sym_cast_type_token1] = ACTIONS(1065), - [aux_sym_echo_statement_token1] = ACTIONS(1065), - [aux_sym_exit_statement_token1] = ACTIONS(1065), - [anon_sym_unset] = ACTIONS(1065), - [aux_sym_declare_statement_token1] = ACTIONS(1065), - [aux_sym_declare_statement_token2] = ACTIONS(1065), - [sym_float] = ACTIONS(1065), - [aux_sym_try_statement_token1] = ACTIONS(1065), - [aux_sym_goto_statement_token1] = ACTIONS(1065), - [aux_sym_continue_statement_token1] = ACTIONS(1065), - [aux_sym_break_statement_token1] = ACTIONS(1065), - [sym_integer] = ACTIONS(1065), - [aux_sym_return_statement_token1] = ACTIONS(1065), - [aux_sym_throw_expression_token1] = ACTIONS(1065), - [aux_sym_while_statement_token1] = ACTIONS(1065), - [aux_sym_while_statement_token2] = ACTIONS(1065), - [aux_sym_do_statement_token1] = ACTIONS(1065), - [aux_sym_for_statement_token1] = ACTIONS(1065), - [aux_sym_for_statement_token2] = ACTIONS(1065), - [aux_sym_foreach_statement_token1] = ACTIONS(1065), - [aux_sym_foreach_statement_token2] = ACTIONS(1065), - [aux_sym_if_statement_token1] = ACTIONS(1065), - [aux_sym_if_statement_token2] = ACTIONS(1065), - [aux_sym_else_if_clause_token1] = ACTIONS(1065), - [aux_sym_else_clause_token1] = ACTIONS(1065), - [aux_sym_match_expression_token1] = ACTIONS(1065), - [aux_sym_match_default_expression_token1] = ACTIONS(1065), - [aux_sym_switch_statement_token1] = ACTIONS(1065), - [aux_sym_switch_block_token1] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AT] = ACTIONS(1063), - [aux_sym_clone_expression_token1] = ACTIONS(1065), - [aux_sym_print_intrinsic_token1] = ACTIONS(1065), - [aux_sym_object_creation_expression_token1] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [aux_sym__list_destructing_token1] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_self] = ACTIONS(1065), - [anon_sym_parent] = ACTIONS(1065), - [aux_sym__argument_name_token1] = ACTIONS(1065), - [aux_sym__argument_name_token2] = ACTIONS(1065), - [anon_sym_POUND_LBRACK] = ACTIONS(1063), - [aux_sym_encapsed_string_token1] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1063), - [aux_sym_string_token1] = ACTIONS(1063), - [anon_sym_SQUOTE] = ACTIONS(1063), - [anon_sym_LT_LT_LT] = ACTIONS(1063), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1063), - [aux_sym_yield_expression_token1] = ACTIONS(1065), - [aux_sym_include_expression_token1] = ACTIONS(1065), - [aux_sym_include_once_expression_token1] = ACTIONS(1065), - [aux_sym_require_expression_token1] = ACTIONS(1065), - [aux_sym_require_once_expression_token1] = ACTIONS(1065), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1067), + [ts_builtin_sym_end] = ACTIONS(1058), + [sym_name] = ACTIONS(1060), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [aux_sym__list_destructing_token1] = ACTIONS(1060), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_self] = ACTIONS(1060), + [anon_sym_parent] = ACTIONS(1060), + [aux_sym__argument_name_token1] = ACTIONS(1060), + [aux_sym__argument_name_token2] = ACTIONS(1060), + [anon_sym_POUND_LBRACK] = ACTIONS(1058), + [aux_sym_encapsed_string_token1] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [aux_sym_string_token1] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_LT_LT_LT] = ACTIONS(1058), + [anon_sym_BQUOTE] = ACTIONS(1058), + [anon_sym_DOLLAR] = ACTIONS(1058), + [aux_sym_yield_expression_token1] = ACTIONS(1060), + [aux_sym_include_expression_token1] = ACTIONS(1060), + [aux_sym_include_once_expression_token1] = ACTIONS(1060), + [aux_sym_require_expression_token1] = ACTIONS(1060), + [aux_sym_require_once_expression_token1] = ACTIONS(1060), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1062), }, [439] = { [sym_text_interpolation] = STATE(439), - [ts_builtin_sym_end] = ACTIONS(1069), - [sym_name] = ACTIONS(1071), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1073), - [aux_sym_function_static_declaration_token1] = ACTIONS(1071), - [aux_sym_global_declaration_token1] = ACTIONS(1071), - [aux_sym_namespace_definition_token1] = ACTIONS(1071), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1071), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1071), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1071), - [anon_sym_BSLASH] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1069), - [anon_sym_RBRACE] = ACTIONS(1069), - [aux_sym_trait_declaration_token1] = ACTIONS(1071), - [aux_sym_interface_declaration_token1] = ACTIONS(1071), - [aux_sym_enum_declaration_token1] = ACTIONS(1071), - [aux_sym_enum_case_token1] = ACTIONS(1071), - [aux_sym_class_declaration_token1] = ACTIONS(1071), - [aux_sym_final_modifier_token1] = ACTIONS(1071), - [aux_sym_abstract_modifier_token1] = ACTIONS(1071), - [aux_sym_readonly_modifier_token1] = ACTIONS(1071), - [aux_sym_visibility_modifier_token1] = ACTIONS(1071), - [aux_sym_visibility_modifier_token2] = ACTIONS(1071), - [aux_sym_visibility_modifier_token3] = ACTIONS(1071), - [aux_sym__arrow_function_header_token1] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(1069), - [aux_sym_cast_type_token1] = ACTIONS(1071), - [aux_sym_echo_statement_token1] = ACTIONS(1071), - [aux_sym_exit_statement_token1] = ACTIONS(1071), - [anon_sym_unset] = ACTIONS(1071), - [aux_sym_declare_statement_token1] = ACTIONS(1071), - [aux_sym_declare_statement_token2] = ACTIONS(1071), - [sym_float] = ACTIONS(1071), - [aux_sym_try_statement_token1] = ACTIONS(1071), - [aux_sym_goto_statement_token1] = ACTIONS(1071), - [aux_sym_continue_statement_token1] = ACTIONS(1071), - [aux_sym_break_statement_token1] = ACTIONS(1071), - [sym_integer] = ACTIONS(1071), - [aux_sym_return_statement_token1] = ACTIONS(1071), - [aux_sym_throw_expression_token1] = ACTIONS(1071), - [aux_sym_while_statement_token1] = ACTIONS(1071), - [aux_sym_while_statement_token2] = ACTIONS(1071), - [aux_sym_do_statement_token1] = ACTIONS(1071), - [aux_sym_for_statement_token1] = ACTIONS(1071), - [aux_sym_for_statement_token2] = ACTIONS(1071), - [aux_sym_foreach_statement_token1] = ACTIONS(1071), - [aux_sym_foreach_statement_token2] = ACTIONS(1071), - [aux_sym_if_statement_token1] = ACTIONS(1071), - [aux_sym_if_statement_token2] = ACTIONS(1071), - [aux_sym_else_if_clause_token1] = ACTIONS(1071), - [aux_sym_else_clause_token1] = ACTIONS(1071), - [aux_sym_match_expression_token1] = ACTIONS(1071), - [aux_sym_match_default_expression_token1] = ACTIONS(1071), - [aux_sym_switch_statement_token1] = ACTIONS(1071), - [aux_sym_switch_block_token1] = ACTIONS(1071), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_AT] = ACTIONS(1069), - [aux_sym_clone_expression_token1] = ACTIONS(1071), - [aux_sym_print_intrinsic_token1] = ACTIONS(1071), - [aux_sym_object_creation_expression_token1] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [aux_sym__list_destructing_token1] = ACTIONS(1071), - [anon_sym_LBRACK] = ACTIONS(1069), - [anon_sym_self] = ACTIONS(1071), - [anon_sym_parent] = ACTIONS(1071), - [aux_sym__argument_name_token1] = ACTIONS(1071), - [aux_sym__argument_name_token2] = ACTIONS(1071), - [anon_sym_POUND_LBRACK] = ACTIONS(1069), - [aux_sym_encapsed_string_token1] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1069), - [aux_sym_string_token1] = ACTIONS(1069), - [anon_sym_SQUOTE] = ACTIONS(1069), - [anon_sym_LT_LT_LT] = ACTIONS(1069), - [anon_sym_BQUOTE] = ACTIONS(1069), - [anon_sym_DOLLAR] = ACTIONS(1069), - [aux_sym_yield_expression_token1] = ACTIONS(1071), - [aux_sym_include_expression_token1] = ACTIONS(1071), - [aux_sym_include_once_expression_token1] = ACTIONS(1071), - [aux_sym_require_expression_token1] = ACTIONS(1071), - [aux_sym_require_once_expression_token1] = ACTIONS(1071), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1073), + [ts_builtin_sym_end] = ACTIONS(1064), + [sym_name] = ACTIONS(1066), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1064), + [aux_sym_function_static_declaration_token1] = ACTIONS(1066), + [aux_sym_global_declaration_token1] = ACTIONS(1066), + [aux_sym_namespace_definition_token1] = ACTIONS(1066), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1066), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1066), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1066), + [anon_sym_BSLASH] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1064), + [aux_sym_trait_declaration_token1] = ACTIONS(1066), + [aux_sym_interface_declaration_token1] = ACTIONS(1066), + [aux_sym_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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1064), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1064), + [anon_sym_PLUS_PLUS] = ACTIONS(1064), + [aux_sym__list_destructing_token1] = ACTIONS(1066), + [anon_sym_LBRACK] = ACTIONS(1064), + [anon_sym_self] = ACTIONS(1066), + [anon_sym_parent] = ACTIONS(1066), + [aux_sym__argument_name_token1] = ACTIONS(1066), + [aux_sym__argument_name_token2] = ACTIONS(1066), + [anon_sym_POUND_LBRACK] = ACTIONS(1064), + [aux_sym_encapsed_string_token1] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [aux_sym_string_token1] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1064), + [anon_sym_LT_LT_LT] = ACTIONS(1064), + [anon_sym_BQUOTE] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1064), + [aux_sym_yield_expression_token1] = ACTIONS(1066), + [aux_sym_include_expression_token1] = ACTIONS(1066), + [aux_sym_include_once_expression_token1] = ACTIONS(1066), + [aux_sym_require_expression_token1] = ACTIONS(1066), + [aux_sym_require_once_expression_token1] = ACTIONS(1066), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1064), }, [440] = { [sym_text_interpolation] = STATE(440), - [ts_builtin_sym_end] = ACTIONS(1075), - [sym_name] = ACTIONS(1077), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1075), - [aux_sym_function_static_declaration_token1] = ACTIONS(1077), - [aux_sym_global_declaration_token1] = ACTIONS(1077), - [aux_sym_namespace_definition_token1] = ACTIONS(1077), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1077), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1077), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1077), - [anon_sym_BSLASH] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1075), - [aux_sym_trait_declaration_token1] = ACTIONS(1077), - [aux_sym_interface_declaration_token1] = ACTIONS(1077), - [aux_sym_enum_declaration_token1] = ACTIONS(1077), - [aux_sym_enum_case_token1] = ACTIONS(1077), - [aux_sym_class_declaration_token1] = ACTIONS(1077), - [aux_sym_final_modifier_token1] = ACTIONS(1077), - [aux_sym_abstract_modifier_token1] = ACTIONS(1077), - [aux_sym_readonly_modifier_token1] = ACTIONS(1077), - [aux_sym_visibility_modifier_token1] = ACTIONS(1077), - [aux_sym_visibility_modifier_token2] = ACTIONS(1077), - [aux_sym_visibility_modifier_token3] = ACTIONS(1077), - [aux_sym__arrow_function_header_token1] = ACTIONS(1077), - [anon_sym_LPAREN] = ACTIONS(1075), - [aux_sym_cast_type_token1] = ACTIONS(1077), - [aux_sym_echo_statement_token1] = ACTIONS(1077), - [aux_sym_exit_statement_token1] = ACTIONS(1077), - [anon_sym_unset] = ACTIONS(1077), - [aux_sym_declare_statement_token1] = ACTIONS(1077), - [aux_sym_declare_statement_token2] = ACTIONS(1077), - [sym_float] = ACTIONS(1077), - [aux_sym_try_statement_token1] = ACTIONS(1077), - [aux_sym_goto_statement_token1] = ACTIONS(1077), - [aux_sym_continue_statement_token1] = ACTIONS(1077), - [aux_sym_break_statement_token1] = ACTIONS(1077), - [sym_integer] = ACTIONS(1077), - [aux_sym_return_statement_token1] = ACTIONS(1077), - [aux_sym_throw_expression_token1] = ACTIONS(1077), - [aux_sym_while_statement_token1] = ACTIONS(1077), - [aux_sym_while_statement_token2] = ACTIONS(1077), - [aux_sym_do_statement_token1] = ACTIONS(1077), - [aux_sym_for_statement_token1] = ACTIONS(1077), - [aux_sym_for_statement_token2] = ACTIONS(1077), - [aux_sym_foreach_statement_token1] = ACTIONS(1077), - [aux_sym_foreach_statement_token2] = ACTIONS(1077), - [aux_sym_if_statement_token1] = ACTIONS(1077), - [aux_sym_if_statement_token2] = ACTIONS(1077), - [aux_sym_else_if_clause_token1] = ACTIONS(1077), - [aux_sym_else_clause_token1] = ACTIONS(1077), - [aux_sym_match_expression_token1] = ACTIONS(1077), - [aux_sym_match_default_expression_token1] = ACTIONS(1077), - [aux_sym_switch_statement_token1] = ACTIONS(1077), - [aux_sym_switch_block_token1] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_AT] = ACTIONS(1075), - [aux_sym_clone_expression_token1] = ACTIONS(1077), - [aux_sym_print_intrinsic_token1] = ACTIONS(1077), - [aux_sym_object_creation_expression_token1] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [aux_sym__list_destructing_token1] = ACTIONS(1077), - [anon_sym_LBRACK] = ACTIONS(1075), - [anon_sym_self] = ACTIONS(1077), - [anon_sym_parent] = ACTIONS(1077), - [aux_sym__argument_name_token1] = ACTIONS(1077), - [aux_sym__argument_name_token2] = ACTIONS(1077), - [anon_sym_POUND_LBRACK] = ACTIONS(1075), - [aux_sym_encapsed_string_token1] = ACTIONS(1075), - [anon_sym_DQUOTE] = ACTIONS(1075), - [aux_sym_string_token1] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1075), - [anon_sym_LT_LT_LT] = ACTIONS(1075), - [anon_sym_BQUOTE] = ACTIONS(1075), - [anon_sym_DOLLAR] = ACTIONS(1075), - [aux_sym_yield_expression_token1] = ACTIONS(1077), - [aux_sym_include_expression_token1] = ACTIONS(1077), - [aux_sym_include_once_expression_token1] = ACTIONS(1077), - [aux_sym_require_expression_token1] = ACTIONS(1077), - [aux_sym_require_once_expression_token1] = ACTIONS(1077), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1075), + [ts_builtin_sym_end] = ACTIONS(1068), + [sym_name] = ACTIONS(1070), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1072), + [aux_sym_function_static_declaration_token1] = ACTIONS(1070), + [aux_sym_global_declaration_token1] = ACTIONS(1070), + [aux_sym_namespace_definition_token1] = ACTIONS(1070), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1070), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1070), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1070), + [anon_sym_BSLASH] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [aux_sym_trait_declaration_token1] = ACTIONS(1070), + [aux_sym_interface_declaration_token1] = ACTIONS(1070), + [aux_sym_enum_declaration_token1] = ACTIONS(1070), + [aux_sym_enum_case_token1] = ACTIONS(1070), + [aux_sym_class_declaration_token1] = ACTIONS(1070), + [aux_sym_final_modifier_token1] = ACTIONS(1070), + [aux_sym_abstract_modifier_token1] = ACTIONS(1070), + [aux_sym_readonly_modifier_token1] = ACTIONS(1070), + [sym_var_modifier] = ACTIONS(1070), + [aux_sym_visibility_modifier_token1] = ACTIONS(1070), + [aux_sym_visibility_modifier_token2] = ACTIONS(1070), + [aux_sym_visibility_modifier_token3] = ACTIONS(1070), + [aux_sym__arrow_function_header_token1] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1068), + [aux_sym_cast_type_token1] = ACTIONS(1070), + [aux_sym_echo_statement_token1] = ACTIONS(1070), + [aux_sym_exit_statement_token1] = ACTIONS(1070), + [anon_sym_unset] = ACTIONS(1070), + [aux_sym_declare_statement_token1] = ACTIONS(1070), + [aux_sym_declare_statement_token2] = ACTIONS(1070), + [sym_float] = ACTIONS(1070), + [aux_sym_try_statement_token1] = ACTIONS(1070), + [aux_sym_goto_statement_token1] = ACTIONS(1070), + [aux_sym_continue_statement_token1] = ACTIONS(1070), + [aux_sym_break_statement_token1] = ACTIONS(1070), + [sym_integer] = ACTIONS(1070), + [aux_sym_return_statement_token1] = ACTIONS(1070), + [aux_sym_throw_expression_token1] = ACTIONS(1070), + [aux_sym_while_statement_token1] = ACTIONS(1070), + [aux_sym_while_statement_token2] = ACTIONS(1070), + [aux_sym_do_statement_token1] = ACTIONS(1070), + [aux_sym_for_statement_token1] = ACTIONS(1070), + [aux_sym_for_statement_token2] = ACTIONS(1070), + [aux_sym_foreach_statement_token1] = ACTIONS(1070), + [aux_sym_foreach_statement_token2] = ACTIONS(1070), + [aux_sym_if_statement_token1] = ACTIONS(1070), + [aux_sym_if_statement_token2] = ACTIONS(1070), + [aux_sym_else_if_clause_token1] = ACTIONS(1070), + [aux_sym_else_clause_token1] = ACTIONS(1070), + [aux_sym_match_expression_token1] = ACTIONS(1070), + [aux_sym_match_default_expression_token1] = ACTIONS(1070), + [aux_sym_switch_statement_token1] = ACTIONS(1070), + [aux_sym_switch_block_token1] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1068), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AT] = ACTIONS(1068), + [aux_sym_clone_expression_token1] = ACTIONS(1070), + [aux_sym_print_intrinsic_token1] = ACTIONS(1070), + [aux_sym_object_creation_expression_token1] = ACTIONS(1070), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [aux_sym__list_destructing_token1] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_self] = ACTIONS(1070), + [anon_sym_parent] = ACTIONS(1070), + [aux_sym__argument_name_token1] = ACTIONS(1070), + [aux_sym__argument_name_token2] = ACTIONS(1070), + [anon_sym_POUND_LBRACK] = ACTIONS(1068), + [aux_sym_encapsed_string_token1] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [aux_sym_string_token1] = ACTIONS(1068), + [anon_sym_SQUOTE] = ACTIONS(1068), + [anon_sym_LT_LT_LT] = ACTIONS(1068), + [anon_sym_BQUOTE] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [aux_sym_yield_expression_token1] = ACTIONS(1070), + [aux_sym_include_expression_token1] = ACTIONS(1070), + [aux_sym_include_once_expression_token1] = ACTIONS(1070), + [aux_sym_require_expression_token1] = ACTIONS(1070), + [aux_sym_require_once_expression_token1] = ACTIONS(1070), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1072), }, [441] = { [sym_text_interpolation] = STATE(441), - [ts_builtin_sym_end] = ACTIONS(1079), - [sym_name] = ACTIONS(1081), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1083), - [aux_sym_function_static_declaration_token1] = ACTIONS(1081), - [aux_sym_global_declaration_token1] = ACTIONS(1081), - [aux_sym_namespace_definition_token1] = ACTIONS(1081), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1081), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1081), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1081), - [anon_sym_BSLASH] = ACTIONS(1079), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1079), - [aux_sym_trait_declaration_token1] = ACTIONS(1081), - [aux_sym_interface_declaration_token1] = ACTIONS(1081), - [aux_sym_enum_declaration_token1] = ACTIONS(1081), - [aux_sym_enum_case_token1] = ACTIONS(1081), - [aux_sym_class_declaration_token1] = ACTIONS(1081), - [aux_sym_final_modifier_token1] = ACTIONS(1081), - [aux_sym_abstract_modifier_token1] = ACTIONS(1081), - [aux_sym_readonly_modifier_token1] = ACTIONS(1081), - [aux_sym_visibility_modifier_token1] = ACTIONS(1081), - [aux_sym_visibility_modifier_token2] = ACTIONS(1081), - [aux_sym_visibility_modifier_token3] = ACTIONS(1081), - [aux_sym__arrow_function_header_token1] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1079), - [aux_sym_cast_type_token1] = ACTIONS(1081), - [aux_sym_echo_statement_token1] = ACTIONS(1081), - [aux_sym_exit_statement_token1] = ACTIONS(1081), - [anon_sym_unset] = ACTIONS(1081), - [aux_sym_declare_statement_token1] = ACTIONS(1081), - [aux_sym_declare_statement_token2] = ACTIONS(1081), - [sym_float] = ACTIONS(1081), - [aux_sym_try_statement_token1] = ACTIONS(1081), - [aux_sym_goto_statement_token1] = ACTIONS(1081), - [aux_sym_continue_statement_token1] = ACTIONS(1081), - [aux_sym_break_statement_token1] = ACTIONS(1081), - [sym_integer] = ACTIONS(1081), - [aux_sym_return_statement_token1] = ACTIONS(1081), - [aux_sym_throw_expression_token1] = ACTIONS(1081), - [aux_sym_while_statement_token1] = ACTIONS(1081), - [aux_sym_while_statement_token2] = ACTIONS(1081), - [aux_sym_do_statement_token1] = ACTIONS(1081), - [aux_sym_for_statement_token1] = ACTIONS(1081), - [aux_sym_for_statement_token2] = ACTIONS(1081), - [aux_sym_foreach_statement_token1] = ACTIONS(1081), - [aux_sym_foreach_statement_token2] = ACTIONS(1081), - [aux_sym_if_statement_token1] = ACTIONS(1081), - [aux_sym_if_statement_token2] = ACTIONS(1081), - [aux_sym_else_if_clause_token1] = ACTIONS(1081), - [aux_sym_else_clause_token1] = ACTIONS(1081), - [aux_sym_match_expression_token1] = ACTIONS(1081), - [aux_sym_match_default_expression_token1] = ACTIONS(1081), - [aux_sym_switch_statement_token1] = ACTIONS(1081), - [aux_sym_switch_block_token1] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), - [anon_sym_TILDE] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(1079), - [aux_sym_clone_expression_token1] = ACTIONS(1081), - [aux_sym_print_intrinsic_token1] = ACTIONS(1081), - [aux_sym_object_creation_expression_token1] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1079), - [aux_sym__list_destructing_token1] = ACTIONS(1081), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_self] = ACTIONS(1081), - [anon_sym_parent] = ACTIONS(1081), - [aux_sym__argument_name_token1] = ACTIONS(1081), - [aux_sym__argument_name_token2] = ACTIONS(1081), - [anon_sym_POUND_LBRACK] = ACTIONS(1079), - [aux_sym_encapsed_string_token1] = ACTIONS(1079), - [anon_sym_DQUOTE] = ACTIONS(1079), - [aux_sym_string_token1] = ACTIONS(1079), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_LT_LT_LT] = ACTIONS(1079), - [anon_sym_BQUOTE] = ACTIONS(1079), - [anon_sym_DOLLAR] = ACTIONS(1079), - [aux_sym_yield_expression_token1] = ACTIONS(1081), - [aux_sym_include_expression_token1] = ACTIONS(1081), - [aux_sym_include_once_expression_token1] = ACTIONS(1081), - [aux_sym_require_expression_token1] = ACTIONS(1081), - [aux_sym_require_once_expression_token1] = ACTIONS(1081), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1083), + [ts_builtin_sym_end] = ACTIONS(1074), + [sym_name] = ACTIONS(1076), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1078), + [aux_sym_function_static_declaration_token1] = ACTIONS(1076), + [aux_sym_global_declaration_token1] = ACTIONS(1076), + [aux_sym_namespace_definition_token1] = ACTIONS(1076), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1076), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1076), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1076), + [anon_sym_BSLASH] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1074), + [aux_sym_trait_declaration_token1] = ACTIONS(1076), + [aux_sym_interface_declaration_token1] = ACTIONS(1076), + [aux_sym_enum_declaration_token1] = ACTIONS(1076), + [aux_sym_enum_case_token1] = ACTIONS(1076), + [aux_sym_class_declaration_token1] = ACTIONS(1076), + [aux_sym_final_modifier_token1] = ACTIONS(1076), + [aux_sym_abstract_modifier_token1] = ACTIONS(1076), + [aux_sym_readonly_modifier_token1] = ACTIONS(1076), + [sym_var_modifier] = ACTIONS(1076), + [aux_sym_visibility_modifier_token1] = ACTIONS(1076), + [aux_sym_visibility_modifier_token2] = ACTIONS(1076), + [aux_sym_visibility_modifier_token3] = ACTIONS(1076), + [aux_sym__arrow_function_header_token1] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1074), + [aux_sym_cast_type_token1] = ACTIONS(1076), + [aux_sym_echo_statement_token1] = ACTIONS(1076), + [aux_sym_exit_statement_token1] = ACTIONS(1076), + [anon_sym_unset] = ACTIONS(1076), + [aux_sym_declare_statement_token1] = ACTIONS(1076), + [aux_sym_declare_statement_token2] = ACTIONS(1076), + [sym_float] = ACTIONS(1076), + [aux_sym_try_statement_token1] = ACTIONS(1076), + [aux_sym_goto_statement_token1] = ACTIONS(1076), + [aux_sym_continue_statement_token1] = ACTIONS(1076), + [aux_sym_break_statement_token1] = ACTIONS(1076), + [sym_integer] = ACTIONS(1076), + [aux_sym_return_statement_token1] = ACTIONS(1076), + [aux_sym_throw_expression_token1] = ACTIONS(1076), + [aux_sym_while_statement_token1] = ACTIONS(1076), + [aux_sym_while_statement_token2] = ACTIONS(1076), + [aux_sym_do_statement_token1] = ACTIONS(1076), + [aux_sym_for_statement_token1] = ACTIONS(1076), + [aux_sym_for_statement_token2] = ACTIONS(1076), + [aux_sym_foreach_statement_token1] = ACTIONS(1076), + [aux_sym_foreach_statement_token2] = ACTIONS(1076), + [aux_sym_if_statement_token1] = ACTIONS(1076), + [aux_sym_if_statement_token2] = ACTIONS(1076), + [aux_sym_else_if_clause_token1] = ACTIONS(1076), + [aux_sym_else_clause_token1] = ACTIONS(1076), + [aux_sym_match_expression_token1] = ACTIONS(1076), + [aux_sym_match_default_expression_token1] = ACTIONS(1076), + [aux_sym_switch_statement_token1] = ACTIONS(1076), + [aux_sym_switch_block_token1] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_AT] = ACTIONS(1074), + [aux_sym_clone_expression_token1] = ACTIONS(1076), + [aux_sym_print_intrinsic_token1] = ACTIONS(1076), + [aux_sym_object_creation_expression_token1] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [aux_sym__list_destructing_token1] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_self] = ACTIONS(1076), + [anon_sym_parent] = ACTIONS(1076), + [aux_sym__argument_name_token1] = ACTIONS(1076), + [aux_sym__argument_name_token2] = ACTIONS(1076), + [anon_sym_POUND_LBRACK] = ACTIONS(1074), + [aux_sym_encapsed_string_token1] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [aux_sym_string_token1] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_LT_LT_LT] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(1074), + [anon_sym_DOLLAR] = ACTIONS(1074), + [aux_sym_yield_expression_token1] = ACTIONS(1076), + [aux_sym_include_expression_token1] = ACTIONS(1076), + [aux_sym_include_once_expression_token1] = ACTIONS(1076), + [aux_sym_require_expression_token1] = ACTIONS(1076), + [aux_sym_require_once_expression_token1] = ACTIONS(1076), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1078), }, [442] = { [sym_text_interpolation] = STATE(442), - [ts_builtin_sym_end] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1089), - [aux_sym_function_static_declaration_token1] = ACTIONS(1087), - [aux_sym_global_declaration_token1] = ACTIONS(1087), - [aux_sym_namespace_definition_token1] = ACTIONS(1087), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1087), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1087), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1087), - [anon_sym_BSLASH] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1085), - [aux_sym_trait_declaration_token1] = ACTIONS(1087), - [aux_sym_interface_declaration_token1] = ACTIONS(1087), - [aux_sym_enum_declaration_token1] = ACTIONS(1087), - [aux_sym_enum_case_token1] = ACTIONS(1087), - [aux_sym_class_declaration_token1] = ACTIONS(1087), - [aux_sym_final_modifier_token1] = ACTIONS(1087), - [aux_sym_abstract_modifier_token1] = ACTIONS(1087), - [aux_sym_readonly_modifier_token1] = ACTIONS(1087), - [aux_sym_visibility_modifier_token1] = ACTIONS(1087), - [aux_sym_visibility_modifier_token2] = ACTIONS(1087), - [aux_sym_visibility_modifier_token3] = ACTIONS(1087), - [aux_sym__arrow_function_header_token1] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1085), - [aux_sym_cast_type_token1] = ACTIONS(1087), - [aux_sym_echo_statement_token1] = ACTIONS(1087), - [aux_sym_exit_statement_token1] = ACTIONS(1087), - [anon_sym_unset] = ACTIONS(1087), - [aux_sym_declare_statement_token1] = ACTIONS(1087), - [aux_sym_declare_statement_token2] = ACTIONS(1087), - [sym_float] = ACTIONS(1087), - [aux_sym_try_statement_token1] = ACTIONS(1087), - [aux_sym_goto_statement_token1] = ACTIONS(1087), - [aux_sym_continue_statement_token1] = ACTIONS(1087), - [aux_sym_break_statement_token1] = ACTIONS(1087), - [sym_integer] = ACTIONS(1087), - [aux_sym_return_statement_token1] = ACTIONS(1087), - [aux_sym_throw_expression_token1] = ACTIONS(1087), - [aux_sym_while_statement_token1] = ACTIONS(1087), - [aux_sym_while_statement_token2] = ACTIONS(1087), - [aux_sym_do_statement_token1] = ACTIONS(1087), - [aux_sym_for_statement_token1] = ACTIONS(1087), - [aux_sym_for_statement_token2] = ACTIONS(1087), - [aux_sym_foreach_statement_token1] = ACTIONS(1087), - [aux_sym_foreach_statement_token2] = ACTIONS(1087), - [aux_sym_if_statement_token1] = ACTIONS(1087), - [aux_sym_if_statement_token2] = ACTIONS(1087), - [aux_sym_else_if_clause_token1] = ACTIONS(1087), - [aux_sym_else_clause_token1] = ACTIONS(1087), - [aux_sym_match_expression_token1] = ACTIONS(1087), - [aux_sym_match_default_expression_token1] = ACTIONS(1087), - [aux_sym_switch_statement_token1] = ACTIONS(1087), - [aux_sym_switch_block_token1] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_TILDE] = ACTIONS(1085), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_AT] = ACTIONS(1085), - [aux_sym_clone_expression_token1] = ACTIONS(1087), - [aux_sym_print_intrinsic_token1] = ACTIONS(1087), - [aux_sym_object_creation_expression_token1] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [aux_sym__list_destructing_token1] = ACTIONS(1087), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_self] = ACTIONS(1087), - [anon_sym_parent] = ACTIONS(1087), - [aux_sym__argument_name_token1] = ACTIONS(1087), - [aux_sym__argument_name_token2] = ACTIONS(1087), - [anon_sym_POUND_LBRACK] = ACTIONS(1085), - [aux_sym_encapsed_string_token1] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(1085), - [aux_sym_string_token1] = ACTIONS(1085), - [anon_sym_SQUOTE] = ACTIONS(1085), - [anon_sym_LT_LT_LT] = ACTIONS(1085), - [anon_sym_BQUOTE] = ACTIONS(1085), - [anon_sym_DOLLAR] = ACTIONS(1085), - [aux_sym_yield_expression_token1] = ACTIONS(1087), - [aux_sym_include_expression_token1] = ACTIONS(1087), - [aux_sym_include_once_expression_token1] = ACTIONS(1087), - [aux_sym_require_expression_token1] = ACTIONS(1087), - [aux_sym_require_once_expression_token1] = ACTIONS(1087), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1089), + [sym_qualified_name] = STATE(824), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym__unary_expression] = STATE(1130), + [sym_unary_op_expression] = STATE(1106), + [sym_error_suppression_expression] = STATE(1130), + [sym_clone_expression] = STATE(1106), + [sym_primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(842), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [sym_cast_expression] = STATE(1106), + [sym_cast_variable] = STATE(626), + [sym_member_access_expression] = STATE(626), + [sym_nullsafe_member_access_expression] = STATE(626), + [sym_scoped_property_access_expression] = STATE(626), + [sym_function_call_expression] = STATE(602), + [sym_scoped_call_expression] = STATE(602), + [sym__scope_resolution_qualifier] = STATE(2598), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(602), + [sym_nullsafe_member_call_expression] = STATE(602), + [sym_subscript_expression] = STATE(602), + [sym__dereferencable_expression] = STATE(1735), + [sym_array_creation_expression] = STATE(842), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(844), + [sym_dynamic_variable_name] = STATE(602), + [sym_variable_name] = STATE(602), + [sym_include_expression] = STATE(1130), + [sym_include_once_expression] = STATE(1130), + [sym__reserved_identifier] = STATE(1568), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(665), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(254), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(298), + [aux_sym_clone_expression_token1] = ACTIONS(300), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(328), + [aux_sym_include_expression_token1] = ACTIONS(332), + [aux_sym_include_once_expression_token1] = ACTIONS(334), + [sym_comment] = ACTIONS(5), }, [443] = { [sym_text_interpolation] = STATE(443), - [ts_builtin_sym_end] = ACTIONS(1091), - [sym_name] = ACTIONS(1093), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1095), - [aux_sym_function_static_declaration_token1] = ACTIONS(1093), - [aux_sym_global_declaration_token1] = ACTIONS(1093), - [aux_sym_namespace_definition_token1] = ACTIONS(1093), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1093), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1093), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1093), - [anon_sym_BSLASH] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1091), - [anon_sym_RBRACE] = ACTIONS(1091), - [aux_sym_trait_declaration_token1] = ACTIONS(1093), - [aux_sym_interface_declaration_token1] = ACTIONS(1093), - [aux_sym_enum_declaration_token1] = ACTIONS(1093), - [aux_sym_enum_case_token1] = ACTIONS(1093), - [aux_sym_class_declaration_token1] = ACTIONS(1093), - [aux_sym_final_modifier_token1] = ACTIONS(1093), - [aux_sym_abstract_modifier_token1] = ACTIONS(1093), - [aux_sym_readonly_modifier_token1] = ACTIONS(1093), - [aux_sym_visibility_modifier_token1] = ACTIONS(1093), - [aux_sym_visibility_modifier_token2] = ACTIONS(1093), - [aux_sym_visibility_modifier_token3] = ACTIONS(1093), - [aux_sym__arrow_function_header_token1] = ACTIONS(1093), - [anon_sym_LPAREN] = ACTIONS(1091), - [aux_sym_cast_type_token1] = ACTIONS(1093), - [aux_sym_echo_statement_token1] = ACTIONS(1093), - [aux_sym_exit_statement_token1] = ACTIONS(1093), - [anon_sym_unset] = ACTIONS(1093), - [aux_sym_declare_statement_token1] = ACTIONS(1093), - [aux_sym_declare_statement_token2] = ACTIONS(1093), - [sym_float] = ACTIONS(1093), - [aux_sym_try_statement_token1] = ACTIONS(1093), - [aux_sym_goto_statement_token1] = ACTIONS(1093), - [aux_sym_continue_statement_token1] = ACTIONS(1093), - [aux_sym_break_statement_token1] = ACTIONS(1093), - [sym_integer] = ACTIONS(1093), - [aux_sym_return_statement_token1] = ACTIONS(1093), - [aux_sym_throw_expression_token1] = ACTIONS(1093), - [aux_sym_while_statement_token1] = ACTIONS(1093), - [aux_sym_while_statement_token2] = ACTIONS(1093), - [aux_sym_do_statement_token1] = ACTIONS(1093), - [aux_sym_for_statement_token1] = ACTIONS(1093), - [aux_sym_for_statement_token2] = ACTIONS(1093), - [aux_sym_foreach_statement_token1] = ACTIONS(1093), - [aux_sym_foreach_statement_token2] = ACTIONS(1093), - [aux_sym_if_statement_token1] = ACTIONS(1093), - [aux_sym_if_statement_token2] = ACTIONS(1093), - [aux_sym_else_if_clause_token1] = ACTIONS(1093), - [aux_sym_else_clause_token1] = ACTIONS(1093), - [aux_sym_match_expression_token1] = ACTIONS(1093), - [aux_sym_match_default_expression_token1] = ACTIONS(1093), - [aux_sym_switch_statement_token1] = ACTIONS(1093), - [aux_sym_switch_block_token1] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_BANG] = ACTIONS(1091), - [anon_sym_AT] = ACTIONS(1091), - [aux_sym_clone_expression_token1] = ACTIONS(1093), - [aux_sym_print_intrinsic_token1] = ACTIONS(1093), - [aux_sym_object_creation_expression_token1] = ACTIONS(1093), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [aux_sym__list_destructing_token1] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1091), - [anon_sym_self] = ACTIONS(1093), - [anon_sym_parent] = ACTIONS(1093), - [aux_sym__argument_name_token1] = ACTIONS(1093), - [aux_sym__argument_name_token2] = ACTIONS(1093), - [anon_sym_POUND_LBRACK] = ACTIONS(1091), - [aux_sym_encapsed_string_token1] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(1091), - [aux_sym_string_token1] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1091), - [anon_sym_LT_LT_LT] = ACTIONS(1091), - [anon_sym_BQUOTE] = ACTIONS(1091), - [anon_sym_DOLLAR] = ACTIONS(1091), - [aux_sym_yield_expression_token1] = ACTIONS(1093), - [aux_sym_include_expression_token1] = ACTIONS(1093), - [aux_sym_include_once_expression_token1] = ACTIONS(1093), - [aux_sym_require_expression_token1] = ACTIONS(1093), - [aux_sym_require_once_expression_token1] = ACTIONS(1093), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1095), + [ts_builtin_sym_end] = ACTIONS(1082), + [sym_name] = ACTIONS(1084), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1082), + [aux_sym_function_static_declaration_token1] = ACTIONS(1084), + [aux_sym_global_declaration_token1] = ACTIONS(1084), + [aux_sym_namespace_definition_token1] = ACTIONS(1084), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1084), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1084), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1084), + [anon_sym_BSLASH] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [aux_sym_trait_declaration_token1] = ACTIONS(1084), + [aux_sym_interface_declaration_token1] = ACTIONS(1084), + [aux_sym_enum_declaration_token1] = ACTIONS(1084), + [aux_sym_enum_case_token1] = ACTIONS(1084), + [aux_sym_class_declaration_token1] = ACTIONS(1084), + [aux_sym_final_modifier_token1] = ACTIONS(1084), + [aux_sym_abstract_modifier_token1] = ACTIONS(1084), + [aux_sym_readonly_modifier_token1] = ACTIONS(1084), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [aux_sym__list_destructing_token1] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_self] = ACTIONS(1084), + [anon_sym_parent] = ACTIONS(1084), + [aux_sym__argument_name_token1] = ACTIONS(1084), + [aux_sym__argument_name_token2] = ACTIONS(1084), + [anon_sym_POUND_LBRACK] = ACTIONS(1082), + [aux_sym_encapsed_string_token1] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [aux_sym_string_token1] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [anon_sym_LT_LT_LT] = ACTIONS(1082), + [anon_sym_BQUOTE] = ACTIONS(1082), + [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(5), + [sym__automatic_semicolon] = ACTIONS(1082), }, [444] = { [sym_text_interpolation] = STATE(444), - [ts_builtin_sym_end] = ACTIONS(1097), - [sym_name] = ACTIONS(1099), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1097), - [aux_sym_function_static_declaration_token1] = ACTIONS(1099), - [aux_sym_global_declaration_token1] = ACTIONS(1099), - [aux_sym_namespace_definition_token1] = ACTIONS(1099), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1099), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1099), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1099), - [anon_sym_BSLASH] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_RBRACE] = ACTIONS(1097), - [aux_sym_trait_declaration_token1] = ACTIONS(1099), - [aux_sym_interface_declaration_token1] = ACTIONS(1099), - [aux_sym_enum_declaration_token1] = ACTIONS(1099), - [aux_sym_enum_case_token1] = ACTIONS(1099), - [aux_sym_class_declaration_token1] = ACTIONS(1099), - [aux_sym_final_modifier_token1] = ACTIONS(1099), - [aux_sym_abstract_modifier_token1] = ACTIONS(1099), - [aux_sym_readonly_modifier_token1] = ACTIONS(1099), - [sym_var_modifier] = ACTIONS(1099), - [aux_sym_visibility_modifier_token1] = ACTIONS(1099), - [aux_sym_visibility_modifier_token2] = ACTIONS(1099), - [aux_sym_visibility_modifier_token3] = ACTIONS(1099), - [aux_sym__arrow_function_header_token1] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1097), - [aux_sym_cast_type_token1] = ACTIONS(1099), - [aux_sym_echo_statement_token1] = ACTIONS(1099), - [aux_sym_exit_statement_token1] = ACTIONS(1099), - [anon_sym_unset] = ACTIONS(1099), - [aux_sym_declare_statement_token1] = ACTIONS(1099), - [aux_sym_declare_statement_token2] = ACTIONS(1099), - [sym_float] = ACTIONS(1099), - [aux_sym_try_statement_token1] = ACTIONS(1099), - [aux_sym_goto_statement_token1] = ACTIONS(1099), - [aux_sym_continue_statement_token1] = ACTIONS(1099), - [aux_sym_break_statement_token1] = ACTIONS(1099), - [sym_integer] = ACTIONS(1099), - [aux_sym_return_statement_token1] = ACTIONS(1099), - [aux_sym_throw_expression_token1] = ACTIONS(1099), - [aux_sym_while_statement_token1] = ACTIONS(1099), - [aux_sym_while_statement_token2] = ACTIONS(1099), - [aux_sym_do_statement_token1] = ACTIONS(1099), - [aux_sym_for_statement_token1] = ACTIONS(1099), - [aux_sym_for_statement_token2] = ACTIONS(1099), - [aux_sym_foreach_statement_token1] = ACTIONS(1099), - [aux_sym_foreach_statement_token2] = ACTIONS(1099), - [aux_sym_if_statement_token1] = ACTIONS(1099), - [aux_sym_if_statement_token2] = ACTIONS(1099), - [aux_sym_else_if_clause_token1] = ACTIONS(1099), - [aux_sym_else_clause_token1] = ACTIONS(1099), - [aux_sym_match_expression_token1] = ACTIONS(1099), - [aux_sym_match_default_expression_token1] = ACTIONS(1099), - [aux_sym_switch_statement_token1] = ACTIONS(1099), - [aux_sym_switch_block_token1] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_AT] = ACTIONS(1097), - [aux_sym_clone_expression_token1] = ACTIONS(1099), - [aux_sym_print_intrinsic_token1] = ACTIONS(1099), - [aux_sym_object_creation_expression_token1] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1097), - [anon_sym_PLUS_PLUS] = ACTIONS(1097), - [aux_sym__list_destructing_token1] = ACTIONS(1099), - [anon_sym_LBRACK] = ACTIONS(1097), - [anon_sym_self] = ACTIONS(1099), - [anon_sym_parent] = ACTIONS(1099), - [aux_sym__argument_name_token1] = ACTIONS(1099), - [aux_sym__argument_name_token2] = ACTIONS(1099), - [anon_sym_POUND_LBRACK] = ACTIONS(1097), - [aux_sym_encapsed_string_token1] = ACTIONS(1097), - [anon_sym_DQUOTE] = ACTIONS(1097), - [aux_sym_string_token1] = ACTIONS(1097), - [anon_sym_SQUOTE] = ACTIONS(1097), - [anon_sym_LT_LT_LT] = ACTIONS(1097), - [anon_sym_BQUOTE] = ACTIONS(1097), - [anon_sym_DOLLAR] = ACTIONS(1097), - [aux_sym_yield_expression_token1] = ACTIONS(1099), - [aux_sym_include_expression_token1] = ACTIONS(1099), - [aux_sym_include_once_expression_token1] = ACTIONS(1099), - [aux_sym_require_expression_token1] = ACTIONS(1099), - [aux_sym_require_once_expression_token1] = ACTIONS(1099), - [sym_comment] = ACTIONS(5), + [ts_builtin_sym_end] = ACTIONS(1086), + [sym_name] = ACTIONS(1088), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1090), + [aux_sym_function_static_declaration_token1] = ACTIONS(1088), + [aux_sym_global_declaration_token1] = ACTIONS(1088), + [aux_sym_namespace_definition_token1] = ACTIONS(1088), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1088), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1088), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1088), + [anon_sym_BSLASH] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [aux_sym_trait_declaration_token1] = ACTIONS(1088), + [aux_sym_interface_declaration_token1] = ACTIONS(1088), + [aux_sym_enum_declaration_token1] = ACTIONS(1088), + [aux_sym_enum_case_token1] = ACTIONS(1088), + [aux_sym_class_declaration_token1] = ACTIONS(1088), + [aux_sym_final_modifier_token1] = ACTIONS(1088), + [aux_sym_abstract_modifier_token1] = ACTIONS(1088), + [aux_sym_readonly_modifier_token1] = ACTIONS(1088), + [sym_var_modifier] = ACTIONS(1088), + [aux_sym_visibility_modifier_token1] = ACTIONS(1088), + [aux_sym_visibility_modifier_token2] = ACTIONS(1088), + [aux_sym_visibility_modifier_token3] = ACTIONS(1088), + [aux_sym__arrow_function_header_token1] = ACTIONS(1088), + [anon_sym_LPAREN] = ACTIONS(1086), + [aux_sym_cast_type_token1] = ACTIONS(1088), + [aux_sym_echo_statement_token1] = ACTIONS(1088), + [aux_sym_exit_statement_token1] = ACTIONS(1088), + [anon_sym_unset] = ACTIONS(1088), + [aux_sym_declare_statement_token1] = ACTIONS(1088), + [aux_sym_declare_statement_token2] = ACTIONS(1088), + [sym_float] = ACTIONS(1088), + [aux_sym_try_statement_token1] = ACTIONS(1088), + [aux_sym_goto_statement_token1] = ACTIONS(1088), + [aux_sym_continue_statement_token1] = ACTIONS(1088), + [aux_sym_break_statement_token1] = ACTIONS(1088), + [sym_integer] = ACTIONS(1088), + [aux_sym_return_statement_token1] = ACTIONS(1088), + [aux_sym_throw_expression_token1] = ACTIONS(1088), + [aux_sym_while_statement_token1] = ACTIONS(1088), + [aux_sym_while_statement_token2] = ACTIONS(1088), + [aux_sym_do_statement_token1] = ACTIONS(1088), + [aux_sym_for_statement_token1] = ACTIONS(1088), + [aux_sym_for_statement_token2] = ACTIONS(1088), + [aux_sym_foreach_statement_token1] = ACTIONS(1088), + [aux_sym_foreach_statement_token2] = ACTIONS(1088), + [aux_sym_if_statement_token1] = ACTIONS(1088), + [aux_sym_if_statement_token2] = ACTIONS(1088), + [aux_sym_else_if_clause_token1] = ACTIONS(1088), + [aux_sym_else_clause_token1] = ACTIONS(1088), + [aux_sym_match_expression_token1] = ACTIONS(1088), + [aux_sym_match_default_expression_token1] = ACTIONS(1088), + [aux_sym_switch_statement_token1] = ACTIONS(1088), + [aux_sym_switch_block_token1] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(1086), + [aux_sym_clone_expression_token1] = ACTIONS(1088), + [aux_sym_print_intrinsic_token1] = ACTIONS(1088), + [aux_sym_object_creation_expression_token1] = ACTIONS(1088), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [aux_sym__list_destructing_token1] = ACTIONS(1088), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_self] = ACTIONS(1088), + [anon_sym_parent] = ACTIONS(1088), + [aux_sym__argument_name_token1] = ACTIONS(1088), + [aux_sym__argument_name_token2] = ACTIONS(1088), + [anon_sym_POUND_LBRACK] = ACTIONS(1086), + [aux_sym_encapsed_string_token1] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [aux_sym_string_token1] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_BQUOTE] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1086), + [aux_sym_yield_expression_token1] = ACTIONS(1088), + [aux_sym_include_expression_token1] = ACTIONS(1088), + [aux_sym_include_once_expression_token1] = ACTIONS(1088), + [aux_sym_require_expression_token1] = ACTIONS(1088), + [aux_sym_require_once_expression_token1] = ACTIONS(1088), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1090), }, [445] = { [sym_text_interpolation] = STATE(445), - [ts_builtin_sym_end] = ACTIONS(1032), - [sym_name] = ACTIONS(1034), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1032), - [aux_sym_function_static_declaration_token1] = ACTIONS(1034), - [aux_sym_global_declaration_token1] = ACTIONS(1034), - [aux_sym_namespace_definition_token1] = ACTIONS(1034), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1034), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1034), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1034), - [anon_sym_BSLASH] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1032), - [anon_sym_RBRACE] = ACTIONS(1032), - [aux_sym_trait_declaration_token1] = ACTIONS(1034), - [aux_sym_interface_declaration_token1] = ACTIONS(1034), - [aux_sym_enum_declaration_token1] = ACTIONS(1034), - [aux_sym_enum_case_token1] = ACTIONS(1034), - [aux_sym_class_declaration_token1] = ACTIONS(1034), - [aux_sym_final_modifier_token1] = ACTIONS(1034), - [aux_sym_abstract_modifier_token1] = ACTIONS(1034), - [aux_sym_readonly_modifier_token1] = ACTIONS(1034), - [sym_var_modifier] = ACTIONS(1034), - [aux_sym_visibility_modifier_token1] = ACTIONS(1034), - [aux_sym_visibility_modifier_token2] = ACTIONS(1034), - [aux_sym_visibility_modifier_token3] = ACTIONS(1034), - [aux_sym__arrow_function_header_token1] = ACTIONS(1034), - [anon_sym_LPAREN] = ACTIONS(1032), - [aux_sym_cast_type_token1] = ACTIONS(1034), - [aux_sym_echo_statement_token1] = ACTIONS(1034), - [aux_sym_exit_statement_token1] = ACTIONS(1034), - [anon_sym_unset] = ACTIONS(1034), - [aux_sym_declare_statement_token1] = ACTIONS(1034), - [aux_sym_declare_statement_token2] = ACTIONS(1034), - [sym_float] = ACTIONS(1034), - [aux_sym_try_statement_token1] = ACTIONS(1034), - [aux_sym_goto_statement_token1] = ACTIONS(1034), - [aux_sym_continue_statement_token1] = ACTIONS(1034), - [aux_sym_break_statement_token1] = ACTIONS(1034), - [sym_integer] = ACTIONS(1034), - [aux_sym_return_statement_token1] = ACTIONS(1034), - [aux_sym_throw_expression_token1] = ACTIONS(1034), - [aux_sym_while_statement_token1] = ACTIONS(1034), - [aux_sym_while_statement_token2] = ACTIONS(1034), - [aux_sym_do_statement_token1] = ACTIONS(1034), - [aux_sym_for_statement_token1] = ACTIONS(1034), - [aux_sym_for_statement_token2] = ACTIONS(1034), - [aux_sym_foreach_statement_token1] = ACTIONS(1034), - [aux_sym_foreach_statement_token2] = ACTIONS(1034), - [aux_sym_if_statement_token1] = ACTIONS(1034), - [aux_sym_if_statement_token2] = ACTIONS(1034), - [aux_sym_else_if_clause_token1] = ACTIONS(1034), - [aux_sym_else_clause_token1] = ACTIONS(1034), - [aux_sym_match_expression_token1] = ACTIONS(1034), - [aux_sym_match_default_expression_token1] = ACTIONS(1034), - [aux_sym_switch_statement_token1] = ACTIONS(1034), - [aux_sym_switch_block_token1] = ACTIONS(1034), - [anon_sym_PLUS] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AT] = ACTIONS(1032), - [aux_sym_clone_expression_token1] = ACTIONS(1034), - [aux_sym_print_intrinsic_token1] = ACTIONS(1034), - [aux_sym_object_creation_expression_token1] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1032), - [aux_sym__list_destructing_token1] = ACTIONS(1034), - [anon_sym_LBRACK] = ACTIONS(1032), - [anon_sym_self] = ACTIONS(1034), - [anon_sym_parent] = ACTIONS(1034), - [aux_sym__argument_name_token1] = ACTIONS(1034), - [aux_sym__argument_name_token2] = ACTIONS(1034), - [anon_sym_POUND_LBRACK] = ACTIONS(1032), - [aux_sym_encapsed_string_token1] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [aux_sym_string_token1] = ACTIONS(1032), - [anon_sym_SQUOTE] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [aux_sym_yield_expression_token1] = ACTIONS(1034), - [aux_sym_include_expression_token1] = ACTIONS(1034), - [aux_sym_include_once_expression_token1] = ACTIONS(1034), - [aux_sym_require_expression_token1] = ACTIONS(1034), - [aux_sym_require_once_expression_token1] = ACTIONS(1034), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__unary_expression] = STATE(911), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(911), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(592), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_function_call_expression] = STATE(575), + [sym_scoped_call_expression] = STATE(575), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(575), + [sym_nullsafe_member_call_expression] = STATE(575), + [sym_subscript_expression] = STATE(575), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(575), + [sym_variable_name] = STATE(575), + [sym_include_expression] = STATE(911), + [sym_include_once_expression] = STATE(911), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(581), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), [sym_comment] = ACTIONS(5), }, [446] = { [sym_text_interpolation] = STATE(446), - [ts_builtin_sym_end] = ACTIONS(1101), - [sym_name] = ACTIONS(1103), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1105), - [aux_sym_function_static_declaration_token1] = ACTIONS(1103), - [aux_sym_global_declaration_token1] = ACTIONS(1103), - [aux_sym_namespace_definition_token1] = ACTIONS(1103), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1103), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1103), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1103), - [anon_sym_BSLASH] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_RBRACE] = ACTIONS(1101), - [aux_sym_trait_declaration_token1] = ACTIONS(1103), - [aux_sym_interface_declaration_token1] = ACTIONS(1103), - [aux_sym_enum_declaration_token1] = ACTIONS(1103), - [aux_sym_enum_case_token1] = ACTIONS(1103), - [aux_sym_class_declaration_token1] = ACTIONS(1103), - [aux_sym_final_modifier_token1] = ACTIONS(1103), - [aux_sym_abstract_modifier_token1] = ACTIONS(1103), - [aux_sym_readonly_modifier_token1] = ACTIONS(1103), - [aux_sym_visibility_modifier_token1] = ACTIONS(1103), - [aux_sym_visibility_modifier_token2] = ACTIONS(1103), - [aux_sym_visibility_modifier_token3] = ACTIONS(1103), - [aux_sym__arrow_function_header_token1] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1101), - [aux_sym_cast_type_token1] = ACTIONS(1103), - [aux_sym_echo_statement_token1] = ACTIONS(1103), - [aux_sym_exit_statement_token1] = ACTIONS(1103), - [anon_sym_unset] = ACTIONS(1103), - [aux_sym_declare_statement_token1] = ACTIONS(1103), - [aux_sym_declare_statement_token2] = ACTIONS(1103), - [sym_float] = ACTIONS(1103), - [aux_sym_try_statement_token1] = ACTIONS(1103), - [aux_sym_goto_statement_token1] = ACTIONS(1103), - [aux_sym_continue_statement_token1] = ACTIONS(1103), - [aux_sym_break_statement_token1] = ACTIONS(1103), - [sym_integer] = ACTIONS(1103), - [aux_sym_return_statement_token1] = ACTIONS(1103), - [aux_sym_throw_expression_token1] = ACTIONS(1103), - [aux_sym_while_statement_token1] = ACTIONS(1103), - [aux_sym_while_statement_token2] = ACTIONS(1103), - [aux_sym_do_statement_token1] = ACTIONS(1103), - [aux_sym_for_statement_token1] = ACTIONS(1103), - [aux_sym_for_statement_token2] = ACTIONS(1103), - [aux_sym_foreach_statement_token1] = ACTIONS(1103), - [aux_sym_foreach_statement_token2] = ACTIONS(1103), - [aux_sym_if_statement_token1] = ACTIONS(1103), - [aux_sym_if_statement_token2] = ACTIONS(1103), - [aux_sym_else_if_clause_token1] = ACTIONS(1103), - [aux_sym_else_clause_token1] = ACTIONS(1103), - [aux_sym_match_expression_token1] = ACTIONS(1103), - [aux_sym_match_default_expression_token1] = ACTIONS(1103), - [aux_sym_switch_statement_token1] = ACTIONS(1103), - [aux_sym_switch_block_token1] = ACTIONS(1103), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_TILDE] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1101), - [aux_sym_clone_expression_token1] = ACTIONS(1103), - [aux_sym_print_intrinsic_token1] = ACTIONS(1103), - [aux_sym_object_creation_expression_token1] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [aux_sym__list_destructing_token1] = ACTIONS(1103), - [anon_sym_LBRACK] = ACTIONS(1101), - [anon_sym_self] = ACTIONS(1103), - [anon_sym_parent] = ACTIONS(1103), - [aux_sym__argument_name_token1] = ACTIONS(1103), - [aux_sym__argument_name_token2] = ACTIONS(1103), - [anon_sym_POUND_LBRACK] = ACTIONS(1101), - [aux_sym_encapsed_string_token1] = ACTIONS(1101), - [anon_sym_DQUOTE] = ACTIONS(1101), - [aux_sym_string_token1] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1101), - [anon_sym_BQUOTE] = ACTIONS(1101), - [anon_sym_DOLLAR] = ACTIONS(1101), - [aux_sym_yield_expression_token1] = ACTIONS(1103), - [aux_sym_include_expression_token1] = ACTIONS(1103), - [aux_sym_include_once_expression_token1] = ACTIONS(1103), - [aux_sym_require_expression_token1] = ACTIONS(1103), - [aux_sym_require_once_expression_token1] = ACTIONS(1103), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1105), + [ts_builtin_sym_end] = ACTIONS(1092), + [sym_name] = ACTIONS(1094), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1096), + [aux_sym_function_static_declaration_token1] = ACTIONS(1094), + [aux_sym_global_declaration_token1] = ACTIONS(1094), + [aux_sym_namespace_definition_token1] = ACTIONS(1094), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1094), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1094), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1094), + [anon_sym_BSLASH] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_RBRACE] = ACTIONS(1092), + [aux_sym_trait_declaration_token1] = ACTIONS(1094), + [aux_sym_interface_declaration_token1] = ACTIONS(1094), + [aux_sym_enum_declaration_token1] = ACTIONS(1094), + [aux_sym_enum_case_token1] = ACTIONS(1094), + [aux_sym_class_declaration_token1] = ACTIONS(1094), + [aux_sym_final_modifier_token1] = ACTIONS(1094), + [aux_sym_abstract_modifier_token1] = ACTIONS(1094), + [aux_sym_readonly_modifier_token1] = ACTIONS(1094), + [sym_var_modifier] = ACTIONS(1094), + [aux_sym_visibility_modifier_token1] = ACTIONS(1094), + [aux_sym_visibility_modifier_token2] = ACTIONS(1094), + [aux_sym_visibility_modifier_token3] = ACTIONS(1094), + [aux_sym__arrow_function_header_token1] = ACTIONS(1094), + [anon_sym_LPAREN] = ACTIONS(1092), + [aux_sym_cast_type_token1] = ACTIONS(1094), + [aux_sym_echo_statement_token1] = ACTIONS(1094), + [aux_sym_exit_statement_token1] = ACTIONS(1094), + [anon_sym_unset] = ACTIONS(1094), + [aux_sym_declare_statement_token1] = ACTIONS(1094), + [aux_sym_declare_statement_token2] = ACTIONS(1094), + [sym_float] = ACTIONS(1094), + [aux_sym_try_statement_token1] = ACTIONS(1094), + [aux_sym_goto_statement_token1] = ACTIONS(1094), + [aux_sym_continue_statement_token1] = ACTIONS(1094), + [aux_sym_break_statement_token1] = ACTIONS(1094), + [sym_integer] = ACTIONS(1094), + [aux_sym_return_statement_token1] = ACTIONS(1094), + [aux_sym_throw_expression_token1] = ACTIONS(1094), + [aux_sym_while_statement_token1] = ACTIONS(1094), + [aux_sym_while_statement_token2] = ACTIONS(1094), + [aux_sym_do_statement_token1] = ACTIONS(1094), + [aux_sym_for_statement_token1] = ACTIONS(1094), + [aux_sym_for_statement_token2] = ACTIONS(1094), + [aux_sym_foreach_statement_token1] = ACTIONS(1094), + [aux_sym_foreach_statement_token2] = ACTIONS(1094), + [aux_sym_if_statement_token1] = ACTIONS(1094), + [aux_sym_if_statement_token2] = ACTIONS(1094), + [aux_sym_else_if_clause_token1] = ACTIONS(1094), + [aux_sym_else_clause_token1] = ACTIONS(1094), + [aux_sym_match_expression_token1] = ACTIONS(1094), + [aux_sym_match_default_expression_token1] = ACTIONS(1094), + [aux_sym_switch_statement_token1] = ACTIONS(1094), + [aux_sym_switch_block_token1] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1094), + [anon_sym_TILDE] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1092), + [anon_sym_AT] = ACTIONS(1092), + [aux_sym_clone_expression_token1] = ACTIONS(1094), + [aux_sym_print_intrinsic_token1] = ACTIONS(1094), + [aux_sym_object_creation_expression_token1] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [aux_sym__list_destructing_token1] = ACTIONS(1094), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_self] = ACTIONS(1094), + [anon_sym_parent] = ACTIONS(1094), + [aux_sym__argument_name_token1] = ACTIONS(1094), + [aux_sym__argument_name_token2] = ACTIONS(1094), + [anon_sym_POUND_LBRACK] = ACTIONS(1092), + [aux_sym_encapsed_string_token1] = ACTIONS(1092), + [anon_sym_DQUOTE] = ACTIONS(1092), + [aux_sym_string_token1] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1092), + [anon_sym_LT_LT_LT] = ACTIONS(1092), + [anon_sym_BQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR] = ACTIONS(1092), + [aux_sym_yield_expression_token1] = ACTIONS(1094), + [aux_sym_include_expression_token1] = ACTIONS(1094), + [aux_sym_include_once_expression_token1] = ACTIONS(1094), + [aux_sym_require_expression_token1] = ACTIONS(1094), + [aux_sym_require_once_expression_token1] = ACTIONS(1094), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1096), }, [447] = { [sym_text_interpolation] = STATE(447), - [ts_builtin_sym_end] = ACTIONS(1107), - [sym_name] = ACTIONS(1109), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1107), - [aux_sym_function_static_declaration_token1] = ACTIONS(1109), - [aux_sym_global_declaration_token1] = ACTIONS(1109), - [aux_sym_namespace_definition_token1] = ACTIONS(1109), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1109), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1109), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1109), - [anon_sym_BSLASH] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1107), - [aux_sym_trait_declaration_token1] = ACTIONS(1109), - [aux_sym_interface_declaration_token1] = ACTIONS(1109), - [aux_sym_enum_declaration_token1] = ACTIONS(1109), - [aux_sym_enum_case_token1] = ACTIONS(1109), - [aux_sym_class_declaration_token1] = ACTIONS(1109), - [aux_sym_final_modifier_token1] = ACTIONS(1109), - [aux_sym_abstract_modifier_token1] = ACTIONS(1109), - [aux_sym_readonly_modifier_token1] = ACTIONS(1109), - [sym_var_modifier] = ACTIONS(1109), - [aux_sym_visibility_modifier_token1] = ACTIONS(1109), - [aux_sym_visibility_modifier_token2] = ACTIONS(1109), - [aux_sym_visibility_modifier_token3] = ACTIONS(1109), - [aux_sym__arrow_function_header_token1] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1107), - [aux_sym_cast_type_token1] = ACTIONS(1109), - [aux_sym_echo_statement_token1] = ACTIONS(1109), - [aux_sym_exit_statement_token1] = ACTIONS(1109), - [anon_sym_unset] = ACTIONS(1109), - [aux_sym_declare_statement_token1] = ACTIONS(1109), - [aux_sym_declare_statement_token2] = ACTIONS(1109), - [sym_float] = ACTIONS(1109), - [aux_sym_try_statement_token1] = ACTIONS(1109), - [aux_sym_goto_statement_token1] = ACTIONS(1109), - [aux_sym_continue_statement_token1] = ACTIONS(1109), - [aux_sym_break_statement_token1] = ACTIONS(1109), - [sym_integer] = ACTIONS(1109), - [aux_sym_return_statement_token1] = ACTIONS(1109), - [aux_sym_throw_expression_token1] = ACTIONS(1109), - [aux_sym_while_statement_token1] = ACTIONS(1109), - [aux_sym_while_statement_token2] = ACTIONS(1109), - [aux_sym_do_statement_token1] = ACTIONS(1109), - [aux_sym_for_statement_token1] = ACTIONS(1109), - [aux_sym_for_statement_token2] = ACTIONS(1109), - [aux_sym_foreach_statement_token1] = ACTIONS(1109), - [aux_sym_foreach_statement_token2] = ACTIONS(1109), - [aux_sym_if_statement_token1] = ACTIONS(1109), - [aux_sym_if_statement_token2] = ACTIONS(1109), - [aux_sym_else_if_clause_token1] = ACTIONS(1109), - [aux_sym_else_clause_token1] = ACTIONS(1109), - [aux_sym_match_expression_token1] = ACTIONS(1109), - [aux_sym_match_default_expression_token1] = ACTIONS(1109), - [aux_sym_switch_statement_token1] = ACTIONS(1109), - [aux_sym_switch_block_token1] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_AT] = ACTIONS(1107), - [aux_sym_clone_expression_token1] = ACTIONS(1109), - [aux_sym_print_intrinsic_token1] = ACTIONS(1109), - [aux_sym_object_creation_expression_token1] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [aux_sym__list_destructing_token1] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1107), - [anon_sym_self] = ACTIONS(1109), - [anon_sym_parent] = ACTIONS(1109), - [aux_sym__argument_name_token1] = ACTIONS(1109), - [aux_sym__argument_name_token2] = ACTIONS(1109), - [anon_sym_POUND_LBRACK] = ACTIONS(1107), - [aux_sym_encapsed_string_token1] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(1107), - [aux_sym_string_token1] = ACTIONS(1107), - [anon_sym_SQUOTE] = ACTIONS(1107), - [anon_sym_LT_LT_LT] = ACTIONS(1107), - [anon_sym_BQUOTE] = ACTIONS(1107), - [anon_sym_DOLLAR] = ACTIONS(1107), - [aux_sym_yield_expression_token1] = ACTIONS(1109), - [aux_sym_include_expression_token1] = ACTIONS(1109), - [aux_sym_include_once_expression_token1] = ACTIONS(1109), - [aux_sym_require_expression_token1] = ACTIONS(1109), - [aux_sym_require_once_expression_token1] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), + [ts_builtin_sym_end] = ACTIONS(1098), + [sym_name] = ACTIONS(1100), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1102), + [aux_sym_function_static_declaration_token1] = ACTIONS(1100), + [aux_sym_global_declaration_token1] = ACTIONS(1100), + [aux_sym_namespace_definition_token1] = ACTIONS(1100), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1100), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1100), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1100), + [anon_sym_BSLASH] = ACTIONS(1098), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(1098), + [aux_sym_trait_declaration_token1] = ACTIONS(1100), + [aux_sym_interface_declaration_token1] = ACTIONS(1100), + [aux_sym_enum_declaration_token1] = ACTIONS(1100), + [aux_sym_enum_case_token1] = ACTIONS(1100), + [aux_sym_class_declaration_token1] = ACTIONS(1100), + [aux_sym_final_modifier_token1] = ACTIONS(1100), + [aux_sym_abstract_modifier_token1] = ACTIONS(1100), + [aux_sym_readonly_modifier_token1] = ACTIONS(1100), + [sym_var_modifier] = ACTIONS(1100), + [aux_sym_visibility_modifier_token1] = ACTIONS(1100), + [aux_sym_visibility_modifier_token2] = ACTIONS(1100), + [aux_sym_visibility_modifier_token3] = ACTIONS(1100), + [aux_sym__arrow_function_header_token1] = ACTIONS(1100), + [anon_sym_LPAREN] = ACTIONS(1098), + [aux_sym_cast_type_token1] = ACTIONS(1100), + [aux_sym_echo_statement_token1] = ACTIONS(1100), + [aux_sym_exit_statement_token1] = ACTIONS(1100), + [anon_sym_unset] = ACTIONS(1100), + [aux_sym_declare_statement_token1] = ACTIONS(1100), + [aux_sym_declare_statement_token2] = ACTIONS(1100), + [sym_float] = ACTIONS(1100), + [aux_sym_try_statement_token1] = ACTIONS(1100), + [aux_sym_goto_statement_token1] = ACTIONS(1100), + [aux_sym_continue_statement_token1] = ACTIONS(1100), + [aux_sym_break_statement_token1] = ACTIONS(1100), + [sym_integer] = ACTIONS(1100), + [aux_sym_return_statement_token1] = ACTIONS(1100), + [aux_sym_throw_expression_token1] = ACTIONS(1100), + [aux_sym_while_statement_token1] = ACTIONS(1100), + [aux_sym_while_statement_token2] = ACTIONS(1100), + [aux_sym_do_statement_token1] = ACTIONS(1100), + [aux_sym_for_statement_token1] = ACTIONS(1100), + [aux_sym_for_statement_token2] = ACTIONS(1100), + [aux_sym_foreach_statement_token1] = ACTIONS(1100), + [aux_sym_foreach_statement_token2] = ACTIONS(1100), + [aux_sym_if_statement_token1] = ACTIONS(1100), + [aux_sym_if_statement_token2] = ACTIONS(1100), + [aux_sym_else_if_clause_token1] = ACTIONS(1100), + [aux_sym_else_clause_token1] = ACTIONS(1100), + [aux_sym_match_expression_token1] = ACTIONS(1100), + [aux_sym_match_default_expression_token1] = ACTIONS(1100), + [aux_sym_switch_statement_token1] = ACTIONS(1100), + [aux_sym_switch_block_token1] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_BANG] = ACTIONS(1098), + [anon_sym_AT] = ACTIONS(1098), + [aux_sym_clone_expression_token1] = ACTIONS(1100), + [aux_sym_print_intrinsic_token1] = ACTIONS(1100), + [aux_sym_object_creation_expression_token1] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [aux_sym__list_destructing_token1] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1098), + [anon_sym_self] = ACTIONS(1100), + [anon_sym_parent] = ACTIONS(1100), + [aux_sym__argument_name_token1] = ACTIONS(1100), + [aux_sym__argument_name_token2] = ACTIONS(1100), + [anon_sym_POUND_LBRACK] = ACTIONS(1098), + [aux_sym_encapsed_string_token1] = ACTIONS(1098), + [anon_sym_DQUOTE] = ACTIONS(1098), + [aux_sym_string_token1] = ACTIONS(1098), + [anon_sym_SQUOTE] = ACTIONS(1098), + [anon_sym_LT_LT_LT] = ACTIONS(1098), + [anon_sym_BQUOTE] = ACTIONS(1098), + [anon_sym_DOLLAR] = ACTIONS(1098), + [aux_sym_yield_expression_token1] = ACTIONS(1100), + [aux_sym_include_expression_token1] = ACTIONS(1100), + [aux_sym_include_once_expression_token1] = ACTIONS(1100), + [aux_sym_require_expression_token1] = ACTIONS(1100), + [aux_sym_require_once_expression_token1] = ACTIONS(1100), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1102), }, [448] = { [sym_text_interpolation] = STATE(448), - [ts_builtin_sym_end] = ACTIONS(1111), - [sym_name] = ACTIONS(1113), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1115), - [aux_sym_function_static_declaration_token1] = ACTIONS(1113), - [aux_sym_global_declaration_token1] = ACTIONS(1113), - [aux_sym_namespace_definition_token1] = ACTIONS(1113), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1113), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1113), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1113), - [anon_sym_BSLASH] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(1111), - [anon_sym_RBRACE] = ACTIONS(1111), - [aux_sym_trait_declaration_token1] = ACTIONS(1113), - [aux_sym_interface_declaration_token1] = ACTIONS(1113), - [aux_sym_enum_declaration_token1] = ACTIONS(1113), - [aux_sym_enum_case_token1] = ACTIONS(1113), - [aux_sym_class_declaration_token1] = ACTIONS(1113), - [aux_sym_final_modifier_token1] = ACTIONS(1113), - [aux_sym_abstract_modifier_token1] = ACTIONS(1113), - [aux_sym_readonly_modifier_token1] = ACTIONS(1113), - [aux_sym_visibility_modifier_token1] = ACTIONS(1113), - [aux_sym_visibility_modifier_token2] = ACTIONS(1113), - [aux_sym_visibility_modifier_token3] = ACTIONS(1113), - [aux_sym__arrow_function_header_token1] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1111), - [aux_sym_cast_type_token1] = ACTIONS(1113), - [aux_sym_echo_statement_token1] = ACTIONS(1113), - [aux_sym_exit_statement_token1] = ACTIONS(1113), - [anon_sym_unset] = ACTIONS(1113), - [aux_sym_declare_statement_token1] = ACTIONS(1113), - [aux_sym_declare_statement_token2] = ACTIONS(1113), - [sym_float] = ACTIONS(1113), - [aux_sym_try_statement_token1] = ACTIONS(1113), - [aux_sym_goto_statement_token1] = ACTIONS(1113), - [aux_sym_continue_statement_token1] = ACTIONS(1113), - [aux_sym_break_statement_token1] = ACTIONS(1113), - [sym_integer] = ACTIONS(1113), - [aux_sym_return_statement_token1] = ACTIONS(1113), - [aux_sym_throw_expression_token1] = ACTIONS(1113), - [aux_sym_while_statement_token1] = ACTIONS(1113), - [aux_sym_while_statement_token2] = ACTIONS(1113), - [aux_sym_do_statement_token1] = ACTIONS(1113), - [aux_sym_for_statement_token1] = ACTIONS(1113), - [aux_sym_for_statement_token2] = ACTIONS(1113), - [aux_sym_foreach_statement_token1] = ACTIONS(1113), - [aux_sym_foreach_statement_token2] = ACTIONS(1113), - [aux_sym_if_statement_token1] = ACTIONS(1113), - [aux_sym_if_statement_token2] = ACTIONS(1113), - [aux_sym_else_if_clause_token1] = ACTIONS(1113), - [aux_sym_else_clause_token1] = ACTIONS(1113), - [aux_sym_match_expression_token1] = ACTIONS(1113), - [aux_sym_match_default_expression_token1] = ACTIONS(1113), - [aux_sym_switch_statement_token1] = ACTIONS(1113), - [aux_sym_switch_block_token1] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_TILDE] = ACTIONS(1111), - [anon_sym_BANG] = ACTIONS(1111), - [anon_sym_AT] = ACTIONS(1111), - [aux_sym_clone_expression_token1] = ACTIONS(1113), - [aux_sym_print_intrinsic_token1] = ACTIONS(1113), - [aux_sym_object_creation_expression_token1] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1111), - [anon_sym_PLUS_PLUS] = ACTIONS(1111), - [aux_sym__list_destructing_token1] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_self] = ACTIONS(1113), - [anon_sym_parent] = ACTIONS(1113), - [aux_sym__argument_name_token1] = ACTIONS(1113), - [aux_sym__argument_name_token2] = ACTIONS(1113), - [anon_sym_POUND_LBRACK] = ACTIONS(1111), - [aux_sym_encapsed_string_token1] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [aux_sym_string_token1] = ACTIONS(1111), - [anon_sym_SQUOTE] = ACTIONS(1111), - [anon_sym_LT_LT_LT] = ACTIONS(1111), - [anon_sym_BQUOTE] = ACTIONS(1111), - [anon_sym_DOLLAR] = ACTIONS(1111), - [aux_sym_yield_expression_token1] = ACTIONS(1113), - [aux_sym_include_expression_token1] = ACTIONS(1113), - [aux_sym_include_once_expression_token1] = ACTIONS(1113), - [aux_sym_require_expression_token1] = ACTIONS(1113), - [aux_sym_require_once_expression_token1] = ACTIONS(1113), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1115), + [ts_builtin_sym_end] = ACTIONS(1104), + [sym_name] = ACTIONS(1106), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1108), + [aux_sym_function_static_declaration_token1] = ACTIONS(1106), + [aux_sym_global_declaration_token1] = ACTIONS(1106), + [aux_sym_namespace_definition_token1] = ACTIONS(1106), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1106), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1106), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1106), + [anon_sym_BSLASH] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_RBRACE] = ACTIONS(1104), + [aux_sym_trait_declaration_token1] = ACTIONS(1106), + [aux_sym_interface_declaration_token1] = ACTIONS(1106), + [aux_sym_enum_declaration_token1] = ACTIONS(1106), + [aux_sym_enum_case_token1] = ACTIONS(1106), + [aux_sym_class_declaration_token1] = ACTIONS(1106), + [aux_sym_final_modifier_token1] = ACTIONS(1106), + [aux_sym_abstract_modifier_token1] = ACTIONS(1106), + [aux_sym_readonly_modifier_token1] = ACTIONS(1106), + [sym_var_modifier] = ACTIONS(1106), + [aux_sym_visibility_modifier_token1] = ACTIONS(1106), + [aux_sym_visibility_modifier_token2] = ACTIONS(1106), + [aux_sym_visibility_modifier_token3] = ACTIONS(1106), + [aux_sym__arrow_function_header_token1] = ACTIONS(1106), + [anon_sym_LPAREN] = ACTIONS(1104), + [aux_sym_cast_type_token1] = ACTIONS(1106), + [aux_sym_echo_statement_token1] = ACTIONS(1106), + [aux_sym_exit_statement_token1] = ACTIONS(1106), + [anon_sym_unset] = ACTIONS(1106), + [aux_sym_declare_statement_token1] = ACTIONS(1106), + [aux_sym_declare_statement_token2] = ACTIONS(1106), + [sym_float] = ACTIONS(1106), + [aux_sym_try_statement_token1] = ACTIONS(1106), + [aux_sym_goto_statement_token1] = ACTIONS(1106), + [aux_sym_continue_statement_token1] = ACTIONS(1106), + [aux_sym_break_statement_token1] = ACTIONS(1106), + [sym_integer] = ACTIONS(1106), + [aux_sym_return_statement_token1] = ACTIONS(1106), + [aux_sym_throw_expression_token1] = ACTIONS(1106), + [aux_sym_while_statement_token1] = ACTIONS(1106), + [aux_sym_while_statement_token2] = ACTIONS(1106), + [aux_sym_do_statement_token1] = ACTIONS(1106), + [aux_sym_for_statement_token1] = ACTIONS(1106), + [aux_sym_for_statement_token2] = ACTIONS(1106), + [aux_sym_foreach_statement_token1] = ACTIONS(1106), + [aux_sym_foreach_statement_token2] = ACTIONS(1106), + [aux_sym_if_statement_token1] = ACTIONS(1106), + [aux_sym_if_statement_token2] = ACTIONS(1106), + [aux_sym_else_if_clause_token1] = ACTIONS(1106), + [aux_sym_else_clause_token1] = ACTIONS(1106), + [aux_sym_match_expression_token1] = ACTIONS(1106), + [aux_sym_match_default_expression_token1] = ACTIONS(1106), + [aux_sym_switch_statement_token1] = ACTIONS(1106), + [aux_sym_switch_block_token1] = ACTIONS(1106), + [anon_sym_PLUS] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(1104), + [anon_sym_AT] = ACTIONS(1104), + [aux_sym_clone_expression_token1] = ACTIONS(1106), + [aux_sym_print_intrinsic_token1] = ACTIONS(1106), + [aux_sym_object_creation_expression_token1] = ACTIONS(1106), + [anon_sym_DASH_DASH] = ACTIONS(1104), + [anon_sym_PLUS_PLUS] = ACTIONS(1104), + [aux_sym__list_destructing_token1] = ACTIONS(1106), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_self] = ACTIONS(1106), + [anon_sym_parent] = ACTIONS(1106), + [aux_sym__argument_name_token1] = ACTIONS(1106), + [aux_sym__argument_name_token2] = ACTIONS(1106), + [anon_sym_POUND_LBRACK] = ACTIONS(1104), + [aux_sym_encapsed_string_token1] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(1104), + [aux_sym_string_token1] = ACTIONS(1104), + [anon_sym_SQUOTE] = ACTIONS(1104), + [anon_sym_LT_LT_LT] = ACTIONS(1104), + [anon_sym_BQUOTE] = ACTIONS(1104), + [anon_sym_DOLLAR] = ACTIONS(1104), + [aux_sym_yield_expression_token1] = ACTIONS(1106), + [aux_sym_include_expression_token1] = ACTIONS(1106), + [aux_sym_include_once_expression_token1] = ACTIONS(1106), + [aux_sym_require_expression_token1] = ACTIONS(1106), + [aux_sym_require_once_expression_token1] = ACTIONS(1106), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1108), }, [449] = { [sym_text_interpolation] = STATE(449), - [ts_builtin_sym_end] = ACTIONS(1117), - [sym_name] = ACTIONS(1119), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1121), - [aux_sym_function_static_declaration_token1] = ACTIONS(1119), - [aux_sym_global_declaration_token1] = ACTIONS(1119), - [aux_sym_namespace_definition_token1] = ACTIONS(1119), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1119), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1119), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1119), - [anon_sym_BSLASH] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), - [aux_sym_trait_declaration_token1] = ACTIONS(1119), - [aux_sym_interface_declaration_token1] = ACTIONS(1119), - [aux_sym_enum_declaration_token1] = ACTIONS(1119), - [aux_sym_enum_case_token1] = ACTIONS(1119), - [aux_sym_class_declaration_token1] = ACTIONS(1119), - [aux_sym_final_modifier_token1] = ACTIONS(1119), - [aux_sym_abstract_modifier_token1] = ACTIONS(1119), - [aux_sym_readonly_modifier_token1] = ACTIONS(1119), - [aux_sym_visibility_modifier_token1] = ACTIONS(1119), - [aux_sym_visibility_modifier_token2] = ACTIONS(1119), - [aux_sym_visibility_modifier_token3] = ACTIONS(1119), - [aux_sym__arrow_function_header_token1] = ACTIONS(1119), - [anon_sym_LPAREN] = ACTIONS(1117), - [aux_sym_cast_type_token1] = ACTIONS(1119), - [aux_sym_echo_statement_token1] = ACTIONS(1119), - [aux_sym_exit_statement_token1] = ACTIONS(1119), - [anon_sym_unset] = ACTIONS(1119), - [aux_sym_declare_statement_token1] = ACTIONS(1119), - [aux_sym_declare_statement_token2] = ACTIONS(1119), - [sym_float] = ACTIONS(1119), - [aux_sym_try_statement_token1] = ACTIONS(1119), - [aux_sym_goto_statement_token1] = ACTIONS(1119), - [aux_sym_continue_statement_token1] = ACTIONS(1119), - [aux_sym_break_statement_token1] = ACTIONS(1119), - [sym_integer] = ACTIONS(1119), - [aux_sym_return_statement_token1] = ACTIONS(1119), - [aux_sym_throw_expression_token1] = ACTIONS(1119), - [aux_sym_while_statement_token1] = ACTIONS(1119), - [aux_sym_while_statement_token2] = ACTIONS(1119), - [aux_sym_do_statement_token1] = ACTIONS(1119), - [aux_sym_for_statement_token1] = ACTIONS(1119), - [aux_sym_for_statement_token2] = ACTIONS(1119), - [aux_sym_foreach_statement_token1] = ACTIONS(1119), - [aux_sym_foreach_statement_token2] = ACTIONS(1119), - [aux_sym_if_statement_token1] = ACTIONS(1119), - [aux_sym_if_statement_token2] = ACTIONS(1119), - [aux_sym_else_if_clause_token1] = ACTIONS(1119), - [aux_sym_else_clause_token1] = ACTIONS(1119), - [aux_sym_match_expression_token1] = ACTIONS(1119), - [aux_sym_match_default_expression_token1] = ACTIONS(1119), - [aux_sym_switch_statement_token1] = ACTIONS(1119), - [aux_sym_switch_block_token1] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_AT] = ACTIONS(1117), - [aux_sym_clone_expression_token1] = ACTIONS(1119), - [aux_sym_print_intrinsic_token1] = ACTIONS(1119), - [aux_sym_object_creation_expression_token1] = ACTIONS(1119), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [aux_sym__list_destructing_token1] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_self] = ACTIONS(1119), - [anon_sym_parent] = ACTIONS(1119), - [aux_sym__argument_name_token1] = ACTIONS(1119), - [aux_sym__argument_name_token2] = ACTIONS(1119), - [anon_sym_POUND_LBRACK] = ACTIONS(1117), - [aux_sym_encapsed_string_token1] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [aux_sym_string_token1] = ACTIONS(1117), - [anon_sym_SQUOTE] = ACTIONS(1117), - [anon_sym_LT_LT_LT] = ACTIONS(1117), - [anon_sym_BQUOTE] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1117), - [aux_sym_yield_expression_token1] = ACTIONS(1119), - [aux_sym_include_expression_token1] = ACTIONS(1119), - [aux_sym_include_once_expression_token1] = ACTIONS(1119), - [aux_sym_require_expression_token1] = ACTIONS(1119), - [aux_sym_require_once_expression_token1] = ACTIONS(1119), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1121), + [ts_builtin_sym_end] = ACTIONS(1110), + [sym_name] = ACTIONS(1112), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1114), + [aux_sym_function_static_declaration_token1] = ACTIONS(1112), + [aux_sym_global_declaration_token1] = ACTIONS(1112), + [aux_sym_namespace_definition_token1] = ACTIONS(1112), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1112), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1112), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1112), + [anon_sym_BSLASH] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1110), + [aux_sym_trait_declaration_token1] = ACTIONS(1112), + [aux_sym_interface_declaration_token1] = ACTIONS(1112), + [aux_sym_enum_declaration_token1] = ACTIONS(1112), + [aux_sym_enum_case_token1] = ACTIONS(1112), + [aux_sym_class_declaration_token1] = ACTIONS(1112), + [aux_sym_final_modifier_token1] = ACTIONS(1112), + [aux_sym_abstract_modifier_token1] = ACTIONS(1112), + [aux_sym_readonly_modifier_token1] = ACTIONS(1112), + [sym_var_modifier] = ACTIONS(1112), + [aux_sym_visibility_modifier_token1] = ACTIONS(1112), + [aux_sym_visibility_modifier_token2] = ACTIONS(1112), + [aux_sym_visibility_modifier_token3] = ACTIONS(1112), + [aux_sym__arrow_function_header_token1] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_cast_type_token1] = ACTIONS(1112), + [aux_sym_echo_statement_token1] = ACTIONS(1112), + [aux_sym_exit_statement_token1] = ACTIONS(1112), + [anon_sym_unset] = ACTIONS(1112), + [aux_sym_declare_statement_token1] = ACTIONS(1112), + [aux_sym_declare_statement_token2] = ACTIONS(1112), + [sym_float] = ACTIONS(1112), + [aux_sym_try_statement_token1] = ACTIONS(1112), + [aux_sym_goto_statement_token1] = ACTIONS(1112), + [aux_sym_continue_statement_token1] = ACTIONS(1112), + [aux_sym_break_statement_token1] = ACTIONS(1112), + [sym_integer] = ACTIONS(1112), + [aux_sym_return_statement_token1] = ACTIONS(1112), + [aux_sym_throw_expression_token1] = ACTIONS(1112), + [aux_sym_while_statement_token1] = ACTIONS(1112), + [aux_sym_while_statement_token2] = ACTIONS(1112), + [aux_sym_do_statement_token1] = ACTIONS(1112), + [aux_sym_for_statement_token1] = ACTIONS(1112), + [aux_sym_for_statement_token2] = ACTIONS(1112), + [aux_sym_foreach_statement_token1] = ACTIONS(1112), + [aux_sym_foreach_statement_token2] = ACTIONS(1112), + [aux_sym_if_statement_token1] = ACTIONS(1112), + [aux_sym_if_statement_token2] = ACTIONS(1112), + [aux_sym_else_if_clause_token1] = ACTIONS(1112), + [aux_sym_else_clause_token1] = ACTIONS(1112), + [aux_sym_match_expression_token1] = ACTIONS(1112), + [aux_sym_match_default_expression_token1] = ACTIONS(1112), + [aux_sym_switch_statement_token1] = ACTIONS(1112), + [aux_sym_switch_block_token1] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_AT] = ACTIONS(1110), + [aux_sym_clone_expression_token1] = ACTIONS(1112), + [aux_sym_print_intrinsic_token1] = ACTIONS(1112), + [aux_sym_object_creation_expression_token1] = ACTIONS(1112), + [anon_sym_DASH_DASH] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(1110), + [aux_sym__list_destructing_token1] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(1110), + [anon_sym_self] = ACTIONS(1112), + [anon_sym_parent] = ACTIONS(1112), + [aux_sym__argument_name_token1] = ACTIONS(1112), + [aux_sym__argument_name_token2] = ACTIONS(1112), + [anon_sym_POUND_LBRACK] = ACTIONS(1110), + [aux_sym_encapsed_string_token1] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [aux_sym_string_token1] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1110), + [anon_sym_LT_LT_LT] = ACTIONS(1110), + [anon_sym_BQUOTE] = ACTIONS(1110), + [anon_sym_DOLLAR] = ACTIONS(1110), + [aux_sym_yield_expression_token1] = ACTIONS(1112), + [aux_sym_include_expression_token1] = ACTIONS(1112), + [aux_sym_include_once_expression_token1] = ACTIONS(1112), + [aux_sym_require_expression_token1] = ACTIONS(1112), + [aux_sym_require_once_expression_token1] = ACTIONS(1112), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1114), }, [450] = { [sym_text_interpolation] = STATE(450), - [ts_builtin_sym_end] = ACTIONS(1123), - [sym_name] = ACTIONS(1125), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1127), - [aux_sym_function_static_declaration_token1] = ACTIONS(1125), - [aux_sym_global_declaration_token1] = ACTIONS(1125), - [aux_sym_namespace_definition_token1] = ACTIONS(1125), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1125), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1125), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1125), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_RBRACE] = ACTIONS(1123), - [aux_sym_trait_declaration_token1] = ACTIONS(1125), - [aux_sym_interface_declaration_token1] = ACTIONS(1125), - [aux_sym_enum_declaration_token1] = ACTIONS(1125), - [aux_sym_enum_case_token1] = ACTIONS(1125), - [aux_sym_class_declaration_token1] = ACTIONS(1125), - [aux_sym_final_modifier_token1] = ACTIONS(1125), - [aux_sym_abstract_modifier_token1] = ACTIONS(1125), - [aux_sym_readonly_modifier_token1] = ACTIONS(1125), - [aux_sym_visibility_modifier_token1] = ACTIONS(1125), - [aux_sym_visibility_modifier_token2] = ACTIONS(1125), - [aux_sym_visibility_modifier_token3] = ACTIONS(1125), - [aux_sym__arrow_function_header_token1] = ACTIONS(1125), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_cast_type_token1] = ACTIONS(1125), - [aux_sym_echo_statement_token1] = ACTIONS(1125), - [aux_sym_exit_statement_token1] = ACTIONS(1125), - [anon_sym_unset] = ACTIONS(1125), - [aux_sym_declare_statement_token1] = ACTIONS(1125), - [aux_sym_declare_statement_token2] = ACTIONS(1125), - [sym_float] = ACTIONS(1125), - [aux_sym_try_statement_token1] = ACTIONS(1125), - [aux_sym_goto_statement_token1] = ACTIONS(1125), - [aux_sym_continue_statement_token1] = ACTIONS(1125), - [aux_sym_break_statement_token1] = ACTIONS(1125), - [sym_integer] = ACTIONS(1125), - [aux_sym_return_statement_token1] = ACTIONS(1125), - [aux_sym_throw_expression_token1] = ACTIONS(1125), - [aux_sym_while_statement_token1] = ACTIONS(1125), - [aux_sym_while_statement_token2] = ACTIONS(1125), - [aux_sym_do_statement_token1] = ACTIONS(1125), - [aux_sym_for_statement_token1] = ACTIONS(1125), - [aux_sym_for_statement_token2] = ACTIONS(1125), - [aux_sym_foreach_statement_token1] = ACTIONS(1125), - [aux_sym_foreach_statement_token2] = ACTIONS(1125), - [aux_sym_if_statement_token1] = ACTIONS(1125), - [aux_sym_if_statement_token2] = ACTIONS(1125), - [aux_sym_else_if_clause_token1] = ACTIONS(1125), - [aux_sym_else_clause_token1] = ACTIONS(1125), - [aux_sym_match_expression_token1] = ACTIONS(1125), - [aux_sym_match_default_expression_token1] = ACTIONS(1125), - [aux_sym_switch_statement_token1] = ACTIONS(1125), - [aux_sym_switch_block_token1] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_BANG] = ACTIONS(1123), - [anon_sym_AT] = ACTIONS(1123), - [aux_sym_clone_expression_token1] = ACTIONS(1125), - [aux_sym_print_intrinsic_token1] = ACTIONS(1125), - [aux_sym_object_creation_expression_token1] = ACTIONS(1125), - [anon_sym_DASH_DASH] = ACTIONS(1123), - [anon_sym_PLUS_PLUS] = ACTIONS(1123), - [aux_sym__list_destructing_token1] = ACTIONS(1125), - [anon_sym_LBRACK] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [aux_sym__argument_name_token1] = ACTIONS(1125), - [aux_sym__argument_name_token2] = ACTIONS(1125), - [anon_sym_POUND_LBRACK] = ACTIONS(1123), - [aux_sym_encapsed_string_token1] = ACTIONS(1123), - [anon_sym_DQUOTE] = ACTIONS(1123), - [aux_sym_string_token1] = ACTIONS(1123), - [anon_sym_SQUOTE] = ACTIONS(1123), - [anon_sym_LT_LT_LT] = ACTIONS(1123), - [anon_sym_BQUOTE] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(1123), - [aux_sym_yield_expression_token1] = ACTIONS(1125), - [aux_sym_include_expression_token1] = ACTIONS(1125), - [aux_sym_include_once_expression_token1] = ACTIONS(1125), - [aux_sym_require_expression_token1] = ACTIONS(1125), - [aux_sym_require_once_expression_token1] = ACTIONS(1125), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1127), + [ts_builtin_sym_end] = ACTIONS(1116), + [sym_name] = ACTIONS(1118), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1120), + [aux_sym_function_static_declaration_token1] = ACTIONS(1118), + [aux_sym_global_declaration_token1] = ACTIONS(1118), + [aux_sym_namespace_definition_token1] = ACTIONS(1118), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1118), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1118), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1118), + [anon_sym_BSLASH] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_RBRACE] = ACTIONS(1116), + [aux_sym_trait_declaration_token1] = ACTIONS(1118), + [aux_sym_interface_declaration_token1] = ACTIONS(1118), + [aux_sym_enum_declaration_token1] = ACTIONS(1118), + [aux_sym_enum_case_token1] = ACTIONS(1118), + [aux_sym_class_declaration_token1] = ACTIONS(1118), + [aux_sym_final_modifier_token1] = ACTIONS(1118), + [aux_sym_abstract_modifier_token1] = ACTIONS(1118), + [aux_sym_readonly_modifier_token1] = ACTIONS(1118), + [sym_var_modifier] = ACTIONS(1118), + [aux_sym_visibility_modifier_token1] = ACTIONS(1118), + [aux_sym_visibility_modifier_token2] = ACTIONS(1118), + [aux_sym_visibility_modifier_token3] = ACTIONS(1118), + [aux_sym__arrow_function_header_token1] = ACTIONS(1118), + [anon_sym_LPAREN] = ACTIONS(1116), + [aux_sym_cast_type_token1] = ACTIONS(1118), + [aux_sym_echo_statement_token1] = ACTIONS(1118), + [aux_sym_exit_statement_token1] = ACTIONS(1118), + [anon_sym_unset] = ACTIONS(1118), + [aux_sym_declare_statement_token1] = ACTIONS(1118), + [aux_sym_declare_statement_token2] = ACTIONS(1118), + [sym_float] = ACTIONS(1118), + [aux_sym_try_statement_token1] = ACTIONS(1118), + [aux_sym_goto_statement_token1] = ACTIONS(1118), + [aux_sym_continue_statement_token1] = ACTIONS(1118), + [aux_sym_break_statement_token1] = ACTIONS(1118), + [sym_integer] = ACTIONS(1118), + [aux_sym_return_statement_token1] = ACTIONS(1118), + [aux_sym_throw_expression_token1] = ACTIONS(1118), + [aux_sym_while_statement_token1] = ACTIONS(1118), + [aux_sym_while_statement_token2] = ACTIONS(1118), + [aux_sym_do_statement_token1] = ACTIONS(1118), + [aux_sym_for_statement_token1] = ACTIONS(1118), + [aux_sym_for_statement_token2] = ACTIONS(1118), + [aux_sym_foreach_statement_token1] = ACTIONS(1118), + [aux_sym_foreach_statement_token2] = ACTIONS(1118), + [aux_sym_if_statement_token1] = ACTIONS(1118), + [aux_sym_if_statement_token2] = ACTIONS(1118), + [aux_sym_else_if_clause_token1] = ACTIONS(1118), + [aux_sym_else_clause_token1] = ACTIONS(1118), + [aux_sym_match_expression_token1] = ACTIONS(1118), + [aux_sym_match_default_expression_token1] = ACTIONS(1118), + [aux_sym_switch_statement_token1] = ACTIONS(1118), + [aux_sym_switch_block_token1] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_AT] = ACTIONS(1116), + [aux_sym_clone_expression_token1] = ACTIONS(1118), + [aux_sym_print_intrinsic_token1] = ACTIONS(1118), + [aux_sym_object_creation_expression_token1] = ACTIONS(1118), + [anon_sym_DASH_DASH] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1116), + [aux_sym__list_destructing_token1] = ACTIONS(1118), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_self] = ACTIONS(1118), + [anon_sym_parent] = ACTIONS(1118), + [aux_sym__argument_name_token1] = ACTIONS(1118), + [aux_sym__argument_name_token2] = ACTIONS(1118), + [anon_sym_POUND_LBRACK] = ACTIONS(1116), + [aux_sym_encapsed_string_token1] = ACTIONS(1116), + [anon_sym_DQUOTE] = ACTIONS(1116), + [aux_sym_string_token1] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1116), + [anon_sym_LT_LT_LT] = ACTIONS(1116), + [anon_sym_BQUOTE] = ACTIONS(1116), + [anon_sym_DOLLAR] = ACTIONS(1116), + [aux_sym_yield_expression_token1] = ACTIONS(1118), + [aux_sym_include_expression_token1] = ACTIONS(1118), + [aux_sym_include_once_expression_token1] = ACTIONS(1118), + [aux_sym_require_expression_token1] = ACTIONS(1118), + [aux_sym_require_once_expression_token1] = ACTIONS(1118), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1120), }, [451] = { [sym_text_interpolation] = STATE(451), - [ts_builtin_sym_end] = ACTIONS(1129), - [sym_name] = ACTIONS(1131), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1129), - [aux_sym_function_static_declaration_token1] = ACTIONS(1131), - [aux_sym_global_declaration_token1] = ACTIONS(1131), - [aux_sym_namespace_definition_token1] = ACTIONS(1131), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1131), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1131), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1131), - [anon_sym_BSLASH] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_RBRACE] = ACTIONS(1129), - [aux_sym_trait_declaration_token1] = ACTIONS(1131), - [aux_sym_interface_declaration_token1] = ACTIONS(1131), - [aux_sym_enum_declaration_token1] = ACTIONS(1131), - [aux_sym_enum_case_token1] = ACTIONS(1131), - [aux_sym_class_declaration_token1] = ACTIONS(1131), - [aux_sym_final_modifier_token1] = ACTIONS(1131), - [aux_sym_abstract_modifier_token1] = ACTIONS(1131), - [aux_sym_readonly_modifier_token1] = ACTIONS(1131), - [sym_var_modifier] = ACTIONS(1131), - [aux_sym_visibility_modifier_token1] = ACTIONS(1131), - [aux_sym_visibility_modifier_token2] = ACTIONS(1131), - [aux_sym_visibility_modifier_token3] = ACTIONS(1131), - [aux_sym__arrow_function_header_token1] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(1129), - [aux_sym_cast_type_token1] = ACTIONS(1131), - [aux_sym_echo_statement_token1] = ACTIONS(1131), - [aux_sym_exit_statement_token1] = ACTIONS(1131), - [anon_sym_unset] = ACTIONS(1131), - [aux_sym_declare_statement_token1] = ACTIONS(1131), - [aux_sym_declare_statement_token2] = ACTIONS(1131), - [sym_float] = ACTIONS(1131), - [aux_sym_try_statement_token1] = ACTIONS(1131), - [aux_sym_goto_statement_token1] = ACTIONS(1131), - [aux_sym_continue_statement_token1] = ACTIONS(1131), - [aux_sym_break_statement_token1] = ACTIONS(1131), - [sym_integer] = ACTIONS(1131), - [aux_sym_return_statement_token1] = ACTIONS(1131), - [aux_sym_throw_expression_token1] = ACTIONS(1131), - [aux_sym_while_statement_token1] = ACTIONS(1131), - [aux_sym_while_statement_token2] = ACTIONS(1131), - [aux_sym_do_statement_token1] = ACTIONS(1131), - [aux_sym_for_statement_token1] = ACTIONS(1131), - [aux_sym_for_statement_token2] = ACTIONS(1131), - [aux_sym_foreach_statement_token1] = ACTIONS(1131), - [aux_sym_foreach_statement_token2] = ACTIONS(1131), - [aux_sym_if_statement_token1] = ACTIONS(1131), - [aux_sym_if_statement_token2] = ACTIONS(1131), - [aux_sym_else_if_clause_token1] = ACTIONS(1131), - [aux_sym_else_clause_token1] = ACTIONS(1131), - [aux_sym_match_expression_token1] = ACTIONS(1131), - [aux_sym_match_default_expression_token1] = ACTIONS(1131), - [aux_sym_switch_statement_token1] = ACTIONS(1131), - [aux_sym_switch_block_token1] = ACTIONS(1131), - [anon_sym_PLUS] = ACTIONS(1131), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_AT] = ACTIONS(1129), - [aux_sym_clone_expression_token1] = ACTIONS(1131), - [aux_sym_print_intrinsic_token1] = ACTIONS(1131), - [aux_sym_object_creation_expression_token1] = ACTIONS(1131), - [anon_sym_DASH_DASH] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1129), - [aux_sym__list_destructing_token1] = ACTIONS(1131), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_self] = ACTIONS(1131), - [anon_sym_parent] = ACTIONS(1131), - [aux_sym__argument_name_token1] = ACTIONS(1131), - [aux_sym__argument_name_token2] = ACTIONS(1131), - [anon_sym_POUND_LBRACK] = ACTIONS(1129), - [aux_sym_encapsed_string_token1] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1129), - [aux_sym_string_token1] = ACTIONS(1129), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_LT_LT_LT] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1129), - [aux_sym_yield_expression_token1] = ACTIONS(1131), - [aux_sym_include_expression_token1] = ACTIONS(1131), - [aux_sym_include_once_expression_token1] = ACTIONS(1131), - [aux_sym_require_expression_token1] = ACTIONS(1131), - [aux_sym_require_once_expression_token1] = ACTIONS(1131), - [sym_comment] = ACTIONS(5), + [ts_builtin_sym_end] = ACTIONS(1122), + [sym_name] = ACTIONS(1124), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1126), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [aux_sym__list_destructing_token1] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1122), + [anon_sym_self] = ACTIONS(1124), + [anon_sym_parent] = ACTIONS(1124), + [aux_sym__argument_name_token1] = ACTIONS(1124), + [aux_sym__argument_name_token2] = ACTIONS(1124), + [anon_sym_POUND_LBRACK] = ACTIONS(1122), + [aux_sym_encapsed_string_token1] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [aux_sym_string_token1] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_LT_LT_LT] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(1122), + [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(5), + [sym__automatic_semicolon] = ACTIONS(1126), }, [452] = { [sym_text_interpolation] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(1133), - [sym_name] = ACTIONS(1135), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1137), - [aux_sym_function_static_declaration_token1] = ACTIONS(1135), - [aux_sym_global_declaration_token1] = ACTIONS(1135), - [aux_sym_namespace_definition_token1] = ACTIONS(1135), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1135), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1135), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(1133), - [aux_sym_trait_declaration_token1] = ACTIONS(1135), - [aux_sym_interface_declaration_token1] = ACTIONS(1135), - [aux_sym_enum_declaration_token1] = ACTIONS(1135), - [aux_sym_enum_case_token1] = ACTIONS(1135), - [aux_sym_class_declaration_token1] = ACTIONS(1135), - [aux_sym_final_modifier_token1] = ACTIONS(1135), - [aux_sym_abstract_modifier_token1] = ACTIONS(1135), - [aux_sym_readonly_modifier_token1] = ACTIONS(1135), - [aux_sym_visibility_modifier_token1] = ACTIONS(1135), - [aux_sym_visibility_modifier_token2] = ACTIONS(1135), - [aux_sym_visibility_modifier_token3] = ACTIONS(1135), - [aux_sym__arrow_function_header_token1] = ACTIONS(1135), - [anon_sym_LPAREN] = ACTIONS(1133), - [aux_sym_cast_type_token1] = ACTIONS(1135), - [aux_sym_echo_statement_token1] = ACTIONS(1135), - [aux_sym_exit_statement_token1] = ACTIONS(1135), - [anon_sym_unset] = ACTIONS(1135), - [aux_sym_declare_statement_token1] = ACTIONS(1135), - [aux_sym_declare_statement_token2] = ACTIONS(1135), - [sym_float] = ACTIONS(1135), - [aux_sym_try_statement_token1] = ACTIONS(1135), - [aux_sym_goto_statement_token1] = ACTIONS(1135), - [aux_sym_continue_statement_token1] = ACTIONS(1135), - [aux_sym_break_statement_token1] = ACTIONS(1135), - [sym_integer] = ACTIONS(1135), - [aux_sym_return_statement_token1] = ACTIONS(1135), - [aux_sym_throw_expression_token1] = ACTIONS(1135), - [aux_sym_while_statement_token1] = ACTIONS(1135), - [aux_sym_while_statement_token2] = ACTIONS(1135), - [aux_sym_do_statement_token1] = ACTIONS(1135), - [aux_sym_for_statement_token1] = ACTIONS(1135), - [aux_sym_for_statement_token2] = ACTIONS(1135), - [aux_sym_foreach_statement_token1] = ACTIONS(1135), - [aux_sym_foreach_statement_token2] = ACTIONS(1135), - [aux_sym_if_statement_token1] = ACTIONS(1135), - [aux_sym_if_statement_token2] = ACTIONS(1135), - [aux_sym_else_if_clause_token1] = ACTIONS(1135), - [aux_sym_else_clause_token1] = ACTIONS(1135), - [aux_sym_match_expression_token1] = ACTIONS(1135), - [aux_sym_match_default_expression_token1] = ACTIONS(1135), - [aux_sym_switch_statement_token1] = ACTIONS(1135), - [aux_sym_switch_block_token1] = ACTIONS(1135), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1133), - [aux_sym_clone_expression_token1] = ACTIONS(1135), - [aux_sym_print_intrinsic_token1] = ACTIONS(1135), - [aux_sym_object_creation_expression_token1] = ACTIONS(1135), - [anon_sym_DASH_DASH] = ACTIONS(1133), - [anon_sym_PLUS_PLUS] = ACTIONS(1133), - [aux_sym__list_destructing_token1] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_self] = ACTIONS(1135), - [anon_sym_parent] = ACTIONS(1135), - [aux_sym__argument_name_token1] = ACTIONS(1135), - [aux_sym__argument_name_token2] = ACTIONS(1135), - [anon_sym_POUND_LBRACK] = ACTIONS(1133), - [aux_sym_encapsed_string_token1] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1133), - [aux_sym_string_token1] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_LT_LT_LT] = ACTIONS(1133), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [aux_sym_yield_expression_token1] = ACTIONS(1135), - [aux_sym_include_expression_token1] = ACTIONS(1135), - [aux_sym_include_once_expression_token1] = ACTIONS(1135), - [aux_sym_require_expression_token1] = ACTIONS(1135), - [aux_sym_require_once_expression_token1] = ACTIONS(1135), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1137), + [ts_builtin_sym_end] = ACTIONS(1128), + [sym_name] = ACTIONS(1130), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1132), + [aux_sym_function_static_declaration_token1] = ACTIONS(1130), + [aux_sym_global_declaration_token1] = ACTIONS(1130), + [aux_sym_namespace_definition_token1] = ACTIONS(1130), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1130), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1130), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1130), + [anon_sym_BSLASH] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_RBRACE] = ACTIONS(1128), + [aux_sym_trait_declaration_token1] = ACTIONS(1130), + [aux_sym_interface_declaration_token1] = ACTIONS(1130), + [aux_sym_enum_declaration_token1] = ACTIONS(1130), + [aux_sym_enum_case_token1] = ACTIONS(1130), + [aux_sym_class_declaration_token1] = ACTIONS(1130), + [aux_sym_final_modifier_token1] = ACTIONS(1130), + [aux_sym_abstract_modifier_token1] = ACTIONS(1130), + [aux_sym_readonly_modifier_token1] = ACTIONS(1130), + [sym_var_modifier] = ACTIONS(1130), + [aux_sym_visibility_modifier_token1] = ACTIONS(1130), + [aux_sym_visibility_modifier_token2] = ACTIONS(1130), + [aux_sym_visibility_modifier_token3] = ACTIONS(1130), + [aux_sym__arrow_function_header_token1] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1128), + [aux_sym_cast_type_token1] = ACTIONS(1130), + [aux_sym_echo_statement_token1] = ACTIONS(1130), + [aux_sym_exit_statement_token1] = ACTIONS(1130), + [anon_sym_unset] = ACTIONS(1130), + [aux_sym_declare_statement_token1] = ACTIONS(1130), + [aux_sym_declare_statement_token2] = ACTIONS(1130), + [sym_float] = ACTIONS(1130), + [aux_sym_try_statement_token1] = ACTIONS(1130), + [aux_sym_goto_statement_token1] = ACTIONS(1130), + [aux_sym_continue_statement_token1] = ACTIONS(1130), + [aux_sym_break_statement_token1] = ACTIONS(1130), + [sym_integer] = ACTIONS(1130), + [aux_sym_return_statement_token1] = ACTIONS(1130), + [aux_sym_throw_expression_token1] = ACTIONS(1130), + [aux_sym_while_statement_token1] = ACTIONS(1130), + [aux_sym_while_statement_token2] = ACTIONS(1130), + [aux_sym_do_statement_token1] = ACTIONS(1130), + [aux_sym_for_statement_token1] = ACTIONS(1130), + [aux_sym_for_statement_token2] = ACTIONS(1130), + [aux_sym_foreach_statement_token1] = ACTIONS(1130), + [aux_sym_foreach_statement_token2] = ACTIONS(1130), + [aux_sym_if_statement_token1] = ACTIONS(1130), + [aux_sym_if_statement_token2] = ACTIONS(1130), + [aux_sym_else_if_clause_token1] = ACTIONS(1130), + [aux_sym_else_clause_token1] = ACTIONS(1130), + [aux_sym_match_expression_token1] = ACTIONS(1130), + [aux_sym_match_default_expression_token1] = ACTIONS(1130), + [aux_sym_switch_statement_token1] = ACTIONS(1130), + [aux_sym_switch_block_token1] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_TILDE] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_AT] = ACTIONS(1128), + [aux_sym_clone_expression_token1] = ACTIONS(1130), + [aux_sym_print_intrinsic_token1] = ACTIONS(1130), + [aux_sym_object_creation_expression_token1] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [aux_sym__list_destructing_token1] = ACTIONS(1130), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_self] = ACTIONS(1130), + [anon_sym_parent] = ACTIONS(1130), + [aux_sym__argument_name_token1] = ACTIONS(1130), + [aux_sym__argument_name_token2] = ACTIONS(1130), + [anon_sym_POUND_LBRACK] = ACTIONS(1128), + [aux_sym_encapsed_string_token1] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [aux_sym_string_token1] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1128), + [anon_sym_LT_LT_LT] = ACTIONS(1128), + [anon_sym_BQUOTE] = ACTIONS(1128), + [anon_sym_DOLLAR] = ACTIONS(1128), + [aux_sym_yield_expression_token1] = ACTIONS(1130), + [aux_sym_include_expression_token1] = ACTIONS(1130), + [aux_sym_include_once_expression_token1] = ACTIONS(1130), + [aux_sym_require_expression_token1] = ACTIONS(1130), + [aux_sym_require_once_expression_token1] = ACTIONS(1130), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1132), }, [453] = { [sym_text_interpolation] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(1139), - [sym_name] = ACTIONS(1141), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1139), - [aux_sym_function_static_declaration_token1] = ACTIONS(1141), - [aux_sym_global_declaration_token1] = ACTIONS(1141), - [aux_sym_namespace_definition_token1] = ACTIONS(1141), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1141), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1141), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1141), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_RBRACE] = ACTIONS(1139), - [aux_sym_trait_declaration_token1] = ACTIONS(1141), - [aux_sym_interface_declaration_token1] = ACTIONS(1141), - [aux_sym_enum_declaration_token1] = ACTIONS(1141), - [aux_sym_enum_case_token1] = ACTIONS(1141), - [aux_sym_class_declaration_token1] = ACTIONS(1141), - [aux_sym_final_modifier_token1] = ACTIONS(1141), - [aux_sym_abstract_modifier_token1] = ACTIONS(1141), - [aux_sym_readonly_modifier_token1] = ACTIONS(1141), - [aux_sym_visibility_modifier_token1] = ACTIONS(1141), - [aux_sym_visibility_modifier_token2] = ACTIONS(1141), - [aux_sym_visibility_modifier_token3] = ACTIONS(1141), - [aux_sym__arrow_function_header_token1] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1139), - [aux_sym_cast_type_token1] = ACTIONS(1141), - [aux_sym_echo_statement_token1] = ACTIONS(1141), - [aux_sym_exit_statement_token1] = ACTIONS(1141), - [anon_sym_unset] = ACTIONS(1141), - [aux_sym_declare_statement_token1] = ACTIONS(1141), - [aux_sym_declare_statement_token2] = ACTIONS(1141), - [sym_float] = ACTIONS(1141), - [aux_sym_try_statement_token1] = ACTIONS(1141), - [aux_sym_goto_statement_token1] = ACTIONS(1141), - [aux_sym_continue_statement_token1] = ACTIONS(1141), - [aux_sym_break_statement_token1] = ACTIONS(1141), - [sym_integer] = ACTIONS(1141), - [aux_sym_return_statement_token1] = ACTIONS(1141), - [aux_sym_throw_expression_token1] = ACTIONS(1141), - [aux_sym_while_statement_token1] = ACTIONS(1141), - [aux_sym_while_statement_token2] = ACTIONS(1141), - [aux_sym_do_statement_token1] = ACTIONS(1141), - [aux_sym_for_statement_token1] = ACTIONS(1141), - [aux_sym_for_statement_token2] = ACTIONS(1141), - [aux_sym_foreach_statement_token1] = ACTIONS(1141), - [aux_sym_foreach_statement_token2] = ACTIONS(1141), - [aux_sym_if_statement_token1] = ACTIONS(1141), - [aux_sym_if_statement_token2] = ACTIONS(1141), - [aux_sym_else_if_clause_token1] = ACTIONS(1141), - [aux_sym_else_clause_token1] = ACTIONS(1141), - [aux_sym_match_expression_token1] = ACTIONS(1141), - [aux_sym_match_default_expression_token1] = ACTIONS(1141), - [aux_sym_switch_statement_token1] = ACTIONS(1141), - [aux_sym_switch_block_token1] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1139), - [anon_sym_BANG] = ACTIONS(1139), - [anon_sym_AT] = ACTIONS(1139), - [aux_sym_clone_expression_token1] = ACTIONS(1141), - [aux_sym_print_intrinsic_token1] = ACTIONS(1141), - [aux_sym_object_creation_expression_token1] = ACTIONS(1141), - [anon_sym_DASH_DASH] = ACTIONS(1139), - [anon_sym_PLUS_PLUS] = ACTIONS(1139), - [aux_sym__list_destructing_token1] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1139), - [anon_sym_self] = ACTIONS(1141), - [anon_sym_parent] = ACTIONS(1141), - [aux_sym__argument_name_token1] = ACTIONS(1141), - [aux_sym__argument_name_token2] = ACTIONS(1141), - [anon_sym_POUND_LBRACK] = ACTIONS(1139), - [aux_sym_encapsed_string_token1] = ACTIONS(1139), - [anon_sym_DQUOTE] = ACTIONS(1139), - [aux_sym_string_token1] = ACTIONS(1139), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_LT_LT_LT] = ACTIONS(1139), - [anon_sym_BQUOTE] = ACTIONS(1139), - [anon_sym_DOLLAR] = ACTIONS(1139), - [aux_sym_yield_expression_token1] = ACTIONS(1141), - [aux_sym_include_expression_token1] = ACTIONS(1141), - [aux_sym_include_once_expression_token1] = ACTIONS(1141), - [aux_sym_require_expression_token1] = ACTIONS(1141), - [aux_sym_require_once_expression_token1] = ACTIONS(1141), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1139), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__unary_expression] = STATE(911), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(911), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(592), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_function_call_expression] = STATE(575), + [sym_scoped_call_expression] = STATE(575), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(575), + [sym_nullsafe_member_call_expression] = STATE(575), + [sym_subscript_expression] = STATE(575), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(575), + [sym_variable_name] = STATE(575), + [sym_include_expression] = STATE(911), + [sym_include_once_expression] = STATE(911), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(685), + [aux_sym_clone_expression_token1] = ACTIONS(687), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(697), + [aux_sym_include_once_expression_token1] = ACTIONS(699), + [sym_comment] = ACTIONS(5), }, [454] = { [sym_text_interpolation] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(1143), - [sym_name] = ACTIONS(1145), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1147), - [aux_sym_function_static_declaration_token1] = ACTIONS(1145), - [aux_sym_global_declaration_token1] = ACTIONS(1145), - [aux_sym_namespace_definition_token1] = ACTIONS(1145), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1145), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1145), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1145), - [anon_sym_BSLASH] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1143), - [anon_sym_RBRACE] = ACTIONS(1143), - [aux_sym_trait_declaration_token1] = ACTIONS(1145), - [aux_sym_interface_declaration_token1] = ACTIONS(1145), - [aux_sym_enum_declaration_token1] = ACTIONS(1145), - [aux_sym_enum_case_token1] = ACTIONS(1145), - [aux_sym_class_declaration_token1] = ACTIONS(1145), - [aux_sym_final_modifier_token1] = ACTIONS(1145), - [aux_sym_abstract_modifier_token1] = ACTIONS(1145), - [aux_sym_readonly_modifier_token1] = ACTIONS(1145), - [aux_sym_visibility_modifier_token1] = ACTIONS(1145), - [aux_sym_visibility_modifier_token2] = ACTIONS(1145), - [aux_sym_visibility_modifier_token3] = ACTIONS(1145), - [aux_sym__arrow_function_header_token1] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(1143), - [aux_sym_cast_type_token1] = ACTIONS(1145), - [aux_sym_echo_statement_token1] = ACTIONS(1145), - [aux_sym_exit_statement_token1] = ACTIONS(1145), - [anon_sym_unset] = ACTIONS(1145), - [aux_sym_declare_statement_token1] = ACTIONS(1145), - [aux_sym_declare_statement_token2] = ACTIONS(1145), - [sym_float] = ACTIONS(1145), - [aux_sym_try_statement_token1] = ACTIONS(1145), - [aux_sym_goto_statement_token1] = ACTIONS(1145), - [aux_sym_continue_statement_token1] = ACTIONS(1145), - [aux_sym_break_statement_token1] = ACTIONS(1145), - [sym_integer] = ACTIONS(1145), - [aux_sym_return_statement_token1] = ACTIONS(1145), - [aux_sym_throw_expression_token1] = ACTIONS(1145), - [aux_sym_while_statement_token1] = ACTIONS(1145), - [aux_sym_while_statement_token2] = ACTIONS(1145), - [aux_sym_do_statement_token1] = ACTIONS(1145), - [aux_sym_for_statement_token1] = ACTIONS(1145), - [aux_sym_for_statement_token2] = ACTIONS(1145), - [aux_sym_foreach_statement_token1] = ACTIONS(1145), - [aux_sym_foreach_statement_token2] = ACTIONS(1145), - [aux_sym_if_statement_token1] = ACTIONS(1145), - [aux_sym_if_statement_token2] = ACTIONS(1145), - [aux_sym_else_if_clause_token1] = ACTIONS(1145), - [aux_sym_else_clause_token1] = ACTIONS(1145), - [aux_sym_match_expression_token1] = ACTIONS(1145), - [aux_sym_match_default_expression_token1] = ACTIONS(1145), - [aux_sym_switch_statement_token1] = ACTIONS(1145), - [aux_sym_switch_block_token1] = ACTIONS(1145), - [anon_sym_PLUS] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_BANG] = ACTIONS(1143), - [anon_sym_AT] = ACTIONS(1143), - [aux_sym_clone_expression_token1] = ACTIONS(1145), - [aux_sym_print_intrinsic_token1] = ACTIONS(1145), - [aux_sym_object_creation_expression_token1] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1143), - [aux_sym__list_destructing_token1] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1143), - [anon_sym_self] = ACTIONS(1145), - [anon_sym_parent] = ACTIONS(1145), - [aux_sym__argument_name_token1] = ACTIONS(1145), - [aux_sym__argument_name_token2] = ACTIONS(1145), - [anon_sym_POUND_LBRACK] = ACTIONS(1143), - [aux_sym_encapsed_string_token1] = ACTIONS(1143), - [anon_sym_DQUOTE] = ACTIONS(1143), - [aux_sym_string_token1] = ACTIONS(1143), - [anon_sym_SQUOTE] = ACTIONS(1143), - [anon_sym_LT_LT_LT] = ACTIONS(1143), - [anon_sym_BQUOTE] = ACTIONS(1143), - [anon_sym_DOLLAR] = ACTIONS(1143), - [aux_sym_yield_expression_token1] = ACTIONS(1145), - [aux_sym_include_expression_token1] = ACTIONS(1145), - [aux_sym_include_once_expression_token1] = ACTIONS(1145), - [aux_sym_require_expression_token1] = ACTIONS(1145), - [aux_sym_require_once_expression_token1] = ACTIONS(1145), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1147), + [sym_qualified_name] = STATE(707), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym__unary_expression] = STATE(911), + [sym_unary_op_expression] = STATE(921), + [sym_error_suppression_expression] = STATE(911), + [sym_clone_expression] = STATE(921), + [sym_primary_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(627), + [sym_member_access_expression] = STATE(627), + [sym_nullsafe_member_access_expression] = STATE(627), + [sym_scoped_property_access_expression] = STATE(627), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2500), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1665), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(690), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_include_expression] = STATE(911), + [sym_include_once_expression] = STATE(911), + [sym__reserved_identifier] = STATE(1579), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(567), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(857), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(597), + [aux_sym_clone_expression_token1] = ACTIONS(599), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(627), + [aux_sym_include_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(5), }, [455] = { [sym_text_interpolation] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(1149), - [sym_name] = ACTIONS(1151), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1149), - [aux_sym_function_static_declaration_token1] = ACTIONS(1151), - [aux_sym_global_declaration_token1] = ACTIONS(1151), - [aux_sym_namespace_definition_token1] = ACTIONS(1151), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1151), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1151), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1151), - [anon_sym_BSLASH] = ACTIONS(1149), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_RBRACE] = ACTIONS(1149), - [aux_sym_trait_declaration_token1] = ACTIONS(1151), - [aux_sym_interface_declaration_token1] = ACTIONS(1151), - [aux_sym_enum_declaration_token1] = ACTIONS(1151), - [aux_sym_enum_case_token1] = ACTIONS(1151), - [aux_sym_class_declaration_token1] = ACTIONS(1151), - [aux_sym_final_modifier_token1] = ACTIONS(1151), - [aux_sym_abstract_modifier_token1] = ACTIONS(1151), - [aux_sym_readonly_modifier_token1] = ACTIONS(1151), - [sym_var_modifier] = ACTIONS(1151), - [aux_sym_visibility_modifier_token1] = ACTIONS(1151), - [aux_sym_visibility_modifier_token2] = ACTIONS(1151), - [aux_sym_visibility_modifier_token3] = ACTIONS(1151), - [aux_sym__arrow_function_header_token1] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1149), - [aux_sym_cast_type_token1] = ACTIONS(1151), - [aux_sym_echo_statement_token1] = ACTIONS(1151), - [aux_sym_exit_statement_token1] = ACTIONS(1151), - [anon_sym_unset] = ACTIONS(1151), - [aux_sym_declare_statement_token1] = ACTIONS(1151), - [aux_sym_declare_statement_token2] = ACTIONS(1151), - [sym_float] = ACTIONS(1151), - [aux_sym_try_statement_token1] = ACTIONS(1151), - [aux_sym_goto_statement_token1] = ACTIONS(1151), - [aux_sym_continue_statement_token1] = ACTIONS(1151), - [aux_sym_break_statement_token1] = ACTIONS(1151), - [sym_integer] = ACTIONS(1151), - [aux_sym_return_statement_token1] = ACTIONS(1151), - [aux_sym_throw_expression_token1] = ACTIONS(1151), - [aux_sym_while_statement_token1] = ACTIONS(1151), - [aux_sym_while_statement_token2] = ACTIONS(1151), - [aux_sym_do_statement_token1] = ACTIONS(1151), - [aux_sym_for_statement_token1] = ACTIONS(1151), - [aux_sym_for_statement_token2] = ACTIONS(1151), - [aux_sym_foreach_statement_token1] = ACTIONS(1151), - [aux_sym_foreach_statement_token2] = ACTIONS(1151), - [aux_sym_if_statement_token1] = ACTIONS(1151), - [aux_sym_if_statement_token2] = ACTIONS(1151), - [aux_sym_else_if_clause_token1] = ACTIONS(1151), - [aux_sym_else_clause_token1] = ACTIONS(1151), - [aux_sym_match_expression_token1] = ACTIONS(1151), - [aux_sym_match_default_expression_token1] = ACTIONS(1151), - [aux_sym_switch_statement_token1] = ACTIONS(1151), - [aux_sym_switch_block_token1] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1149), - [anon_sym_AT] = ACTIONS(1149), - [aux_sym_clone_expression_token1] = ACTIONS(1151), - [aux_sym_print_intrinsic_token1] = ACTIONS(1151), - [aux_sym_object_creation_expression_token1] = ACTIONS(1151), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [aux_sym__list_destructing_token1] = ACTIONS(1151), - [anon_sym_LBRACK] = ACTIONS(1149), - [anon_sym_self] = ACTIONS(1151), - [anon_sym_parent] = ACTIONS(1151), - [aux_sym__argument_name_token1] = ACTIONS(1151), - [aux_sym__argument_name_token2] = ACTIONS(1151), - [anon_sym_POUND_LBRACK] = ACTIONS(1149), - [aux_sym_encapsed_string_token1] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [aux_sym_string_token1] = ACTIONS(1149), - [anon_sym_SQUOTE] = ACTIONS(1149), - [anon_sym_LT_LT_LT] = ACTIONS(1149), - [anon_sym_BQUOTE] = ACTIONS(1149), - [anon_sym_DOLLAR] = ACTIONS(1149), - [aux_sym_yield_expression_token1] = ACTIONS(1151), - [aux_sym_include_expression_token1] = ACTIONS(1151), - [aux_sym_include_once_expression_token1] = ACTIONS(1151), - [aux_sym_require_expression_token1] = ACTIONS(1151), - [aux_sym_require_once_expression_token1] = ACTIONS(1151), - [sym_comment] = ACTIONS(5), + [ts_builtin_sym_end] = ACTIONS(1134), + [sym_name] = ACTIONS(1136), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1138), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_TILDE] = ACTIONS(1134), + [anon_sym_BANG] = ACTIONS(1134), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1134), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [aux_sym__list_destructing_token1] = ACTIONS(1136), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_self] = ACTIONS(1136), + [anon_sym_parent] = ACTIONS(1136), + [aux_sym__argument_name_token1] = ACTIONS(1136), + [aux_sym__argument_name_token2] = ACTIONS(1136), + [anon_sym_POUND_LBRACK] = ACTIONS(1134), + [aux_sym_encapsed_string_token1] = ACTIONS(1134), + [anon_sym_DQUOTE] = ACTIONS(1134), + [aux_sym_string_token1] = ACTIONS(1134), + [anon_sym_SQUOTE] = ACTIONS(1134), + [anon_sym_LT_LT_LT] = ACTIONS(1134), + [anon_sym_BQUOTE] = ACTIONS(1134), + [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(5), + [sym__automatic_semicolon] = ACTIONS(1138), }, [456] = { [sym_text_interpolation] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(1153), - [sym_name] = ACTIONS(1155), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1153), - [aux_sym_function_static_declaration_token1] = ACTIONS(1155), - [aux_sym_global_declaration_token1] = ACTIONS(1155), - [aux_sym_namespace_definition_token1] = ACTIONS(1155), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1155), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1155), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1155), - [anon_sym_BSLASH] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_RBRACE] = ACTIONS(1153), - [aux_sym_trait_declaration_token1] = ACTIONS(1155), - [aux_sym_interface_declaration_token1] = ACTIONS(1155), - [aux_sym_enum_declaration_token1] = ACTIONS(1155), - [aux_sym_enum_case_token1] = ACTIONS(1155), - [aux_sym_class_declaration_token1] = ACTIONS(1155), - [aux_sym_final_modifier_token1] = ACTIONS(1155), - [aux_sym_abstract_modifier_token1] = ACTIONS(1155), - [aux_sym_readonly_modifier_token1] = ACTIONS(1155), - [sym_var_modifier] = ACTIONS(1155), - [aux_sym_visibility_modifier_token1] = ACTIONS(1155), - [aux_sym_visibility_modifier_token2] = ACTIONS(1155), - [aux_sym_visibility_modifier_token3] = ACTIONS(1155), - [aux_sym__arrow_function_header_token1] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1153), - [aux_sym_cast_type_token1] = ACTIONS(1155), - [aux_sym_echo_statement_token1] = ACTIONS(1155), - [aux_sym_exit_statement_token1] = ACTIONS(1155), - [anon_sym_unset] = ACTIONS(1155), - [aux_sym_declare_statement_token1] = ACTIONS(1155), - [aux_sym_declare_statement_token2] = ACTIONS(1155), - [sym_float] = ACTIONS(1155), - [aux_sym_try_statement_token1] = ACTIONS(1155), - [aux_sym_goto_statement_token1] = ACTIONS(1155), - [aux_sym_continue_statement_token1] = ACTIONS(1155), - [aux_sym_break_statement_token1] = ACTIONS(1155), - [sym_integer] = ACTIONS(1155), - [aux_sym_return_statement_token1] = ACTIONS(1155), - [aux_sym_throw_expression_token1] = ACTIONS(1155), - [aux_sym_while_statement_token1] = ACTIONS(1155), - [aux_sym_while_statement_token2] = ACTIONS(1155), - [aux_sym_do_statement_token1] = ACTIONS(1155), - [aux_sym_for_statement_token1] = ACTIONS(1155), - [aux_sym_for_statement_token2] = ACTIONS(1155), - [aux_sym_foreach_statement_token1] = ACTIONS(1155), - [aux_sym_foreach_statement_token2] = ACTIONS(1155), - [aux_sym_if_statement_token1] = ACTIONS(1155), - [aux_sym_if_statement_token2] = ACTIONS(1155), - [aux_sym_else_if_clause_token1] = ACTIONS(1155), - [aux_sym_else_clause_token1] = ACTIONS(1155), - [aux_sym_match_expression_token1] = ACTIONS(1155), - [aux_sym_match_default_expression_token1] = ACTIONS(1155), - [aux_sym_switch_statement_token1] = ACTIONS(1155), - [aux_sym_switch_block_token1] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1155), - [anon_sym_DASH] = ACTIONS(1155), - [anon_sym_TILDE] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1153), - [anon_sym_AT] = ACTIONS(1153), - [aux_sym_clone_expression_token1] = ACTIONS(1155), - [aux_sym_print_intrinsic_token1] = ACTIONS(1155), - [aux_sym_object_creation_expression_token1] = ACTIONS(1155), - [anon_sym_DASH_DASH] = ACTIONS(1153), - [anon_sym_PLUS_PLUS] = ACTIONS(1153), - [aux_sym__list_destructing_token1] = ACTIONS(1155), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_self] = ACTIONS(1155), - [anon_sym_parent] = ACTIONS(1155), - [aux_sym__argument_name_token1] = ACTIONS(1155), - [aux_sym__argument_name_token2] = ACTIONS(1155), - [anon_sym_POUND_LBRACK] = ACTIONS(1153), - [aux_sym_encapsed_string_token1] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [aux_sym_string_token1] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(1153), - [anon_sym_LT_LT_LT] = ACTIONS(1153), - [anon_sym_BQUOTE] = ACTIONS(1153), - [anon_sym_DOLLAR] = ACTIONS(1153), - [aux_sym_yield_expression_token1] = ACTIONS(1155), - [aux_sym_include_expression_token1] = ACTIONS(1155), - [aux_sym_include_once_expression_token1] = ACTIONS(1155), - [aux_sym_require_expression_token1] = ACTIONS(1155), - [aux_sym_require_once_expression_token1] = ACTIONS(1155), + [ts_builtin_sym_end] = ACTIONS(1140), + [sym_name] = ACTIONS(1142), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1140), + [aux_sym_function_static_declaration_token1] = ACTIONS(1142), + [aux_sym_global_declaration_token1] = ACTIONS(1142), + [aux_sym_namespace_definition_token1] = ACTIONS(1142), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1142), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1142), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1142), + [anon_sym_BSLASH] = ACTIONS(1140), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_RBRACE] = ACTIONS(1140), + [aux_sym_trait_declaration_token1] = ACTIONS(1142), + [aux_sym_interface_declaration_token1] = ACTIONS(1142), + [aux_sym_enum_declaration_token1] = ACTIONS(1142), + [aux_sym_enum_case_token1] = ACTIONS(1142), + [aux_sym_class_declaration_token1] = ACTIONS(1142), + [aux_sym_final_modifier_token1] = ACTIONS(1142), + [aux_sym_abstract_modifier_token1] = ACTIONS(1142), + [aux_sym_readonly_modifier_token1] = ACTIONS(1142), + [sym_var_modifier] = ACTIONS(1142), + [aux_sym_visibility_modifier_token1] = ACTIONS(1142), + [aux_sym_visibility_modifier_token2] = ACTIONS(1142), + [aux_sym_visibility_modifier_token3] = ACTIONS(1142), + [aux_sym__arrow_function_header_token1] = ACTIONS(1142), + [anon_sym_LPAREN] = ACTIONS(1140), + [aux_sym_cast_type_token1] = ACTIONS(1142), + [aux_sym_echo_statement_token1] = ACTIONS(1142), + [aux_sym_exit_statement_token1] = ACTIONS(1142), + [anon_sym_unset] = ACTIONS(1142), + [aux_sym_declare_statement_token1] = ACTIONS(1142), + [aux_sym_declare_statement_token2] = ACTIONS(1142), + [sym_float] = ACTIONS(1142), + [aux_sym_try_statement_token1] = ACTIONS(1142), + [aux_sym_goto_statement_token1] = ACTIONS(1142), + [aux_sym_continue_statement_token1] = ACTIONS(1142), + [aux_sym_break_statement_token1] = ACTIONS(1142), + [sym_integer] = ACTIONS(1142), + [aux_sym_return_statement_token1] = ACTIONS(1142), + [aux_sym_throw_expression_token1] = ACTIONS(1142), + [aux_sym_while_statement_token1] = ACTIONS(1142), + [aux_sym_while_statement_token2] = ACTIONS(1142), + [aux_sym_do_statement_token1] = ACTIONS(1142), + [aux_sym_for_statement_token1] = ACTIONS(1142), + [aux_sym_for_statement_token2] = ACTIONS(1142), + [aux_sym_foreach_statement_token1] = ACTIONS(1142), + [aux_sym_foreach_statement_token2] = ACTIONS(1142), + [aux_sym_if_statement_token1] = ACTIONS(1142), + [aux_sym_if_statement_token2] = ACTIONS(1142), + [aux_sym_else_if_clause_token1] = ACTIONS(1142), + [aux_sym_else_clause_token1] = ACTIONS(1142), + [aux_sym_match_expression_token1] = ACTIONS(1142), + [aux_sym_match_default_expression_token1] = ACTIONS(1142), + [aux_sym_switch_statement_token1] = ACTIONS(1142), + [aux_sym_switch_block_token1] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1142), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_AT] = ACTIONS(1140), + [aux_sym_clone_expression_token1] = ACTIONS(1142), + [aux_sym_print_intrinsic_token1] = ACTIONS(1142), + [aux_sym_object_creation_expression_token1] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [aux_sym__list_destructing_token1] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_self] = ACTIONS(1142), + [anon_sym_parent] = ACTIONS(1142), + [aux_sym__argument_name_token1] = ACTIONS(1142), + [aux_sym__argument_name_token2] = ACTIONS(1142), + [anon_sym_POUND_LBRACK] = ACTIONS(1140), + [aux_sym_encapsed_string_token1] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [aux_sym_string_token1] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_LT_LT_LT] = ACTIONS(1140), + [anon_sym_BQUOTE] = ACTIONS(1140), + [anon_sym_DOLLAR] = ACTIONS(1140), + [aux_sym_yield_expression_token1] = ACTIONS(1142), + [aux_sym_include_expression_token1] = ACTIONS(1142), + [aux_sym_include_once_expression_token1] = ACTIONS(1142), + [aux_sym_require_expression_token1] = ACTIONS(1142), + [aux_sym_require_once_expression_token1] = ACTIONS(1142), [sym_comment] = ACTIONS(5), }, [457] = { [sym_text_interpolation] = STATE(457), - [ts_builtin_sym_end] = ACTIONS(1157), - [sym_name] = ACTIONS(1159), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1161), - [aux_sym_function_static_declaration_token1] = ACTIONS(1159), - [aux_sym_global_declaration_token1] = ACTIONS(1159), - [aux_sym_namespace_definition_token1] = ACTIONS(1159), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1159), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1159), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1159), - [anon_sym_BSLASH] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(1157), - [aux_sym_trait_declaration_token1] = ACTIONS(1159), - [aux_sym_interface_declaration_token1] = ACTIONS(1159), - [aux_sym_enum_declaration_token1] = ACTIONS(1159), - [aux_sym_enum_case_token1] = ACTIONS(1159), - [aux_sym_class_declaration_token1] = ACTIONS(1159), - [aux_sym_final_modifier_token1] = ACTIONS(1159), - [aux_sym_abstract_modifier_token1] = ACTIONS(1159), - [aux_sym_readonly_modifier_token1] = ACTIONS(1159), - [aux_sym_visibility_modifier_token1] = ACTIONS(1159), - [aux_sym_visibility_modifier_token2] = ACTIONS(1159), - [aux_sym_visibility_modifier_token3] = ACTIONS(1159), - [aux_sym__arrow_function_header_token1] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1157), - [aux_sym_cast_type_token1] = ACTIONS(1159), - [aux_sym_echo_statement_token1] = ACTIONS(1159), - [aux_sym_exit_statement_token1] = ACTIONS(1159), - [anon_sym_unset] = ACTIONS(1159), - [aux_sym_declare_statement_token1] = ACTIONS(1159), - [aux_sym_declare_statement_token2] = ACTIONS(1159), - [sym_float] = ACTIONS(1159), - [aux_sym_try_statement_token1] = ACTIONS(1159), - [aux_sym_goto_statement_token1] = ACTIONS(1159), - [aux_sym_continue_statement_token1] = ACTIONS(1159), - [aux_sym_break_statement_token1] = ACTIONS(1159), - [sym_integer] = ACTIONS(1159), - [aux_sym_return_statement_token1] = ACTIONS(1159), - [aux_sym_throw_expression_token1] = ACTIONS(1159), - [aux_sym_while_statement_token1] = ACTIONS(1159), - [aux_sym_while_statement_token2] = ACTIONS(1159), - [aux_sym_do_statement_token1] = ACTIONS(1159), - [aux_sym_for_statement_token1] = ACTIONS(1159), - [aux_sym_for_statement_token2] = ACTIONS(1159), - [aux_sym_foreach_statement_token1] = ACTIONS(1159), - [aux_sym_foreach_statement_token2] = ACTIONS(1159), - [aux_sym_if_statement_token1] = ACTIONS(1159), - [aux_sym_if_statement_token2] = ACTIONS(1159), - [aux_sym_else_if_clause_token1] = ACTIONS(1159), - [aux_sym_else_clause_token1] = ACTIONS(1159), - [aux_sym_match_expression_token1] = ACTIONS(1159), - [aux_sym_match_default_expression_token1] = ACTIONS(1159), - [aux_sym_switch_statement_token1] = ACTIONS(1159), - [aux_sym_switch_block_token1] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1159), - [anon_sym_DASH] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1157), - [anon_sym_BANG] = ACTIONS(1157), - [anon_sym_AT] = ACTIONS(1157), - [aux_sym_clone_expression_token1] = ACTIONS(1159), - [aux_sym_print_intrinsic_token1] = ACTIONS(1159), - [aux_sym_object_creation_expression_token1] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [aux_sym__list_destructing_token1] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(1157), - [anon_sym_self] = ACTIONS(1159), - [anon_sym_parent] = ACTIONS(1159), - [aux_sym__argument_name_token1] = ACTIONS(1159), - [aux_sym__argument_name_token2] = ACTIONS(1159), - [anon_sym_POUND_LBRACK] = ACTIONS(1157), - [aux_sym_encapsed_string_token1] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1157), - [aux_sym_string_token1] = ACTIONS(1157), - [anon_sym_SQUOTE] = ACTIONS(1157), - [anon_sym_LT_LT_LT] = ACTIONS(1157), - [anon_sym_BQUOTE] = ACTIONS(1157), - [anon_sym_DOLLAR] = ACTIONS(1157), - [aux_sym_yield_expression_token1] = ACTIONS(1159), - [aux_sym_include_expression_token1] = ACTIONS(1159), - [aux_sym_include_once_expression_token1] = ACTIONS(1159), - [aux_sym_require_expression_token1] = ACTIONS(1159), - [aux_sym_require_once_expression_token1] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1161), + [ts_builtin_sym_end] = ACTIONS(1144), + [sym_name] = ACTIONS(1146), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1144), + [aux_sym_function_static_declaration_token1] = ACTIONS(1146), + [aux_sym_global_declaration_token1] = ACTIONS(1146), + [aux_sym_namespace_definition_token1] = ACTIONS(1146), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1146), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1146), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1146), + [anon_sym_BSLASH] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_RBRACE] = ACTIONS(1144), + [aux_sym_trait_declaration_token1] = ACTIONS(1146), + [aux_sym_interface_declaration_token1] = ACTIONS(1146), + [aux_sym_enum_declaration_token1] = ACTIONS(1146), + [aux_sym_enum_case_token1] = ACTIONS(1146), + [aux_sym_class_declaration_token1] = ACTIONS(1146), + [aux_sym_final_modifier_token1] = ACTIONS(1146), + [aux_sym_abstract_modifier_token1] = ACTIONS(1146), + [aux_sym_readonly_modifier_token1] = ACTIONS(1146), + [sym_var_modifier] = ACTIONS(1146), + [aux_sym_visibility_modifier_token1] = ACTIONS(1146), + [aux_sym_visibility_modifier_token2] = ACTIONS(1146), + [aux_sym_visibility_modifier_token3] = ACTIONS(1146), + [aux_sym__arrow_function_header_token1] = ACTIONS(1146), + [anon_sym_LPAREN] = ACTIONS(1144), + [aux_sym_cast_type_token1] = ACTIONS(1146), + [aux_sym_echo_statement_token1] = ACTIONS(1146), + [aux_sym_exit_statement_token1] = ACTIONS(1146), + [anon_sym_unset] = ACTIONS(1146), + [aux_sym_declare_statement_token1] = ACTIONS(1146), + [aux_sym_declare_statement_token2] = ACTIONS(1146), + [sym_float] = ACTIONS(1146), + [aux_sym_try_statement_token1] = ACTIONS(1146), + [aux_sym_goto_statement_token1] = ACTIONS(1146), + [aux_sym_continue_statement_token1] = ACTIONS(1146), + [aux_sym_break_statement_token1] = ACTIONS(1146), + [sym_integer] = ACTIONS(1146), + [aux_sym_return_statement_token1] = ACTIONS(1146), + [aux_sym_throw_expression_token1] = ACTIONS(1146), + [aux_sym_while_statement_token1] = ACTIONS(1146), + [aux_sym_while_statement_token2] = ACTIONS(1146), + [aux_sym_do_statement_token1] = ACTIONS(1146), + [aux_sym_for_statement_token1] = ACTIONS(1146), + [aux_sym_for_statement_token2] = ACTIONS(1146), + [aux_sym_foreach_statement_token1] = ACTIONS(1146), + [aux_sym_foreach_statement_token2] = ACTIONS(1146), + [aux_sym_if_statement_token1] = ACTIONS(1146), + [aux_sym_if_statement_token2] = ACTIONS(1146), + [aux_sym_else_if_clause_token1] = ACTIONS(1146), + [aux_sym_else_clause_token1] = ACTIONS(1146), + [aux_sym_match_expression_token1] = ACTIONS(1146), + [aux_sym_match_default_expression_token1] = ACTIONS(1146), + [aux_sym_switch_statement_token1] = ACTIONS(1146), + [aux_sym_switch_block_token1] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1146), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_AT] = ACTIONS(1144), + [aux_sym_clone_expression_token1] = ACTIONS(1146), + [aux_sym_print_intrinsic_token1] = ACTIONS(1146), + [aux_sym_object_creation_expression_token1] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [aux_sym__list_destructing_token1] = ACTIONS(1146), + [anon_sym_LBRACK] = ACTIONS(1144), + [anon_sym_self] = ACTIONS(1146), + [anon_sym_parent] = ACTIONS(1146), + [aux_sym__argument_name_token1] = ACTIONS(1146), + [aux_sym__argument_name_token2] = ACTIONS(1146), + [anon_sym_POUND_LBRACK] = ACTIONS(1144), + [aux_sym_encapsed_string_token1] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [aux_sym_string_token1] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [anon_sym_LT_LT_LT] = ACTIONS(1144), + [anon_sym_BQUOTE] = ACTIONS(1144), + [anon_sym_DOLLAR] = ACTIONS(1144), + [aux_sym_yield_expression_token1] = ACTIONS(1146), + [aux_sym_include_expression_token1] = ACTIONS(1146), + [aux_sym_include_once_expression_token1] = ACTIONS(1146), + [aux_sym_require_expression_token1] = ACTIONS(1146), + [aux_sym_require_once_expression_token1] = ACTIONS(1146), + [sym_comment] = ACTIONS(5), }, [458] = { [sym_text_interpolation] = STATE(458), - [ts_builtin_sym_end] = ACTIONS(1163), - [sym_name] = ACTIONS(1165), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1167), - [aux_sym_function_static_declaration_token1] = ACTIONS(1165), - [aux_sym_global_declaration_token1] = ACTIONS(1165), - [aux_sym_namespace_definition_token1] = ACTIONS(1165), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1165), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1165), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1165), - [anon_sym_BSLASH] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_RBRACE] = ACTIONS(1163), - [aux_sym_trait_declaration_token1] = ACTIONS(1165), - [aux_sym_interface_declaration_token1] = ACTIONS(1165), - [aux_sym_enum_declaration_token1] = ACTIONS(1165), - [aux_sym_enum_case_token1] = ACTIONS(1165), - [aux_sym_class_declaration_token1] = ACTIONS(1165), - [aux_sym_final_modifier_token1] = ACTIONS(1165), - [aux_sym_abstract_modifier_token1] = ACTIONS(1165), - [aux_sym_readonly_modifier_token1] = ACTIONS(1165), - [aux_sym_visibility_modifier_token1] = ACTIONS(1165), - [aux_sym_visibility_modifier_token2] = ACTIONS(1165), - [aux_sym_visibility_modifier_token3] = ACTIONS(1165), - [aux_sym__arrow_function_header_token1] = ACTIONS(1165), - [anon_sym_LPAREN] = ACTIONS(1163), - [aux_sym_cast_type_token1] = ACTIONS(1165), - [aux_sym_echo_statement_token1] = ACTIONS(1165), - [aux_sym_exit_statement_token1] = ACTIONS(1165), - [anon_sym_unset] = ACTIONS(1165), - [aux_sym_declare_statement_token1] = ACTIONS(1165), - [aux_sym_declare_statement_token2] = ACTIONS(1165), - [sym_float] = ACTIONS(1165), - [aux_sym_try_statement_token1] = ACTIONS(1165), - [aux_sym_goto_statement_token1] = ACTIONS(1165), - [aux_sym_continue_statement_token1] = ACTIONS(1165), - [aux_sym_break_statement_token1] = ACTIONS(1165), - [sym_integer] = ACTIONS(1165), - [aux_sym_return_statement_token1] = ACTIONS(1165), - [aux_sym_throw_expression_token1] = ACTIONS(1165), - [aux_sym_while_statement_token1] = ACTIONS(1165), - [aux_sym_while_statement_token2] = ACTIONS(1165), - [aux_sym_do_statement_token1] = ACTIONS(1165), - [aux_sym_for_statement_token1] = ACTIONS(1165), - [aux_sym_for_statement_token2] = ACTIONS(1165), - [aux_sym_foreach_statement_token1] = ACTIONS(1165), - [aux_sym_foreach_statement_token2] = ACTIONS(1165), - [aux_sym_if_statement_token1] = ACTIONS(1165), - [aux_sym_if_statement_token2] = ACTIONS(1165), - [aux_sym_else_if_clause_token1] = ACTIONS(1165), - [aux_sym_else_clause_token1] = ACTIONS(1165), - [aux_sym_match_expression_token1] = ACTIONS(1165), - [aux_sym_match_default_expression_token1] = ACTIONS(1165), - [aux_sym_switch_statement_token1] = ACTIONS(1165), - [aux_sym_switch_block_token1] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_TILDE] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1163), - [anon_sym_AT] = ACTIONS(1163), - [aux_sym_clone_expression_token1] = ACTIONS(1165), - [aux_sym_print_intrinsic_token1] = ACTIONS(1165), - [aux_sym_object_creation_expression_token1] = ACTIONS(1165), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [aux_sym__list_destructing_token1] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(1163), - [anon_sym_self] = ACTIONS(1165), - [anon_sym_parent] = ACTIONS(1165), - [aux_sym__argument_name_token1] = ACTIONS(1165), - [aux_sym__argument_name_token2] = ACTIONS(1165), - [anon_sym_POUND_LBRACK] = ACTIONS(1163), - [aux_sym_encapsed_string_token1] = ACTIONS(1163), - [anon_sym_DQUOTE] = ACTIONS(1163), - [aux_sym_string_token1] = ACTIONS(1163), - [anon_sym_SQUOTE] = ACTIONS(1163), - [anon_sym_LT_LT_LT] = ACTIONS(1163), - [anon_sym_BQUOTE] = ACTIONS(1163), - [anon_sym_DOLLAR] = ACTIONS(1163), - [aux_sym_yield_expression_token1] = ACTIONS(1165), - [aux_sym_include_expression_token1] = ACTIONS(1165), - [aux_sym_include_once_expression_token1] = ACTIONS(1165), - [aux_sym_require_expression_token1] = ACTIONS(1165), - [aux_sym_require_once_expression_token1] = ACTIONS(1165), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1167), + [ts_builtin_sym_end] = ACTIONS(1148), + [sym_name] = ACTIONS(1150), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1148), + [aux_sym_function_static_declaration_token1] = ACTIONS(1150), + [aux_sym_global_declaration_token1] = ACTIONS(1150), + [aux_sym_namespace_definition_token1] = ACTIONS(1150), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1150), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1150), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1150), + [anon_sym_BSLASH] = ACTIONS(1148), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_RBRACE] = ACTIONS(1148), + [aux_sym_trait_declaration_token1] = ACTIONS(1150), + [aux_sym_interface_declaration_token1] = ACTIONS(1150), + [aux_sym_enum_declaration_token1] = ACTIONS(1150), + [aux_sym_enum_case_token1] = ACTIONS(1150), + [aux_sym_class_declaration_token1] = ACTIONS(1150), + [aux_sym_final_modifier_token1] = ACTIONS(1150), + [aux_sym_abstract_modifier_token1] = ACTIONS(1150), + [aux_sym_readonly_modifier_token1] = ACTIONS(1150), + [sym_var_modifier] = ACTIONS(1150), + [aux_sym_visibility_modifier_token1] = ACTIONS(1150), + [aux_sym_visibility_modifier_token2] = ACTIONS(1150), + [aux_sym_visibility_modifier_token3] = ACTIONS(1150), + [aux_sym__arrow_function_header_token1] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1148), + [aux_sym_cast_type_token1] = ACTIONS(1150), + [aux_sym_echo_statement_token1] = ACTIONS(1150), + [aux_sym_exit_statement_token1] = ACTIONS(1150), + [anon_sym_unset] = ACTIONS(1150), + [aux_sym_declare_statement_token1] = ACTIONS(1150), + [aux_sym_declare_statement_token2] = ACTIONS(1150), + [sym_float] = ACTIONS(1150), + [aux_sym_try_statement_token1] = ACTIONS(1150), + [aux_sym_goto_statement_token1] = ACTIONS(1150), + [aux_sym_continue_statement_token1] = ACTIONS(1150), + [aux_sym_break_statement_token1] = ACTIONS(1150), + [sym_integer] = ACTIONS(1150), + [aux_sym_return_statement_token1] = ACTIONS(1150), + [aux_sym_throw_expression_token1] = ACTIONS(1150), + [aux_sym_while_statement_token1] = ACTIONS(1150), + [aux_sym_while_statement_token2] = ACTIONS(1150), + [aux_sym_do_statement_token1] = ACTIONS(1150), + [aux_sym_for_statement_token1] = ACTIONS(1150), + [aux_sym_for_statement_token2] = ACTIONS(1150), + [aux_sym_foreach_statement_token1] = ACTIONS(1150), + [aux_sym_foreach_statement_token2] = ACTIONS(1150), + [aux_sym_if_statement_token1] = ACTIONS(1150), + [aux_sym_if_statement_token2] = ACTIONS(1150), + [aux_sym_else_if_clause_token1] = ACTIONS(1150), + [aux_sym_else_clause_token1] = ACTIONS(1150), + [aux_sym_match_expression_token1] = ACTIONS(1150), + [aux_sym_match_default_expression_token1] = ACTIONS(1150), + [aux_sym_switch_statement_token1] = ACTIONS(1150), + [aux_sym_switch_block_token1] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1150), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1148), + [aux_sym_clone_expression_token1] = ACTIONS(1150), + [aux_sym_print_intrinsic_token1] = ACTIONS(1150), + [aux_sym_object_creation_expression_token1] = ACTIONS(1150), + [anon_sym_DASH_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [aux_sym__list_destructing_token1] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(1148), + [anon_sym_self] = ACTIONS(1150), + [anon_sym_parent] = ACTIONS(1150), + [aux_sym__argument_name_token1] = ACTIONS(1150), + [aux_sym__argument_name_token2] = ACTIONS(1150), + [anon_sym_POUND_LBRACK] = ACTIONS(1148), + [aux_sym_encapsed_string_token1] = ACTIONS(1148), + [anon_sym_DQUOTE] = ACTIONS(1148), + [aux_sym_string_token1] = ACTIONS(1148), + [anon_sym_SQUOTE] = ACTIONS(1148), + [anon_sym_LT_LT_LT] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(1148), + [aux_sym_yield_expression_token1] = ACTIONS(1150), + [aux_sym_include_expression_token1] = ACTIONS(1150), + [aux_sym_include_once_expression_token1] = ACTIONS(1150), + [aux_sym_require_expression_token1] = ACTIONS(1150), + [aux_sym_require_once_expression_token1] = ACTIONS(1150), + [sym_comment] = ACTIONS(5), }, [459] = { [sym_text_interpolation] = STATE(459), - [ts_builtin_sym_end] = ACTIONS(1169), - [sym_name] = ACTIONS(1171), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1169), - [aux_sym_function_static_declaration_token1] = ACTIONS(1171), - [aux_sym_global_declaration_token1] = ACTIONS(1171), - [aux_sym_namespace_definition_token1] = ACTIONS(1171), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1171), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1171), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1171), - [anon_sym_BSLASH] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1169), - [aux_sym_trait_declaration_token1] = ACTIONS(1171), - [aux_sym_interface_declaration_token1] = ACTIONS(1171), - [aux_sym_enum_declaration_token1] = ACTIONS(1171), - [aux_sym_enum_case_token1] = ACTIONS(1171), - [aux_sym_class_declaration_token1] = ACTIONS(1171), - [aux_sym_final_modifier_token1] = ACTIONS(1171), - [aux_sym_abstract_modifier_token1] = ACTIONS(1171), - [aux_sym_readonly_modifier_token1] = ACTIONS(1171), - [sym_var_modifier] = ACTIONS(1171), - [aux_sym_visibility_modifier_token1] = ACTIONS(1171), - [aux_sym_visibility_modifier_token2] = ACTIONS(1171), - [aux_sym_visibility_modifier_token3] = ACTIONS(1171), - [aux_sym__arrow_function_header_token1] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1169), - [aux_sym_cast_type_token1] = ACTIONS(1171), - [aux_sym_echo_statement_token1] = ACTIONS(1171), - [aux_sym_exit_statement_token1] = ACTIONS(1171), - [anon_sym_unset] = ACTIONS(1171), - [aux_sym_declare_statement_token1] = ACTIONS(1171), - [aux_sym_declare_statement_token2] = ACTIONS(1171), - [sym_float] = ACTIONS(1171), - [aux_sym_try_statement_token1] = ACTIONS(1171), - [aux_sym_goto_statement_token1] = ACTIONS(1171), - [aux_sym_continue_statement_token1] = ACTIONS(1171), - [aux_sym_break_statement_token1] = ACTIONS(1171), - [sym_integer] = ACTIONS(1171), - [aux_sym_return_statement_token1] = ACTIONS(1171), - [aux_sym_throw_expression_token1] = ACTIONS(1171), - [aux_sym_while_statement_token1] = ACTIONS(1171), - [aux_sym_while_statement_token2] = ACTIONS(1171), - [aux_sym_do_statement_token1] = ACTIONS(1171), - [aux_sym_for_statement_token1] = ACTIONS(1171), - [aux_sym_for_statement_token2] = ACTIONS(1171), - [aux_sym_foreach_statement_token1] = ACTIONS(1171), - [aux_sym_foreach_statement_token2] = ACTIONS(1171), - [aux_sym_if_statement_token1] = ACTIONS(1171), - [aux_sym_if_statement_token2] = ACTIONS(1171), - [aux_sym_else_if_clause_token1] = ACTIONS(1171), - [aux_sym_else_clause_token1] = ACTIONS(1171), - [aux_sym_match_expression_token1] = ACTIONS(1171), - [aux_sym_match_default_expression_token1] = ACTIONS(1171), - [aux_sym_switch_statement_token1] = ACTIONS(1171), - [aux_sym_switch_block_token1] = ACTIONS(1171), - [anon_sym_PLUS] = ACTIONS(1171), - [anon_sym_DASH] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1169), - [anon_sym_BANG] = ACTIONS(1169), - [anon_sym_AT] = ACTIONS(1169), - [aux_sym_clone_expression_token1] = ACTIONS(1171), - [aux_sym_print_intrinsic_token1] = ACTIONS(1171), - [aux_sym_object_creation_expression_token1] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1169), - [anon_sym_PLUS_PLUS] = ACTIONS(1169), - [aux_sym__list_destructing_token1] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(1169), - [anon_sym_self] = ACTIONS(1171), - [anon_sym_parent] = ACTIONS(1171), - [aux_sym__argument_name_token1] = ACTIONS(1171), - [aux_sym__argument_name_token2] = ACTIONS(1171), - [anon_sym_POUND_LBRACK] = ACTIONS(1169), - [aux_sym_encapsed_string_token1] = ACTIONS(1169), - [anon_sym_DQUOTE] = ACTIONS(1169), - [aux_sym_string_token1] = ACTIONS(1169), - [anon_sym_SQUOTE] = ACTIONS(1169), - [anon_sym_LT_LT_LT] = ACTIONS(1169), - [anon_sym_BQUOTE] = ACTIONS(1169), - [anon_sym_DOLLAR] = ACTIONS(1169), - [aux_sym_yield_expression_token1] = ACTIONS(1171), - [aux_sym_include_expression_token1] = ACTIONS(1171), - [aux_sym_include_once_expression_token1] = ACTIONS(1171), - [aux_sym_require_expression_token1] = ACTIONS(1171), - [aux_sym_require_once_expression_token1] = ACTIONS(1171), + [ts_builtin_sym_end] = ACTIONS(1152), + [sym_name] = ACTIONS(1154), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1152), + [aux_sym_function_static_declaration_token1] = ACTIONS(1154), + [aux_sym_global_declaration_token1] = ACTIONS(1154), + [aux_sym_namespace_definition_token1] = ACTIONS(1154), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1154), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1154), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1154), + [anon_sym_BSLASH] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_RBRACE] = ACTIONS(1152), + [aux_sym_trait_declaration_token1] = ACTIONS(1154), + [aux_sym_interface_declaration_token1] = ACTIONS(1154), + [aux_sym_enum_declaration_token1] = ACTIONS(1154), + [aux_sym_enum_case_token1] = ACTIONS(1154), + [aux_sym_class_declaration_token1] = ACTIONS(1154), + [aux_sym_final_modifier_token1] = ACTIONS(1154), + [aux_sym_abstract_modifier_token1] = ACTIONS(1154), + [aux_sym_readonly_modifier_token1] = ACTIONS(1154), + [sym_var_modifier] = ACTIONS(1154), + [aux_sym_visibility_modifier_token1] = ACTIONS(1154), + [aux_sym_visibility_modifier_token2] = ACTIONS(1154), + [aux_sym_visibility_modifier_token3] = ACTIONS(1154), + [aux_sym__arrow_function_header_token1] = ACTIONS(1154), + [anon_sym_LPAREN] = ACTIONS(1152), + [aux_sym_cast_type_token1] = ACTIONS(1154), + [aux_sym_echo_statement_token1] = ACTIONS(1154), + [aux_sym_exit_statement_token1] = ACTIONS(1154), + [anon_sym_unset] = ACTIONS(1154), + [aux_sym_declare_statement_token1] = ACTIONS(1154), + [aux_sym_declare_statement_token2] = ACTIONS(1154), + [sym_float] = ACTIONS(1154), + [aux_sym_try_statement_token1] = ACTIONS(1154), + [aux_sym_goto_statement_token1] = ACTIONS(1154), + [aux_sym_continue_statement_token1] = ACTIONS(1154), + [aux_sym_break_statement_token1] = ACTIONS(1154), + [sym_integer] = ACTIONS(1154), + [aux_sym_return_statement_token1] = ACTIONS(1154), + [aux_sym_throw_expression_token1] = ACTIONS(1154), + [aux_sym_while_statement_token1] = ACTIONS(1154), + [aux_sym_while_statement_token2] = ACTIONS(1154), + [aux_sym_do_statement_token1] = ACTIONS(1154), + [aux_sym_for_statement_token1] = ACTIONS(1154), + [aux_sym_for_statement_token2] = ACTIONS(1154), + [aux_sym_foreach_statement_token1] = ACTIONS(1154), + [aux_sym_foreach_statement_token2] = ACTIONS(1154), + [aux_sym_if_statement_token1] = ACTIONS(1154), + [aux_sym_if_statement_token2] = ACTIONS(1154), + [aux_sym_else_if_clause_token1] = ACTIONS(1154), + [aux_sym_else_clause_token1] = ACTIONS(1154), + [aux_sym_match_expression_token1] = ACTIONS(1154), + [aux_sym_match_default_expression_token1] = ACTIONS(1154), + [aux_sym_switch_statement_token1] = ACTIONS(1154), + [aux_sym_switch_block_token1] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_AT] = ACTIONS(1152), + [aux_sym_clone_expression_token1] = ACTIONS(1154), + [aux_sym_print_intrinsic_token1] = ACTIONS(1154), + [aux_sym_object_creation_expression_token1] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [aux_sym__list_destructing_token1] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_self] = ACTIONS(1154), + [anon_sym_parent] = ACTIONS(1154), + [aux_sym__argument_name_token1] = ACTIONS(1154), + [aux_sym__argument_name_token2] = ACTIONS(1154), + [anon_sym_POUND_LBRACK] = ACTIONS(1152), + [aux_sym_encapsed_string_token1] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [aux_sym_string_token1] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(1152), + [anon_sym_DOLLAR] = ACTIONS(1152), + [aux_sym_yield_expression_token1] = ACTIONS(1154), + [aux_sym_include_expression_token1] = ACTIONS(1154), + [aux_sym_include_once_expression_token1] = ACTIONS(1154), + [aux_sym_require_expression_token1] = ACTIONS(1154), + [aux_sym_require_once_expression_token1] = ACTIONS(1154), [sym_comment] = ACTIONS(5), }, [460] = { [sym_text_interpolation] = STATE(460), - [ts_builtin_sym_end] = ACTIONS(1173), - [sym_name] = ACTIONS(1175), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1173), - [aux_sym_function_static_declaration_token1] = ACTIONS(1175), - [aux_sym_global_declaration_token1] = ACTIONS(1175), - [aux_sym_namespace_definition_token1] = ACTIONS(1175), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1175), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1175), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1175), - [anon_sym_BSLASH] = ACTIONS(1173), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_RBRACE] = ACTIONS(1173), - [aux_sym_trait_declaration_token1] = ACTIONS(1175), - [aux_sym_interface_declaration_token1] = ACTIONS(1175), - [aux_sym_enum_declaration_token1] = ACTIONS(1175), - [aux_sym_enum_case_token1] = ACTIONS(1175), - [aux_sym_class_declaration_token1] = ACTIONS(1175), - [aux_sym_final_modifier_token1] = ACTIONS(1175), - [aux_sym_abstract_modifier_token1] = ACTIONS(1175), - [aux_sym_readonly_modifier_token1] = ACTIONS(1175), - [sym_var_modifier] = ACTIONS(1175), - [aux_sym_visibility_modifier_token1] = ACTIONS(1175), - [aux_sym_visibility_modifier_token2] = ACTIONS(1175), - [aux_sym_visibility_modifier_token3] = ACTIONS(1175), - [aux_sym__arrow_function_header_token1] = ACTIONS(1175), - [anon_sym_LPAREN] = ACTIONS(1173), - [aux_sym_cast_type_token1] = ACTIONS(1175), - [aux_sym_echo_statement_token1] = ACTIONS(1175), - [aux_sym_exit_statement_token1] = ACTIONS(1175), - [anon_sym_unset] = ACTIONS(1175), - [aux_sym_declare_statement_token1] = ACTIONS(1175), - [aux_sym_declare_statement_token2] = ACTIONS(1175), - [sym_float] = ACTIONS(1175), - [aux_sym_try_statement_token1] = ACTIONS(1175), - [aux_sym_goto_statement_token1] = ACTIONS(1175), - [aux_sym_continue_statement_token1] = ACTIONS(1175), - [aux_sym_break_statement_token1] = ACTIONS(1175), - [sym_integer] = ACTIONS(1175), - [aux_sym_return_statement_token1] = ACTIONS(1175), - [aux_sym_throw_expression_token1] = ACTIONS(1175), - [aux_sym_while_statement_token1] = ACTIONS(1175), - [aux_sym_while_statement_token2] = ACTIONS(1175), - [aux_sym_do_statement_token1] = ACTIONS(1175), - [aux_sym_for_statement_token1] = ACTIONS(1175), - [aux_sym_for_statement_token2] = ACTIONS(1175), - [aux_sym_foreach_statement_token1] = ACTIONS(1175), - [aux_sym_foreach_statement_token2] = ACTIONS(1175), - [aux_sym_if_statement_token1] = ACTIONS(1175), - [aux_sym_if_statement_token2] = ACTIONS(1175), - [aux_sym_else_if_clause_token1] = ACTIONS(1175), - [aux_sym_else_clause_token1] = ACTIONS(1175), - [aux_sym_match_expression_token1] = ACTIONS(1175), - [aux_sym_match_default_expression_token1] = ACTIONS(1175), - [aux_sym_switch_statement_token1] = ACTIONS(1175), - [aux_sym_switch_block_token1] = ACTIONS(1175), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_TILDE] = ACTIONS(1173), - [anon_sym_BANG] = ACTIONS(1173), - [anon_sym_AT] = ACTIONS(1173), - [aux_sym_clone_expression_token1] = ACTIONS(1175), - [aux_sym_print_intrinsic_token1] = ACTIONS(1175), - [aux_sym_object_creation_expression_token1] = ACTIONS(1175), - [anon_sym_DASH_DASH] = ACTIONS(1173), - [anon_sym_PLUS_PLUS] = ACTIONS(1173), - [aux_sym__list_destructing_token1] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(1173), - [anon_sym_self] = ACTIONS(1175), - [anon_sym_parent] = ACTIONS(1175), - [aux_sym__argument_name_token1] = ACTIONS(1175), - [aux_sym__argument_name_token2] = ACTIONS(1175), - [anon_sym_POUND_LBRACK] = ACTIONS(1173), - [aux_sym_encapsed_string_token1] = ACTIONS(1173), - [anon_sym_DQUOTE] = ACTIONS(1173), - [aux_sym_string_token1] = ACTIONS(1173), - [anon_sym_SQUOTE] = ACTIONS(1173), - [anon_sym_LT_LT_LT] = ACTIONS(1173), - [anon_sym_BQUOTE] = ACTIONS(1173), - [anon_sym_DOLLAR] = ACTIONS(1173), - [aux_sym_yield_expression_token1] = ACTIONS(1175), - [aux_sym_include_expression_token1] = ACTIONS(1175), - [aux_sym_include_once_expression_token1] = ACTIONS(1175), - [aux_sym_require_expression_token1] = ACTIONS(1175), - [aux_sym_require_once_expression_token1] = ACTIONS(1175), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_name] = ACTIONS(1158), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1156), + [aux_sym_function_static_declaration_token1] = ACTIONS(1158), + [aux_sym_global_declaration_token1] = ACTIONS(1158), + [aux_sym_namespace_definition_token1] = ACTIONS(1158), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1158), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1158), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1158), + [anon_sym_BSLASH] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [aux_sym_trait_declaration_token1] = ACTIONS(1158), + [aux_sym_interface_declaration_token1] = ACTIONS(1158), + [aux_sym_enum_declaration_token1] = ACTIONS(1158), + [aux_sym_enum_case_token1] = ACTIONS(1158), + [aux_sym_class_declaration_token1] = ACTIONS(1158), + [aux_sym_final_modifier_token1] = ACTIONS(1158), + [aux_sym_abstract_modifier_token1] = ACTIONS(1158), + [aux_sym_readonly_modifier_token1] = ACTIONS(1158), + [sym_var_modifier] = ACTIONS(1158), + [aux_sym_visibility_modifier_token1] = ACTIONS(1158), + [aux_sym_visibility_modifier_token2] = ACTIONS(1158), + [aux_sym_visibility_modifier_token3] = ACTIONS(1158), + [aux_sym__arrow_function_header_token1] = ACTIONS(1158), + [anon_sym_LPAREN] = ACTIONS(1156), + [aux_sym_cast_type_token1] = ACTIONS(1158), + [aux_sym_echo_statement_token1] = ACTIONS(1158), + [aux_sym_exit_statement_token1] = ACTIONS(1158), + [anon_sym_unset] = ACTIONS(1158), + [aux_sym_declare_statement_token1] = ACTIONS(1158), + [aux_sym_declare_statement_token2] = ACTIONS(1158), + [sym_float] = ACTIONS(1158), + [aux_sym_try_statement_token1] = ACTIONS(1158), + [aux_sym_goto_statement_token1] = ACTIONS(1158), + [aux_sym_continue_statement_token1] = ACTIONS(1158), + [aux_sym_break_statement_token1] = ACTIONS(1158), + [sym_integer] = ACTIONS(1158), + [aux_sym_return_statement_token1] = ACTIONS(1158), + [aux_sym_throw_expression_token1] = ACTIONS(1158), + [aux_sym_while_statement_token1] = ACTIONS(1158), + [aux_sym_while_statement_token2] = ACTIONS(1158), + [aux_sym_do_statement_token1] = ACTIONS(1158), + [aux_sym_for_statement_token1] = ACTIONS(1158), + [aux_sym_for_statement_token2] = ACTIONS(1158), + [aux_sym_foreach_statement_token1] = ACTIONS(1158), + [aux_sym_foreach_statement_token2] = ACTIONS(1158), + [aux_sym_if_statement_token1] = ACTIONS(1158), + [aux_sym_if_statement_token2] = ACTIONS(1158), + [aux_sym_else_if_clause_token1] = ACTIONS(1158), + [aux_sym_else_clause_token1] = ACTIONS(1158), + [aux_sym_match_expression_token1] = ACTIONS(1158), + [aux_sym_match_default_expression_token1] = ACTIONS(1158), + [aux_sym_switch_statement_token1] = ACTIONS(1158), + [aux_sym_switch_block_token1] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_AT] = ACTIONS(1156), + [aux_sym_clone_expression_token1] = ACTIONS(1158), + [aux_sym_print_intrinsic_token1] = ACTIONS(1158), + [aux_sym_object_creation_expression_token1] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [aux_sym__list_destructing_token1] = ACTIONS(1158), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_self] = ACTIONS(1158), + [anon_sym_parent] = ACTIONS(1158), + [aux_sym__argument_name_token1] = ACTIONS(1158), + [aux_sym__argument_name_token2] = ACTIONS(1158), + [anon_sym_POUND_LBRACK] = ACTIONS(1156), + [aux_sym_encapsed_string_token1] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [aux_sym_string_token1] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_LT_LT_LT] = ACTIONS(1156), + [anon_sym_BQUOTE] = ACTIONS(1156), + [anon_sym_DOLLAR] = ACTIONS(1156), + [aux_sym_yield_expression_token1] = ACTIONS(1158), + [aux_sym_include_expression_token1] = ACTIONS(1158), + [aux_sym_include_once_expression_token1] = ACTIONS(1158), + [aux_sym_require_expression_token1] = ACTIONS(1158), + [aux_sym_require_once_expression_token1] = ACTIONS(1158), [sym_comment] = ACTIONS(5), }, [461] = { [sym_text_interpolation] = STATE(461), - [ts_builtin_sym_end] = ACTIONS(1177), - [sym_name] = ACTIONS(1179), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1181), - [aux_sym_function_static_declaration_token1] = ACTIONS(1179), - [aux_sym_global_declaration_token1] = ACTIONS(1179), - [aux_sym_namespace_definition_token1] = ACTIONS(1179), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1179), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1179), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1179), - [anon_sym_BSLASH] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(1177), - [aux_sym_trait_declaration_token1] = ACTIONS(1179), - [aux_sym_interface_declaration_token1] = ACTIONS(1179), - [aux_sym_enum_declaration_token1] = ACTIONS(1179), - [aux_sym_enum_case_token1] = ACTIONS(1179), - [aux_sym_class_declaration_token1] = ACTIONS(1179), - [aux_sym_final_modifier_token1] = ACTIONS(1179), - [aux_sym_abstract_modifier_token1] = ACTIONS(1179), - [aux_sym_readonly_modifier_token1] = ACTIONS(1179), - [aux_sym_visibility_modifier_token1] = ACTIONS(1179), - [aux_sym_visibility_modifier_token2] = ACTIONS(1179), - [aux_sym_visibility_modifier_token3] = ACTIONS(1179), - [aux_sym__arrow_function_header_token1] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1177), - [aux_sym_cast_type_token1] = ACTIONS(1179), - [aux_sym_echo_statement_token1] = ACTIONS(1179), - [aux_sym_exit_statement_token1] = ACTIONS(1179), - [anon_sym_unset] = ACTIONS(1179), - [aux_sym_declare_statement_token1] = ACTIONS(1179), - [aux_sym_declare_statement_token2] = ACTIONS(1179), - [sym_float] = ACTIONS(1179), - [aux_sym_try_statement_token1] = ACTIONS(1179), - [aux_sym_goto_statement_token1] = ACTIONS(1179), - [aux_sym_continue_statement_token1] = ACTIONS(1179), - [aux_sym_break_statement_token1] = ACTIONS(1179), - [sym_integer] = ACTIONS(1179), - [aux_sym_return_statement_token1] = ACTIONS(1179), - [aux_sym_throw_expression_token1] = ACTIONS(1179), - [aux_sym_while_statement_token1] = ACTIONS(1179), - [aux_sym_while_statement_token2] = ACTIONS(1179), - [aux_sym_do_statement_token1] = ACTIONS(1179), - [aux_sym_for_statement_token1] = ACTIONS(1179), - [aux_sym_for_statement_token2] = ACTIONS(1179), - [aux_sym_foreach_statement_token1] = ACTIONS(1179), - [aux_sym_foreach_statement_token2] = ACTIONS(1179), - [aux_sym_if_statement_token1] = ACTIONS(1179), - [aux_sym_if_statement_token2] = ACTIONS(1179), - [aux_sym_else_if_clause_token1] = ACTIONS(1179), - [aux_sym_else_clause_token1] = ACTIONS(1179), - [aux_sym_match_expression_token1] = ACTIONS(1179), - [aux_sym_match_default_expression_token1] = ACTIONS(1179), - [aux_sym_switch_statement_token1] = ACTIONS(1179), - [aux_sym_switch_block_token1] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1179), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1177), - [anon_sym_AT] = ACTIONS(1177), - [aux_sym_clone_expression_token1] = ACTIONS(1179), - [aux_sym_print_intrinsic_token1] = ACTIONS(1179), - [aux_sym_object_creation_expression_token1] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1177), - [anon_sym_PLUS_PLUS] = ACTIONS(1177), - [aux_sym__list_destructing_token1] = ACTIONS(1179), - [anon_sym_LBRACK] = ACTIONS(1177), - [anon_sym_self] = ACTIONS(1179), - [anon_sym_parent] = ACTIONS(1179), - [aux_sym__argument_name_token1] = ACTIONS(1179), - [aux_sym__argument_name_token2] = ACTIONS(1179), - [anon_sym_POUND_LBRACK] = ACTIONS(1177), - [aux_sym_encapsed_string_token1] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1177), - [aux_sym_string_token1] = ACTIONS(1177), - [anon_sym_SQUOTE] = ACTIONS(1177), - [anon_sym_LT_LT_LT] = ACTIONS(1177), - [anon_sym_BQUOTE] = ACTIONS(1177), - [anon_sym_DOLLAR] = ACTIONS(1177), - [aux_sym_yield_expression_token1] = ACTIONS(1179), - [aux_sym_include_expression_token1] = ACTIONS(1179), - [aux_sym_include_once_expression_token1] = ACTIONS(1179), - [aux_sym_require_expression_token1] = ACTIONS(1179), - [aux_sym_require_once_expression_token1] = ACTIONS(1179), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1181), + [ts_builtin_sym_end] = ACTIONS(1160), + [sym_name] = ACTIONS(1162), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1160), + [aux_sym_function_static_declaration_token1] = ACTIONS(1162), + [aux_sym_global_declaration_token1] = ACTIONS(1162), + [aux_sym_namespace_definition_token1] = ACTIONS(1162), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1162), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1162), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1162), + [anon_sym_BSLASH] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_RBRACE] = ACTIONS(1160), + [aux_sym_trait_declaration_token1] = ACTIONS(1162), + [aux_sym_interface_declaration_token1] = ACTIONS(1162), + [aux_sym_enum_declaration_token1] = ACTIONS(1162), + [aux_sym_enum_case_token1] = ACTIONS(1162), + [aux_sym_class_declaration_token1] = ACTIONS(1162), + [aux_sym_final_modifier_token1] = ACTIONS(1162), + [aux_sym_abstract_modifier_token1] = ACTIONS(1162), + [aux_sym_readonly_modifier_token1] = ACTIONS(1162), + [sym_var_modifier] = ACTIONS(1162), + [aux_sym_visibility_modifier_token1] = ACTIONS(1162), + [aux_sym_visibility_modifier_token2] = ACTIONS(1162), + [aux_sym_visibility_modifier_token3] = ACTIONS(1162), + [aux_sym__arrow_function_header_token1] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1160), + [aux_sym_cast_type_token1] = ACTIONS(1162), + [aux_sym_echo_statement_token1] = ACTIONS(1162), + [aux_sym_exit_statement_token1] = ACTIONS(1162), + [anon_sym_unset] = ACTIONS(1162), + [aux_sym_declare_statement_token1] = ACTIONS(1162), + [aux_sym_declare_statement_token2] = ACTIONS(1162), + [sym_float] = ACTIONS(1162), + [aux_sym_try_statement_token1] = ACTIONS(1162), + [aux_sym_goto_statement_token1] = ACTIONS(1162), + [aux_sym_continue_statement_token1] = ACTIONS(1162), + [aux_sym_break_statement_token1] = ACTIONS(1162), + [sym_integer] = ACTIONS(1162), + [aux_sym_return_statement_token1] = ACTIONS(1162), + [aux_sym_throw_expression_token1] = ACTIONS(1162), + [aux_sym_while_statement_token1] = ACTIONS(1162), + [aux_sym_while_statement_token2] = ACTIONS(1162), + [aux_sym_do_statement_token1] = ACTIONS(1162), + [aux_sym_for_statement_token1] = ACTIONS(1162), + [aux_sym_for_statement_token2] = ACTIONS(1162), + [aux_sym_foreach_statement_token1] = ACTIONS(1162), + [aux_sym_foreach_statement_token2] = ACTIONS(1162), + [aux_sym_if_statement_token1] = ACTIONS(1162), + [aux_sym_if_statement_token2] = ACTIONS(1162), + [aux_sym_else_if_clause_token1] = ACTIONS(1162), + [aux_sym_else_clause_token1] = ACTIONS(1162), + [aux_sym_match_expression_token1] = ACTIONS(1162), + [aux_sym_match_default_expression_token1] = ACTIONS(1162), + [aux_sym_switch_statement_token1] = ACTIONS(1162), + [aux_sym_switch_block_token1] = ACTIONS(1162), + [anon_sym_PLUS] = ACTIONS(1162), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_AT] = ACTIONS(1160), + [aux_sym_clone_expression_token1] = ACTIONS(1162), + [aux_sym_print_intrinsic_token1] = ACTIONS(1162), + [aux_sym_object_creation_expression_token1] = ACTIONS(1162), + [anon_sym_DASH_DASH] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [aux_sym__list_destructing_token1] = ACTIONS(1162), + [anon_sym_LBRACK] = ACTIONS(1160), + [anon_sym_self] = ACTIONS(1162), + [anon_sym_parent] = ACTIONS(1162), + [aux_sym__argument_name_token1] = ACTIONS(1162), + [aux_sym__argument_name_token2] = ACTIONS(1162), + [anon_sym_POUND_LBRACK] = ACTIONS(1160), + [aux_sym_encapsed_string_token1] = ACTIONS(1160), + [anon_sym_DQUOTE] = ACTIONS(1160), + [aux_sym_string_token1] = ACTIONS(1160), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_LT_LT_LT] = ACTIONS(1160), + [anon_sym_BQUOTE] = ACTIONS(1160), + [anon_sym_DOLLAR] = ACTIONS(1160), + [aux_sym_yield_expression_token1] = ACTIONS(1162), + [aux_sym_include_expression_token1] = ACTIONS(1162), + [aux_sym_include_once_expression_token1] = ACTIONS(1162), + [aux_sym_require_expression_token1] = ACTIONS(1162), + [aux_sym_require_once_expression_token1] = ACTIONS(1162), + [sym_comment] = ACTIONS(5), }, [462] = { [sym_text_interpolation] = STATE(462), - [ts_builtin_sym_end] = ACTIONS(1183), - [sym_name] = ACTIONS(1185), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1187), - [aux_sym_function_static_declaration_token1] = ACTIONS(1185), - [aux_sym_global_declaration_token1] = ACTIONS(1185), - [aux_sym_namespace_definition_token1] = ACTIONS(1185), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1185), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1185), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1185), - [anon_sym_BSLASH] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_RBRACE] = ACTIONS(1183), - [aux_sym_trait_declaration_token1] = ACTIONS(1185), - [aux_sym_interface_declaration_token1] = ACTIONS(1185), - [aux_sym_enum_declaration_token1] = ACTIONS(1185), - [aux_sym_enum_case_token1] = ACTIONS(1185), - [aux_sym_class_declaration_token1] = ACTIONS(1185), - [aux_sym_final_modifier_token1] = ACTIONS(1185), - [aux_sym_abstract_modifier_token1] = ACTIONS(1185), - [aux_sym_readonly_modifier_token1] = ACTIONS(1185), - [aux_sym_visibility_modifier_token1] = ACTIONS(1185), - [aux_sym_visibility_modifier_token2] = ACTIONS(1185), - [aux_sym_visibility_modifier_token3] = ACTIONS(1185), - [aux_sym__arrow_function_header_token1] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(1183), - [aux_sym_cast_type_token1] = ACTIONS(1185), - [aux_sym_echo_statement_token1] = ACTIONS(1185), - [aux_sym_exit_statement_token1] = ACTIONS(1185), - [anon_sym_unset] = ACTIONS(1185), - [aux_sym_declare_statement_token1] = ACTIONS(1185), - [aux_sym_declare_statement_token2] = ACTIONS(1185), - [sym_float] = ACTIONS(1185), - [aux_sym_try_statement_token1] = ACTIONS(1185), - [aux_sym_goto_statement_token1] = ACTIONS(1185), - [aux_sym_continue_statement_token1] = ACTIONS(1185), - [aux_sym_break_statement_token1] = ACTIONS(1185), - [sym_integer] = ACTIONS(1185), - [aux_sym_return_statement_token1] = ACTIONS(1185), - [aux_sym_throw_expression_token1] = ACTIONS(1185), - [aux_sym_while_statement_token1] = ACTIONS(1185), - [aux_sym_while_statement_token2] = ACTIONS(1185), - [aux_sym_do_statement_token1] = ACTIONS(1185), - [aux_sym_for_statement_token1] = ACTIONS(1185), - [aux_sym_for_statement_token2] = ACTIONS(1185), - [aux_sym_foreach_statement_token1] = ACTIONS(1185), - [aux_sym_foreach_statement_token2] = ACTIONS(1185), - [aux_sym_if_statement_token1] = ACTIONS(1185), - [aux_sym_if_statement_token2] = ACTIONS(1185), - [aux_sym_else_if_clause_token1] = ACTIONS(1185), - [aux_sym_else_clause_token1] = ACTIONS(1185), - [aux_sym_match_expression_token1] = ACTIONS(1185), - [aux_sym_match_default_expression_token1] = ACTIONS(1185), - [aux_sym_switch_statement_token1] = ACTIONS(1185), - [aux_sym_switch_block_token1] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_AT] = ACTIONS(1183), - [aux_sym_clone_expression_token1] = ACTIONS(1185), - [aux_sym_print_intrinsic_token1] = ACTIONS(1185), - [aux_sym_object_creation_expression_token1] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [aux_sym__list_destructing_token1] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(1183), - [anon_sym_self] = ACTIONS(1185), - [anon_sym_parent] = ACTIONS(1185), - [aux_sym__argument_name_token1] = ACTIONS(1185), - [aux_sym__argument_name_token2] = ACTIONS(1185), - [anon_sym_POUND_LBRACK] = ACTIONS(1183), - [aux_sym_encapsed_string_token1] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [aux_sym_string_token1] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_LT_LT_LT] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [anon_sym_DOLLAR] = ACTIONS(1183), - [aux_sym_yield_expression_token1] = ACTIONS(1185), - [aux_sym_include_expression_token1] = ACTIONS(1185), - [aux_sym_include_once_expression_token1] = ACTIONS(1185), - [aux_sym_require_expression_token1] = ACTIONS(1185), - [aux_sym_require_once_expression_token1] = ACTIONS(1185), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1187), + [ts_builtin_sym_end] = ACTIONS(1164), + [sym_name] = ACTIONS(1166), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1164), + [aux_sym_function_static_declaration_token1] = ACTIONS(1166), + [aux_sym_global_declaration_token1] = ACTIONS(1166), + [aux_sym_namespace_definition_token1] = ACTIONS(1166), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1166), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1166), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1166), + [anon_sym_BSLASH] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1164), + [aux_sym_trait_declaration_token1] = ACTIONS(1166), + [aux_sym_interface_declaration_token1] = ACTIONS(1166), + [aux_sym_enum_declaration_token1] = ACTIONS(1166), + [aux_sym_enum_case_token1] = ACTIONS(1166), + [aux_sym_class_declaration_token1] = ACTIONS(1166), + [aux_sym_final_modifier_token1] = ACTIONS(1166), + [aux_sym_abstract_modifier_token1] = ACTIONS(1166), + [aux_sym_readonly_modifier_token1] = ACTIONS(1166), + [sym_var_modifier] = ACTIONS(1166), + [aux_sym_visibility_modifier_token1] = ACTIONS(1166), + [aux_sym_visibility_modifier_token2] = ACTIONS(1166), + [aux_sym_visibility_modifier_token3] = ACTIONS(1166), + [aux_sym__arrow_function_header_token1] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1164), + [aux_sym_cast_type_token1] = ACTIONS(1166), + [aux_sym_echo_statement_token1] = ACTIONS(1166), + [aux_sym_exit_statement_token1] = ACTIONS(1166), + [anon_sym_unset] = ACTIONS(1166), + [aux_sym_declare_statement_token1] = ACTIONS(1166), + [aux_sym_declare_statement_token2] = ACTIONS(1166), + [sym_float] = ACTIONS(1166), + [aux_sym_try_statement_token1] = ACTIONS(1166), + [aux_sym_goto_statement_token1] = ACTIONS(1166), + [aux_sym_continue_statement_token1] = ACTIONS(1166), + [aux_sym_break_statement_token1] = ACTIONS(1166), + [sym_integer] = ACTIONS(1166), + [aux_sym_return_statement_token1] = ACTIONS(1166), + [aux_sym_throw_expression_token1] = ACTIONS(1166), + [aux_sym_while_statement_token1] = ACTIONS(1166), + [aux_sym_while_statement_token2] = ACTIONS(1166), + [aux_sym_do_statement_token1] = ACTIONS(1166), + [aux_sym_for_statement_token1] = ACTIONS(1166), + [aux_sym_for_statement_token2] = ACTIONS(1166), + [aux_sym_foreach_statement_token1] = ACTIONS(1166), + [aux_sym_foreach_statement_token2] = ACTIONS(1166), + [aux_sym_if_statement_token1] = ACTIONS(1166), + [aux_sym_if_statement_token2] = ACTIONS(1166), + [aux_sym_else_if_clause_token1] = ACTIONS(1166), + [aux_sym_else_clause_token1] = ACTIONS(1166), + [aux_sym_match_expression_token1] = ACTIONS(1166), + [aux_sym_match_default_expression_token1] = ACTIONS(1166), + [aux_sym_switch_statement_token1] = ACTIONS(1166), + [aux_sym_switch_block_token1] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_AT] = ACTIONS(1164), + [aux_sym_clone_expression_token1] = ACTIONS(1166), + [aux_sym_print_intrinsic_token1] = ACTIONS(1166), + [aux_sym_object_creation_expression_token1] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [aux_sym__list_destructing_token1] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1164), + [anon_sym_self] = ACTIONS(1166), + [anon_sym_parent] = ACTIONS(1166), + [aux_sym__argument_name_token1] = ACTIONS(1166), + [aux_sym__argument_name_token2] = ACTIONS(1166), + [anon_sym_POUND_LBRACK] = ACTIONS(1164), + [aux_sym_encapsed_string_token1] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [aux_sym_string_token1] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_LT_LT_LT] = ACTIONS(1164), + [anon_sym_BQUOTE] = ACTIONS(1164), + [anon_sym_DOLLAR] = ACTIONS(1164), + [aux_sym_yield_expression_token1] = ACTIONS(1166), + [aux_sym_include_expression_token1] = ACTIONS(1166), + [aux_sym_include_once_expression_token1] = ACTIONS(1166), + [aux_sym_require_expression_token1] = ACTIONS(1166), + [aux_sym_require_once_expression_token1] = ACTIONS(1166), + [sym_comment] = ACTIONS(5), }, [463] = { [sym_text_interpolation] = STATE(463), - [ts_builtin_sym_end] = ACTIONS(1189), - [sym_name] = ACTIONS(1191), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1193), - [aux_sym_function_static_declaration_token1] = ACTIONS(1191), - [aux_sym_global_declaration_token1] = ACTIONS(1191), - [aux_sym_namespace_definition_token1] = ACTIONS(1191), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1191), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1191), - [anon_sym_BSLASH] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1189), - [aux_sym_trait_declaration_token1] = ACTIONS(1191), - [aux_sym_interface_declaration_token1] = ACTIONS(1191), - [aux_sym_enum_declaration_token1] = ACTIONS(1191), - [aux_sym_enum_case_token1] = ACTIONS(1191), - [aux_sym_class_declaration_token1] = ACTIONS(1191), - [aux_sym_final_modifier_token1] = ACTIONS(1191), - [aux_sym_abstract_modifier_token1] = ACTIONS(1191), - [aux_sym_readonly_modifier_token1] = ACTIONS(1191), - [aux_sym_visibility_modifier_token1] = ACTIONS(1191), - [aux_sym_visibility_modifier_token2] = ACTIONS(1191), - [aux_sym_visibility_modifier_token3] = ACTIONS(1191), - [aux_sym__arrow_function_header_token1] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1189), - [aux_sym_cast_type_token1] = ACTIONS(1191), - [aux_sym_echo_statement_token1] = ACTIONS(1191), - [aux_sym_exit_statement_token1] = ACTIONS(1191), - [anon_sym_unset] = ACTIONS(1191), - [aux_sym_declare_statement_token1] = ACTIONS(1191), - [aux_sym_declare_statement_token2] = ACTIONS(1191), - [sym_float] = ACTIONS(1191), - [aux_sym_try_statement_token1] = ACTIONS(1191), - [aux_sym_goto_statement_token1] = ACTIONS(1191), - [aux_sym_continue_statement_token1] = ACTIONS(1191), - [aux_sym_break_statement_token1] = ACTIONS(1191), - [sym_integer] = ACTIONS(1191), - [aux_sym_return_statement_token1] = ACTIONS(1191), - [aux_sym_throw_expression_token1] = ACTIONS(1191), - [aux_sym_while_statement_token1] = ACTIONS(1191), - [aux_sym_while_statement_token2] = ACTIONS(1191), - [aux_sym_do_statement_token1] = ACTIONS(1191), - [aux_sym_for_statement_token1] = ACTIONS(1191), - [aux_sym_for_statement_token2] = ACTIONS(1191), - [aux_sym_foreach_statement_token1] = ACTIONS(1191), - [aux_sym_foreach_statement_token2] = ACTIONS(1191), - [aux_sym_if_statement_token1] = ACTIONS(1191), - [aux_sym_if_statement_token2] = ACTIONS(1191), - [aux_sym_else_if_clause_token1] = ACTIONS(1191), - [aux_sym_else_clause_token1] = ACTIONS(1191), - [aux_sym_match_expression_token1] = ACTIONS(1191), - [aux_sym_match_default_expression_token1] = ACTIONS(1191), - [aux_sym_switch_statement_token1] = ACTIONS(1191), - [aux_sym_switch_block_token1] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1191), - [anon_sym_DASH] = ACTIONS(1191), - [anon_sym_TILDE] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(1189), - [anon_sym_AT] = ACTIONS(1189), - [aux_sym_clone_expression_token1] = ACTIONS(1191), - [aux_sym_print_intrinsic_token1] = ACTIONS(1191), - [aux_sym_object_creation_expression_token1] = ACTIONS(1191), - [anon_sym_DASH_DASH] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(1189), - [aux_sym__list_destructing_token1] = ACTIONS(1191), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_self] = ACTIONS(1191), - [anon_sym_parent] = ACTIONS(1191), - [aux_sym__argument_name_token1] = ACTIONS(1191), - [aux_sym__argument_name_token2] = ACTIONS(1191), - [anon_sym_POUND_LBRACK] = ACTIONS(1189), - [aux_sym_encapsed_string_token1] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [aux_sym_string_token1] = ACTIONS(1189), - [anon_sym_SQUOTE] = ACTIONS(1189), - [anon_sym_LT_LT_LT] = ACTIONS(1189), - [anon_sym_BQUOTE] = ACTIONS(1189), - [anon_sym_DOLLAR] = ACTIONS(1189), - [aux_sym_yield_expression_token1] = ACTIONS(1191), - [aux_sym_include_expression_token1] = ACTIONS(1191), - [aux_sym_include_once_expression_token1] = ACTIONS(1191), - [aux_sym_require_expression_token1] = ACTIONS(1191), - [aux_sym_require_once_expression_token1] = ACTIONS(1191), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1193), + [ts_builtin_sym_end] = ACTIONS(1040), + [sym_name] = ACTIONS(1042), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1040), + [aux_sym_function_static_declaration_token1] = ACTIONS(1042), + [aux_sym_global_declaration_token1] = ACTIONS(1042), + [aux_sym_namespace_definition_token1] = ACTIONS(1042), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1042), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1042), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1042), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [aux_sym_trait_declaration_token1] = ACTIONS(1042), + [aux_sym_interface_declaration_token1] = ACTIONS(1042), + [aux_sym_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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1040), + [anon_sym_BANG] = ACTIONS(1040), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1040), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [aux_sym__list_destructing_token1] = ACTIONS(1042), + [anon_sym_LBRACK] = ACTIONS(1040), + [anon_sym_self] = ACTIONS(1042), + [anon_sym_parent] = ACTIONS(1042), + [aux_sym__argument_name_token1] = ACTIONS(1042), + [aux_sym__argument_name_token2] = ACTIONS(1042), + [anon_sym_POUND_LBRACK] = ACTIONS(1040), + [aux_sym_encapsed_string_token1] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [aux_sym_string_token1] = ACTIONS(1040), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_LT_LT_LT] = ACTIONS(1040), + [anon_sym_BQUOTE] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1040), + [aux_sym_yield_expression_token1] = ACTIONS(1042), + [aux_sym_include_expression_token1] = ACTIONS(1042), + [aux_sym_include_once_expression_token1] = ACTIONS(1042), + [aux_sym_require_expression_token1] = ACTIONS(1042), + [aux_sym_require_once_expression_token1] = ACTIONS(1042), + [sym_comment] = ACTIONS(5), }, [464] = { [sym_text_interpolation] = STATE(464), - [ts_builtin_sym_end] = ACTIONS(1036), - [sym_name] = ACTIONS(1038), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1036), - [aux_sym_function_static_declaration_token1] = ACTIONS(1038), - [aux_sym_global_declaration_token1] = ACTIONS(1038), - [aux_sym_namespace_definition_token1] = ACTIONS(1038), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1038), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1038), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1038), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1036), - [anon_sym_RBRACE] = ACTIONS(1036), - [aux_sym_trait_declaration_token1] = ACTIONS(1038), - [aux_sym_interface_declaration_token1] = ACTIONS(1038), - [aux_sym_enum_declaration_token1] = ACTIONS(1038), - [aux_sym_enum_case_token1] = ACTIONS(1038), - [aux_sym_class_declaration_token1] = ACTIONS(1038), - [aux_sym_final_modifier_token1] = ACTIONS(1038), - [aux_sym_abstract_modifier_token1] = ACTIONS(1038), - [aux_sym_readonly_modifier_token1] = ACTIONS(1038), - [sym_var_modifier] = ACTIONS(1038), - [aux_sym_visibility_modifier_token1] = ACTIONS(1038), - [aux_sym_visibility_modifier_token2] = ACTIONS(1038), - [aux_sym_visibility_modifier_token3] = ACTIONS(1038), - [aux_sym__arrow_function_header_token1] = ACTIONS(1038), - [anon_sym_LPAREN] = ACTIONS(1036), - [aux_sym_cast_type_token1] = ACTIONS(1038), - [aux_sym_echo_statement_token1] = ACTIONS(1038), - [aux_sym_exit_statement_token1] = ACTIONS(1038), - [anon_sym_unset] = ACTIONS(1038), - [aux_sym_declare_statement_token1] = ACTIONS(1038), - [aux_sym_declare_statement_token2] = ACTIONS(1038), - [sym_float] = ACTIONS(1038), - [aux_sym_try_statement_token1] = ACTIONS(1038), - [aux_sym_goto_statement_token1] = ACTIONS(1038), - [aux_sym_continue_statement_token1] = ACTIONS(1038), - [aux_sym_break_statement_token1] = ACTIONS(1038), - [sym_integer] = ACTIONS(1038), - [aux_sym_return_statement_token1] = ACTIONS(1038), - [aux_sym_throw_expression_token1] = ACTIONS(1038), - [aux_sym_while_statement_token1] = ACTIONS(1038), - [aux_sym_while_statement_token2] = ACTIONS(1038), - [aux_sym_do_statement_token1] = ACTIONS(1038), - [aux_sym_for_statement_token1] = ACTIONS(1038), - [aux_sym_for_statement_token2] = ACTIONS(1038), - [aux_sym_foreach_statement_token1] = ACTIONS(1038), - [aux_sym_foreach_statement_token2] = ACTIONS(1038), - [aux_sym_if_statement_token1] = ACTIONS(1038), - [aux_sym_if_statement_token2] = ACTIONS(1038), - [aux_sym_else_if_clause_token1] = ACTIONS(1038), - [aux_sym_else_clause_token1] = ACTIONS(1038), - [aux_sym_match_expression_token1] = ACTIONS(1038), - [aux_sym_match_default_expression_token1] = ACTIONS(1038), - [aux_sym_switch_statement_token1] = ACTIONS(1038), - [aux_sym_switch_block_token1] = ACTIONS(1038), - [anon_sym_PLUS] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1036), - [anon_sym_AT] = ACTIONS(1036), - [aux_sym_clone_expression_token1] = ACTIONS(1038), - [aux_sym_print_intrinsic_token1] = ACTIONS(1038), - [aux_sym_object_creation_expression_token1] = ACTIONS(1038), - [anon_sym_DASH_DASH] = ACTIONS(1036), - [anon_sym_PLUS_PLUS] = ACTIONS(1036), - [aux_sym__list_destructing_token1] = ACTIONS(1038), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_self] = ACTIONS(1038), - [anon_sym_parent] = ACTIONS(1038), - [aux_sym__argument_name_token1] = ACTIONS(1038), - [aux_sym__argument_name_token2] = ACTIONS(1038), - [anon_sym_POUND_LBRACK] = ACTIONS(1036), - [aux_sym_encapsed_string_token1] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [aux_sym_string_token1] = ACTIONS(1036), - [anon_sym_SQUOTE] = ACTIONS(1036), - [anon_sym_LT_LT_LT] = ACTIONS(1036), - [anon_sym_BQUOTE] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [aux_sym_yield_expression_token1] = ACTIONS(1038), - [aux_sym_include_expression_token1] = ACTIONS(1038), - [aux_sym_include_once_expression_token1] = ACTIONS(1038), - [aux_sym_require_expression_token1] = ACTIONS(1038), - [aux_sym_require_once_expression_token1] = ACTIONS(1038), + [ts_builtin_sym_end] = ACTIONS(1168), + [sym_name] = ACTIONS(1170), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1168), + [aux_sym_function_static_declaration_token1] = ACTIONS(1170), + [aux_sym_global_declaration_token1] = ACTIONS(1170), + [aux_sym_namespace_definition_token1] = ACTIONS(1170), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1170), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1170), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1170), + [anon_sym_BSLASH] = ACTIONS(1168), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_RBRACE] = ACTIONS(1168), + [aux_sym_trait_declaration_token1] = ACTIONS(1170), + [aux_sym_interface_declaration_token1] = ACTIONS(1170), + [aux_sym_enum_declaration_token1] = ACTIONS(1170), + [aux_sym_enum_case_token1] = ACTIONS(1170), + [aux_sym_class_declaration_token1] = ACTIONS(1170), + [aux_sym_final_modifier_token1] = ACTIONS(1170), + [aux_sym_abstract_modifier_token1] = ACTIONS(1170), + [aux_sym_readonly_modifier_token1] = ACTIONS(1170), + [sym_var_modifier] = ACTIONS(1170), + [aux_sym_visibility_modifier_token1] = ACTIONS(1170), + [aux_sym_visibility_modifier_token2] = ACTIONS(1170), + [aux_sym_visibility_modifier_token3] = ACTIONS(1170), + [aux_sym__arrow_function_header_token1] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1168), + [aux_sym_cast_type_token1] = ACTIONS(1170), + [aux_sym_echo_statement_token1] = ACTIONS(1170), + [aux_sym_exit_statement_token1] = ACTIONS(1170), + [anon_sym_unset] = ACTIONS(1170), + [aux_sym_declare_statement_token1] = ACTIONS(1170), + [aux_sym_declare_statement_token2] = ACTIONS(1170), + [sym_float] = ACTIONS(1170), + [aux_sym_try_statement_token1] = ACTIONS(1170), + [aux_sym_goto_statement_token1] = ACTIONS(1170), + [aux_sym_continue_statement_token1] = ACTIONS(1170), + [aux_sym_break_statement_token1] = ACTIONS(1170), + [sym_integer] = ACTIONS(1170), + [aux_sym_return_statement_token1] = ACTIONS(1170), + [aux_sym_throw_expression_token1] = ACTIONS(1170), + [aux_sym_while_statement_token1] = ACTIONS(1170), + [aux_sym_while_statement_token2] = ACTIONS(1170), + [aux_sym_do_statement_token1] = ACTIONS(1170), + [aux_sym_for_statement_token1] = ACTIONS(1170), + [aux_sym_for_statement_token2] = ACTIONS(1170), + [aux_sym_foreach_statement_token1] = ACTIONS(1170), + [aux_sym_foreach_statement_token2] = ACTIONS(1170), + [aux_sym_if_statement_token1] = ACTIONS(1170), + [aux_sym_if_statement_token2] = ACTIONS(1170), + [aux_sym_else_if_clause_token1] = ACTIONS(1170), + [aux_sym_else_clause_token1] = ACTIONS(1170), + [aux_sym_match_expression_token1] = ACTIONS(1170), + [aux_sym_match_default_expression_token1] = ACTIONS(1170), + [aux_sym_switch_statement_token1] = ACTIONS(1170), + [aux_sym_switch_block_token1] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_TILDE] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_AT] = ACTIONS(1168), + [aux_sym_clone_expression_token1] = ACTIONS(1170), + [aux_sym_print_intrinsic_token1] = ACTIONS(1170), + [aux_sym_object_creation_expression_token1] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [aux_sym__list_destructing_token1] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_self] = ACTIONS(1170), + [anon_sym_parent] = ACTIONS(1170), + [aux_sym__argument_name_token1] = ACTIONS(1170), + [aux_sym__argument_name_token2] = ACTIONS(1170), + [anon_sym_POUND_LBRACK] = ACTIONS(1168), + [aux_sym_encapsed_string_token1] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1168), + [aux_sym_string_token1] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_LT_LT_LT] = ACTIONS(1168), + [anon_sym_BQUOTE] = ACTIONS(1168), + [anon_sym_DOLLAR] = ACTIONS(1168), + [aux_sym_yield_expression_token1] = ACTIONS(1170), + [aux_sym_include_expression_token1] = ACTIONS(1170), + [aux_sym_include_once_expression_token1] = ACTIONS(1170), + [aux_sym_require_expression_token1] = ACTIONS(1170), + [aux_sym_require_once_expression_token1] = ACTIONS(1170), [sym_comment] = ACTIONS(5), }, [465] = { [sym_text_interpolation] = STATE(465), - [ts_builtin_sym_end] = ACTIONS(1195), - [sym_name] = ACTIONS(1197), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1195), - [aux_sym_function_static_declaration_token1] = ACTIONS(1197), - [aux_sym_global_declaration_token1] = ACTIONS(1197), - [aux_sym_namespace_definition_token1] = ACTIONS(1197), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1197), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1197), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1197), - [anon_sym_BSLASH] = ACTIONS(1195), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_RBRACE] = ACTIONS(1195), - [aux_sym_trait_declaration_token1] = ACTIONS(1197), - [aux_sym_interface_declaration_token1] = ACTIONS(1197), - [aux_sym_enum_declaration_token1] = ACTIONS(1197), - [aux_sym_enum_case_token1] = ACTIONS(1197), - [aux_sym_class_declaration_token1] = ACTIONS(1197), - [aux_sym_final_modifier_token1] = ACTIONS(1197), - [aux_sym_abstract_modifier_token1] = ACTIONS(1197), - [aux_sym_readonly_modifier_token1] = ACTIONS(1197), - [aux_sym_visibility_modifier_token1] = ACTIONS(1197), - [aux_sym_visibility_modifier_token2] = ACTIONS(1197), - [aux_sym_visibility_modifier_token3] = ACTIONS(1197), - [aux_sym__arrow_function_header_token1] = ACTIONS(1197), - [anon_sym_LPAREN] = ACTIONS(1195), - [aux_sym_cast_type_token1] = ACTIONS(1197), - [aux_sym_echo_statement_token1] = ACTIONS(1197), - [aux_sym_exit_statement_token1] = ACTIONS(1197), - [anon_sym_unset] = ACTIONS(1197), - [aux_sym_declare_statement_token1] = ACTIONS(1197), - [aux_sym_declare_statement_token2] = ACTIONS(1197), - [sym_float] = ACTIONS(1197), - [aux_sym_try_statement_token1] = ACTIONS(1197), - [aux_sym_goto_statement_token1] = ACTIONS(1197), - [aux_sym_continue_statement_token1] = ACTIONS(1197), - [aux_sym_break_statement_token1] = ACTIONS(1197), - [sym_integer] = ACTIONS(1197), - [aux_sym_return_statement_token1] = ACTIONS(1197), - [aux_sym_throw_expression_token1] = ACTIONS(1197), - [aux_sym_while_statement_token1] = ACTIONS(1197), - [aux_sym_while_statement_token2] = ACTIONS(1197), - [aux_sym_do_statement_token1] = ACTIONS(1197), - [aux_sym_for_statement_token1] = ACTIONS(1197), - [aux_sym_for_statement_token2] = ACTIONS(1197), - [aux_sym_foreach_statement_token1] = ACTIONS(1197), - [aux_sym_foreach_statement_token2] = ACTIONS(1197), - [aux_sym_if_statement_token1] = ACTIONS(1197), - [aux_sym_if_statement_token2] = ACTIONS(1197), - [aux_sym_else_if_clause_token1] = ACTIONS(1197), - [aux_sym_else_clause_token1] = ACTIONS(1197), - [aux_sym_match_expression_token1] = ACTIONS(1197), - [aux_sym_match_default_expression_token1] = ACTIONS(1197), - [aux_sym_switch_statement_token1] = ACTIONS(1197), - [aux_sym_switch_block_token1] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_AT] = ACTIONS(1195), - [aux_sym_clone_expression_token1] = ACTIONS(1197), - [aux_sym_print_intrinsic_token1] = ACTIONS(1197), - [aux_sym_object_creation_expression_token1] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [aux_sym__list_destructing_token1] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1195), - [anon_sym_self] = ACTIONS(1197), - [anon_sym_parent] = ACTIONS(1197), - [aux_sym__argument_name_token1] = ACTIONS(1197), - [aux_sym__argument_name_token2] = ACTIONS(1197), - [anon_sym_POUND_LBRACK] = ACTIONS(1195), - [aux_sym_encapsed_string_token1] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [aux_sym_string_token1] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_LT_LT_LT] = ACTIONS(1195), - [anon_sym_BQUOTE] = ACTIONS(1195), - [anon_sym_DOLLAR] = ACTIONS(1195), - [aux_sym_yield_expression_token1] = ACTIONS(1197), - [aux_sym_include_expression_token1] = ACTIONS(1197), - [aux_sym_include_once_expression_token1] = ACTIONS(1197), - [aux_sym_require_expression_token1] = ACTIONS(1197), - [aux_sym_require_once_expression_token1] = ACTIONS(1197), + [ts_builtin_sym_end] = ACTIONS(1172), + [sym_name] = ACTIONS(1174), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1172), + [aux_sym_function_static_declaration_token1] = ACTIONS(1174), + [aux_sym_global_declaration_token1] = ACTIONS(1174), + [aux_sym_namespace_definition_token1] = ACTIONS(1174), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1174), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1174), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1174), + [anon_sym_BSLASH] = ACTIONS(1172), + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_RBRACE] = ACTIONS(1172), + [aux_sym_trait_declaration_token1] = ACTIONS(1174), + [aux_sym_interface_declaration_token1] = ACTIONS(1174), + [aux_sym_enum_declaration_token1] = ACTIONS(1174), + [aux_sym_enum_case_token1] = ACTIONS(1174), + [aux_sym_class_declaration_token1] = ACTIONS(1174), + [aux_sym_final_modifier_token1] = ACTIONS(1174), + [aux_sym_abstract_modifier_token1] = ACTIONS(1174), + [aux_sym_readonly_modifier_token1] = ACTIONS(1174), + [sym_var_modifier] = ACTIONS(1174), + [aux_sym_visibility_modifier_token1] = ACTIONS(1174), + [aux_sym_visibility_modifier_token2] = ACTIONS(1174), + [aux_sym_visibility_modifier_token3] = ACTIONS(1174), + [aux_sym__arrow_function_header_token1] = ACTIONS(1174), + [anon_sym_LPAREN] = ACTIONS(1172), + [aux_sym_cast_type_token1] = ACTIONS(1174), + [aux_sym_echo_statement_token1] = ACTIONS(1174), + [aux_sym_exit_statement_token1] = ACTIONS(1174), + [anon_sym_unset] = ACTIONS(1174), + [aux_sym_declare_statement_token1] = ACTIONS(1174), + [aux_sym_declare_statement_token2] = ACTIONS(1174), + [sym_float] = ACTIONS(1174), + [aux_sym_try_statement_token1] = ACTIONS(1174), + [aux_sym_goto_statement_token1] = ACTIONS(1174), + [aux_sym_continue_statement_token1] = ACTIONS(1174), + [aux_sym_break_statement_token1] = ACTIONS(1174), + [sym_integer] = ACTIONS(1174), + [aux_sym_return_statement_token1] = ACTIONS(1174), + [aux_sym_throw_expression_token1] = ACTIONS(1174), + [aux_sym_while_statement_token1] = ACTIONS(1174), + [aux_sym_while_statement_token2] = ACTIONS(1174), + [aux_sym_do_statement_token1] = ACTIONS(1174), + [aux_sym_for_statement_token1] = ACTIONS(1174), + [aux_sym_for_statement_token2] = ACTIONS(1174), + [aux_sym_foreach_statement_token1] = ACTIONS(1174), + [aux_sym_foreach_statement_token2] = ACTIONS(1174), + [aux_sym_if_statement_token1] = ACTIONS(1174), + [aux_sym_if_statement_token2] = ACTIONS(1174), + [aux_sym_else_if_clause_token1] = ACTIONS(1174), + [aux_sym_else_clause_token1] = ACTIONS(1174), + [aux_sym_match_expression_token1] = ACTIONS(1174), + [aux_sym_match_default_expression_token1] = ACTIONS(1174), + [aux_sym_switch_statement_token1] = ACTIONS(1174), + [aux_sym_switch_block_token1] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1174), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_TILDE] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_AT] = ACTIONS(1172), + [aux_sym_clone_expression_token1] = ACTIONS(1174), + [aux_sym_print_intrinsic_token1] = ACTIONS(1174), + [aux_sym_object_creation_expression_token1] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [aux_sym__list_destructing_token1] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_self] = ACTIONS(1174), + [anon_sym_parent] = ACTIONS(1174), + [aux_sym__argument_name_token1] = ACTIONS(1174), + [aux_sym__argument_name_token2] = ACTIONS(1174), + [anon_sym_POUND_LBRACK] = ACTIONS(1172), + [aux_sym_encapsed_string_token1] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1172), + [aux_sym_string_token1] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_LT_LT_LT] = ACTIONS(1172), + [anon_sym_BQUOTE] = ACTIONS(1172), + [anon_sym_DOLLAR] = ACTIONS(1172), + [aux_sym_yield_expression_token1] = ACTIONS(1174), + [aux_sym_include_expression_token1] = ACTIONS(1174), + [aux_sym_include_once_expression_token1] = ACTIONS(1174), + [aux_sym_require_expression_token1] = ACTIONS(1174), + [aux_sym_require_once_expression_token1] = ACTIONS(1174), [sym_comment] = ACTIONS(5), }, [466] = { [sym_text_interpolation] = STATE(466), - [ts_builtin_sym_end] = ACTIONS(1199), - [sym_name] = ACTIONS(1201), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1199), - [aux_sym_function_static_declaration_token1] = ACTIONS(1201), - [aux_sym_global_declaration_token1] = ACTIONS(1201), - [aux_sym_namespace_definition_token1] = ACTIONS(1201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1201), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1201), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1201), - [anon_sym_BSLASH] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_RBRACE] = ACTIONS(1199), - [aux_sym_trait_declaration_token1] = ACTIONS(1201), - [aux_sym_interface_declaration_token1] = ACTIONS(1201), - [aux_sym_enum_declaration_token1] = ACTIONS(1201), - [aux_sym_enum_case_token1] = ACTIONS(1201), - [aux_sym_class_declaration_token1] = ACTIONS(1201), - [aux_sym_final_modifier_token1] = ACTIONS(1201), - [aux_sym_abstract_modifier_token1] = ACTIONS(1201), - [aux_sym_readonly_modifier_token1] = ACTIONS(1201), - [aux_sym_visibility_modifier_token1] = ACTIONS(1201), - [aux_sym_visibility_modifier_token2] = ACTIONS(1201), - [aux_sym_visibility_modifier_token3] = ACTIONS(1201), - [aux_sym__arrow_function_header_token1] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1199), - [aux_sym_cast_type_token1] = ACTIONS(1201), - [aux_sym_echo_statement_token1] = ACTIONS(1201), - [aux_sym_exit_statement_token1] = ACTIONS(1201), - [anon_sym_unset] = ACTIONS(1201), - [aux_sym_declare_statement_token1] = ACTIONS(1201), - [aux_sym_declare_statement_token2] = ACTIONS(1201), - [sym_float] = ACTIONS(1201), - [aux_sym_try_statement_token1] = ACTIONS(1201), - [aux_sym_goto_statement_token1] = ACTIONS(1201), - [aux_sym_continue_statement_token1] = ACTIONS(1201), - [aux_sym_break_statement_token1] = ACTIONS(1201), - [sym_integer] = ACTIONS(1201), - [aux_sym_return_statement_token1] = ACTIONS(1201), - [aux_sym_throw_expression_token1] = ACTIONS(1201), - [aux_sym_while_statement_token1] = ACTIONS(1201), - [aux_sym_while_statement_token2] = ACTIONS(1201), - [aux_sym_do_statement_token1] = ACTIONS(1201), - [aux_sym_for_statement_token1] = ACTIONS(1201), - [aux_sym_for_statement_token2] = ACTIONS(1201), - [aux_sym_foreach_statement_token1] = ACTIONS(1201), - [aux_sym_foreach_statement_token2] = ACTIONS(1201), - [aux_sym_if_statement_token1] = ACTIONS(1201), - [aux_sym_if_statement_token2] = ACTIONS(1201), - [aux_sym_else_if_clause_token1] = ACTIONS(1201), - [aux_sym_else_clause_token1] = ACTIONS(1201), - [aux_sym_match_expression_token1] = ACTIONS(1201), - [aux_sym_match_default_expression_token1] = ACTIONS(1201), - [aux_sym_switch_statement_token1] = ACTIONS(1201), - [aux_sym_switch_block_token1] = ACTIONS(1201), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_AT] = ACTIONS(1199), - [aux_sym_clone_expression_token1] = ACTIONS(1201), - [aux_sym_print_intrinsic_token1] = ACTIONS(1201), - [aux_sym_object_creation_expression_token1] = ACTIONS(1201), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [aux_sym__list_destructing_token1] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(1199), - [anon_sym_self] = ACTIONS(1201), - [anon_sym_parent] = ACTIONS(1201), - [aux_sym__argument_name_token1] = ACTIONS(1201), - [aux_sym__argument_name_token2] = ACTIONS(1201), - [anon_sym_POUND_LBRACK] = ACTIONS(1199), - [aux_sym_encapsed_string_token1] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1199), - [aux_sym_string_token1] = ACTIONS(1199), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_LT_LT_LT] = ACTIONS(1199), - [anon_sym_BQUOTE] = ACTIONS(1199), - [anon_sym_DOLLAR] = ACTIONS(1199), - [aux_sym_yield_expression_token1] = ACTIONS(1201), - [aux_sym_include_expression_token1] = ACTIONS(1201), - [aux_sym_include_once_expression_token1] = ACTIONS(1201), - [aux_sym_require_expression_token1] = ACTIONS(1201), - [aux_sym_require_once_expression_token1] = ACTIONS(1201), + [ts_builtin_sym_end] = ACTIONS(1176), + [sym_name] = ACTIONS(1178), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1176), + [aux_sym_function_static_declaration_token1] = ACTIONS(1178), + [aux_sym_global_declaration_token1] = ACTIONS(1178), + [aux_sym_namespace_definition_token1] = ACTIONS(1178), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1178), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1178), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1178), + [anon_sym_BSLASH] = ACTIONS(1176), + [anon_sym_LBRACE] = ACTIONS(1176), + [anon_sym_RBRACE] = ACTIONS(1176), + [aux_sym_trait_declaration_token1] = ACTIONS(1178), + [aux_sym_interface_declaration_token1] = ACTIONS(1178), + [aux_sym_enum_declaration_token1] = ACTIONS(1178), + [aux_sym_enum_case_token1] = ACTIONS(1178), + [aux_sym_class_declaration_token1] = ACTIONS(1178), + [aux_sym_final_modifier_token1] = ACTIONS(1178), + [aux_sym_abstract_modifier_token1] = ACTIONS(1178), + [aux_sym_readonly_modifier_token1] = ACTIONS(1178), + [sym_var_modifier] = ACTIONS(1178), + [aux_sym_visibility_modifier_token1] = ACTIONS(1178), + [aux_sym_visibility_modifier_token2] = ACTIONS(1178), + [aux_sym_visibility_modifier_token3] = ACTIONS(1178), + [aux_sym__arrow_function_header_token1] = ACTIONS(1178), + [anon_sym_LPAREN] = ACTIONS(1176), + [aux_sym_cast_type_token1] = ACTIONS(1178), + [aux_sym_echo_statement_token1] = ACTIONS(1178), + [aux_sym_exit_statement_token1] = ACTIONS(1178), + [anon_sym_unset] = ACTIONS(1178), + [aux_sym_declare_statement_token1] = ACTIONS(1178), + [aux_sym_declare_statement_token2] = ACTIONS(1178), + [sym_float] = ACTIONS(1178), + [aux_sym_try_statement_token1] = ACTIONS(1178), + [aux_sym_goto_statement_token1] = ACTIONS(1178), + [aux_sym_continue_statement_token1] = ACTIONS(1178), + [aux_sym_break_statement_token1] = ACTIONS(1178), + [sym_integer] = ACTIONS(1178), + [aux_sym_return_statement_token1] = ACTIONS(1178), + [aux_sym_throw_expression_token1] = ACTIONS(1178), + [aux_sym_while_statement_token1] = ACTIONS(1178), + [aux_sym_while_statement_token2] = ACTIONS(1178), + [aux_sym_do_statement_token1] = ACTIONS(1178), + [aux_sym_for_statement_token1] = ACTIONS(1178), + [aux_sym_for_statement_token2] = ACTIONS(1178), + [aux_sym_foreach_statement_token1] = ACTIONS(1178), + [aux_sym_foreach_statement_token2] = ACTIONS(1178), + [aux_sym_if_statement_token1] = ACTIONS(1178), + [aux_sym_if_statement_token2] = ACTIONS(1178), + [aux_sym_else_if_clause_token1] = ACTIONS(1178), + [aux_sym_else_clause_token1] = ACTIONS(1178), + [aux_sym_match_expression_token1] = ACTIONS(1178), + [aux_sym_match_default_expression_token1] = ACTIONS(1178), + [aux_sym_switch_statement_token1] = ACTIONS(1178), + [aux_sym_switch_block_token1] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_TILDE] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(1176), + [aux_sym_clone_expression_token1] = ACTIONS(1178), + [aux_sym_print_intrinsic_token1] = ACTIONS(1178), + [aux_sym_object_creation_expression_token1] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1176), + [aux_sym__list_destructing_token1] = ACTIONS(1178), + [anon_sym_LBRACK] = ACTIONS(1176), + [anon_sym_self] = ACTIONS(1178), + [anon_sym_parent] = ACTIONS(1178), + [aux_sym__argument_name_token1] = ACTIONS(1178), + [aux_sym__argument_name_token2] = ACTIONS(1178), + [anon_sym_POUND_LBRACK] = ACTIONS(1176), + [aux_sym_encapsed_string_token1] = ACTIONS(1176), + [anon_sym_DQUOTE] = ACTIONS(1176), + [aux_sym_string_token1] = ACTIONS(1176), + [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_LT_LT_LT] = ACTIONS(1176), + [anon_sym_BQUOTE] = ACTIONS(1176), + [anon_sym_DOLLAR] = ACTIONS(1176), + [aux_sym_yield_expression_token1] = ACTIONS(1178), + [aux_sym_include_expression_token1] = ACTIONS(1178), + [aux_sym_include_once_expression_token1] = ACTIONS(1178), + [aux_sym_require_expression_token1] = ACTIONS(1178), + [aux_sym_require_once_expression_token1] = ACTIONS(1178), [sym_comment] = ACTIONS(5), }, [467] = { [sym_text_interpolation] = STATE(467), - [ts_builtin_sym_end] = ACTIONS(1203), - [sym_name] = ACTIONS(1205), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1203), - [aux_sym_function_static_declaration_token1] = ACTIONS(1205), - [aux_sym_global_declaration_token1] = ACTIONS(1205), - [aux_sym_namespace_definition_token1] = ACTIONS(1205), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1205), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1205), - [anon_sym_BSLASH] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1203), - [anon_sym_RBRACE] = ACTIONS(1203), - [aux_sym_trait_declaration_token1] = ACTIONS(1205), - [aux_sym_interface_declaration_token1] = ACTIONS(1205), - [aux_sym_enum_declaration_token1] = ACTIONS(1205), - [aux_sym_enum_case_token1] = ACTIONS(1205), - [aux_sym_class_declaration_token1] = ACTIONS(1205), - [aux_sym_final_modifier_token1] = ACTIONS(1205), - [aux_sym_abstract_modifier_token1] = ACTIONS(1205), - [aux_sym_readonly_modifier_token1] = ACTIONS(1205), - [aux_sym_visibility_modifier_token1] = ACTIONS(1205), - [aux_sym_visibility_modifier_token2] = ACTIONS(1205), - [aux_sym_visibility_modifier_token3] = ACTIONS(1205), - [aux_sym__arrow_function_header_token1] = ACTIONS(1205), - [anon_sym_LPAREN] = ACTIONS(1203), - [aux_sym_cast_type_token1] = ACTIONS(1205), - [aux_sym_echo_statement_token1] = ACTIONS(1205), - [aux_sym_exit_statement_token1] = ACTIONS(1205), - [anon_sym_unset] = ACTIONS(1205), - [aux_sym_declare_statement_token1] = ACTIONS(1205), - [aux_sym_declare_statement_token2] = ACTIONS(1205), - [sym_float] = ACTIONS(1205), - [aux_sym_try_statement_token1] = ACTIONS(1205), - [aux_sym_goto_statement_token1] = ACTIONS(1205), - [aux_sym_continue_statement_token1] = ACTIONS(1205), - [aux_sym_break_statement_token1] = ACTIONS(1205), - [sym_integer] = ACTIONS(1205), - [aux_sym_return_statement_token1] = ACTIONS(1205), - [aux_sym_throw_expression_token1] = ACTIONS(1205), - [aux_sym_while_statement_token1] = ACTIONS(1205), - [aux_sym_while_statement_token2] = ACTIONS(1205), - [aux_sym_do_statement_token1] = ACTIONS(1205), - [aux_sym_for_statement_token1] = ACTIONS(1205), - [aux_sym_for_statement_token2] = ACTIONS(1205), - [aux_sym_foreach_statement_token1] = ACTIONS(1205), - [aux_sym_foreach_statement_token2] = ACTIONS(1205), - [aux_sym_if_statement_token1] = ACTIONS(1205), - [aux_sym_if_statement_token2] = ACTIONS(1205), - [aux_sym_else_if_clause_token1] = ACTIONS(1205), - [aux_sym_else_clause_token1] = ACTIONS(1205), - [aux_sym_match_expression_token1] = ACTIONS(1205), - [aux_sym_match_default_expression_token1] = ACTIONS(1205), - [aux_sym_switch_statement_token1] = ACTIONS(1205), - [aux_sym_switch_block_token1] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_TILDE] = ACTIONS(1203), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_AT] = ACTIONS(1203), - [aux_sym_clone_expression_token1] = ACTIONS(1205), - [aux_sym_print_intrinsic_token1] = ACTIONS(1205), - [aux_sym_object_creation_expression_token1] = ACTIONS(1205), - [anon_sym_DASH_DASH] = ACTIONS(1203), - [anon_sym_PLUS_PLUS] = ACTIONS(1203), - [aux_sym__list_destructing_token1] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(1203), - [anon_sym_self] = ACTIONS(1205), - [anon_sym_parent] = ACTIONS(1205), - [aux_sym__argument_name_token1] = ACTIONS(1205), - [aux_sym__argument_name_token2] = ACTIONS(1205), - [anon_sym_POUND_LBRACK] = ACTIONS(1203), - [aux_sym_encapsed_string_token1] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1203), - [aux_sym_string_token1] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1203), - [anon_sym_LT_LT_LT] = ACTIONS(1203), - [anon_sym_BQUOTE] = ACTIONS(1203), - [anon_sym_DOLLAR] = ACTIONS(1203), - [aux_sym_yield_expression_token1] = ACTIONS(1205), - [aux_sym_include_expression_token1] = ACTIONS(1205), - [aux_sym_include_once_expression_token1] = ACTIONS(1205), - [aux_sym_require_expression_token1] = ACTIONS(1205), - [aux_sym_require_once_expression_token1] = ACTIONS(1205), + [ts_builtin_sym_end] = ACTIONS(1180), + [sym_name] = ACTIONS(1182), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1180), + [aux_sym_function_static_declaration_token1] = ACTIONS(1182), + [aux_sym_global_declaration_token1] = ACTIONS(1182), + [aux_sym_namespace_definition_token1] = ACTIONS(1182), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1182), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1182), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1182), + [anon_sym_BSLASH] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_RBRACE] = ACTIONS(1180), + [aux_sym_trait_declaration_token1] = ACTIONS(1182), + [aux_sym_interface_declaration_token1] = ACTIONS(1182), + [aux_sym_enum_declaration_token1] = ACTIONS(1182), + [aux_sym_enum_case_token1] = ACTIONS(1182), + [aux_sym_class_declaration_token1] = ACTIONS(1182), + [aux_sym_final_modifier_token1] = ACTIONS(1182), + [aux_sym_abstract_modifier_token1] = ACTIONS(1182), + [aux_sym_readonly_modifier_token1] = ACTIONS(1182), + [sym_var_modifier] = ACTIONS(1182), + [aux_sym_visibility_modifier_token1] = ACTIONS(1182), + [aux_sym_visibility_modifier_token2] = ACTIONS(1182), + [aux_sym_visibility_modifier_token3] = ACTIONS(1182), + [aux_sym__arrow_function_header_token1] = ACTIONS(1182), + [anon_sym_LPAREN] = ACTIONS(1180), + [aux_sym_cast_type_token1] = ACTIONS(1182), + [aux_sym_echo_statement_token1] = ACTIONS(1182), + [aux_sym_exit_statement_token1] = ACTIONS(1182), + [anon_sym_unset] = ACTIONS(1182), + [aux_sym_declare_statement_token1] = ACTIONS(1182), + [aux_sym_declare_statement_token2] = ACTIONS(1182), + [sym_float] = ACTIONS(1182), + [aux_sym_try_statement_token1] = ACTIONS(1182), + [aux_sym_goto_statement_token1] = ACTIONS(1182), + [aux_sym_continue_statement_token1] = ACTIONS(1182), + [aux_sym_break_statement_token1] = ACTIONS(1182), + [sym_integer] = ACTIONS(1182), + [aux_sym_return_statement_token1] = ACTIONS(1182), + [aux_sym_throw_expression_token1] = ACTIONS(1182), + [aux_sym_while_statement_token1] = ACTIONS(1182), + [aux_sym_while_statement_token2] = ACTIONS(1182), + [aux_sym_do_statement_token1] = ACTIONS(1182), + [aux_sym_for_statement_token1] = ACTIONS(1182), + [aux_sym_for_statement_token2] = ACTIONS(1182), + [aux_sym_foreach_statement_token1] = ACTIONS(1182), + [aux_sym_foreach_statement_token2] = ACTIONS(1182), + [aux_sym_if_statement_token1] = ACTIONS(1182), + [aux_sym_if_statement_token2] = ACTIONS(1182), + [aux_sym_else_if_clause_token1] = ACTIONS(1182), + [aux_sym_else_clause_token1] = ACTIONS(1182), + [aux_sym_match_expression_token1] = ACTIONS(1182), + [aux_sym_match_default_expression_token1] = ACTIONS(1182), + [aux_sym_switch_statement_token1] = ACTIONS(1182), + [aux_sym_switch_block_token1] = ACTIONS(1182), + [anon_sym_PLUS] = ACTIONS(1182), + [anon_sym_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_AT] = ACTIONS(1180), + [aux_sym_clone_expression_token1] = ACTIONS(1182), + [aux_sym_print_intrinsic_token1] = ACTIONS(1182), + [aux_sym_object_creation_expression_token1] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [aux_sym__list_destructing_token1] = ACTIONS(1182), + [anon_sym_LBRACK] = ACTIONS(1180), + [anon_sym_self] = ACTIONS(1182), + [anon_sym_parent] = ACTIONS(1182), + [aux_sym__argument_name_token1] = ACTIONS(1182), + [aux_sym__argument_name_token2] = ACTIONS(1182), + [anon_sym_POUND_LBRACK] = ACTIONS(1180), + [aux_sym_encapsed_string_token1] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1180), + [aux_sym_string_token1] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1180), + [anon_sym_LT_LT_LT] = ACTIONS(1180), + [anon_sym_BQUOTE] = ACTIONS(1180), + [anon_sym_DOLLAR] = ACTIONS(1180), + [aux_sym_yield_expression_token1] = ACTIONS(1182), + [aux_sym_include_expression_token1] = ACTIONS(1182), + [aux_sym_include_once_expression_token1] = ACTIONS(1182), + [aux_sym_require_expression_token1] = ACTIONS(1182), + [aux_sym_require_once_expression_token1] = ACTIONS(1182), [sym_comment] = ACTIONS(5), }, [468] = { [sym_text_interpolation] = STATE(468), - [ts_builtin_sym_end] = ACTIONS(1207), - [sym_name] = ACTIONS(1209), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1207), - [aux_sym_function_static_declaration_token1] = ACTIONS(1209), - [aux_sym_global_declaration_token1] = ACTIONS(1209), - [aux_sym_namespace_definition_token1] = ACTIONS(1209), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1209), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1209), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1209), - [anon_sym_BSLASH] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1207), - [anon_sym_RBRACE] = ACTIONS(1207), - [aux_sym_trait_declaration_token1] = ACTIONS(1209), - [aux_sym_interface_declaration_token1] = ACTIONS(1209), - [aux_sym_enum_declaration_token1] = ACTIONS(1209), - [aux_sym_enum_case_token1] = ACTIONS(1209), - [aux_sym_class_declaration_token1] = ACTIONS(1209), - [aux_sym_final_modifier_token1] = ACTIONS(1209), - [aux_sym_abstract_modifier_token1] = ACTIONS(1209), - [aux_sym_readonly_modifier_token1] = ACTIONS(1209), - [aux_sym_visibility_modifier_token1] = ACTIONS(1209), - [aux_sym_visibility_modifier_token2] = ACTIONS(1209), - [aux_sym_visibility_modifier_token3] = ACTIONS(1209), - [aux_sym__arrow_function_header_token1] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1207), - [aux_sym_cast_type_token1] = ACTIONS(1209), - [aux_sym_echo_statement_token1] = ACTIONS(1209), - [aux_sym_exit_statement_token1] = ACTIONS(1209), - [anon_sym_unset] = ACTIONS(1209), - [aux_sym_declare_statement_token1] = ACTIONS(1209), - [aux_sym_declare_statement_token2] = ACTIONS(1209), - [sym_float] = ACTIONS(1209), - [aux_sym_try_statement_token1] = ACTIONS(1209), - [aux_sym_goto_statement_token1] = ACTIONS(1209), - [aux_sym_continue_statement_token1] = ACTIONS(1209), - [aux_sym_break_statement_token1] = ACTIONS(1209), - [sym_integer] = ACTIONS(1209), - [aux_sym_return_statement_token1] = ACTIONS(1209), - [aux_sym_throw_expression_token1] = ACTIONS(1209), - [aux_sym_while_statement_token1] = ACTIONS(1209), - [aux_sym_while_statement_token2] = ACTIONS(1209), - [aux_sym_do_statement_token1] = ACTIONS(1209), - [aux_sym_for_statement_token1] = ACTIONS(1209), - [aux_sym_for_statement_token2] = ACTIONS(1209), - [aux_sym_foreach_statement_token1] = ACTIONS(1209), - [aux_sym_foreach_statement_token2] = ACTIONS(1209), - [aux_sym_if_statement_token1] = ACTIONS(1209), - [aux_sym_if_statement_token2] = ACTIONS(1209), - [aux_sym_else_if_clause_token1] = ACTIONS(1209), - [aux_sym_else_clause_token1] = ACTIONS(1209), - [aux_sym_match_expression_token1] = ACTIONS(1209), - [aux_sym_match_default_expression_token1] = ACTIONS(1209), - [aux_sym_switch_statement_token1] = ACTIONS(1209), - [aux_sym_switch_block_token1] = ACTIONS(1209), - [anon_sym_PLUS] = ACTIONS(1209), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_AT] = ACTIONS(1207), - [aux_sym_clone_expression_token1] = ACTIONS(1209), - [aux_sym_print_intrinsic_token1] = ACTIONS(1209), - [aux_sym_object_creation_expression_token1] = ACTIONS(1209), - [anon_sym_DASH_DASH] = ACTIONS(1207), - [anon_sym_PLUS_PLUS] = ACTIONS(1207), - [aux_sym__list_destructing_token1] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1207), - [anon_sym_self] = ACTIONS(1209), - [anon_sym_parent] = ACTIONS(1209), - [aux_sym__argument_name_token1] = ACTIONS(1209), - [aux_sym__argument_name_token2] = ACTIONS(1209), - [anon_sym_POUND_LBRACK] = ACTIONS(1207), - [aux_sym_encapsed_string_token1] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1207), - [aux_sym_string_token1] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_LT_LT_LT] = ACTIONS(1207), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [aux_sym_yield_expression_token1] = ACTIONS(1209), - [aux_sym_include_expression_token1] = ACTIONS(1209), - [aux_sym_include_once_expression_token1] = ACTIONS(1209), - [aux_sym_require_expression_token1] = ACTIONS(1209), - [aux_sym_require_once_expression_token1] = ACTIONS(1209), + [ts_builtin_sym_end] = ACTIONS(1184), + [sym_name] = ACTIONS(1186), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1184), + [aux_sym_function_static_declaration_token1] = ACTIONS(1186), + [aux_sym_global_declaration_token1] = ACTIONS(1186), + [aux_sym_namespace_definition_token1] = ACTIONS(1186), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1186), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1186), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1186), + [anon_sym_BSLASH] = ACTIONS(1184), + [anon_sym_LBRACE] = ACTIONS(1184), + [anon_sym_RBRACE] = ACTIONS(1184), + [aux_sym_trait_declaration_token1] = ACTIONS(1186), + [aux_sym_interface_declaration_token1] = ACTIONS(1186), + [aux_sym_enum_declaration_token1] = ACTIONS(1186), + [aux_sym_enum_case_token1] = ACTIONS(1186), + [aux_sym_class_declaration_token1] = ACTIONS(1186), + [aux_sym_final_modifier_token1] = ACTIONS(1186), + [aux_sym_abstract_modifier_token1] = ACTIONS(1186), + [aux_sym_readonly_modifier_token1] = ACTIONS(1186), + [sym_var_modifier] = ACTIONS(1186), + [aux_sym_visibility_modifier_token1] = ACTIONS(1186), + [aux_sym_visibility_modifier_token2] = ACTIONS(1186), + [aux_sym_visibility_modifier_token3] = ACTIONS(1186), + [aux_sym__arrow_function_header_token1] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(1184), + [aux_sym_cast_type_token1] = ACTIONS(1186), + [aux_sym_echo_statement_token1] = ACTIONS(1186), + [aux_sym_exit_statement_token1] = ACTIONS(1186), + [anon_sym_unset] = ACTIONS(1186), + [aux_sym_declare_statement_token1] = ACTIONS(1186), + [aux_sym_declare_statement_token2] = ACTIONS(1186), + [sym_float] = ACTIONS(1186), + [aux_sym_try_statement_token1] = ACTIONS(1186), + [aux_sym_goto_statement_token1] = ACTIONS(1186), + [aux_sym_continue_statement_token1] = ACTIONS(1186), + [aux_sym_break_statement_token1] = ACTIONS(1186), + [sym_integer] = ACTIONS(1186), + [aux_sym_return_statement_token1] = ACTIONS(1186), + [aux_sym_throw_expression_token1] = ACTIONS(1186), + [aux_sym_while_statement_token1] = ACTIONS(1186), + [aux_sym_while_statement_token2] = ACTIONS(1186), + [aux_sym_do_statement_token1] = ACTIONS(1186), + [aux_sym_for_statement_token1] = ACTIONS(1186), + [aux_sym_for_statement_token2] = ACTIONS(1186), + [aux_sym_foreach_statement_token1] = ACTIONS(1186), + [aux_sym_foreach_statement_token2] = ACTIONS(1186), + [aux_sym_if_statement_token1] = ACTIONS(1186), + [aux_sym_if_statement_token2] = ACTIONS(1186), + [aux_sym_else_if_clause_token1] = ACTIONS(1186), + [aux_sym_else_clause_token1] = ACTIONS(1186), + [aux_sym_match_expression_token1] = ACTIONS(1186), + [aux_sym_match_default_expression_token1] = ACTIONS(1186), + [aux_sym_switch_statement_token1] = ACTIONS(1186), + [aux_sym_switch_block_token1] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(1186), + [anon_sym_DASH] = ACTIONS(1186), + [anon_sym_TILDE] = ACTIONS(1184), + [anon_sym_BANG] = ACTIONS(1184), + [anon_sym_AT] = ACTIONS(1184), + [aux_sym_clone_expression_token1] = ACTIONS(1186), + [aux_sym_print_intrinsic_token1] = ACTIONS(1186), + [aux_sym_object_creation_expression_token1] = ACTIONS(1186), + [anon_sym_DASH_DASH] = ACTIONS(1184), + [anon_sym_PLUS_PLUS] = ACTIONS(1184), + [aux_sym__list_destructing_token1] = ACTIONS(1186), + [anon_sym_LBRACK] = ACTIONS(1184), + [anon_sym_self] = ACTIONS(1186), + [anon_sym_parent] = ACTIONS(1186), + [aux_sym__argument_name_token1] = ACTIONS(1186), + [aux_sym__argument_name_token2] = ACTIONS(1186), + [anon_sym_POUND_LBRACK] = ACTIONS(1184), + [aux_sym_encapsed_string_token1] = ACTIONS(1184), + [anon_sym_DQUOTE] = ACTIONS(1184), + [aux_sym_string_token1] = ACTIONS(1184), + [anon_sym_SQUOTE] = ACTIONS(1184), + [anon_sym_LT_LT_LT] = ACTIONS(1184), + [anon_sym_BQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR] = ACTIONS(1184), + [aux_sym_yield_expression_token1] = ACTIONS(1186), + [aux_sym_include_expression_token1] = ACTIONS(1186), + [aux_sym_include_once_expression_token1] = ACTIONS(1186), + [aux_sym_require_expression_token1] = ACTIONS(1186), + [aux_sym_require_once_expression_token1] = ACTIONS(1186), [sym_comment] = ACTIONS(5), }, [469] = { [sym_text_interpolation] = STATE(469), - [ts_builtin_sym_end] = ACTIONS(1211), - [sym_name] = ACTIONS(1213), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1211), - [aux_sym_function_static_declaration_token1] = ACTIONS(1213), - [aux_sym_global_declaration_token1] = ACTIONS(1213), - [aux_sym_namespace_definition_token1] = ACTIONS(1213), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1213), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1213), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1213), - [anon_sym_BSLASH] = ACTIONS(1211), - [anon_sym_LBRACE] = ACTIONS(1211), - [anon_sym_RBRACE] = ACTIONS(1211), - [aux_sym_trait_declaration_token1] = ACTIONS(1213), - [aux_sym_interface_declaration_token1] = ACTIONS(1213), - [aux_sym_enum_declaration_token1] = ACTIONS(1213), - [aux_sym_enum_case_token1] = ACTIONS(1213), - [aux_sym_class_declaration_token1] = ACTIONS(1213), - [aux_sym_final_modifier_token1] = ACTIONS(1213), - [aux_sym_abstract_modifier_token1] = ACTIONS(1213), - [aux_sym_readonly_modifier_token1] = ACTIONS(1213), - [aux_sym_visibility_modifier_token1] = ACTIONS(1213), - [aux_sym_visibility_modifier_token2] = ACTIONS(1213), - [aux_sym_visibility_modifier_token3] = ACTIONS(1213), - [aux_sym__arrow_function_header_token1] = ACTIONS(1213), - [anon_sym_LPAREN] = ACTIONS(1211), - [aux_sym_cast_type_token1] = ACTIONS(1213), - [aux_sym_echo_statement_token1] = ACTIONS(1213), - [aux_sym_exit_statement_token1] = ACTIONS(1213), - [anon_sym_unset] = ACTIONS(1213), - [aux_sym_declare_statement_token1] = ACTIONS(1213), - [aux_sym_declare_statement_token2] = ACTIONS(1213), - [sym_float] = ACTIONS(1213), - [aux_sym_try_statement_token1] = ACTIONS(1213), - [aux_sym_goto_statement_token1] = ACTIONS(1213), - [aux_sym_continue_statement_token1] = ACTIONS(1213), - [aux_sym_break_statement_token1] = ACTIONS(1213), - [sym_integer] = ACTIONS(1213), - [aux_sym_return_statement_token1] = ACTIONS(1213), - [aux_sym_throw_expression_token1] = ACTIONS(1213), - [aux_sym_while_statement_token1] = ACTIONS(1213), - [aux_sym_while_statement_token2] = ACTIONS(1213), - [aux_sym_do_statement_token1] = ACTIONS(1213), - [aux_sym_for_statement_token1] = ACTIONS(1213), - [aux_sym_for_statement_token2] = ACTIONS(1213), - [aux_sym_foreach_statement_token1] = ACTIONS(1213), - [aux_sym_foreach_statement_token2] = ACTIONS(1213), - [aux_sym_if_statement_token1] = ACTIONS(1213), - [aux_sym_if_statement_token2] = ACTIONS(1213), - [aux_sym_else_if_clause_token1] = ACTIONS(1213), - [aux_sym_else_clause_token1] = ACTIONS(1213), - [aux_sym_match_expression_token1] = ACTIONS(1213), - [aux_sym_match_default_expression_token1] = ACTIONS(1213), - [aux_sym_switch_statement_token1] = ACTIONS(1213), - [aux_sym_switch_block_token1] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1213), - [anon_sym_DASH] = ACTIONS(1213), - [anon_sym_TILDE] = ACTIONS(1211), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AT] = ACTIONS(1211), - [aux_sym_clone_expression_token1] = ACTIONS(1213), - [aux_sym_print_intrinsic_token1] = ACTIONS(1213), - [aux_sym_object_creation_expression_token1] = ACTIONS(1213), - [anon_sym_DASH_DASH] = ACTIONS(1211), - [anon_sym_PLUS_PLUS] = ACTIONS(1211), - [aux_sym__list_destructing_token1] = ACTIONS(1213), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_self] = ACTIONS(1213), - [anon_sym_parent] = ACTIONS(1213), - [aux_sym__argument_name_token1] = ACTIONS(1213), - [aux_sym__argument_name_token2] = ACTIONS(1213), - [anon_sym_POUND_LBRACK] = ACTIONS(1211), - [aux_sym_encapsed_string_token1] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(1211), - [aux_sym_string_token1] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_LT_LT_LT] = ACTIONS(1211), - [anon_sym_BQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR] = ACTIONS(1211), - [aux_sym_yield_expression_token1] = ACTIONS(1213), - [aux_sym_include_expression_token1] = ACTIONS(1213), - [aux_sym_include_once_expression_token1] = ACTIONS(1213), - [aux_sym_require_expression_token1] = ACTIONS(1213), - [aux_sym_require_once_expression_token1] = ACTIONS(1213), + [ts_builtin_sym_end] = ACTIONS(1188), + [sym_name] = ACTIONS(1190), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1188), + [aux_sym_function_static_declaration_token1] = ACTIONS(1190), + [aux_sym_global_declaration_token1] = ACTIONS(1190), + [aux_sym_namespace_definition_token1] = ACTIONS(1190), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1190), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1190), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1190), + [anon_sym_BSLASH] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_RBRACE] = ACTIONS(1188), + [aux_sym_trait_declaration_token1] = ACTIONS(1190), + [aux_sym_interface_declaration_token1] = ACTIONS(1190), + [aux_sym_enum_declaration_token1] = ACTIONS(1190), + [aux_sym_enum_case_token1] = ACTIONS(1190), + [aux_sym_class_declaration_token1] = ACTIONS(1190), + [aux_sym_final_modifier_token1] = ACTIONS(1190), + [aux_sym_abstract_modifier_token1] = ACTIONS(1190), + [aux_sym_readonly_modifier_token1] = ACTIONS(1190), + [sym_var_modifier] = ACTIONS(1190), + [aux_sym_visibility_modifier_token1] = ACTIONS(1190), + [aux_sym_visibility_modifier_token2] = ACTIONS(1190), + [aux_sym_visibility_modifier_token3] = ACTIONS(1190), + [aux_sym__arrow_function_header_token1] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1188), + [aux_sym_cast_type_token1] = ACTIONS(1190), + [aux_sym_echo_statement_token1] = ACTIONS(1190), + [aux_sym_exit_statement_token1] = ACTIONS(1190), + [anon_sym_unset] = ACTIONS(1190), + [aux_sym_declare_statement_token1] = ACTIONS(1190), + [aux_sym_declare_statement_token2] = ACTIONS(1190), + [sym_float] = ACTIONS(1190), + [aux_sym_try_statement_token1] = ACTIONS(1190), + [aux_sym_goto_statement_token1] = ACTIONS(1190), + [aux_sym_continue_statement_token1] = ACTIONS(1190), + [aux_sym_break_statement_token1] = ACTIONS(1190), + [sym_integer] = ACTIONS(1190), + [aux_sym_return_statement_token1] = ACTIONS(1190), + [aux_sym_throw_expression_token1] = ACTIONS(1190), + [aux_sym_while_statement_token1] = ACTIONS(1190), + [aux_sym_while_statement_token2] = ACTIONS(1190), + [aux_sym_do_statement_token1] = ACTIONS(1190), + [aux_sym_for_statement_token1] = ACTIONS(1190), + [aux_sym_for_statement_token2] = ACTIONS(1190), + [aux_sym_foreach_statement_token1] = ACTIONS(1190), + [aux_sym_foreach_statement_token2] = ACTIONS(1190), + [aux_sym_if_statement_token1] = ACTIONS(1190), + [aux_sym_if_statement_token2] = ACTIONS(1190), + [aux_sym_else_if_clause_token1] = ACTIONS(1190), + [aux_sym_else_clause_token1] = ACTIONS(1190), + [aux_sym_match_expression_token1] = ACTIONS(1190), + [aux_sym_match_default_expression_token1] = ACTIONS(1190), + [aux_sym_switch_statement_token1] = ACTIONS(1190), + [aux_sym_switch_block_token1] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_TILDE] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_AT] = ACTIONS(1188), + [aux_sym_clone_expression_token1] = ACTIONS(1190), + [aux_sym_print_intrinsic_token1] = ACTIONS(1190), + [aux_sym_object_creation_expression_token1] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [aux_sym__list_destructing_token1] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_self] = ACTIONS(1190), + [anon_sym_parent] = ACTIONS(1190), + [aux_sym__argument_name_token1] = ACTIONS(1190), + [aux_sym__argument_name_token2] = ACTIONS(1190), + [anon_sym_POUND_LBRACK] = ACTIONS(1188), + [aux_sym_encapsed_string_token1] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(1188), + [aux_sym_string_token1] = ACTIONS(1188), + [anon_sym_SQUOTE] = ACTIONS(1188), + [anon_sym_LT_LT_LT] = ACTIONS(1188), + [anon_sym_BQUOTE] = ACTIONS(1188), + [anon_sym_DOLLAR] = ACTIONS(1188), + [aux_sym_yield_expression_token1] = ACTIONS(1190), + [aux_sym_include_expression_token1] = ACTIONS(1190), + [aux_sym_include_once_expression_token1] = ACTIONS(1190), + [aux_sym_require_expression_token1] = ACTIONS(1190), + [aux_sym_require_once_expression_token1] = ACTIONS(1190), [sym_comment] = ACTIONS(5), }, [470] = { [sym_text_interpolation] = STATE(470), - [ts_builtin_sym_end] = ACTIONS(1215), - [sym_name] = ACTIONS(1217), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1215), - [aux_sym_function_static_declaration_token1] = ACTIONS(1217), - [aux_sym_global_declaration_token1] = ACTIONS(1217), - [aux_sym_namespace_definition_token1] = ACTIONS(1217), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1217), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1217), - [anon_sym_BSLASH] = ACTIONS(1215), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_RBRACE] = ACTIONS(1215), - [aux_sym_trait_declaration_token1] = ACTIONS(1217), - [aux_sym_interface_declaration_token1] = ACTIONS(1217), - [aux_sym_enum_declaration_token1] = ACTIONS(1217), - [aux_sym_enum_case_token1] = ACTIONS(1217), - [aux_sym_class_declaration_token1] = ACTIONS(1217), - [aux_sym_final_modifier_token1] = ACTIONS(1217), - [aux_sym_abstract_modifier_token1] = ACTIONS(1217), - [aux_sym_readonly_modifier_token1] = ACTIONS(1217), - [aux_sym_visibility_modifier_token1] = ACTIONS(1217), - [aux_sym_visibility_modifier_token2] = ACTIONS(1217), - [aux_sym_visibility_modifier_token3] = ACTIONS(1217), - [aux_sym__arrow_function_header_token1] = ACTIONS(1217), - [anon_sym_LPAREN] = ACTIONS(1215), - [aux_sym_cast_type_token1] = ACTIONS(1217), - [aux_sym_echo_statement_token1] = ACTIONS(1217), - [aux_sym_exit_statement_token1] = ACTIONS(1217), - [anon_sym_unset] = ACTIONS(1217), - [aux_sym_declare_statement_token1] = ACTIONS(1217), - [aux_sym_declare_statement_token2] = ACTIONS(1217), - [sym_float] = ACTIONS(1217), - [aux_sym_try_statement_token1] = ACTIONS(1217), - [aux_sym_goto_statement_token1] = ACTIONS(1217), - [aux_sym_continue_statement_token1] = ACTIONS(1217), - [aux_sym_break_statement_token1] = ACTIONS(1217), - [sym_integer] = ACTIONS(1217), - [aux_sym_return_statement_token1] = ACTIONS(1217), - [aux_sym_throw_expression_token1] = ACTIONS(1217), - [aux_sym_while_statement_token1] = ACTIONS(1217), - [aux_sym_while_statement_token2] = ACTIONS(1217), - [aux_sym_do_statement_token1] = ACTIONS(1217), - [aux_sym_for_statement_token1] = ACTIONS(1217), - [aux_sym_for_statement_token2] = ACTIONS(1217), - [aux_sym_foreach_statement_token1] = ACTIONS(1217), - [aux_sym_foreach_statement_token2] = ACTIONS(1217), - [aux_sym_if_statement_token1] = ACTIONS(1217), - [aux_sym_if_statement_token2] = ACTIONS(1217), - [aux_sym_else_if_clause_token1] = ACTIONS(1217), - [aux_sym_else_clause_token1] = ACTIONS(1217), - [aux_sym_match_expression_token1] = ACTIONS(1217), - [aux_sym_match_default_expression_token1] = ACTIONS(1217), - [aux_sym_switch_statement_token1] = ACTIONS(1217), - [aux_sym_switch_block_token1] = ACTIONS(1217), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1215), - [anon_sym_AT] = ACTIONS(1215), - [aux_sym_clone_expression_token1] = ACTIONS(1217), - [aux_sym_print_intrinsic_token1] = ACTIONS(1217), - [aux_sym_object_creation_expression_token1] = ACTIONS(1217), - [anon_sym_DASH_DASH] = ACTIONS(1215), - [anon_sym_PLUS_PLUS] = ACTIONS(1215), - [aux_sym__list_destructing_token1] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(1215), - [anon_sym_self] = ACTIONS(1217), - [anon_sym_parent] = ACTIONS(1217), - [aux_sym__argument_name_token1] = ACTIONS(1217), - [aux_sym__argument_name_token2] = ACTIONS(1217), - [anon_sym_POUND_LBRACK] = ACTIONS(1215), - [aux_sym_encapsed_string_token1] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1215), - [aux_sym_string_token1] = ACTIONS(1215), - [anon_sym_SQUOTE] = ACTIONS(1215), - [anon_sym_LT_LT_LT] = ACTIONS(1215), - [anon_sym_BQUOTE] = ACTIONS(1215), - [anon_sym_DOLLAR] = ACTIONS(1215), - [aux_sym_yield_expression_token1] = ACTIONS(1217), - [aux_sym_include_expression_token1] = ACTIONS(1217), - [aux_sym_include_once_expression_token1] = ACTIONS(1217), - [aux_sym_require_expression_token1] = ACTIONS(1217), - [aux_sym_require_once_expression_token1] = ACTIONS(1217), + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_name] = ACTIONS(1194), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1192), + [aux_sym_function_static_declaration_token1] = ACTIONS(1194), + [aux_sym_global_declaration_token1] = ACTIONS(1194), + [aux_sym_namespace_definition_token1] = ACTIONS(1194), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1194), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1194), + [anon_sym_BSLASH] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [aux_sym_trait_declaration_token1] = ACTIONS(1194), + [aux_sym_interface_declaration_token1] = ACTIONS(1194), + [aux_sym_enum_declaration_token1] = ACTIONS(1194), + [aux_sym_enum_case_token1] = ACTIONS(1194), + [aux_sym_class_declaration_token1] = ACTIONS(1194), + [aux_sym_final_modifier_token1] = ACTIONS(1194), + [aux_sym_abstract_modifier_token1] = ACTIONS(1194), + [aux_sym_readonly_modifier_token1] = ACTIONS(1194), + [sym_var_modifier] = ACTIONS(1194), + [aux_sym_visibility_modifier_token1] = ACTIONS(1194), + [aux_sym_visibility_modifier_token2] = ACTIONS(1194), + [aux_sym_visibility_modifier_token3] = ACTIONS(1194), + [aux_sym__arrow_function_header_token1] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1192), + [aux_sym_cast_type_token1] = ACTIONS(1194), + [aux_sym_echo_statement_token1] = ACTIONS(1194), + [aux_sym_exit_statement_token1] = ACTIONS(1194), + [anon_sym_unset] = ACTIONS(1194), + [aux_sym_declare_statement_token1] = ACTIONS(1194), + [aux_sym_declare_statement_token2] = ACTIONS(1194), + [sym_float] = ACTIONS(1194), + [aux_sym_try_statement_token1] = ACTIONS(1194), + [aux_sym_goto_statement_token1] = ACTIONS(1194), + [aux_sym_continue_statement_token1] = ACTIONS(1194), + [aux_sym_break_statement_token1] = ACTIONS(1194), + [sym_integer] = ACTIONS(1194), + [aux_sym_return_statement_token1] = ACTIONS(1194), + [aux_sym_throw_expression_token1] = ACTIONS(1194), + [aux_sym_while_statement_token1] = ACTIONS(1194), + [aux_sym_while_statement_token2] = ACTIONS(1194), + [aux_sym_do_statement_token1] = ACTIONS(1194), + [aux_sym_for_statement_token1] = ACTIONS(1194), + [aux_sym_for_statement_token2] = ACTIONS(1194), + [aux_sym_foreach_statement_token1] = ACTIONS(1194), + [aux_sym_foreach_statement_token2] = ACTIONS(1194), + [aux_sym_if_statement_token1] = ACTIONS(1194), + [aux_sym_if_statement_token2] = ACTIONS(1194), + [aux_sym_else_if_clause_token1] = ACTIONS(1194), + [aux_sym_else_clause_token1] = ACTIONS(1194), + [aux_sym_match_expression_token1] = ACTIONS(1194), + [aux_sym_match_default_expression_token1] = ACTIONS(1194), + [aux_sym_switch_statement_token1] = ACTIONS(1194), + [aux_sym_switch_block_token1] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1194), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_AT] = ACTIONS(1192), + [aux_sym_clone_expression_token1] = ACTIONS(1194), + [aux_sym_print_intrinsic_token1] = ACTIONS(1194), + [aux_sym_object_creation_expression_token1] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [aux_sym__list_destructing_token1] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1192), + [anon_sym_self] = ACTIONS(1194), + [anon_sym_parent] = ACTIONS(1194), + [aux_sym__argument_name_token1] = ACTIONS(1194), + [aux_sym__argument_name_token2] = ACTIONS(1194), + [anon_sym_POUND_LBRACK] = ACTIONS(1192), + [aux_sym_encapsed_string_token1] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [aux_sym_string_token1] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_LT_LT_LT] = ACTIONS(1192), + [anon_sym_BQUOTE] = ACTIONS(1192), + [anon_sym_DOLLAR] = ACTIONS(1192), + [aux_sym_yield_expression_token1] = ACTIONS(1194), + [aux_sym_include_expression_token1] = ACTIONS(1194), + [aux_sym_include_once_expression_token1] = ACTIONS(1194), + [aux_sym_require_expression_token1] = ACTIONS(1194), + [aux_sym_require_once_expression_token1] = ACTIONS(1194), [sym_comment] = ACTIONS(5), }, [471] = { [sym_text_interpolation] = STATE(471), - [ts_builtin_sym_end] = ACTIONS(1219), - [sym_name] = ACTIONS(1221), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1219), - [aux_sym_function_static_declaration_token1] = ACTIONS(1221), - [aux_sym_global_declaration_token1] = ACTIONS(1221), - [aux_sym_namespace_definition_token1] = ACTIONS(1221), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1221), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1221), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1221), - [anon_sym_BSLASH] = ACTIONS(1219), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_RBRACE] = ACTIONS(1219), - [aux_sym_trait_declaration_token1] = ACTIONS(1221), - [aux_sym_interface_declaration_token1] = ACTIONS(1221), - [aux_sym_enum_declaration_token1] = ACTIONS(1221), - [aux_sym_enum_case_token1] = ACTIONS(1221), - [aux_sym_class_declaration_token1] = ACTIONS(1221), - [aux_sym_final_modifier_token1] = ACTIONS(1221), - [aux_sym_abstract_modifier_token1] = ACTIONS(1221), - [aux_sym_readonly_modifier_token1] = ACTIONS(1221), - [aux_sym_visibility_modifier_token1] = ACTIONS(1221), - [aux_sym_visibility_modifier_token2] = ACTIONS(1221), - [aux_sym_visibility_modifier_token3] = ACTIONS(1221), - [aux_sym__arrow_function_header_token1] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1219), - [aux_sym_cast_type_token1] = ACTIONS(1221), - [aux_sym_echo_statement_token1] = ACTIONS(1221), - [aux_sym_exit_statement_token1] = ACTIONS(1221), - [anon_sym_unset] = ACTIONS(1221), - [aux_sym_declare_statement_token1] = ACTIONS(1221), - [aux_sym_declare_statement_token2] = ACTIONS(1221), - [sym_float] = ACTIONS(1221), - [aux_sym_try_statement_token1] = ACTIONS(1221), - [aux_sym_goto_statement_token1] = ACTIONS(1221), - [aux_sym_continue_statement_token1] = ACTIONS(1221), - [aux_sym_break_statement_token1] = ACTIONS(1221), - [sym_integer] = ACTIONS(1221), - [aux_sym_return_statement_token1] = ACTIONS(1221), - [aux_sym_throw_expression_token1] = ACTIONS(1221), - [aux_sym_while_statement_token1] = ACTIONS(1221), - [aux_sym_while_statement_token2] = ACTIONS(1221), - [aux_sym_do_statement_token1] = ACTIONS(1221), - [aux_sym_for_statement_token1] = ACTIONS(1221), - [aux_sym_for_statement_token2] = ACTIONS(1221), - [aux_sym_foreach_statement_token1] = ACTIONS(1221), - [aux_sym_foreach_statement_token2] = ACTIONS(1221), - [aux_sym_if_statement_token1] = ACTIONS(1221), - [aux_sym_if_statement_token2] = ACTIONS(1221), - [aux_sym_else_if_clause_token1] = ACTIONS(1221), - [aux_sym_else_clause_token1] = ACTIONS(1221), - [aux_sym_match_expression_token1] = ACTIONS(1221), - [aux_sym_match_default_expression_token1] = ACTIONS(1221), - [aux_sym_switch_statement_token1] = ACTIONS(1221), - [aux_sym_switch_block_token1] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_TILDE] = ACTIONS(1219), - [anon_sym_BANG] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(1219), - [aux_sym_clone_expression_token1] = ACTIONS(1221), - [aux_sym_print_intrinsic_token1] = ACTIONS(1221), - [aux_sym_object_creation_expression_token1] = ACTIONS(1221), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [aux_sym__list_destructing_token1] = ACTIONS(1221), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_self] = ACTIONS(1221), - [anon_sym_parent] = ACTIONS(1221), - [aux_sym__argument_name_token1] = ACTIONS(1221), - [aux_sym__argument_name_token2] = ACTIONS(1221), - [anon_sym_POUND_LBRACK] = ACTIONS(1219), - [aux_sym_encapsed_string_token1] = ACTIONS(1219), - [anon_sym_DQUOTE] = ACTIONS(1219), - [aux_sym_string_token1] = ACTIONS(1219), - [anon_sym_SQUOTE] = ACTIONS(1219), - [anon_sym_LT_LT_LT] = ACTIONS(1219), - [anon_sym_BQUOTE] = ACTIONS(1219), - [anon_sym_DOLLAR] = ACTIONS(1219), - [aux_sym_yield_expression_token1] = ACTIONS(1221), - [aux_sym_include_expression_token1] = ACTIONS(1221), - [aux_sym_include_once_expression_token1] = ACTIONS(1221), - [aux_sym_require_expression_token1] = ACTIONS(1221), - [aux_sym_require_once_expression_token1] = ACTIONS(1221), + [ts_builtin_sym_end] = ACTIONS(1196), + [sym_name] = ACTIONS(1198), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1196), + [aux_sym_function_static_declaration_token1] = ACTIONS(1198), + [aux_sym_global_declaration_token1] = ACTIONS(1198), + [aux_sym_namespace_definition_token1] = ACTIONS(1198), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1198), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1198), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1198), + [anon_sym_BSLASH] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1196), + [aux_sym_trait_declaration_token1] = ACTIONS(1198), + [aux_sym_interface_declaration_token1] = ACTIONS(1198), + [aux_sym_enum_declaration_token1] = ACTIONS(1198), + [aux_sym_enum_case_token1] = ACTIONS(1198), + [aux_sym_class_declaration_token1] = ACTIONS(1198), + [aux_sym_final_modifier_token1] = ACTIONS(1198), + [aux_sym_abstract_modifier_token1] = ACTIONS(1198), + [aux_sym_readonly_modifier_token1] = ACTIONS(1198), + [sym_var_modifier] = ACTIONS(1198), + [aux_sym_visibility_modifier_token1] = ACTIONS(1198), + [aux_sym_visibility_modifier_token2] = ACTIONS(1198), + [aux_sym_visibility_modifier_token3] = ACTIONS(1198), + [aux_sym__arrow_function_header_token1] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1196), + [aux_sym_cast_type_token1] = ACTIONS(1198), + [aux_sym_echo_statement_token1] = ACTIONS(1198), + [aux_sym_exit_statement_token1] = ACTIONS(1198), + [anon_sym_unset] = ACTIONS(1198), + [aux_sym_declare_statement_token1] = ACTIONS(1198), + [aux_sym_declare_statement_token2] = ACTIONS(1198), + [sym_float] = ACTIONS(1198), + [aux_sym_try_statement_token1] = ACTIONS(1198), + [aux_sym_goto_statement_token1] = ACTIONS(1198), + [aux_sym_continue_statement_token1] = ACTIONS(1198), + [aux_sym_break_statement_token1] = ACTIONS(1198), + [sym_integer] = ACTIONS(1198), + [aux_sym_return_statement_token1] = ACTIONS(1198), + [aux_sym_throw_expression_token1] = ACTIONS(1198), + [aux_sym_while_statement_token1] = ACTIONS(1198), + [aux_sym_while_statement_token2] = ACTIONS(1198), + [aux_sym_do_statement_token1] = ACTIONS(1198), + [aux_sym_for_statement_token1] = ACTIONS(1198), + [aux_sym_for_statement_token2] = ACTIONS(1198), + [aux_sym_foreach_statement_token1] = ACTIONS(1198), + [aux_sym_foreach_statement_token2] = ACTIONS(1198), + [aux_sym_if_statement_token1] = ACTIONS(1198), + [aux_sym_if_statement_token2] = ACTIONS(1198), + [aux_sym_else_if_clause_token1] = ACTIONS(1198), + [aux_sym_else_clause_token1] = ACTIONS(1198), + [aux_sym_match_expression_token1] = ACTIONS(1198), + [aux_sym_match_default_expression_token1] = ACTIONS(1198), + [aux_sym_switch_statement_token1] = ACTIONS(1198), + [aux_sym_switch_block_token1] = ACTIONS(1198), + [anon_sym_PLUS] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AT] = ACTIONS(1196), + [aux_sym_clone_expression_token1] = ACTIONS(1198), + [aux_sym_print_intrinsic_token1] = ACTIONS(1198), + [aux_sym_object_creation_expression_token1] = ACTIONS(1198), + [anon_sym_DASH_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [aux_sym__list_destructing_token1] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_self] = ACTIONS(1198), + [anon_sym_parent] = ACTIONS(1198), + [aux_sym__argument_name_token1] = ACTIONS(1198), + [aux_sym__argument_name_token2] = ACTIONS(1198), + [anon_sym_POUND_LBRACK] = ACTIONS(1196), + [aux_sym_encapsed_string_token1] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [aux_sym_string_token1] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [anon_sym_LT_LT_LT] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(1196), + [aux_sym_yield_expression_token1] = ACTIONS(1198), + [aux_sym_include_expression_token1] = ACTIONS(1198), + [aux_sym_include_once_expression_token1] = ACTIONS(1198), + [aux_sym_require_expression_token1] = ACTIONS(1198), + [aux_sym_require_once_expression_token1] = ACTIONS(1198), [sym_comment] = ACTIONS(5), }, [472] = { [sym_text_interpolation] = STATE(472), - [ts_builtin_sym_end] = ACTIONS(1223), - [sym_name] = ACTIONS(1225), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1223), - [aux_sym_function_static_declaration_token1] = ACTIONS(1225), - [aux_sym_global_declaration_token1] = ACTIONS(1225), - [aux_sym_namespace_definition_token1] = ACTIONS(1225), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1225), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1225), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1225), - [anon_sym_BSLASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1223), - [aux_sym_trait_declaration_token1] = ACTIONS(1225), - [aux_sym_interface_declaration_token1] = ACTIONS(1225), - [aux_sym_enum_declaration_token1] = ACTIONS(1225), - [aux_sym_enum_case_token1] = ACTIONS(1225), - [aux_sym_class_declaration_token1] = ACTIONS(1225), - [aux_sym_final_modifier_token1] = ACTIONS(1225), - [aux_sym_abstract_modifier_token1] = ACTIONS(1225), - [aux_sym_readonly_modifier_token1] = ACTIONS(1225), - [aux_sym_visibility_modifier_token1] = ACTIONS(1225), - [aux_sym_visibility_modifier_token2] = ACTIONS(1225), - [aux_sym_visibility_modifier_token3] = ACTIONS(1225), - [aux_sym__arrow_function_header_token1] = ACTIONS(1225), - [anon_sym_LPAREN] = ACTIONS(1223), - [aux_sym_cast_type_token1] = ACTIONS(1225), - [aux_sym_echo_statement_token1] = ACTIONS(1225), - [aux_sym_exit_statement_token1] = ACTIONS(1225), - [anon_sym_unset] = ACTIONS(1225), - [aux_sym_declare_statement_token1] = ACTIONS(1225), - [aux_sym_declare_statement_token2] = ACTIONS(1225), - [sym_float] = ACTIONS(1225), - [aux_sym_try_statement_token1] = ACTIONS(1225), - [aux_sym_goto_statement_token1] = ACTIONS(1225), - [aux_sym_continue_statement_token1] = ACTIONS(1225), - [aux_sym_break_statement_token1] = ACTIONS(1225), - [sym_integer] = ACTIONS(1225), - [aux_sym_return_statement_token1] = ACTIONS(1225), - [aux_sym_throw_expression_token1] = ACTIONS(1225), - [aux_sym_while_statement_token1] = ACTIONS(1225), - [aux_sym_while_statement_token2] = ACTIONS(1225), - [aux_sym_do_statement_token1] = ACTIONS(1225), - [aux_sym_for_statement_token1] = ACTIONS(1225), - [aux_sym_for_statement_token2] = ACTIONS(1225), - [aux_sym_foreach_statement_token1] = ACTIONS(1225), - [aux_sym_foreach_statement_token2] = ACTIONS(1225), - [aux_sym_if_statement_token1] = ACTIONS(1225), - [aux_sym_if_statement_token2] = ACTIONS(1225), - [aux_sym_else_if_clause_token1] = ACTIONS(1225), - [aux_sym_else_clause_token1] = ACTIONS(1225), - [aux_sym_match_expression_token1] = ACTIONS(1225), - [aux_sym_match_default_expression_token1] = ACTIONS(1225), - [aux_sym_switch_statement_token1] = ACTIONS(1225), - [aux_sym_switch_block_token1] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1223), - [anon_sym_AT] = ACTIONS(1223), - [aux_sym_clone_expression_token1] = ACTIONS(1225), - [aux_sym_print_intrinsic_token1] = ACTIONS(1225), - [aux_sym_object_creation_expression_token1] = ACTIONS(1225), - [anon_sym_DASH_DASH] = ACTIONS(1223), - [anon_sym_PLUS_PLUS] = ACTIONS(1223), - [aux_sym__list_destructing_token1] = ACTIONS(1225), - [anon_sym_LBRACK] = ACTIONS(1223), - [anon_sym_self] = ACTIONS(1225), - [anon_sym_parent] = ACTIONS(1225), - [aux_sym__argument_name_token1] = ACTIONS(1225), - [aux_sym__argument_name_token2] = ACTIONS(1225), - [anon_sym_POUND_LBRACK] = ACTIONS(1223), - [aux_sym_encapsed_string_token1] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(1223), - [aux_sym_string_token1] = ACTIONS(1223), - [anon_sym_SQUOTE] = ACTIONS(1223), - [anon_sym_LT_LT_LT] = ACTIONS(1223), - [anon_sym_BQUOTE] = ACTIONS(1223), - [anon_sym_DOLLAR] = ACTIONS(1223), - [aux_sym_yield_expression_token1] = ACTIONS(1225), - [aux_sym_include_expression_token1] = ACTIONS(1225), - [aux_sym_include_once_expression_token1] = ACTIONS(1225), - [aux_sym_require_expression_token1] = ACTIONS(1225), - [aux_sym_require_once_expression_token1] = ACTIONS(1225), + [ts_builtin_sym_end] = ACTIONS(1196), + [sym_name] = ACTIONS(1198), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1196), + [aux_sym_function_static_declaration_token1] = ACTIONS(1198), + [aux_sym_global_declaration_token1] = ACTIONS(1198), + [aux_sym_namespace_definition_token1] = ACTIONS(1198), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1198), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1198), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1198), + [anon_sym_BSLASH] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1196), + [aux_sym_trait_declaration_token1] = ACTIONS(1198), + [aux_sym_interface_declaration_token1] = ACTIONS(1198), + [aux_sym_enum_declaration_token1] = ACTIONS(1198), + [aux_sym_enum_case_token1] = ACTIONS(1198), + [aux_sym_class_declaration_token1] = ACTIONS(1198), + [aux_sym_final_modifier_token1] = ACTIONS(1198), + [aux_sym_abstract_modifier_token1] = ACTIONS(1198), + [aux_sym_readonly_modifier_token1] = ACTIONS(1198), + [sym_var_modifier] = ACTIONS(1198), + [aux_sym_visibility_modifier_token1] = ACTIONS(1198), + [aux_sym_visibility_modifier_token2] = ACTIONS(1198), + [aux_sym_visibility_modifier_token3] = ACTIONS(1198), + [aux_sym__arrow_function_header_token1] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1196), + [aux_sym_cast_type_token1] = ACTIONS(1198), + [aux_sym_echo_statement_token1] = ACTIONS(1198), + [aux_sym_exit_statement_token1] = ACTIONS(1198), + [anon_sym_unset] = ACTIONS(1198), + [aux_sym_declare_statement_token1] = ACTIONS(1198), + [aux_sym_declare_statement_token2] = ACTIONS(1198), + [sym_float] = ACTIONS(1198), + [aux_sym_try_statement_token1] = ACTIONS(1198), + [aux_sym_goto_statement_token1] = ACTIONS(1198), + [aux_sym_continue_statement_token1] = ACTIONS(1198), + [aux_sym_break_statement_token1] = ACTIONS(1198), + [sym_integer] = ACTIONS(1198), + [aux_sym_return_statement_token1] = ACTIONS(1198), + [aux_sym_throw_expression_token1] = ACTIONS(1198), + [aux_sym_while_statement_token1] = ACTIONS(1198), + [aux_sym_while_statement_token2] = ACTIONS(1198), + [aux_sym_do_statement_token1] = ACTIONS(1198), + [aux_sym_for_statement_token1] = ACTIONS(1198), + [aux_sym_for_statement_token2] = ACTIONS(1198), + [aux_sym_foreach_statement_token1] = ACTIONS(1198), + [aux_sym_foreach_statement_token2] = ACTIONS(1198), + [aux_sym_if_statement_token1] = ACTIONS(1198), + [aux_sym_if_statement_token2] = ACTIONS(1198), + [aux_sym_else_if_clause_token1] = ACTIONS(1198), + [aux_sym_else_clause_token1] = ACTIONS(1198), + [aux_sym_match_expression_token1] = ACTIONS(1198), + [aux_sym_match_default_expression_token1] = ACTIONS(1198), + [aux_sym_switch_statement_token1] = ACTIONS(1198), + [aux_sym_switch_block_token1] = ACTIONS(1198), + [anon_sym_PLUS] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AT] = ACTIONS(1196), + [aux_sym_clone_expression_token1] = ACTIONS(1198), + [aux_sym_print_intrinsic_token1] = ACTIONS(1198), + [aux_sym_object_creation_expression_token1] = ACTIONS(1198), + [anon_sym_DASH_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [aux_sym__list_destructing_token1] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_self] = ACTIONS(1198), + [anon_sym_parent] = ACTIONS(1198), + [aux_sym__argument_name_token1] = ACTIONS(1198), + [aux_sym__argument_name_token2] = ACTIONS(1198), + [anon_sym_POUND_LBRACK] = ACTIONS(1196), + [aux_sym_encapsed_string_token1] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [aux_sym_string_token1] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [anon_sym_LT_LT_LT] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(1196), + [aux_sym_yield_expression_token1] = ACTIONS(1198), + [aux_sym_include_expression_token1] = ACTIONS(1198), + [aux_sym_include_once_expression_token1] = ACTIONS(1198), + [aux_sym_require_expression_token1] = ACTIONS(1198), + [aux_sym_require_once_expression_token1] = ACTIONS(1198), [sym_comment] = ACTIONS(5), }, [473] = { [sym_text_interpolation] = STATE(473), - [ts_builtin_sym_end] = ACTIONS(1227), - [sym_name] = ACTIONS(1229), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1227), - [aux_sym_function_static_declaration_token1] = ACTIONS(1229), - [aux_sym_global_declaration_token1] = ACTIONS(1229), - [aux_sym_namespace_definition_token1] = ACTIONS(1229), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1229), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1229), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1229), - [anon_sym_BSLASH] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_RBRACE] = ACTIONS(1227), - [aux_sym_trait_declaration_token1] = ACTIONS(1229), - [aux_sym_interface_declaration_token1] = ACTIONS(1229), - [aux_sym_enum_declaration_token1] = ACTIONS(1229), - [aux_sym_enum_case_token1] = ACTIONS(1229), - [aux_sym_class_declaration_token1] = ACTIONS(1229), - [aux_sym_final_modifier_token1] = ACTIONS(1229), - [aux_sym_abstract_modifier_token1] = ACTIONS(1229), - [aux_sym_readonly_modifier_token1] = ACTIONS(1229), - [aux_sym_visibility_modifier_token1] = ACTIONS(1229), - [aux_sym_visibility_modifier_token2] = ACTIONS(1229), - [aux_sym_visibility_modifier_token3] = ACTIONS(1229), - [aux_sym__arrow_function_header_token1] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1227), - [aux_sym_cast_type_token1] = ACTIONS(1229), - [aux_sym_echo_statement_token1] = ACTIONS(1229), - [aux_sym_exit_statement_token1] = ACTIONS(1229), - [anon_sym_unset] = ACTIONS(1229), - [aux_sym_declare_statement_token1] = ACTIONS(1229), - [aux_sym_declare_statement_token2] = ACTIONS(1229), - [sym_float] = ACTIONS(1229), - [aux_sym_try_statement_token1] = ACTIONS(1229), - [aux_sym_goto_statement_token1] = ACTIONS(1229), - [aux_sym_continue_statement_token1] = ACTIONS(1229), - [aux_sym_break_statement_token1] = ACTIONS(1229), - [sym_integer] = ACTIONS(1229), - [aux_sym_return_statement_token1] = ACTIONS(1229), - [aux_sym_throw_expression_token1] = ACTIONS(1229), - [aux_sym_while_statement_token1] = ACTIONS(1229), - [aux_sym_while_statement_token2] = ACTIONS(1229), - [aux_sym_do_statement_token1] = ACTIONS(1229), - [aux_sym_for_statement_token1] = ACTIONS(1229), - [aux_sym_for_statement_token2] = ACTIONS(1229), - [aux_sym_foreach_statement_token1] = ACTIONS(1229), - [aux_sym_foreach_statement_token2] = ACTIONS(1229), - [aux_sym_if_statement_token1] = ACTIONS(1229), - [aux_sym_if_statement_token2] = ACTIONS(1229), - [aux_sym_else_if_clause_token1] = ACTIONS(1229), - [aux_sym_else_clause_token1] = ACTIONS(1229), - [aux_sym_match_expression_token1] = ACTIONS(1229), - [aux_sym_match_default_expression_token1] = ACTIONS(1229), - [aux_sym_switch_statement_token1] = ACTIONS(1229), - [aux_sym_switch_block_token1] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(1227), - [aux_sym_clone_expression_token1] = ACTIONS(1229), - [aux_sym_print_intrinsic_token1] = ACTIONS(1229), - [aux_sym_object_creation_expression_token1] = ACTIONS(1229), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [aux_sym__list_destructing_token1] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1227), - [anon_sym_self] = ACTIONS(1229), - [anon_sym_parent] = ACTIONS(1229), - [aux_sym__argument_name_token1] = ACTIONS(1229), - [aux_sym__argument_name_token2] = ACTIONS(1229), - [anon_sym_POUND_LBRACK] = ACTIONS(1227), - [aux_sym_encapsed_string_token1] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1227), - [aux_sym_string_token1] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1227), - [anon_sym_LT_LT_LT] = ACTIONS(1227), - [anon_sym_BQUOTE] = ACTIONS(1227), - [anon_sym_DOLLAR] = ACTIONS(1227), - [aux_sym_yield_expression_token1] = ACTIONS(1229), - [aux_sym_include_expression_token1] = ACTIONS(1229), - [aux_sym_include_once_expression_token1] = ACTIONS(1229), - [aux_sym_require_expression_token1] = ACTIONS(1229), - [aux_sym_require_once_expression_token1] = ACTIONS(1229), + [ts_builtin_sym_end] = ACTIONS(1200), + [sym_name] = ACTIONS(1202), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1200), + [aux_sym_function_static_declaration_token1] = ACTIONS(1202), + [aux_sym_global_declaration_token1] = ACTIONS(1202), + [aux_sym_namespace_definition_token1] = ACTIONS(1202), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1202), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1202), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1202), + [anon_sym_BSLASH] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_RBRACE] = ACTIONS(1200), + [aux_sym_trait_declaration_token1] = ACTIONS(1202), + [aux_sym_interface_declaration_token1] = ACTIONS(1202), + [aux_sym_enum_declaration_token1] = ACTIONS(1202), + [aux_sym_enum_case_token1] = ACTIONS(1202), + [aux_sym_class_declaration_token1] = ACTIONS(1202), + [aux_sym_final_modifier_token1] = ACTIONS(1202), + [aux_sym_abstract_modifier_token1] = ACTIONS(1202), + [aux_sym_readonly_modifier_token1] = ACTIONS(1202), + [sym_var_modifier] = ACTIONS(1202), + [aux_sym_visibility_modifier_token1] = ACTIONS(1202), + [aux_sym_visibility_modifier_token2] = ACTIONS(1202), + [aux_sym_visibility_modifier_token3] = ACTIONS(1202), + [aux_sym__arrow_function_header_token1] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1200), + [aux_sym_cast_type_token1] = ACTIONS(1202), + [aux_sym_echo_statement_token1] = ACTIONS(1202), + [aux_sym_exit_statement_token1] = ACTIONS(1202), + [anon_sym_unset] = ACTIONS(1202), + [aux_sym_declare_statement_token1] = ACTIONS(1202), + [aux_sym_declare_statement_token2] = ACTIONS(1202), + [sym_float] = ACTIONS(1202), + [aux_sym_try_statement_token1] = ACTIONS(1202), + [aux_sym_goto_statement_token1] = ACTIONS(1202), + [aux_sym_continue_statement_token1] = ACTIONS(1202), + [aux_sym_break_statement_token1] = ACTIONS(1202), + [sym_integer] = ACTIONS(1202), + [aux_sym_return_statement_token1] = ACTIONS(1202), + [aux_sym_throw_expression_token1] = ACTIONS(1202), + [aux_sym_while_statement_token1] = ACTIONS(1202), + [aux_sym_while_statement_token2] = ACTIONS(1202), + [aux_sym_do_statement_token1] = ACTIONS(1202), + [aux_sym_for_statement_token1] = ACTIONS(1202), + [aux_sym_for_statement_token2] = ACTIONS(1202), + [aux_sym_foreach_statement_token1] = ACTIONS(1202), + [aux_sym_foreach_statement_token2] = ACTIONS(1202), + [aux_sym_if_statement_token1] = ACTIONS(1202), + [aux_sym_if_statement_token2] = ACTIONS(1202), + [aux_sym_else_if_clause_token1] = ACTIONS(1202), + [aux_sym_else_clause_token1] = ACTIONS(1202), + [aux_sym_match_expression_token1] = ACTIONS(1202), + [aux_sym_match_default_expression_token1] = ACTIONS(1202), + [aux_sym_switch_statement_token1] = ACTIONS(1202), + [aux_sym_switch_block_token1] = ACTIONS(1202), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1200), + [anon_sym_AT] = ACTIONS(1200), + [aux_sym_clone_expression_token1] = ACTIONS(1202), + [aux_sym_print_intrinsic_token1] = ACTIONS(1202), + [aux_sym_object_creation_expression_token1] = ACTIONS(1202), + [anon_sym_DASH_DASH] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1200), + [aux_sym__list_destructing_token1] = ACTIONS(1202), + [anon_sym_LBRACK] = ACTIONS(1200), + [anon_sym_self] = ACTIONS(1202), + [anon_sym_parent] = ACTIONS(1202), + [aux_sym__argument_name_token1] = ACTIONS(1202), + [aux_sym__argument_name_token2] = ACTIONS(1202), + [anon_sym_POUND_LBRACK] = ACTIONS(1200), + [aux_sym_encapsed_string_token1] = ACTIONS(1200), + [anon_sym_DQUOTE] = ACTIONS(1200), + [aux_sym_string_token1] = ACTIONS(1200), + [anon_sym_SQUOTE] = ACTIONS(1200), + [anon_sym_LT_LT_LT] = ACTIONS(1200), + [anon_sym_BQUOTE] = ACTIONS(1200), + [anon_sym_DOLLAR] = ACTIONS(1200), + [aux_sym_yield_expression_token1] = ACTIONS(1202), + [aux_sym_include_expression_token1] = ACTIONS(1202), + [aux_sym_include_once_expression_token1] = ACTIONS(1202), + [aux_sym_require_expression_token1] = ACTIONS(1202), + [aux_sym_require_once_expression_token1] = ACTIONS(1202), [sym_comment] = ACTIONS(5), }, [474] = { [sym_text_interpolation] = STATE(474), - [ts_builtin_sym_end] = ACTIONS(1227), - [sym_name] = ACTIONS(1229), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1227), - [aux_sym_function_static_declaration_token1] = ACTIONS(1229), - [aux_sym_global_declaration_token1] = ACTIONS(1229), - [aux_sym_namespace_definition_token1] = ACTIONS(1229), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1229), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1229), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1229), - [anon_sym_BSLASH] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_RBRACE] = ACTIONS(1227), - [aux_sym_trait_declaration_token1] = ACTIONS(1229), - [aux_sym_interface_declaration_token1] = ACTIONS(1229), - [aux_sym_enum_declaration_token1] = ACTIONS(1229), - [aux_sym_enum_case_token1] = ACTIONS(1229), - [aux_sym_class_declaration_token1] = ACTIONS(1229), - [aux_sym_final_modifier_token1] = ACTIONS(1229), - [aux_sym_abstract_modifier_token1] = ACTIONS(1229), - [aux_sym_readonly_modifier_token1] = ACTIONS(1229), - [aux_sym_visibility_modifier_token1] = ACTIONS(1229), - [aux_sym_visibility_modifier_token2] = ACTIONS(1229), - [aux_sym_visibility_modifier_token3] = ACTIONS(1229), - [aux_sym__arrow_function_header_token1] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1227), - [aux_sym_cast_type_token1] = ACTIONS(1229), - [aux_sym_echo_statement_token1] = ACTIONS(1229), - [aux_sym_exit_statement_token1] = ACTIONS(1229), - [anon_sym_unset] = ACTIONS(1229), - [aux_sym_declare_statement_token1] = ACTIONS(1229), - [aux_sym_declare_statement_token2] = ACTIONS(1229), - [sym_float] = ACTIONS(1229), - [aux_sym_try_statement_token1] = ACTIONS(1229), - [aux_sym_goto_statement_token1] = ACTIONS(1229), - [aux_sym_continue_statement_token1] = ACTIONS(1229), - [aux_sym_break_statement_token1] = ACTIONS(1229), - [sym_integer] = ACTIONS(1229), - [aux_sym_return_statement_token1] = ACTIONS(1229), - [aux_sym_throw_expression_token1] = ACTIONS(1229), - [aux_sym_while_statement_token1] = ACTIONS(1229), - [aux_sym_while_statement_token2] = ACTIONS(1229), - [aux_sym_do_statement_token1] = ACTIONS(1229), - [aux_sym_for_statement_token1] = ACTIONS(1229), - [aux_sym_for_statement_token2] = ACTIONS(1229), - [aux_sym_foreach_statement_token1] = ACTIONS(1229), - [aux_sym_foreach_statement_token2] = ACTIONS(1229), - [aux_sym_if_statement_token1] = ACTIONS(1229), - [aux_sym_if_statement_token2] = ACTIONS(1229), - [aux_sym_else_if_clause_token1] = ACTIONS(1229), - [aux_sym_else_clause_token1] = ACTIONS(1229), - [aux_sym_match_expression_token1] = ACTIONS(1229), - [aux_sym_match_default_expression_token1] = ACTIONS(1229), - [aux_sym_switch_statement_token1] = ACTIONS(1229), - [aux_sym_switch_block_token1] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(1227), - [aux_sym_clone_expression_token1] = ACTIONS(1229), - [aux_sym_print_intrinsic_token1] = ACTIONS(1229), - [aux_sym_object_creation_expression_token1] = ACTIONS(1229), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [aux_sym__list_destructing_token1] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1227), - [anon_sym_self] = ACTIONS(1229), - [anon_sym_parent] = ACTIONS(1229), - [aux_sym__argument_name_token1] = ACTIONS(1229), - [aux_sym__argument_name_token2] = ACTIONS(1229), - [anon_sym_POUND_LBRACK] = ACTIONS(1227), - [aux_sym_encapsed_string_token1] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1227), - [aux_sym_string_token1] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1227), - [anon_sym_LT_LT_LT] = ACTIONS(1227), - [anon_sym_BQUOTE] = ACTIONS(1227), - [anon_sym_DOLLAR] = ACTIONS(1227), - [aux_sym_yield_expression_token1] = ACTIONS(1229), - [aux_sym_include_expression_token1] = ACTIONS(1229), - [aux_sym_include_once_expression_token1] = ACTIONS(1229), - [aux_sym_require_expression_token1] = ACTIONS(1229), - [aux_sym_require_once_expression_token1] = ACTIONS(1229), + [ts_builtin_sym_end] = ACTIONS(1204), + [sym_name] = ACTIONS(1206), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1204), + [aux_sym_function_static_declaration_token1] = ACTIONS(1206), + [aux_sym_global_declaration_token1] = ACTIONS(1206), + [aux_sym_namespace_definition_token1] = ACTIONS(1206), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1206), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1206), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1206), + [anon_sym_BSLASH] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_RBRACE] = ACTIONS(1204), + [aux_sym_trait_declaration_token1] = ACTIONS(1206), + [aux_sym_interface_declaration_token1] = ACTIONS(1206), + [aux_sym_enum_declaration_token1] = ACTIONS(1206), + [aux_sym_enum_case_token1] = ACTIONS(1206), + [aux_sym_class_declaration_token1] = ACTIONS(1206), + [aux_sym_final_modifier_token1] = ACTIONS(1206), + [aux_sym_abstract_modifier_token1] = ACTIONS(1206), + [aux_sym_readonly_modifier_token1] = ACTIONS(1206), + [sym_var_modifier] = ACTIONS(1206), + [aux_sym_visibility_modifier_token1] = ACTIONS(1206), + [aux_sym_visibility_modifier_token2] = ACTIONS(1206), + [aux_sym_visibility_modifier_token3] = ACTIONS(1206), + [aux_sym__arrow_function_header_token1] = ACTIONS(1206), + [anon_sym_LPAREN] = ACTIONS(1204), + [aux_sym_cast_type_token1] = ACTIONS(1206), + [aux_sym_echo_statement_token1] = ACTIONS(1206), + [aux_sym_exit_statement_token1] = ACTIONS(1206), + [anon_sym_unset] = ACTIONS(1206), + [aux_sym_declare_statement_token1] = ACTIONS(1206), + [aux_sym_declare_statement_token2] = ACTIONS(1206), + [sym_float] = ACTIONS(1206), + [aux_sym_try_statement_token1] = ACTIONS(1206), + [aux_sym_goto_statement_token1] = ACTIONS(1206), + [aux_sym_continue_statement_token1] = ACTIONS(1206), + [aux_sym_break_statement_token1] = ACTIONS(1206), + [sym_integer] = ACTIONS(1206), + [aux_sym_return_statement_token1] = ACTIONS(1206), + [aux_sym_throw_expression_token1] = ACTIONS(1206), + [aux_sym_while_statement_token1] = ACTIONS(1206), + [aux_sym_while_statement_token2] = ACTIONS(1206), + [aux_sym_do_statement_token1] = ACTIONS(1206), + [aux_sym_for_statement_token1] = ACTIONS(1206), + [aux_sym_for_statement_token2] = ACTIONS(1206), + [aux_sym_foreach_statement_token1] = ACTIONS(1206), + [aux_sym_foreach_statement_token2] = ACTIONS(1206), + [aux_sym_if_statement_token1] = ACTIONS(1206), + [aux_sym_if_statement_token2] = ACTIONS(1206), + [aux_sym_else_if_clause_token1] = ACTIONS(1206), + [aux_sym_else_clause_token1] = ACTIONS(1206), + [aux_sym_match_expression_token1] = ACTIONS(1206), + [aux_sym_match_default_expression_token1] = ACTIONS(1206), + [aux_sym_switch_statement_token1] = ACTIONS(1206), + [aux_sym_switch_block_token1] = ACTIONS(1206), + [anon_sym_PLUS] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_AT] = ACTIONS(1204), + [aux_sym_clone_expression_token1] = ACTIONS(1206), + [aux_sym_print_intrinsic_token1] = ACTIONS(1206), + [aux_sym_object_creation_expression_token1] = ACTIONS(1206), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [aux_sym__list_destructing_token1] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_self] = ACTIONS(1206), + [anon_sym_parent] = ACTIONS(1206), + [aux_sym__argument_name_token1] = ACTIONS(1206), + [aux_sym__argument_name_token2] = ACTIONS(1206), + [anon_sym_POUND_LBRACK] = ACTIONS(1204), + [aux_sym_encapsed_string_token1] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1204), + [aux_sym_string_token1] = ACTIONS(1204), + [anon_sym_SQUOTE] = ACTIONS(1204), + [anon_sym_LT_LT_LT] = ACTIONS(1204), + [anon_sym_BQUOTE] = ACTIONS(1204), + [anon_sym_DOLLAR] = ACTIONS(1204), + [aux_sym_yield_expression_token1] = ACTIONS(1206), + [aux_sym_include_expression_token1] = ACTIONS(1206), + [aux_sym_include_once_expression_token1] = ACTIONS(1206), + [aux_sym_require_expression_token1] = ACTIONS(1206), + [aux_sym_require_once_expression_token1] = ACTIONS(1206), [sym_comment] = ACTIONS(5), }, [475] = { [sym_text_interpolation] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(1231), - [sym_name] = ACTIONS(1233), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1231), - [aux_sym_function_static_declaration_token1] = ACTIONS(1233), - [aux_sym_global_declaration_token1] = ACTIONS(1233), - [aux_sym_namespace_definition_token1] = ACTIONS(1233), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1233), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1233), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1233), - [anon_sym_BSLASH] = ACTIONS(1231), - [anon_sym_LBRACE] = ACTIONS(1231), - [anon_sym_RBRACE] = ACTIONS(1231), - [aux_sym_trait_declaration_token1] = ACTIONS(1233), - [aux_sym_interface_declaration_token1] = ACTIONS(1233), - [aux_sym_enum_declaration_token1] = ACTIONS(1233), - [aux_sym_enum_case_token1] = ACTIONS(1233), - [aux_sym_class_declaration_token1] = ACTIONS(1233), - [aux_sym_final_modifier_token1] = ACTIONS(1233), - [aux_sym_abstract_modifier_token1] = ACTIONS(1233), - [aux_sym_readonly_modifier_token1] = ACTIONS(1233), - [aux_sym_visibility_modifier_token1] = ACTIONS(1233), - [aux_sym_visibility_modifier_token2] = ACTIONS(1233), - [aux_sym_visibility_modifier_token3] = ACTIONS(1233), - [aux_sym__arrow_function_header_token1] = ACTIONS(1233), - [anon_sym_LPAREN] = ACTIONS(1231), - [aux_sym_cast_type_token1] = ACTIONS(1233), - [aux_sym_echo_statement_token1] = ACTIONS(1233), - [aux_sym_exit_statement_token1] = ACTIONS(1233), - [anon_sym_unset] = ACTIONS(1233), - [aux_sym_declare_statement_token1] = ACTIONS(1233), - [aux_sym_declare_statement_token2] = ACTIONS(1233), - [sym_float] = ACTIONS(1233), - [aux_sym_try_statement_token1] = ACTIONS(1233), - [aux_sym_goto_statement_token1] = ACTIONS(1233), - [aux_sym_continue_statement_token1] = ACTIONS(1233), - [aux_sym_break_statement_token1] = ACTIONS(1233), - [sym_integer] = ACTIONS(1233), - [aux_sym_return_statement_token1] = ACTIONS(1233), - [aux_sym_throw_expression_token1] = ACTIONS(1233), - [aux_sym_while_statement_token1] = ACTIONS(1233), - [aux_sym_while_statement_token2] = ACTIONS(1233), - [aux_sym_do_statement_token1] = ACTIONS(1233), - [aux_sym_for_statement_token1] = ACTIONS(1233), - [aux_sym_for_statement_token2] = ACTIONS(1233), - [aux_sym_foreach_statement_token1] = ACTIONS(1233), - [aux_sym_foreach_statement_token2] = ACTIONS(1233), - [aux_sym_if_statement_token1] = ACTIONS(1233), - [aux_sym_if_statement_token2] = ACTIONS(1233), - [aux_sym_else_if_clause_token1] = ACTIONS(1233), - [aux_sym_else_clause_token1] = ACTIONS(1233), - [aux_sym_match_expression_token1] = ACTIONS(1233), - [aux_sym_match_default_expression_token1] = ACTIONS(1233), - [aux_sym_switch_statement_token1] = ACTIONS(1233), - [aux_sym_switch_block_token1] = ACTIONS(1233), - [anon_sym_PLUS] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(1233), - [anon_sym_TILDE] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(1231), - [aux_sym_clone_expression_token1] = ACTIONS(1233), - [aux_sym_print_intrinsic_token1] = ACTIONS(1233), - [aux_sym_object_creation_expression_token1] = ACTIONS(1233), - [anon_sym_DASH_DASH] = ACTIONS(1231), - [anon_sym_PLUS_PLUS] = ACTIONS(1231), - [aux_sym__list_destructing_token1] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_self] = ACTIONS(1233), - [anon_sym_parent] = ACTIONS(1233), - [aux_sym__argument_name_token1] = ACTIONS(1233), - [aux_sym__argument_name_token2] = ACTIONS(1233), - [anon_sym_POUND_LBRACK] = ACTIONS(1231), - [aux_sym_encapsed_string_token1] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [aux_sym_string_token1] = ACTIONS(1231), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_LT_LT_LT] = ACTIONS(1231), - [anon_sym_BQUOTE] = ACTIONS(1231), - [anon_sym_DOLLAR] = ACTIONS(1231), - [aux_sym_yield_expression_token1] = ACTIONS(1233), - [aux_sym_include_expression_token1] = ACTIONS(1233), - [aux_sym_include_once_expression_token1] = ACTIONS(1233), - [aux_sym_require_expression_token1] = ACTIONS(1233), - [aux_sym_require_once_expression_token1] = ACTIONS(1233), + [ts_builtin_sym_end] = ACTIONS(1208), + [sym_name] = ACTIONS(1210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1208), + [aux_sym_function_static_declaration_token1] = ACTIONS(1210), + [aux_sym_global_declaration_token1] = ACTIONS(1210), + [aux_sym_namespace_definition_token1] = ACTIONS(1210), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1210), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1210), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1210), + [anon_sym_BSLASH] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1208), + [anon_sym_RBRACE] = ACTIONS(1208), + [aux_sym_trait_declaration_token1] = ACTIONS(1210), + [aux_sym_interface_declaration_token1] = ACTIONS(1210), + [aux_sym_enum_declaration_token1] = ACTIONS(1210), + [aux_sym_enum_case_token1] = ACTIONS(1210), + [aux_sym_class_declaration_token1] = ACTIONS(1210), + [aux_sym_final_modifier_token1] = ACTIONS(1210), + [aux_sym_abstract_modifier_token1] = ACTIONS(1210), + [aux_sym_readonly_modifier_token1] = ACTIONS(1210), + [sym_var_modifier] = ACTIONS(1210), + [aux_sym_visibility_modifier_token1] = ACTIONS(1210), + [aux_sym_visibility_modifier_token2] = ACTIONS(1210), + [aux_sym_visibility_modifier_token3] = ACTIONS(1210), + [aux_sym__arrow_function_header_token1] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(1208), + [aux_sym_cast_type_token1] = ACTIONS(1210), + [aux_sym_echo_statement_token1] = ACTIONS(1210), + [aux_sym_exit_statement_token1] = ACTIONS(1210), + [anon_sym_unset] = ACTIONS(1210), + [aux_sym_declare_statement_token1] = ACTIONS(1210), + [aux_sym_declare_statement_token2] = ACTIONS(1210), + [sym_float] = ACTIONS(1210), + [aux_sym_try_statement_token1] = ACTIONS(1210), + [aux_sym_goto_statement_token1] = ACTIONS(1210), + [aux_sym_continue_statement_token1] = ACTIONS(1210), + [aux_sym_break_statement_token1] = ACTIONS(1210), + [sym_integer] = ACTIONS(1210), + [aux_sym_return_statement_token1] = ACTIONS(1210), + [aux_sym_throw_expression_token1] = ACTIONS(1210), + [aux_sym_while_statement_token1] = ACTIONS(1210), + [aux_sym_while_statement_token2] = ACTIONS(1210), + [aux_sym_do_statement_token1] = ACTIONS(1210), + [aux_sym_for_statement_token1] = ACTIONS(1210), + [aux_sym_for_statement_token2] = ACTIONS(1210), + [aux_sym_foreach_statement_token1] = ACTIONS(1210), + [aux_sym_foreach_statement_token2] = ACTIONS(1210), + [aux_sym_if_statement_token1] = ACTIONS(1210), + [aux_sym_if_statement_token2] = ACTIONS(1210), + [aux_sym_else_if_clause_token1] = ACTIONS(1210), + [aux_sym_else_clause_token1] = ACTIONS(1210), + [aux_sym_match_expression_token1] = ACTIONS(1210), + [aux_sym_match_default_expression_token1] = ACTIONS(1210), + [aux_sym_switch_statement_token1] = ACTIONS(1210), + [aux_sym_switch_block_token1] = ACTIONS(1210), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_AT] = ACTIONS(1208), + [aux_sym_clone_expression_token1] = ACTIONS(1210), + [aux_sym_print_intrinsic_token1] = ACTIONS(1210), + [aux_sym_object_creation_expression_token1] = ACTIONS(1210), + [anon_sym_DASH_DASH] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1208), + [aux_sym__list_destructing_token1] = ACTIONS(1210), + [anon_sym_LBRACK] = ACTIONS(1208), + [anon_sym_self] = ACTIONS(1210), + [anon_sym_parent] = ACTIONS(1210), + [aux_sym__argument_name_token1] = ACTIONS(1210), + [aux_sym__argument_name_token2] = ACTIONS(1210), + [anon_sym_POUND_LBRACK] = ACTIONS(1208), + [aux_sym_encapsed_string_token1] = ACTIONS(1208), + [anon_sym_DQUOTE] = ACTIONS(1208), + [aux_sym_string_token1] = ACTIONS(1208), + [anon_sym_SQUOTE] = ACTIONS(1208), + [anon_sym_LT_LT_LT] = ACTIONS(1208), + [anon_sym_BQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR] = ACTIONS(1208), + [aux_sym_yield_expression_token1] = ACTIONS(1210), + [aux_sym_include_expression_token1] = ACTIONS(1210), + [aux_sym_include_once_expression_token1] = ACTIONS(1210), + [aux_sym_require_expression_token1] = ACTIONS(1210), + [aux_sym_require_once_expression_token1] = ACTIONS(1210), [sym_comment] = ACTIONS(5), }, [476] = { [sym_text_interpolation] = STATE(476), - [ts_builtin_sym_end] = ACTIONS(1235), - [sym_name] = ACTIONS(1237), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1235), - [aux_sym_function_static_declaration_token1] = ACTIONS(1237), - [aux_sym_global_declaration_token1] = ACTIONS(1237), - [aux_sym_namespace_definition_token1] = ACTIONS(1237), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1237), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1237), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1237), - [anon_sym_BSLASH] = ACTIONS(1235), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_RBRACE] = ACTIONS(1235), - [aux_sym_trait_declaration_token1] = ACTIONS(1237), - [aux_sym_interface_declaration_token1] = ACTIONS(1237), - [aux_sym_enum_declaration_token1] = ACTIONS(1237), - [aux_sym_enum_case_token1] = ACTIONS(1237), - [aux_sym_class_declaration_token1] = ACTIONS(1237), - [aux_sym_final_modifier_token1] = ACTIONS(1237), - [aux_sym_abstract_modifier_token1] = ACTIONS(1237), - [aux_sym_readonly_modifier_token1] = ACTIONS(1237), - [aux_sym_visibility_modifier_token1] = ACTIONS(1237), - [aux_sym_visibility_modifier_token2] = ACTIONS(1237), - [aux_sym_visibility_modifier_token3] = ACTIONS(1237), - [aux_sym__arrow_function_header_token1] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1235), - [aux_sym_cast_type_token1] = ACTIONS(1237), - [aux_sym_echo_statement_token1] = ACTIONS(1237), - [aux_sym_exit_statement_token1] = ACTIONS(1237), - [anon_sym_unset] = ACTIONS(1237), - [aux_sym_declare_statement_token1] = ACTIONS(1237), - [aux_sym_declare_statement_token2] = ACTIONS(1237), - [sym_float] = ACTIONS(1237), - [aux_sym_try_statement_token1] = ACTIONS(1237), - [aux_sym_goto_statement_token1] = ACTIONS(1237), - [aux_sym_continue_statement_token1] = ACTIONS(1237), - [aux_sym_break_statement_token1] = ACTIONS(1237), - [sym_integer] = ACTIONS(1237), - [aux_sym_return_statement_token1] = ACTIONS(1237), - [aux_sym_throw_expression_token1] = ACTIONS(1237), - [aux_sym_while_statement_token1] = ACTIONS(1237), - [aux_sym_while_statement_token2] = ACTIONS(1237), - [aux_sym_do_statement_token1] = ACTIONS(1237), - [aux_sym_for_statement_token1] = ACTIONS(1237), - [aux_sym_for_statement_token2] = ACTIONS(1237), - [aux_sym_foreach_statement_token1] = ACTIONS(1237), - [aux_sym_foreach_statement_token2] = ACTIONS(1237), - [aux_sym_if_statement_token1] = ACTIONS(1237), - [aux_sym_if_statement_token2] = ACTIONS(1237), - [aux_sym_else_if_clause_token1] = ACTIONS(1237), - [aux_sym_else_clause_token1] = ACTIONS(1237), - [aux_sym_match_expression_token1] = ACTIONS(1237), - [aux_sym_match_default_expression_token1] = ACTIONS(1237), - [aux_sym_switch_statement_token1] = ACTIONS(1237), - [aux_sym_switch_block_token1] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1237), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_AT] = ACTIONS(1235), - [aux_sym_clone_expression_token1] = ACTIONS(1237), - [aux_sym_print_intrinsic_token1] = ACTIONS(1237), - [aux_sym_object_creation_expression_token1] = ACTIONS(1237), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [aux_sym__list_destructing_token1] = ACTIONS(1237), - [anon_sym_LBRACK] = ACTIONS(1235), - [anon_sym_self] = ACTIONS(1237), - [anon_sym_parent] = ACTIONS(1237), - [aux_sym__argument_name_token1] = ACTIONS(1237), - [aux_sym__argument_name_token2] = ACTIONS(1237), - [anon_sym_POUND_LBRACK] = ACTIONS(1235), - [aux_sym_encapsed_string_token1] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [aux_sym_string_token1] = ACTIONS(1235), - [anon_sym_SQUOTE] = ACTIONS(1235), - [anon_sym_LT_LT_LT] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(1235), - [aux_sym_yield_expression_token1] = ACTIONS(1237), - [aux_sym_include_expression_token1] = ACTIONS(1237), - [aux_sym_include_once_expression_token1] = ACTIONS(1237), - [aux_sym_require_expression_token1] = ACTIONS(1237), - [aux_sym_require_once_expression_token1] = ACTIONS(1237), + [ts_builtin_sym_end] = ACTIONS(1212), + [sym_name] = ACTIONS(1214), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1212), + [aux_sym_function_static_declaration_token1] = ACTIONS(1214), + [aux_sym_global_declaration_token1] = ACTIONS(1214), + [aux_sym_namespace_definition_token1] = ACTIONS(1214), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1214), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1214), + [anon_sym_BSLASH] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [aux_sym_trait_declaration_token1] = ACTIONS(1214), + [aux_sym_interface_declaration_token1] = ACTIONS(1214), + [aux_sym_enum_declaration_token1] = ACTIONS(1214), + [aux_sym_enum_case_token1] = ACTIONS(1214), + [aux_sym_class_declaration_token1] = ACTIONS(1214), + [aux_sym_final_modifier_token1] = ACTIONS(1214), + [aux_sym_abstract_modifier_token1] = ACTIONS(1214), + [aux_sym_readonly_modifier_token1] = ACTIONS(1214), + [sym_var_modifier] = ACTIONS(1214), + [aux_sym_visibility_modifier_token1] = ACTIONS(1214), + [aux_sym_visibility_modifier_token2] = ACTIONS(1214), + [aux_sym_visibility_modifier_token3] = ACTIONS(1214), + [aux_sym__arrow_function_header_token1] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1212), + [aux_sym_cast_type_token1] = ACTIONS(1214), + [aux_sym_echo_statement_token1] = ACTIONS(1214), + [aux_sym_exit_statement_token1] = ACTIONS(1214), + [anon_sym_unset] = ACTIONS(1214), + [aux_sym_declare_statement_token1] = ACTIONS(1214), + [aux_sym_declare_statement_token2] = ACTIONS(1214), + [sym_float] = ACTIONS(1214), + [aux_sym_try_statement_token1] = ACTIONS(1214), + [aux_sym_goto_statement_token1] = ACTIONS(1214), + [aux_sym_continue_statement_token1] = ACTIONS(1214), + [aux_sym_break_statement_token1] = ACTIONS(1214), + [sym_integer] = ACTIONS(1214), + [aux_sym_return_statement_token1] = ACTIONS(1214), + [aux_sym_throw_expression_token1] = ACTIONS(1214), + [aux_sym_while_statement_token1] = ACTIONS(1214), + [aux_sym_while_statement_token2] = ACTIONS(1214), + [aux_sym_do_statement_token1] = ACTIONS(1214), + [aux_sym_for_statement_token1] = ACTIONS(1214), + [aux_sym_for_statement_token2] = ACTIONS(1214), + [aux_sym_foreach_statement_token1] = ACTIONS(1214), + [aux_sym_foreach_statement_token2] = ACTIONS(1214), + [aux_sym_if_statement_token1] = ACTIONS(1214), + [aux_sym_if_statement_token2] = ACTIONS(1214), + [aux_sym_else_if_clause_token1] = ACTIONS(1214), + [aux_sym_else_clause_token1] = ACTIONS(1214), + [aux_sym_match_expression_token1] = ACTIONS(1214), + [aux_sym_match_default_expression_token1] = ACTIONS(1214), + [aux_sym_switch_statement_token1] = ACTIONS(1214), + [aux_sym_switch_block_token1] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_AT] = ACTIONS(1212), + [aux_sym_clone_expression_token1] = ACTIONS(1214), + [aux_sym_print_intrinsic_token1] = ACTIONS(1214), + [aux_sym_object_creation_expression_token1] = ACTIONS(1214), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [aux_sym__list_destructing_token1] = ACTIONS(1214), + [anon_sym_LBRACK] = ACTIONS(1212), + [anon_sym_self] = ACTIONS(1214), + [anon_sym_parent] = ACTIONS(1214), + [aux_sym__argument_name_token1] = ACTIONS(1214), + [aux_sym__argument_name_token2] = ACTIONS(1214), + [anon_sym_POUND_LBRACK] = ACTIONS(1212), + [aux_sym_encapsed_string_token1] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [aux_sym_string_token1] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [anon_sym_LT_LT_LT] = ACTIONS(1212), + [anon_sym_BQUOTE] = ACTIONS(1212), + [anon_sym_DOLLAR] = ACTIONS(1212), + [aux_sym_yield_expression_token1] = ACTIONS(1214), + [aux_sym_include_expression_token1] = ACTIONS(1214), + [aux_sym_include_once_expression_token1] = ACTIONS(1214), + [aux_sym_require_expression_token1] = ACTIONS(1214), + [aux_sym_require_once_expression_token1] = ACTIONS(1214), [sym_comment] = ACTIONS(5), }, [477] = { [sym_text_interpolation] = STATE(477), - [ts_builtin_sym_end] = ACTIONS(1239), - [sym_name] = ACTIONS(1241), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1239), - [aux_sym_function_static_declaration_token1] = ACTIONS(1241), - [aux_sym_global_declaration_token1] = ACTIONS(1241), - [aux_sym_namespace_definition_token1] = ACTIONS(1241), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1241), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1241), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1241), - [anon_sym_BSLASH] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_RBRACE] = ACTIONS(1239), - [aux_sym_trait_declaration_token1] = ACTIONS(1241), - [aux_sym_interface_declaration_token1] = ACTIONS(1241), - [aux_sym_enum_declaration_token1] = ACTIONS(1241), - [aux_sym_enum_case_token1] = ACTIONS(1241), - [aux_sym_class_declaration_token1] = ACTIONS(1241), - [aux_sym_final_modifier_token1] = ACTIONS(1241), - [aux_sym_abstract_modifier_token1] = ACTIONS(1241), - [aux_sym_readonly_modifier_token1] = ACTIONS(1241), - [aux_sym_visibility_modifier_token1] = ACTIONS(1241), - [aux_sym_visibility_modifier_token2] = ACTIONS(1241), - [aux_sym_visibility_modifier_token3] = ACTIONS(1241), - [aux_sym__arrow_function_header_token1] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1239), - [aux_sym_cast_type_token1] = ACTIONS(1241), - [aux_sym_echo_statement_token1] = ACTIONS(1241), - [aux_sym_exit_statement_token1] = ACTIONS(1241), - [anon_sym_unset] = ACTIONS(1241), - [aux_sym_declare_statement_token1] = ACTIONS(1241), - [aux_sym_declare_statement_token2] = ACTIONS(1241), - [sym_float] = ACTIONS(1241), - [aux_sym_try_statement_token1] = ACTIONS(1241), - [aux_sym_goto_statement_token1] = ACTIONS(1241), - [aux_sym_continue_statement_token1] = ACTIONS(1241), - [aux_sym_break_statement_token1] = ACTIONS(1241), - [sym_integer] = ACTIONS(1241), - [aux_sym_return_statement_token1] = ACTIONS(1241), - [aux_sym_throw_expression_token1] = ACTIONS(1241), - [aux_sym_while_statement_token1] = ACTIONS(1241), - [aux_sym_while_statement_token2] = ACTIONS(1241), - [aux_sym_do_statement_token1] = ACTIONS(1241), - [aux_sym_for_statement_token1] = ACTIONS(1241), - [aux_sym_for_statement_token2] = ACTIONS(1241), - [aux_sym_foreach_statement_token1] = ACTIONS(1241), - [aux_sym_foreach_statement_token2] = ACTIONS(1241), - [aux_sym_if_statement_token1] = ACTIONS(1241), - [aux_sym_if_statement_token2] = ACTIONS(1241), - [aux_sym_else_if_clause_token1] = ACTIONS(1241), - [aux_sym_else_clause_token1] = ACTIONS(1241), - [aux_sym_match_expression_token1] = ACTIONS(1241), - [aux_sym_match_default_expression_token1] = ACTIONS(1241), - [aux_sym_switch_statement_token1] = ACTIONS(1241), - [aux_sym_switch_block_token1] = ACTIONS(1241), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_AT] = ACTIONS(1239), - [aux_sym_clone_expression_token1] = ACTIONS(1241), - [aux_sym_print_intrinsic_token1] = ACTIONS(1241), - [aux_sym_object_creation_expression_token1] = ACTIONS(1241), - [anon_sym_DASH_DASH] = ACTIONS(1239), - [anon_sym_PLUS_PLUS] = ACTIONS(1239), - [aux_sym__list_destructing_token1] = ACTIONS(1241), - [anon_sym_LBRACK] = ACTIONS(1239), - [anon_sym_self] = ACTIONS(1241), - [anon_sym_parent] = ACTIONS(1241), - [aux_sym__argument_name_token1] = ACTIONS(1241), - [aux_sym__argument_name_token2] = ACTIONS(1241), - [anon_sym_POUND_LBRACK] = ACTIONS(1239), - [aux_sym_encapsed_string_token1] = ACTIONS(1239), - [anon_sym_DQUOTE] = ACTIONS(1239), - [aux_sym_string_token1] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1239), - [anon_sym_LT_LT_LT] = ACTIONS(1239), - [anon_sym_BQUOTE] = ACTIONS(1239), - [anon_sym_DOLLAR] = ACTIONS(1239), - [aux_sym_yield_expression_token1] = ACTIONS(1241), - [aux_sym_include_expression_token1] = ACTIONS(1241), - [aux_sym_include_once_expression_token1] = ACTIONS(1241), - [aux_sym_require_expression_token1] = ACTIONS(1241), - [aux_sym_require_once_expression_token1] = ACTIONS(1241), + [ts_builtin_sym_end] = ACTIONS(1216), + [sym_name] = ACTIONS(1218), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1216), + [aux_sym_function_static_declaration_token1] = ACTIONS(1218), + [aux_sym_global_declaration_token1] = ACTIONS(1218), + [aux_sym_namespace_definition_token1] = ACTIONS(1218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1218), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1218), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1218), + [anon_sym_BSLASH] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_RBRACE] = ACTIONS(1216), + [aux_sym_trait_declaration_token1] = ACTIONS(1218), + [aux_sym_interface_declaration_token1] = ACTIONS(1218), + [aux_sym_enum_declaration_token1] = ACTIONS(1218), + [aux_sym_enum_case_token1] = ACTIONS(1218), + [aux_sym_class_declaration_token1] = ACTIONS(1218), + [aux_sym_final_modifier_token1] = ACTIONS(1218), + [aux_sym_abstract_modifier_token1] = ACTIONS(1218), + [aux_sym_readonly_modifier_token1] = ACTIONS(1218), + [sym_var_modifier] = ACTIONS(1218), + [aux_sym_visibility_modifier_token1] = ACTIONS(1218), + [aux_sym_visibility_modifier_token2] = ACTIONS(1218), + [aux_sym_visibility_modifier_token3] = ACTIONS(1218), + [aux_sym__arrow_function_header_token1] = ACTIONS(1218), + [anon_sym_LPAREN] = ACTIONS(1216), + [aux_sym_cast_type_token1] = ACTIONS(1218), + [aux_sym_echo_statement_token1] = ACTIONS(1218), + [aux_sym_exit_statement_token1] = ACTIONS(1218), + [anon_sym_unset] = ACTIONS(1218), + [aux_sym_declare_statement_token1] = ACTIONS(1218), + [aux_sym_declare_statement_token2] = ACTIONS(1218), + [sym_float] = ACTIONS(1218), + [aux_sym_try_statement_token1] = ACTIONS(1218), + [aux_sym_goto_statement_token1] = ACTIONS(1218), + [aux_sym_continue_statement_token1] = ACTIONS(1218), + [aux_sym_break_statement_token1] = ACTIONS(1218), + [sym_integer] = ACTIONS(1218), + [aux_sym_return_statement_token1] = ACTIONS(1218), + [aux_sym_throw_expression_token1] = ACTIONS(1218), + [aux_sym_while_statement_token1] = ACTIONS(1218), + [aux_sym_while_statement_token2] = ACTIONS(1218), + [aux_sym_do_statement_token1] = ACTIONS(1218), + [aux_sym_for_statement_token1] = ACTIONS(1218), + [aux_sym_for_statement_token2] = ACTIONS(1218), + [aux_sym_foreach_statement_token1] = ACTIONS(1218), + [aux_sym_foreach_statement_token2] = ACTIONS(1218), + [aux_sym_if_statement_token1] = ACTIONS(1218), + [aux_sym_if_statement_token2] = ACTIONS(1218), + [aux_sym_else_if_clause_token1] = ACTIONS(1218), + [aux_sym_else_clause_token1] = ACTIONS(1218), + [aux_sym_match_expression_token1] = ACTIONS(1218), + [aux_sym_match_default_expression_token1] = ACTIONS(1218), + [aux_sym_switch_statement_token1] = ACTIONS(1218), + [aux_sym_switch_block_token1] = ACTIONS(1218), + [anon_sym_PLUS] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1216), + [anon_sym_BANG] = ACTIONS(1216), + [anon_sym_AT] = ACTIONS(1216), + [aux_sym_clone_expression_token1] = ACTIONS(1218), + [aux_sym_print_intrinsic_token1] = ACTIONS(1218), + [aux_sym_object_creation_expression_token1] = ACTIONS(1218), + [anon_sym_DASH_DASH] = ACTIONS(1216), + [anon_sym_PLUS_PLUS] = ACTIONS(1216), + [aux_sym__list_destructing_token1] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1216), + [anon_sym_self] = ACTIONS(1218), + [anon_sym_parent] = ACTIONS(1218), + [aux_sym__argument_name_token1] = ACTIONS(1218), + [aux_sym__argument_name_token2] = ACTIONS(1218), + [anon_sym_POUND_LBRACK] = ACTIONS(1216), + [aux_sym_encapsed_string_token1] = ACTIONS(1216), + [anon_sym_DQUOTE] = ACTIONS(1216), + [aux_sym_string_token1] = ACTIONS(1216), + [anon_sym_SQUOTE] = ACTIONS(1216), + [anon_sym_LT_LT_LT] = ACTIONS(1216), + [anon_sym_BQUOTE] = ACTIONS(1216), + [anon_sym_DOLLAR] = ACTIONS(1216), + [aux_sym_yield_expression_token1] = ACTIONS(1218), + [aux_sym_include_expression_token1] = ACTIONS(1218), + [aux_sym_include_once_expression_token1] = ACTIONS(1218), + [aux_sym_require_expression_token1] = ACTIONS(1218), + [aux_sym_require_once_expression_token1] = ACTIONS(1218), [sym_comment] = ACTIONS(5), }, [478] = { [sym_text_interpolation] = STATE(478), - [ts_builtin_sym_end] = ACTIONS(1243), - [sym_name] = ACTIONS(1245), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1243), - [aux_sym_function_static_declaration_token1] = ACTIONS(1245), - [aux_sym_global_declaration_token1] = ACTIONS(1245), - [aux_sym_namespace_definition_token1] = ACTIONS(1245), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1245), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1245), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1245), - [anon_sym_BSLASH] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [aux_sym_trait_declaration_token1] = ACTIONS(1245), - [aux_sym_interface_declaration_token1] = ACTIONS(1245), - [aux_sym_enum_declaration_token1] = ACTIONS(1245), - [aux_sym_enum_case_token1] = ACTIONS(1245), - [aux_sym_class_declaration_token1] = ACTIONS(1245), - [aux_sym_final_modifier_token1] = ACTIONS(1245), - [aux_sym_abstract_modifier_token1] = ACTIONS(1245), - [aux_sym_readonly_modifier_token1] = ACTIONS(1245), - [aux_sym_visibility_modifier_token1] = ACTIONS(1245), - [aux_sym_visibility_modifier_token2] = ACTIONS(1245), - [aux_sym_visibility_modifier_token3] = ACTIONS(1245), - [aux_sym__arrow_function_header_token1] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1243), - [aux_sym_cast_type_token1] = ACTIONS(1245), - [aux_sym_echo_statement_token1] = ACTIONS(1245), - [aux_sym_exit_statement_token1] = ACTIONS(1245), - [anon_sym_unset] = ACTIONS(1245), - [aux_sym_declare_statement_token1] = ACTIONS(1245), - [aux_sym_declare_statement_token2] = ACTIONS(1245), - [sym_float] = ACTIONS(1245), - [aux_sym_try_statement_token1] = ACTIONS(1245), - [aux_sym_goto_statement_token1] = ACTIONS(1245), - [aux_sym_continue_statement_token1] = ACTIONS(1245), - [aux_sym_break_statement_token1] = ACTIONS(1245), - [sym_integer] = ACTIONS(1245), - [aux_sym_return_statement_token1] = ACTIONS(1245), - [aux_sym_throw_expression_token1] = ACTIONS(1245), - [aux_sym_while_statement_token1] = ACTIONS(1245), - [aux_sym_while_statement_token2] = ACTIONS(1245), - [aux_sym_do_statement_token1] = ACTIONS(1245), - [aux_sym_for_statement_token1] = ACTIONS(1245), - [aux_sym_for_statement_token2] = ACTIONS(1245), - [aux_sym_foreach_statement_token1] = ACTIONS(1245), - [aux_sym_foreach_statement_token2] = ACTIONS(1245), - [aux_sym_if_statement_token1] = ACTIONS(1245), - [aux_sym_if_statement_token2] = ACTIONS(1245), - [aux_sym_else_if_clause_token1] = ACTIONS(1245), - [aux_sym_else_clause_token1] = ACTIONS(1245), - [aux_sym_match_expression_token1] = ACTIONS(1245), - [aux_sym_match_default_expression_token1] = ACTIONS(1245), - [aux_sym_switch_statement_token1] = ACTIONS(1245), - [aux_sym_switch_block_token1] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AT] = ACTIONS(1243), - [aux_sym_clone_expression_token1] = ACTIONS(1245), - [aux_sym_print_intrinsic_token1] = ACTIONS(1245), - [aux_sym_object_creation_expression_token1] = ACTIONS(1245), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [aux_sym__list_destructing_token1] = ACTIONS(1245), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_self] = ACTIONS(1245), - [anon_sym_parent] = ACTIONS(1245), - [aux_sym__argument_name_token1] = ACTIONS(1245), - [aux_sym__argument_name_token2] = ACTIONS(1245), - [anon_sym_POUND_LBRACK] = ACTIONS(1243), - [aux_sym_encapsed_string_token1] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [aux_sym_string_token1] = ACTIONS(1243), - [anon_sym_SQUOTE] = ACTIONS(1243), - [anon_sym_LT_LT_LT] = ACTIONS(1243), - [anon_sym_BQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [aux_sym_yield_expression_token1] = ACTIONS(1245), - [aux_sym_include_expression_token1] = ACTIONS(1245), - [aux_sym_include_once_expression_token1] = ACTIONS(1245), - [aux_sym_require_expression_token1] = ACTIONS(1245), - [aux_sym_require_once_expression_token1] = ACTIONS(1245), + [ts_builtin_sym_end] = ACTIONS(1220), + [sym_name] = ACTIONS(1222), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1220), + [aux_sym_function_static_declaration_token1] = ACTIONS(1222), + [aux_sym_global_declaration_token1] = ACTIONS(1222), + [aux_sym_namespace_definition_token1] = ACTIONS(1222), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1222), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1222), + [anon_sym_BSLASH] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_RBRACE] = ACTIONS(1220), + [aux_sym_trait_declaration_token1] = ACTIONS(1222), + [aux_sym_interface_declaration_token1] = ACTIONS(1222), + [aux_sym_enum_declaration_token1] = ACTIONS(1222), + [aux_sym_enum_case_token1] = ACTIONS(1222), + [aux_sym_class_declaration_token1] = ACTIONS(1222), + [aux_sym_final_modifier_token1] = ACTIONS(1222), + [aux_sym_abstract_modifier_token1] = ACTIONS(1222), + [aux_sym_readonly_modifier_token1] = ACTIONS(1222), + [sym_var_modifier] = ACTIONS(1222), + [aux_sym_visibility_modifier_token1] = ACTIONS(1222), + [aux_sym_visibility_modifier_token2] = ACTIONS(1222), + [aux_sym_visibility_modifier_token3] = ACTIONS(1222), + [aux_sym__arrow_function_header_token1] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1220), + [aux_sym_cast_type_token1] = ACTIONS(1222), + [aux_sym_echo_statement_token1] = ACTIONS(1222), + [aux_sym_exit_statement_token1] = ACTIONS(1222), + [anon_sym_unset] = ACTIONS(1222), + [aux_sym_declare_statement_token1] = ACTIONS(1222), + [aux_sym_declare_statement_token2] = ACTIONS(1222), + [sym_float] = ACTIONS(1222), + [aux_sym_try_statement_token1] = ACTIONS(1222), + [aux_sym_goto_statement_token1] = ACTIONS(1222), + [aux_sym_continue_statement_token1] = ACTIONS(1222), + [aux_sym_break_statement_token1] = ACTIONS(1222), + [sym_integer] = ACTIONS(1222), + [aux_sym_return_statement_token1] = ACTIONS(1222), + [aux_sym_throw_expression_token1] = ACTIONS(1222), + [aux_sym_while_statement_token1] = ACTIONS(1222), + [aux_sym_while_statement_token2] = ACTIONS(1222), + [aux_sym_do_statement_token1] = ACTIONS(1222), + [aux_sym_for_statement_token1] = ACTIONS(1222), + [aux_sym_for_statement_token2] = ACTIONS(1222), + [aux_sym_foreach_statement_token1] = ACTIONS(1222), + [aux_sym_foreach_statement_token2] = ACTIONS(1222), + [aux_sym_if_statement_token1] = ACTIONS(1222), + [aux_sym_if_statement_token2] = ACTIONS(1222), + [aux_sym_else_if_clause_token1] = ACTIONS(1222), + [aux_sym_else_clause_token1] = ACTIONS(1222), + [aux_sym_match_expression_token1] = ACTIONS(1222), + [aux_sym_match_default_expression_token1] = ACTIONS(1222), + [aux_sym_switch_statement_token1] = ACTIONS(1222), + [aux_sym_switch_block_token1] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_AT] = ACTIONS(1220), + [aux_sym_clone_expression_token1] = ACTIONS(1222), + [aux_sym_print_intrinsic_token1] = ACTIONS(1222), + [aux_sym_object_creation_expression_token1] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [aux_sym__list_destructing_token1] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(1220), + [anon_sym_self] = ACTIONS(1222), + [anon_sym_parent] = ACTIONS(1222), + [aux_sym__argument_name_token1] = ACTIONS(1222), + [aux_sym__argument_name_token2] = ACTIONS(1222), + [anon_sym_POUND_LBRACK] = ACTIONS(1220), + [aux_sym_encapsed_string_token1] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1220), + [aux_sym_string_token1] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_LT_LT_LT] = ACTIONS(1220), + [anon_sym_BQUOTE] = ACTIONS(1220), + [anon_sym_DOLLAR] = ACTIONS(1220), + [aux_sym_yield_expression_token1] = ACTIONS(1222), + [aux_sym_include_expression_token1] = ACTIONS(1222), + [aux_sym_include_once_expression_token1] = ACTIONS(1222), + [aux_sym_require_expression_token1] = ACTIONS(1222), + [aux_sym_require_once_expression_token1] = ACTIONS(1222), [sym_comment] = ACTIONS(5), }, [479] = { [sym_text_interpolation] = STATE(479), - [ts_builtin_sym_end] = ACTIONS(1243), - [sym_name] = ACTIONS(1245), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1243), - [aux_sym_function_static_declaration_token1] = ACTIONS(1245), - [aux_sym_global_declaration_token1] = ACTIONS(1245), - [aux_sym_namespace_definition_token1] = ACTIONS(1245), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1245), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1245), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1245), - [anon_sym_BSLASH] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [aux_sym_trait_declaration_token1] = ACTIONS(1245), - [aux_sym_interface_declaration_token1] = ACTIONS(1245), - [aux_sym_enum_declaration_token1] = ACTIONS(1245), - [aux_sym_enum_case_token1] = ACTIONS(1245), - [aux_sym_class_declaration_token1] = ACTIONS(1245), - [aux_sym_final_modifier_token1] = ACTIONS(1245), - [aux_sym_abstract_modifier_token1] = ACTIONS(1245), - [aux_sym_readonly_modifier_token1] = ACTIONS(1245), - [aux_sym_visibility_modifier_token1] = ACTIONS(1245), - [aux_sym_visibility_modifier_token2] = ACTIONS(1245), - [aux_sym_visibility_modifier_token3] = ACTIONS(1245), - [aux_sym__arrow_function_header_token1] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1243), - [aux_sym_cast_type_token1] = ACTIONS(1245), - [aux_sym_echo_statement_token1] = ACTIONS(1245), - [aux_sym_exit_statement_token1] = ACTIONS(1245), - [anon_sym_unset] = ACTIONS(1245), - [aux_sym_declare_statement_token1] = ACTIONS(1245), - [aux_sym_declare_statement_token2] = ACTIONS(1245), - [sym_float] = ACTIONS(1245), - [aux_sym_try_statement_token1] = ACTIONS(1245), - [aux_sym_goto_statement_token1] = ACTIONS(1245), - [aux_sym_continue_statement_token1] = ACTIONS(1245), - [aux_sym_break_statement_token1] = ACTIONS(1245), - [sym_integer] = ACTIONS(1245), - [aux_sym_return_statement_token1] = ACTIONS(1245), - [aux_sym_throw_expression_token1] = ACTIONS(1245), - [aux_sym_while_statement_token1] = ACTIONS(1245), - [aux_sym_while_statement_token2] = ACTIONS(1245), - [aux_sym_do_statement_token1] = ACTIONS(1245), - [aux_sym_for_statement_token1] = ACTIONS(1245), - [aux_sym_for_statement_token2] = ACTIONS(1245), - [aux_sym_foreach_statement_token1] = ACTIONS(1245), - [aux_sym_foreach_statement_token2] = ACTIONS(1245), - [aux_sym_if_statement_token1] = ACTIONS(1245), - [aux_sym_if_statement_token2] = ACTIONS(1245), - [aux_sym_else_if_clause_token1] = ACTIONS(1245), - [aux_sym_else_clause_token1] = ACTIONS(1245), - [aux_sym_match_expression_token1] = ACTIONS(1245), - [aux_sym_match_default_expression_token1] = ACTIONS(1245), - [aux_sym_switch_statement_token1] = ACTIONS(1245), - [aux_sym_switch_block_token1] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AT] = ACTIONS(1243), - [aux_sym_clone_expression_token1] = ACTIONS(1245), - [aux_sym_print_intrinsic_token1] = ACTIONS(1245), - [aux_sym_object_creation_expression_token1] = ACTIONS(1245), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [aux_sym__list_destructing_token1] = ACTIONS(1245), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_self] = ACTIONS(1245), - [anon_sym_parent] = ACTIONS(1245), - [aux_sym__argument_name_token1] = ACTIONS(1245), - [aux_sym__argument_name_token2] = ACTIONS(1245), - [anon_sym_POUND_LBRACK] = ACTIONS(1243), - [aux_sym_encapsed_string_token1] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [aux_sym_string_token1] = ACTIONS(1243), - [anon_sym_SQUOTE] = ACTIONS(1243), - [anon_sym_LT_LT_LT] = ACTIONS(1243), - [anon_sym_BQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [aux_sym_yield_expression_token1] = ACTIONS(1245), - [aux_sym_include_expression_token1] = ACTIONS(1245), - [aux_sym_include_once_expression_token1] = ACTIONS(1245), - [aux_sym_require_expression_token1] = ACTIONS(1245), - [aux_sym_require_once_expression_token1] = ACTIONS(1245), + [ts_builtin_sym_end] = ACTIONS(1220), + [sym_name] = ACTIONS(1222), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1220), + [aux_sym_function_static_declaration_token1] = ACTIONS(1222), + [aux_sym_global_declaration_token1] = ACTIONS(1222), + [aux_sym_namespace_definition_token1] = ACTIONS(1222), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1222), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1222), + [anon_sym_BSLASH] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_RBRACE] = ACTIONS(1220), + [aux_sym_trait_declaration_token1] = ACTIONS(1222), + [aux_sym_interface_declaration_token1] = ACTIONS(1222), + [aux_sym_enum_declaration_token1] = ACTIONS(1222), + [aux_sym_enum_case_token1] = ACTIONS(1222), + [aux_sym_class_declaration_token1] = ACTIONS(1222), + [aux_sym_final_modifier_token1] = ACTIONS(1222), + [aux_sym_abstract_modifier_token1] = ACTIONS(1222), + [aux_sym_readonly_modifier_token1] = ACTIONS(1222), + [sym_var_modifier] = ACTIONS(1222), + [aux_sym_visibility_modifier_token1] = ACTIONS(1222), + [aux_sym_visibility_modifier_token2] = ACTIONS(1222), + [aux_sym_visibility_modifier_token3] = ACTIONS(1222), + [aux_sym__arrow_function_header_token1] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1220), + [aux_sym_cast_type_token1] = ACTIONS(1222), + [aux_sym_echo_statement_token1] = ACTIONS(1222), + [aux_sym_exit_statement_token1] = ACTIONS(1222), + [anon_sym_unset] = ACTIONS(1222), + [aux_sym_declare_statement_token1] = ACTIONS(1222), + [aux_sym_declare_statement_token2] = ACTIONS(1222), + [sym_float] = ACTIONS(1222), + [aux_sym_try_statement_token1] = ACTIONS(1222), + [aux_sym_goto_statement_token1] = ACTIONS(1222), + [aux_sym_continue_statement_token1] = ACTIONS(1222), + [aux_sym_break_statement_token1] = ACTIONS(1222), + [sym_integer] = ACTIONS(1222), + [aux_sym_return_statement_token1] = ACTIONS(1222), + [aux_sym_throw_expression_token1] = ACTIONS(1222), + [aux_sym_while_statement_token1] = ACTIONS(1222), + [aux_sym_while_statement_token2] = ACTIONS(1222), + [aux_sym_do_statement_token1] = ACTIONS(1222), + [aux_sym_for_statement_token1] = ACTIONS(1222), + [aux_sym_for_statement_token2] = ACTIONS(1222), + [aux_sym_foreach_statement_token1] = ACTIONS(1222), + [aux_sym_foreach_statement_token2] = ACTIONS(1222), + [aux_sym_if_statement_token1] = ACTIONS(1222), + [aux_sym_if_statement_token2] = ACTIONS(1222), + [aux_sym_else_if_clause_token1] = ACTIONS(1222), + [aux_sym_else_clause_token1] = ACTIONS(1222), + [aux_sym_match_expression_token1] = ACTIONS(1222), + [aux_sym_match_default_expression_token1] = ACTIONS(1222), + [aux_sym_switch_statement_token1] = ACTIONS(1222), + [aux_sym_switch_block_token1] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_AT] = ACTIONS(1220), + [aux_sym_clone_expression_token1] = ACTIONS(1222), + [aux_sym_print_intrinsic_token1] = ACTIONS(1222), + [aux_sym_object_creation_expression_token1] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [aux_sym__list_destructing_token1] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(1220), + [anon_sym_self] = ACTIONS(1222), + [anon_sym_parent] = ACTIONS(1222), + [aux_sym__argument_name_token1] = ACTIONS(1222), + [aux_sym__argument_name_token2] = ACTIONS(1222), + [anon_sym_POUND_LBRACK] = ACTIONS(1220), + [aux_sym_encapsed_string_token1] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1220), + [aux_sym_string_token1] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_LT_LT_LT] = ACTIONS(1220), + [anon_sym_BQUOTE] = ACTIONS(1220), + [anon_sym_DOLLAR] = ACTIONS(1220), + [aux_sym_yield_expression_token1] = ACTIONS(1222), + [aux_sym_include_expression_token1] = ACTIONS(1222), + [aux_sym_include_once_expression_token1] = ACTIONS(1222), + [aux_sym_require_expression_token1] = ACTIONS(1222), + [aux_sym_require_once_expression_token1] = ACTIONS(1222), [sym_comment] = ACTIONS(5), }, [480] = { [sym_text_interpolation] = STATE(480), - [ts_builtin_sym_end] = ACTIONS(1247), - [sym_name] = ACTIONS(1249), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1247), - [aux_sym_function_static_declaration_token1] = ACTIONS(1249), - [aux_sym_global_declaration_token1] = ACTIONS(1249), - [aux_sym_namespace_definition_token1] = ACTIONS(1249), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1249), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1249), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1249), - [anon_sym_BSLASH] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1247), - [aux_sym_trait_declaration_token1] = ACTIONS(1249), - [aux_sym_interface_declaration_token1] = ACTIONS(1249), - [aux_sym_enum_declaration_token1] = ACTIONS(1249), - [aux_sym_enum_case_token1] = ACTIONS(1249), - [aux_sym_class_declaration_token1] = ACTIONS(1249), - [aux_sym_final_modifier_token1] = ACTIONS(1249), - [aux_sym_abstract_modifier_token1] = ACTIONS(1249), - [aux_sym_readonly_modifier_token1] = ACTIONS(1249), - [aux_sym_visibility_modifier_token1] = ACTIONS(1249), - [aux_sym_visibility_modifier_token2] = ACTIONS(1249), - [aux_sym_visibility_modifier_token3] = ACTIONS(1249), - [aux_sym__arrow_function_header_token1] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1247), - [aux_sym_cast_type_token1] = ACTIONS(1249), - [aux_sym_echo_statement_token1] = ACTIONS(1249), - [aux_sym_exit_statement_token1] = ACTIONS(1249), - [anon_sym_unset] = ACTIONS(1249), - [aux_sym_declare_statement_token1] = ACTIONS(1249), - [aux_sym_declare_statement_token2] = ACTIONS(1249), - [sym_float] = ACTIONS(1249), - [aux_sym_try_statement_token1] = ACTIONS(1249), - [aux_sym_goto_statement_token1] = ACTIONS(1249), - [aux_sym_continue_statement_token1] = ACTIONS(1249), - [aux_sym_break_statement_token1] = ACTIONS(1249), - [sym_integer] = ACTIONS(1249), - [aux_sym_return_statement_token1] = ACTIONS(1249), - [aux_sym_throw_expression_token1] = ACTIONS(1249), - [aux_sym_while_statement_token1] = ACTIONS(1249), - [aux_sym_while_statement_token2] = ACTIONS(1249), - [aux_sym_do_statement_token1] = ACTIONS(1249), - [aux_sym_for_statement_token1] = ACTIONS(1249), - [aux_sym_for_statement_token2] = ACTIONS(1249), - [aux_sym_foreach_statement_token1] = ACTIONS(1249), - [aux_sym_foreach_statement_token2] = ACTIONS(1249), - [aux_sym_if_statement_token1] = ACTIONS(1249), - [aux_sym_if_statement_token2] = ACTIONS(1249), - [aux_sym_else_if_clause_token1] = ACTIONS(1249), - [aux_sym_else_clause_token1] = ACTIONS(1249), - [aux_sym_match_expression_token1] = ACTIONS(1249), - [aux_sym_match_default_expression_token1] = ACTIONS(1249), - [aux_sym_switch_statement_token1] = ACTIONS(1249), - [aux_sym_switch_block_token1] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_TILDE] = ACTIONS(1247), - [anon_sym_BANG] = ACTIONS(1247), - [anon_sym_AT] = ACTIONS(1247), - [aux_sym_clone_expression_token1] = ACTIONS(1249), - [aux_sym_print_intrinsic_token1] = ACTIONS(1249), - [aux_sym_object_creation_expression_token1] = ACTIONS(1249), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [aux_sym__list_destructing_token1] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1247), - [anon_sym_self] = ACTIONS(1249), - [anon_sym_parent] = ACTIONS(1249), - [aux_sym__argument_name_token1] = ACTIONS(1249), - [aux_sym__argument_name_token2] = ACTIONS(1249), - [anon_sym_POUND_LBRACK] = ACTIONS(1247), - [aux_sym_encapsed_string_token1] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [aux_sym_string_token1] = ACTIONS(1247), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_LT_LT_LT] = ACTIONS(1247), - [anon_sym_BQUOTE] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1247), - [aux_sym_yield_expression_token1] = ACTIONS(1249), - [aux_sym_include_expression_token1] = ACTIONS(1249), - [aux_sym_include_once_expression_token1] = ACTIONS(1249), - [aux_sym_require_expression_token1] = ACTIONS(1249), - [aux_sym_require_once_expression_token1] = ACTIONS(1249), + [ts_builtin_sym_end] = ACTIONS(1224), + [sym_name] = ACTIONS(1226), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1224), + [aux_sym_function_static_declaration_token1] = ACTIONS(1226), + [aux_sym_global_declaration_token1] = ACTIONS(1226), + [aux_sym_namespace_definition_token1] = ACTIONS(1226), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1226), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1226), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1226), + [anon_sym_BSLASH] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_RBRACE] = ACTIONS(1224), + [aux_sym_trait_declaration_token1] = ACTIONS(1226), + [aux_sym_interface_declaration_token1] = ACTIONS(1226), + [aux_sym_enum_declaration_token1] = ACTIONS(1226), + [aux_sym_enum_case_token1] = ACTIONS(1226), + [aux_sym_class_declaration_token1] = ACTIONS(1226), + [aux_sym_final_modifier_token1] = ACTIONS(1226), + [aux_sym_abstract_modifier_token1] = ACTIONS(1226), + [aux_sym_readonly_modifier_token1] = ACTIONS(1226), + [sym_var_modifier] = ACTIONS(1226), + [aux_sym_visibility_modifier_token1] = ACTIONS(1226), + [aux_sym_visibility_modifier_token2] = ACTIONS(1226), + [aux_sym_visibility_modifier_token3] = ACTIONS(1226), + [aux_sym__arrow_function_header_token1] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1224), + [aux_sym_cast_type_token1] = ACTIONS(1226), + [aux_sym_echo_statement_token1] = ACTIONS(1226), + [aux_sym_exit_statement_token1] = ACTIONS(1226), + [anon_sym_unset] = ACTIONS(1226), + [aux_sym_declare_statement_token1] = ACTIONS(1226), + [aux_sym_declare_statement_token2] = ACTIONS(1226), + [sym_float] = ACTIONS(1226), + [aux_sym_try_statement_token1] = ACTIONS(1226), + [aux_sym_goto_statement_token1] = ACTIONS(1226), + [aux_sym_continue_statement_token1] = ACTIONS(1226), + [aux_sym_break_statement_token1] = ACTIONS(1226), + [sym_integer] = ACTIONS(1226), + [aux_sym_return_statement_token1] = ACTIONS(1226), + [aux_sym_throw_expression_token1] = ACTIONS(1226), + [aux_sym_while_statement_token1] = ACTIONS(1226), + [aux_sym_while_statement_token2] = ACTIONS(1226), + [aux_sym_do_statement_token1] = ACTIONS(1226), + [aux_sym_for_statement_token1] = ACTIONS(1226), + [aux_sym_for_statement_token2] = ACTIONS(1226), + [aux_sym_foreach_statement_token1] = ACTIONS(1226), + [aux_sym_foreach_statement_token2] = ACTIONS(1226), + [aux_sym_if_statement_token1] = ACTIONS(1226), + [aux_sym_if_statement_token2] = ACTIONS(1226), + [aux_sym_else_if_clause_token1] = ACTIONS(1226), + [aux_sym_else_clause_token1] = ACTIONS(1226), + [aux_sym_match_expression_token1] = ACTIONS(1226), + [aux_sym_match_default_expression_token1] = ACTIONS(1226), + [aux_sym_switch_statement_token1] = ACTIONS(1226), + [aux_sym_switch_block_token1] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_TILDE] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_AT] = ACTIONS(1224), + [aux_sym_clone_expression_token1] = ACTIONS(1226), + [aux_sym_print_intrinsic_token1] = ACTIONS(1226), + [aux_sym_object_creation_expression_token1] = ACTIONS(1226), + [anon_sym_DASH_DASH] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1224), + [aux_sym__list_destructing_token1] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1224), + [anon_sym_self] = ACTIONS(1226), + [anon_sym_parent] = ACTIONS(1226), + [aux_sym__argument_name_token1] = ACTIONS(1226), + [aux_sym__argument_name_token2] = ACTIONS(1226), + [anon_sym_POUND_LBRACK] = ACTIONS(1224), + [aux_sym_encapsed_string_token1] = ACTIONS(1224), + [anon_sym_DQUOTE] = ACTIONS(1224), + [aux_sym_string_token1] = ACTIONS(1224), + [anon_sym_SQUOTE] = ACTIONS(1224), + [anon_sym_LT_LT_LT] = ACTIONS(1224), + [anon_sym_BQUOTE] = ACTIONS(1224), + [anon_sym_DOLLAR] = ACTIONS(1224), + [aux_sym_yield_expression_token1] = ACTIONS(1226), + [aux_sym_include_expression_token1] = ACTIONS(1226), + [aux_sym_include_once_expression_token1] = ACTIONS(1226), + [aux_sym_require_expression_token1] = ACTIONS(1226), + [aux_sym_require_once_expression_token1] = ACTIONS(1226), [sym_comment] = ACTIONS(5), }, [481] = { [sym_text_interpolation] = STATE(481), - [ts_builtin_sym_end] = ACTIONS(1251), - [sym_name] = ACTIONS(1253), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1251), - [aux_sym_function_static_declaration_token1] = ACTIONS(1253), - [aux_sym_global_declaration_token1] = ACTIONS(1253), - [aux_sym_namespace_definition_token1] = ACTIONS(1253), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1253), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1253), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1253), - [anon_sym_BSLASH] = ACTIONS(1251), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_RBRACE] = ACTIONS(1251), - [aux_sym_trait_declaration_token1] = ACTIONS(1253), - [aux_sym_interface_declaration_token1] = ACTIONS(1253), - [aux_sym_enum_declaration_token1] = ACTIONS(1253), - [aux_sym_enum_case_token1] = ACTIONS(1253), - [aux_sym_class_declaration_token1] = ACTIONS(1253), - [aux_sym_final_modifier_token1] = ACTIONS(1253), - [aux_sym_abstract_modifier_token1] = ACTIONS(1253), - [aux_sym_readonly_modifier_token1] = ACTIONS(1253), - [aux_sym_visibility_modifier_token1] = ACTIONS(1253), - [aux_sym_visibility_modifier_token2] = ACTIONS(1253), - [aux_sym_visibility_modifier_token3] = ACTIONS(1253), - [aux_sym__arrow_function_header_token1] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1251), - [aux_sym_cast_type_token1] = ACTIONS(1253), - [aux_sym_echo_statement_token1] = ACTIONS(1253), - [aux_sym_exit_statement_token1] = ACTIONS(1253), - [anon_sym_unset] = ACTIONS(1253), - [aux_sym_declare_statement_token1] = ACTIONS(1253), - [aux_sym_declare_statement_token2] = ACTIONS(1253), - [sym_float] = ACTIONS(1253), - [aux_sym_try_statement_token1] = ACTIONS(1253), - [aux_sym_goto_statement_token1] = ACTIONS(1253), - [aux_sym_continue_statement_token1] = ACTIONS(1253), - [aux_sym_break_statement_token1] = ACTIONS(1253), - [sym_integer] = ACTIONS(1253), - [aux_sym_return_statement_token1] = ACTIONS(1253), - [aux_sym_throw_expression_token1] = ACTIONS(1253), - [aux_sym_while_statement_token1] = ACTIONS(1253), - [aux_sym_while_statement_token2] = ACTIONS(1253), - [aux_sym_do_statement_token1] = ACTIONS(1253), - [aux_sym_for_statement_token1] = ACTIONS(1253), - [aux_sym_for_statement_token2] = ACTIONS(1253), - [aux_sym_foreach_statement_token1] = ACTIONS(1253), - [aux_sym_foreach_statement_token2] = ACTIONS(1253), - [aux_sym_if_statement_token1] = ACTIONS(1253), - [aux_sym_if_statement_token2] = ACTIONS(1253), - [aux_sym_else_if_clause_token1] = ACTIONS(1253), - [aux_sym_else_clause_token1] = ACTIONS(1253), - [aux_sym_match_expression_token1] = ACTIONS(1253), - [aux_sym_match_default_expression_token1] = ACTIONS(1253), - [aux_sym_switch_statement_token1] = ACTIONS(1253), - [aux_sym_switch_block_token1] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_BANG] = ACTIONS(1251), - [anon_sym_AT] = ACTIONS(1251), - [aux_sym_clone_expression_token1] = ACTIONS(1253), - [aux_sym_print_intrinsic_token1] = ACTIONS(1253), - [aux_sym_object_creation_expression_token1] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1251), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [aux_sym__list_destructing_token1] = ACTIONS(1253), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_self] = ACTIONS(1253), - [anon_sym_parent] = ACTIONS(1253), - [aux_sym__argument_name_token1] = ACTIONS(1253), - [aux_sym__argument_name_token2] = ACTIONS(1253), - [anon_sym_POUND_LBRACK] = ACTIONS(1251), - [aux_sym_encapsed_string_token1] = ACTIONS(1251), - [anon_sym_DQUOTE] = ACTIONS(1251), - [aux_sym_string_token1] = ACTIONS(1251), - [anon_sym_SQUOTE] = ACTIONS(1251), - [anon_sym_LT_LT_LT] = ACTIONS(1251), - [anon_sym_BQUOTE] = ACTIONS(1251), - [anon_sym_DOLLAR] = ACTIONS(1251), - [aux_sym_yield_expression_token1] = ACTIONS(1253), - [aux_sym_include_expression_token1] = ACTIONS(1253), - [aux_sym_include_once_expression_token1] = ACTIONS(1253), - [aux_sym_require_expression_token1] = ACTIONS(1253), - [aux_sym_require_once_expression_token1] = ACTIONS(1253), + [ts_builtin_sym_end] = ACTIONS(1228), + [sym_name] = ACTIONS(1230), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1228), + [aux_sym_function_static_declaration_token1] = ACTIONS(1230), + [aux_sym_global_declaration_token1] = ACTIONS(1230), + [aux_sym_namespace_definition_token1] = ACTIONS(1230), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1230), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1230), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1230), + [anon_sym_BSLASH] = ACTIONS(1228), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_RBRACE] = ACTIONS(1228), + [aux_sym_trait_declaration_token1] = ACTIONS(1230), + [aux_sym_interface_declaration_token1] = ACTIONS(1230), + [aux_sym_enum_declaration_token1] = ACTIONS(1230), + [aux_sym_enum_case_token1] = ACTIONS(1230), + [aux_sym_class_declaration_token1] = ACTIONS(1230), + [aux_sym_final_modifier_token1] = ACTIONS(1230), + [aux_sym_abstract_modifier_token1] = ACTIONS(1230), + [aux_sym_readonly_modifier_token1] = ACTIONS(1230), + [sym_var_modifier] = ACTIONS(1230), + [aux_sym_visibility_modifier_token1] = ACTIONS(1230), + [aux_sym_visibility_modifier_token2] = ACTIONS(1230), + [aux_sym_visibility_modifier_token3] = ACTIONS(1230), + [aux_sym__arrow_function_header_token1] = ACTIONS(1230), + [anon_sym_LPAREN] = ACTIONS(1228), + [aux_sym_cast_type_token1] = ACTIONS(1230), + [aux_sym_echo_statement_token1] = ACTIONS(1230), + [aux_sym_exit_statement_token1] = ACTIONS(1230), + [anon_sym_unset] = ACTIONS(1230), + [aux_sym_declare_statement_token1] = ACTIONS(1230), + [aux_sym_declare_statement_token2] = ACTIONS(1230), + [sym_float] = ACTIONS(1230), + [aux_sym_try_statement_token1] = ACTIONS(1230), + [aux_sym_goto_statement_token1] = ACTIONS(1230), + [aux_sym_continue_statement_token1] = ACTIONS(1230), + [aux_sym_break_statement_token1] = ACTIONS(1230), + [sym_integer] = ACTIONS(1230), + [aux_sym_return_statement_token1] = ACTIONS(1230), + [aux_sym_throw_expression_token1] = ACTIONS(1230), + [aux_sym_while_statement_token1] = ACTIONS(1230), + [aux_sym_while_statement_token2] = ACTIONS(1230), + [aux_sym_do_statement_token1] = ACTIONS(1230), + [aux_sym_for_statement_token1] = ACTIONS(1230), + [aux_sym_for_statement_token2] = ACTIONS(1230), + [aux_sym_foreach_statement_token1] = ACTIONS(1230), + [aux_sym_foreach_statement_token2] = ACTIONS(1230), + [aux_sym_if_statement_token1] = ACTIONS(1230), + [aux_sym_if_statement_token2] = ACTIONS(1230), + [aux_sym_else_if_clause_token1] = ACTIONS(1230), + [aux_sym_else_clause_token1] = ACTIONS(1230), + [aux_sym_match_expression_token1] = ACTIONS(1230), + [aux_sym_match_default_expression_token1] = ACTIONS(1230), + [aux_sym_switch_statement_token1] = ACTIONS(1230), + [aux_sym_switch_block_token1] = ACTIONS(1230), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1228), + [anon_sym_BANG] = ACTIONS(1228), + [anon_sym_AT] = ACTIONS(1228), + [aux_sym_clone_expression_token1] = ACTIONS(1230), + [aux_sym_print_intrinsic_token1] = ACTIONS(1230), + [aux_sym_object_creation_expression_token1] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [aux_sym__list_destructing_token1] = ACTIONS(1230), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_self] = ACTIONS(1230), + [anon_sym_parent] = ACTIONS(1230), + [aux_sym__argument_name_token1] = ACTIONS(1230), + [aux_sym__argument_name_token2] = ACTIONS(1230), + [anon_sym_POUND_LBRACK] = ACTIONS(1228), + [aux_sym_encapsed_string_token1] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(1228), + [aux_sym_string_token1] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1228), + [anon_sym_LT_LT_LT] = ACTIONS(1228), + [anon_sym_BQUOTE] = ACTIONS(1228), + [anon_sym_DOLLAR] = ACTIONS(1228), + [aux_sym_yield_expression_token1] = ACTIONS(1230), + [aux_sym_include_expression_token1] = ACTIONS(1230), + [aux_sym_include_once_expression_token1] = ACTIONS(1230), + [aux_sym_require_expression_token1] = ACTIONS(1230), + [aux_sym_require_once_expression_token1] = ACTIONS(1230), [sym_comment] = ACTIONS(5), }, [482] = { [sym_text_interpolation] = STATE(482), - [ts_builtin_sym_end] = ACTIONS(1255), - [sym_name] = ACTIONS(1257), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1255), - [aux_sym_function_static_declaration_token1] = ACTIONS(1257), - [aux_sym_global_declaration_token1] = ACTIONS(1257), - [aux_sym_namespace_definition_token1] = ACTIONS(1257), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1257), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1257), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1257), - [anon_sym_BSLASH] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(1255), - [aux_sym_trait_declaration_token1] = ACTIONS(1257), - [aux_sym_interface_declaration_token1] = ACTIONS(1257), - [aux_sym_enum_declaration_token1] = ACTIONS(1257), - [aux_sym_enum_case_token1] = ACTIONS(1257), - [aux_sym_class_declaration_token1] = ACTIONS(1257), - [aux_sym_final_modifier_token1] = ACTIONS(1257), - [aux_sym_abstract_modifier_token1] = ACTIONS(1257), - [aux_sym_readonly_modifier_token1] = ACTIONS(1257), - [aux_sym_visibility_modifier_token1] = ACTIONS(1257), - [aux_sym_visibility_modifier_token2] = ACTIONS(1257), - [aux_sym_visibility_modifier_token3] = ACTIONS(1257), - [aux_sym__arrow_function_header_token1] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1255), - [aux_sym_cast_type_token1] = ACTIONS(1257), - [aux_sym_echo_statement_token1] = ACTIONS(1257), - [aux_sym_exit_statement_token1] = ACTIONS(1257), - [anon_sym_unset] = ACTIONS(1257), - [aux_sym_declare_statement_token1] = ACTIONS(1257), - [aux_sym_declare_statement_token2] = ACTIONS(1257), - [sym_float] = ACTIONS(1257), - [aux_sym_try_statement_token1] = ACTIONS(1257), - [aux_sym_goto_statement_token1] = ACTIONS(1257), - [aux_sym_continue_statement_token1] = ACTIONS(1257), - [aux_sym_break_statement_token1] = ACTIONS(1257), - [sym_integer] = ACTIONS(1257), - [aux_sym_return_statement_token1] = ACTIONS(1257), - [aux_sym_throw_expression_token1] = ACTIONS(1257), - [aux_sym_while_statement_token1] = ACTIONS(1257), - [aux_sym_while_statement_token2] = ACTIONS(1257), - [aux_sym_do_statement_token1] = ACTIONS(1257), - [aux_sym_for_statement_token1] = ACTIONS(1257), - [aux_sym_for_statement_token2] = ACTIONS(1257), - [aux_sym_foreach_statement_token1] = ACTIONS(1257), - [aux_sym_foreach_statement_token2] = ACTIONS(1257), - [aux_sym_if_statement_token1] = ACTIONS(1257), - [aux_sym_if_statement_token2] = ACTIONS(1257), - [aux_sym_else_if_clause_token1] = ACTIONS(1257), - [aux_sym_else_clause_token1] = ACTIONS(1257), - [aux_sym_match_expression_token1] = ACTIONS(1257), - [aux_sym_match_default_expression_token1] = ACTIONS(1257), - [aux_sym_switch_statement_token1] = ACTIONS(1257), - [aux_sym_switch_block_token1] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1255), - [anon_sym_BANG] = ACTIONS(1255), - [anon_sym_AT] = ACTIONS(1255), - [aux_sym_clone_expression_token1] = ACTIONS(1257), - [aux_sym_print_intrinsic_token1] = ACTIONS(1257), - [aux_sym_object_creation_expression_token1] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [aux_sym__list_destructing_token1] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_self] = ACTIONS(1257), - [anon_sym_parent] = ACTIONS(1257), - [aux_sym__argument_name_token1] = ACTIONS(1257), - [aux_sym__argument_name_token2] = ACTIONS(1257), - [anon_sym_POUND_LBRACK] = ACTIONS(1255), - [aux_sym_encapsed_string_token1] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(1255), - [aux_sym_string_token1] = ACTIONS(1255), - [anon_sym_SQUOTE] = ACTIONS(1255), - [anon_sym_LT_LT_LT] = ACTIONS(1255), - [anon_sym_BQUOTE] = ACTIONS(1255), - [anon_sym_DOLLAR] = ACTIONS(1255), - [aux_sym_yield_expression_token1] = ACTIONS(1257), - [aux_sym_include_expression_token1] = ACTIONS(1257), - [aux_sym_include_once_expression_token1] = ACTIONS(1257), - [aux_sym_require_expression_token1] = ACTIONS(1257), - [aux_sym_require_once_expression_token1] = ACTIONS(1257), + [ts_builtin_sym_end] = ACTIONS(1228), + [sym_name] = ACTIONS(1230), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1228), + [aux_sym_function_static_declaration_token1] = ACTIONS(1230), + [aux_sym_global_declaration_token1] = ACTIONS(1230), + [aux_sym_namespace_definition_token1] = ACTIONS(1230), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1230), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1230), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1230), + [anon_sym_BSLASH] = ACTIONS(1228), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_RBRACE] = ACTIONS(1228), + [aux_sym_trait_declaration_token1] = ACTIONS(1230), + [aux_sym_interface_declaration_token1] = ACTIONS(1230), + [aux_sym_enum_declaration_token1] = ACTIONS(1230), + [aux_sym_enum_case_token1] = ACTIONS(1230), + [aux_sym_class_declaration_token1] = ACTIONS(1230), + [aux_sym_final_modifier_token1] = ACTIONS(1230), + [aux_sym_abstract_modifier_token1] = ACTIONS(1230), + [aux_sym_readonly_modifier_token1] = ACTIONS(1230), + [sym_var_modifier] = ACTIONS(1230), + [aux_sym_visibility_modifier_token1] = ACTIONS(1230), + [aux_sym_visibility_modifier_token2] = ACTIONS(1230), + [aux_sym_visibility_modifier_token3] = ACTIONS(1230), + [aux_sym__arrow_function_header_token1] = ACTIONS(1230), + [anon_sym_LPAREN] = ACTIONS(1228), + [aux_sym_cast_type_token1] = ACTIONS(1230), + [aux_sym_echo_statement_token1] = ACTIONS(1230), + [aux_sym_exit_statement_token1] = ACTIONS(1230), + [anon_sym_unset] = ACTIONS(1230), + [aux_sym_declare_statement_token1] = ACTIONS(1230), + [aux_sym_declare_statement_token2] = ACTIONS(1230), + [sym_float] = ACTIONS(1230), + [aux_sym_try_statement_token1] = ACTIONS(1230), + [aux_sym_goto_statement_token1] = ACTIONS(1230), + [aux_sym_continue_statement_token1] = ACTIONS(1230), + [aux_sym_break_statement_token1] = ACTIONS(1230), + [sym_integer] = ACTIONS(1230), + [aux_sym_return_statement_token1] = ACTIONS(1230), + [aux_sym_throw_expression_token1] = ACTIONS(1230), + [aux_sym_while_statement_token1] = ACTIONS(1230), + [aux_sym_while_statement_token2] = ACTIONS(1230), + [aux_sym_do_statement_token1] = ACTIONS(1230), + [aux_sym_for_statement_token1] = ACTIONS(1230), + [aux_sym_for_statement_token2] = ACTIONS(1230), + [aux_sym_foreach_statement_token1] = ACTIONS(1230), + [aux_sym_foreach_statement_token2] = ACTIONS(1230), + [aux_sym_if_statement_token1] = ACTIONS(1230), + [aux_sym_if_statement_token2] = ACTIONS(1230), + [aux_sym_else_if_clause_token1] = ACTIONS(1230), + [aux_sym_else_clause_token1] = ACTIONS(1230), + [aux_sym_match_expression_token1] = ACTIONS(1230), + [aux_sym_match_default_expression_token1] = ACTIONS(1230), + [aux_sym_switch_statement_token1] = ACTIONS(1230), + [aux_sym_switch_block_token1] = ACTIONS(1230), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1228), + [anon_sym_BANG] = ACTIONS(1228), + [anon_sym_AT] = ACTIONS(1228), + [aux_sym_clone_expression_token1] = ACTIONS(1230), + [aux_sym_print_intrinsic_token1] = ACTIONS(1230), + [aux_sym_object_creation_expression_token1] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [aux_sym__list_destructing_token1] = ACTIONS(1230), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_self] = ACTIONS(1230), + [anon_sym_parent] = ACTIONS(1230), + [aux_sym__argument_name_token1] = ACTIONS(1230), + [aux_sym__argument_name_token2] = ACTIONS(1230), + [anon_sym_POUND_LBRACK] = ACTIONS(1228), + [aux_sym_encapsed_string_token1] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(1228), + [aux_sym_string_token1] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1228), + [anon_sym_LT_LT_LT] = ACTIONS(1228), + [anon_sym_BQUOTE] = ACTIONS(1228), + [anon_sym_DOLLAR] = ACTIONS(1228), + [aux_sym_yield_expression_token1] = ACTIONS(1230), + [aux_sym_include_expression_token1] = ACTIONS(1230), + [aux_sym_include_once_expression_token1] = ACTIONS(1230), + [aux_sym_require_expression_token1] = ACTIONS(1230), + [aux_sym_require_once_expression_token1] = ACTIONS(1230), [sym_comment] = ACTIONS(5), }, [483] = { [sym_text_interpolation] = STATE(483), - [ts_builtin_sym_end] = ACTIONS(1259), - [sym_name] = ACTIONS(1261), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1259), - [aux_sym_function_static_declaration_token1] = ACTIONS(1261), - [aux_sym_global_declaration_token1] = ACTIONS(1261), - [aux_sym_namespace_definition_token1] = ACTIONS(1261), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1261), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1261), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1261), - [anon_sym_BSLASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [aux_sym_trait_declaration_token1] = ACTIONS(1261), - [aux_sym_interface_declaration_token1] = ACTIONS(1261), - [aux_sym_enum_declaration_token1] = ACTIONS(1261), - [aux_sym_enum_case_token1] = ACTIONS(1261), - [aux_sym_class_declaration_token1] = ACTIONS(1261), - [aux_sym_final_modifier_token1] = ACTIONS(1261), - [aux_sym_abstract_modifier_token1] = ACTIONS(1261), - [aux_sym_readonly_modifier_token1] = ACTIONS(1261), - [aux_sym_visibility_modifier_token1] = ACTIONS(1261), - [aux_sym_visibility_modifier_token2] = ACTIONS(1261), - [aux_sym_visibility_modifier_token3] = ACTIONS(1261), - [aux_sym__arrow_function_header_token1] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1259), - [aux_sym_cast_type_token1] = ACTIONS(1261), - [aux_sym_echo_statement_token1] = ACTIONS(1261), - [aux_sym_exit_statement_token1] = ACTIONS(1261), - [anon_sym_unset] = ACTIONS(1261), - [aux_sym_declare_statement_token1] = ACTIONS(1261), - [aux_sym_declare_statement_token2] = ACTIONS(1261), - [sym_float] = ACTIONS(1261), - [aux_sym_try_statement_token1] = ACTIONS(1261), - [aux_sym_goto_statement_token1] = ACTIONS(1261), - [aux_sym_continue_statement_token1] = ACTIONS(1261), - [aux_sym_break_statement_token1] = ACTIONS(1261), - [sym_integer] = ACTIONS(1261), - [aux_sym_return_statement_token1] = ACTIONS(1261), - [aux_sym_throw_expression_token1] = ACTIONS(1261), - [aux_sym_while_statement_token1] = ACTIONS(1261), - [aux_sym_while_statement_token2] = ACTIONS(1261), - [aux_sym_do_statement_token1] = ACTIONS(1261), - [aux_sym_for_statement_token1] = ACTIONS(1261), - [aux_sym_for_statement_token2] = ACTIONS(1261), - [aux_sym_foreach_statement_token1] = ACTIONS(1261), - [aux_sym_foreach_statement_token2] = ACTIONS(1261), - [aux_sym_if_statement_token1] = ACTIONS(1261), - [aux_sym_if_statement_token2] = ACTIONS(1261), - [aux_sym_else_if_clause_token1] = ACTIONS(1261), - [aux_sym_else_clause_token1] = ACTIONS(1261), - [aux_sym_match_expression_token1] = ACTIONS(1261), - [aux_sym_match_default_expression_token1] = ACTIONS(1261), - [aux_sym_switch_statement_token1] = ACTIONS(1261), - [aux_sym_switch_block_token1] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_BANG] = ACTIONS(1259), - [anon_sym_AT] = ACTIONS(1259), - [aux_sym_clone_expression_token1] = ACTIONS(1261), - [aux_sym_print_intrinsic_token1] = ACTIONS(1261), - [aux_sym_object_creation_expression_token1] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [aux_sym__list_destructing_token1] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_self] = ACTIONS(1261), - [anon_sym_parent] = ACTIONS(1261), - [aux_sym__argument_name_token1] = ACTIONS(1261), - [aux_sym__argument_name_token2] = ACTIONS(1261), - [anon_sym_POUND_LBRACK] = ACTIONS(1259), - [aux_sym_encapsed_string_token1] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [aux_sym_string_token1] = ACTIONS(1259), - [anon_sym_SQUOTE] = ACTIONS(1259), - [anon_sym_LT_LT_LT] = ACTIONS(1259), - [anon_sym_BQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [aux_sym_yield_expression_token1] = ACTIONS(1261), - [aux_sym_include_expression_token1] = ACTIONS(1261), - [aux_sym_include_once_expression_token1] = ACTIONS(1261), - [aux_sym_require_expression_token1] = ACTIONS(1261), - [aux_sym_require_once_expression_token1] = ACTIONS(1261), + [ts_builtin_sym_end] = ACTIONS(1164), + [sym_name] = ACTIONS(1166), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1164), + [aux_sym_function_static_declaration_token1] = ACTIONS(1166), + [aux_sym_global_declaration_token1] = ACTIONS(1166), + [aux_sym_namespace_definition_token1] = ACTIONS(1166), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1166), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1166), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1166), + [anon_sym_BSLASH] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1164), + [aux_sym_trait_declaration_token1] = ACTIONS(1166), + [aux_sym_interface_declaration_token1] = ACTIONS(1166), + [aux_sym_enum_declaration_token1] = ACTIONS(1166), + [aux_sym_enum_case_token1] = ACTIONS(1166), + [aux_sym_class_declaration_token1] = ACTIONS(1166), + [aux_sym_final_modifier_token1] = ACTIONS(1166), + [aux_sym_abstract_modifier_token1] = ACTIONS(1166), + [aux_sym_readonly_modifier_token1] = ACTIONS(1166), + [sym_var_modifier] = ACTIONS(1166), + [aux_sym_visibility_modifier_token1] = ACTIONS(1166), + [aux_sym_visibility_modifier_token2] = ACTIONS(1166), + [aux_sym_visibility_modifier_token3] = ACTIONS(1166), + [aux_sym__arrow_function_header_token1] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1164), + [aux_sym_cast_type_token1] = ACTIONS(1166), + [aux_sym_echo_statement_token1] = ACTIONS(1166), + [aux_sym_exit_statement_token1] = ACTIONS(1166), + [anon_sym_unset] = ACTIONS(1166), + [aux_sym_declare_statement_token1] = ACTIONS(1166), + [aux_sym_declare_statement_token2] = ACTIONS(1166), + [sym_float] = ACTIONS(1166), + [aux_sym_try_statement_token1] = ACTIONS(1166), + [aux_sym_goto_statement_token1] = ACTIONS(1166), + [aux_sym_continue_statement_token1] = ACTIONS(1166), + [aux_sym_break_statement_token1] = ACTIONS(1166), + [sym_integer] = ACTIONS(1166), + [aux_sym_return_statement_token1] = ACTIONS(1166), + [aux_sym_throw_expression_token1] = ACTIONS(1166), + [aux_sym_while_statement_token1] = ACTIONS(1166), + [aux_sym_while_statement_token2] = ACTIONS(1166), + [aux_sym_do_statement_token1] = ACTIONS(1166), + [aux_sym_for_statement_token1] = ACTIONS(1166), + [aux_sym_for_statement_token2] = ACTIONS(1166), + [aux_sym_foreach_statement_token1] = ACTIONS(1166), + [aux_sym_foreach_statement_token2] = ACTIONS(1166), + [aux_sym_if_statement_token1] = ACTIONS(1166), + [aux_sym_if_statement_token2] = ACTIONS(1166), + [aux_sym_else_if_clause_token1] = ACTIONS(1166), + [aux_sym_else_clause_token1] = ACTIONS(1166), + [aux_sym_match_expression_token1] = ACTIONS(1166), + [aux_sym_match_default_expression_token1] = ACTIONS(1166), + [aux_sym_switch_statement_token1] = ACTIONS(1166), + [aux_sym_switch_block_token1] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_AT] = ACTIONS(1164), + [aux_sym_clone_expression_token1] = ACTIONS(1166), + [aux_sym_print_intrinsic_token1] = ACTIONS(1166), + [aux_sym_object_creation_expression_token1] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [aux_sym__list_destructing_token1] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1164), + [anon_sym_self] = ACTIONS(1166), + [anon_sym_parent] = ACTIONS(1166), + [aux_sym__argument_name_token1] = ACTIONS(1166), + [aux_sym__argument_name_token2] = ACTIONS(1166), + [anon_sym_POUND_LBRACK] = ACTIONS(1164), + [aux_sym_encapsed_string_token1] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [aux_sym_string_token1] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_LT_LT_LT] = ACTIONS(1164), + [anon_sym_BQUOTE] = ACTIONS(1164), + [anon_sym_DOLLAR] = ACTIONS(1164), + [aux_sym_yield_expression_token1] = ACTIONS(1166), + [aux_sym_include_expression_token1] = ACTIONS(1166), + [aux_sym_include_once_expression_token1] = ACTIONS(1166), + [aux_sym_require_expression_token1] = ACTIONS(1166), + [aux_sym_require_once_expression_token1] = ACTIONS(1166), [sym_comment] = ACTIONS(5), }, [484] = { [sym_text_interpolation] = STATE(484), - [ts_builtin_sym_end] = ACTIONS(1263), - [sym_name] = ACTIONS(1265), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1263), - [aux_sym_function_static_declaration_token1] = ACTIONS(1265), - [aux_sym_global_declaration_token1] = ACTIONS(1265), - [aux_sym_namespace_definition_token1] = ACTIONS(1265), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1265), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1265), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1265), - [anon_sym_BSLASH] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [aux_sym_trait_declaration_token1] = ACTIONS(1265), - [aux_sym_interface_declaration_token1] = ACTIONS(1265), - [aux_sym_enum_declaration_token1] = ACTIONS(1265), - [aux_sym_enum_case_token1] = ACTIONS(1265), - [aux_sym_class_declaration_token1] = ACTIONS(1265), - [aux_sym_final_modifier_token1] = ACTIONS(1265), - [aux_sym_abstract_modifier_token1] = ACTIONS(1265), - [aux_sym_readonly_modifier_token1] = ACTIONS(1265), - [aux_sym_visibility_modifier_token1] = ACTIONS(1265), - [aux_sym_visibility_modifier_token2] = ACTIONS(1265), - [aux_sym_visibility_modifier_token3] = ACTIONS(1265), - [aux_sym__arrow_function_header_token1] = ACTIONS(1265), - [anon_sym_LPAREN] = ACTIONS(1263), - [aux_sym_cast_type_token1] = ACTIONS(1265), - [aux_sym_echo_statement_token1] = ACTIONS(1265), - [aux_sym_exit_statement_token1] = ACTIONS(1265), - [anon_sym_unset] = ACTIONS(1265), - [aux_sym_declare_statement_token1] = ACTIONS(1265), - [aux_sym_declare_statement_token2] = ACTIONS(1265), - [sym_float] = ACTIONS(1265), - [aux_sym_try_statement_token1] = ACTIONS(1265), - [aux_sym_goto_statement_token1] = ACTIONS(1265), - [aux_sym_continue_statement_token1] = ACTIONS(1265), - [aux_sym_break_statement_token1] = ACTIONS(1265), - [sym_integer] = ACTIONS(1265), - [aux_sym_return_statement_token1] = ACTIONS(1265), - [aux_sym_throw_expression_token1] = ACTIONS(1265), - [aux_sym_while_statement_token1] = ACTIONS(1265), - [aux_sym_while_statement_token2] = ACTIONS(1265), - [aux_sym_do_statement_token1] = ACTIONS(1265), - [aux_sym_for_statement_token1] = ACTIONS(1265), - [aux_sym_for_statement_token2] = ACTIONS(1265), - [aux_sym_foreach_statement_token1] = ACTIONS(1265), - [aux_sym_foreach_statement_token2] = ACTIONS(1265), - [aux_sym_if_statement_token1] = ACTIONS(1265), - [aux_sym_if_statement_token2] = ACTIONS(1265), - [aux_sym_else_if_clause_token1] = ACTIONS(1265), - [aux_sym_else_clause_token1] = ACTIONS(1265), - [aux_sym_match_expression_token1] = ACTIONS(1265), - [aux_sym_match_default_expression_token1] = ACTIONS(1265), - [aux_sym_switch_statement_token1] = ACTIONS(1265), - [aux_sym_switch_block_token1] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1263), - [anon_sym_AT] = ACTIONS(1263), - [aux_sym_clone_expression_token1] = ACTIONS(1265), - [aux_sym_print_intrinsic_token1] = ACTIONS(1265), - [aux_sym_object_creation_expression_token1] = ACTIONS(1265), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [aux_sym__list_destructing_token1] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_self] = ACTIONS(1265), - [anon_sym_parent] = ACTIONS(1265), - [aux_sym__argument_name_token1] = ACTIONS(1265), - [aux_sym__argument_name_token2] = ACTIONS(1265), - [anon_sym_POUND_LBRACK] = ACTIONS(1263), - [aux_sym_encapsed_string_token1] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [aux_sym_string_token1] = ACTIONS(1263), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_LT_LT_LT] = ACTIONS(1263), - [anon_sym_BQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [aux_sym_yield_expression_token1] = ACTIONS(1265), - [aux_sym_include_expression_token1] = ACTIONS(1265), - [aux_sym_include_once_expression_token1] = ACTIONS(1265), - [aux_sym_require_expression_token1] = ACTIONS(1265), - [aux_sym_require_once_expression_token1] = ACTIONS(1265), + [ts_builtin_sym_end] = ACTIONS(1232), + [sym_name] = ACTIONS(1234), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1232), + [aux_sym_function_static_declaration_token1] = ACTIONS(1234), + [aux_sym_global_declaration_token1] = ACTIONS(1234), + [aux_sym_namespace_definition_token1] = ACTIONS(1234), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1234), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1234), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1234), + [anon_sym_BSLASH] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1232), + [aux_sym_trait_declaration_token1] = ACTIONS(1234), + [aux_sym_interface_declaration_token1] = ACTIONS(1234), + [aux_sym_enum_declaration_token1] = ACTIONS(1234), + [aux_sym_enum_case_token1] = ACTIONS(1234), + [aux_sym_class_declaration_token1] = ACTIONS(1234), + [aux_sym_final_modifier_token1] = ACTIONS(1234), + [aux_sym_abstract_modifier_token1] = ACTIONS(1234), + [aux_sym_readonly_modifier_token1] = ACTIONS(1234), + [sym_var_modifier] = ACTIONS(1234), + [aux_sym_visibility_modifier_token1] = ACTIONS(1234), + [aux_sym_visibility_modifier_token2] = ACTIONS(1234), + [aux_sym_visibility_modifier_token3] = ACTIONS(1234), + [aux_sym__arrow_function_header_token1] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(1232), + [aux_sym_cast_type_token1] = ACTIONS(1234), + [aux_sym_echo_statement_token1] = ACTIONS(1234), + [aux_sym_exit_statement_token1] = ACTIONS(1234), + [anon_sym_unset] = ACTIONS(1234), + [aux_sym_declare_statement_token1] = ACTIONS(1234), + [aux_sym_declare_statement_token2] = ACTIONS(1234), + [sym_float] = ACTIONS(1234), + [aux_sym_try_statement_token1] = ACTIONS(1234), + [aux_sym_goto_statement_token1] = ACTIONS(1234), + [aux_sym_continue_statement_token1] = ACTIONS(1234), + [aux_sym_break_statement_token1] = ACTIONS(1234), + [sym_integer] = ACTIONS(1234), + [aux_sym_return_statement_token1] = ACTIONS(1234), + [aux_sym_throw_expression_token1] = ACTIONS(1234), + [aux_sym_while_statement_token1] = ACTIONS(1234), + [aux_sym_while_statement_token2] = ACTIONS(1234), + [aux_sym_do_statement_token1] = ACTIONS(1234), + [aux_sym_for_statement_token1] = ACTIONS(1234), + [aux_sym_for_statement_token2] = ACTIONS(1234), + [aux_sym_foreach_statement_token1] = ACTIONS(1234), + [aux_sym_foreach_statement_token2] = ACTIONS(1234), + [aux_sym_if_statement_token1] = ACTIONS(1234), + [aux_sym_if_statement_token2] = ACTIONS(1234), + [aux_sym_else_if_clause_token1] = ACTIONS(1234), + [aux_sym_else_clause_token1] = ACTIONS(1234), + [aux_sym_match_expression_token1] = ACTIONS(1234), + [aux_sym_match_default_expression_token1] = ACTIONS(1234), + [aux_sym_switch_statement_token1] = ACTIONS(1234), + [aux_sym_switch_block_token1] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1232), + [anon_sym_BANG] = ACTIONS(1232), + [anon_sym_AT] = ACTIONS(1232), + [aux_sym_clone_expression_token1] = ACTIONS(1234), + [aux_sym_print_intrinsic_token1] = ACTIONS(1234), + [aux_sym_object_creation_expression_token1] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1232), + [anon_sym_PLUS_PLUS] = ACTIONS(1232), + [aux_sym__list_destructing_token1] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1232), + [anon_sym_self] = ACTIONS(1234), + [anon_sym_parent] = ACTIONS(1234), + [aux_sym__argument_name_token1] = ACTIONS(1234), + [aux_sym__argument_name_token2] = ACTIONS(1234), + [anon_sym_POUND_LBRACK] = ACTIONS(1232), + [aux_sym_encapsed_string_token1] = ACTIONS(1232), + [anon_sym_DQUOTE] = ACTIONS(1232), + [aux_sym_string_token1] = ACTIONS(1232), + [anon_sym_SQUOTE] = ACTIONS(1232), + [anon_sym_LT_LT_LT] = ACTIONS(1232), + [anon_sym_BQUOTE] = ACTIONS(1232), + [anon_sym_DOLLAR] = ACTIONS(1232), + [aux_sym_yield_expression_token1] = ACTIONS(1234), + [aux_sym_include_expression_token1] = ACTIONS(1234), + [aux_sym_include_once_expression_token1] = ACTIONS(1234), + [aux_sym_require_expression_token1] = ACTIONS(1234), + [aux_sym_require_once_expression_token1] = ACTIONS(1234), [sym_comment] = ACTIONS(5), }, [485] = { [sym_text_interpolation] = STATE(485), - [ts_builtin_sym_end] = ACTIONS(1267), - [sym_name] = ACTIONS(1269), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1267), - [aux_sym_function_static_declaration_token1] = ACTIONS(1269), - [aux_sym_global_declaration_token1] = ACTIONS(1269), - [aux_sym_namespace_definition_token1] = ACTIONS(1269), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1269), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1269), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1269), - [anon_sym_BSLASH] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_RBRACE] = ACTIONS(1267), - [aux_sym_trait_declaration_token1] = ACTIONS(1269), - [aux_sym_interface_declaration_token1] = ACTIONS(1269), - [aux_sym_enum_declaration_token1] = ACTIONS(1269), - [aux_sym_enum_case_token1] = ACTIONS(1269), - [aux_sym_class_declaration_token1] = ACTIONS(1269), - [aux_sym_final_modifier_token1] = ACTIONS(1269), - [aux_sym_abstract_modifier_token1] = ACTIONS(1269), - [aux_sym_readonly_modifier_token1] = ACTIONS(1269), - [aux_sym_visibility_modifier_token1] = ACTIONS(1269), - [aux_sym_visibility_modifier_token2] = ACTIONS(1269), - [aux_sym_visibility_modifier_token3] = ACTIONS(1269), - [aux_sym__arrow_function_header_token1] = ACTIONS(1269), - [anon_sym_LPAREN] = ACTIONS(1267), - [aux_sym_cast_type_token1] = ACTIONS(1269), - [aux_sym_echo_statement_token1] = ACTIONS(1269), - [aux_sym_exit_statement_token1] = ACTIONS(1269), - [anon_sym_unset] = ACTIONS(1269), - [aux_sym_declare_statement_token1] = ACTIONS(1269), - [aux_sym_declare_statement_token2] = ACTIONS(1269), - [sym_float] = ACTIONS(1269), - [aux_sym_try_statement_token1] = ACTIONS(1269), - [aux_sym_goto_statement_token1] = ACTIONS(1269), - [aux_sym_continue_statement_token1] = ACTIONS(1269), - [aux_sym_break_statement_token1] = ACTIONS(1269), - [sym_integer] = ACTIONS(1269), - [aux_sym_return_statement_token1] = ACTIONS(1269), - [aux_sym_throw_expression_token1] = ACTIONS(1269), - [aux_sym_while_statement_token1] = ACTIONS(1269), - [aux_sym_while_statement_token2] = ACTIONS(1269), - [aux_sym_do_statement_token1] = ACTIONS(1269), - [aux_sym_for_statement_token1] = ACTIONS(1269), - [aux_sym_for_statement_token2] = ACTIONS(1269), - [aux_sym_foreach_statement_token1] = ACTIONS(1269), - [aux_sym_foreach_statement_token2] = ACTIONS(1269), - [aux_sym_if_statement_token1] = ACTIONS(1269), - [aux_sym_if_statement_token2] = ACTIONS(1269), - [aux_sym_else_if_clause_token1] = ACTIONS(1269), - [aux_sym_else_clause_token1] = ACTIONS(1269), - [aux_sym_match_expression_token1] = ACTIONS(1269), - [aux_sym_match_default_expression_token1] = ACTIONS(1269), - [aux_sym_switch_statement_token1] = ACTIONS(1269), - [aux_sym_switch_block_token1] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1269), - [anon_sym_TILDE] = ACTIONS(1267), - [anon_sym_BANG] = ACTIONS(1267), - [anon_sym_AT] = ACTIONS(1267), - [aux_sym_clone_expression_token1] = ACTIONS(1269), - [aux_sym_print_intrinsic_token1] = ACTIONS(1269), - [aux_sym_object_creation_expression_token1] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1267), - [anon_sym_PLUS_PLUS] = ACTIONS(1267), - [aux_sym__list_destructing_token1] = ACTIONS(1269), - [anon_sym_LBRACK] = ACTIONS(1267), - [anon_sym_self] = ACTIONS(1269), - [anon_sym_parent] = ACTIONS(1269), - [aux_sym__argument_name_token1] = ACTIONS(1269), - [aux_sym__argument_name_token2] = ACTIONS(1269), - [anon_sym_POUND_LBRACK] = ACTIONS(1267), - [aux_sym_encapsed_string_token1] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1267), - [aux_sym_string_token1] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_LT_LT_LT] = ACTIONS(1267), - [anon_sym_BQUOTE] = ACTIONS(1267), - [anon_sym_DOLLAR] = ACTIONS(1267), - [aux_sym_yield_expression_token1] = ACTIONS(1269), - [aux_sym_include_expression_token1] = ACTIONS(1269), - [aux_sym_include_once_expression_token1] = ACTIONS(1269), - [aux_sym_require_expression_token1] = ACTIONS(1269), - [aux_sym_require_once_expression_token1] = ACTIONS(1269), + [ts_builtin_sym_end] = ACTIONS(1236), + [sym_name] = ACTIONS(1238), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1236), + [aux_sym_function_static_declaration_token1] = ACTIONS(1238), + [aux_sym_global_declaration_token1] = ACTIONS(1238), + [aux_sym_namespace_definition_token1] = ACTIONS(1238), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1238), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1238), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1238), + [anon_sym_BSLASH] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_RBRACE] = ACTIONS(1236), + [aux_sym_trait_declaration_token1] = ACTIONS(1238), + [aux_sym_interface_declaration_token1] = ACTIONS(1238), + [aux_sym_enum_declaration_token1] = ACTIONS(1238), + [aux_sym_enum_case_token1] = ACTIONS(1238), + [aux_sym_class_declaration_token1] = ACTIONS(1238), + [aux_sym_final_modifier_token1] = ACTIONS(1238), + [aux_sym_abstract_modifier_token1] = ACTIONS(1238), + [aux_sym_readonly_modifier_token1] = ACTIONS(1238), + [sym_var_modifier] = ACTIONS(1238), + [aux_sym_visibility_modifier_token1] = ACTIONS(1238), + [aux_sym_visibility_modifier_token2] = ACTIONS(1238), + [aux_sym_visibility_modifier_token3] = ACTIONS(1238), + [aux_sym__arrow_function_header_token1] = ACTIONS(1238), + [anon_sym_LPAREN] = ACTIONS(1236), + [aux_sym_cast_type_token1] = ACTIONS(1238), + [aux_sym_echo_statement_token1] = ACTIONS(1238), + [aux_sym_exit_statement_token1] = ACTIONS(1238), + [anon_sym_unset] = ACTIONS(1238), + [aux_sym_declare_statement_token1] = ACTIONS(1238), + [aux_sym_declare_statement_token2] = ACTIONS(1238), + [sym_float] = ACTIONS(1238), + [aux_sym_try_statement_token1] = ACTIONS(1238), + [aux_sym_goto_statement_token1] = ACTIONS(1238), + [aux_sym_continue_statement_token1] = ACTIONS(1238), + [aux_sym_break_statement_token1] = ACTIONS(1238), + [sym_integer] = ACTIONS(1238), + [aux_sym_return_statement_token1] = ACTIONS(1238), + [aux_sym_throw_expression_token1] = ACTIONS(1238), + [aux_sym_while_statement_token1] = ACTIONS(1238), + [aux_sym_while_statement_token2] = ACTIONS(1238), + [aux_sym_do_statement_token1] = ACTIONS(1238), + [aux_sym_for_statement_token1] = ACTIONS(1238), + [aux_sym_for_statement_token2] = ACTIONS(1238), + [aux_sym_foreach_statement_token1] = ACTIONS(1238), + [aux_sym_foreach_statement_token2] = ACTIONS(1238), + [aux_sym_if_statement_token1] = ACTIONS(1238), + [aux_sym_if_statement_token2] = ACTIONS(1238), + [aux_sym_else_if_clause_token1] = ACTIONS(1238), + [aux_sym_else_clause_token1] = ACTIONS(1238), + [aux_sym_match_expression_token1] = ACTIONS(1238), + [aux_sym_match_default_expression_token1] = ACTIONS(1238), + [aux_sym_switch_statement_token1] = ACTIONS(1238), + [aux_sym_switch_block_token1] = ACTIONS(1238), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_AT] = ACTIONS(1236), + [aux_sym_clone_expression_token1] = ACTIONS(1238), + [aux_sym_print_intrinsic_token1] = ACTIONS(1238), + [aux_sym_object_creation_expression_token1] = ACTIONS(1238), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [aux_sym__list_destructing_token1] = ACTIONS(1238), + [anon_sym_LBRACK] = ACTIONS(1236), + [anon_sym_self] = ACTIONS(1238), + [anon_sym_parent] = ACTIONS(1238), + [aux_sym__argument_name_token1] = ACTIONS(1238), + [aux_sym__argument_name_token2] = ACTIONS(1238), + [anon_sym_POUND_LBRACK] = ACTIONS(1236), + [aux_sym_encapsed_string_token1] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [aux_sym_string_token1] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_LT_LT_LT] = ACTIONS(1236), + [anon_sym_BQUOTE] = ACTIONS(1236), + [anon_sym_DOLLAR] = ACTIONS(1236), + [aux_sym_yield_expression_token1] = ACTIONS(1238), + [aux_sym_include_expression_token1] = ACTIONS(1238), + [aux_sym_include_once_expression_token1] = ACTIONS(1238), + [aux_sym_require_expression_token1] = ACTIONS(1238), + [aux_sym_require_once_expression_token1] = ACTIONS(1238), [sym_comment] = ACTIONS(5), }, [486] = { [sym_text_interpolation] = STATE(486), - [ts_builtin_sym_end] = ACTIONS(1271), - [sym_name] = ACTIONS(1273), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1271), - [aux_sym_function_static_declaration_token1] = ACTIONS(1273), - [aux_sym_global_declaration_token1] = ACTIONS(1273), - [aux_sym_namespace_definition_token1] = ACTIONS(1273), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1273), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1273), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1273), - [anon_sym_BSLASH] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(1271), - [anon_sym_RBRACE] = ACTIONS(1271), - [aux_sym_trait_declaration_token1] = ACTIONS(1273), - [aux_sym_interface_declaration_token1] = ACTIONS(1273), - [aux_sym_enum_declaration_token1] = ACTIONS(1273), - [aux_sym_enum_case_token1] = ACTIONS(1273), - [aux_sym_class_declaration_token1] = ACTIONS(1273), - [aux_sym_final_modifier_token1] = ACTIONS(1273), - [aux_sym_abstract_modifier_token1] = ACTIONS(1273), - [aux_sym_readonly_modifier_token1] = ACTIONS(1273), - [aux_sym_visibility_modifier_token1] = ACTIONS(1273), - [aux_sym_visibility_modifier_token2] = ACTIONS(1273), - [aux_sym_visibility_modifier_token3] = ACTIONS(1273), - [aux_sym__arrow_function_header_token1] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1271), - [aux_sym_cast_type_token1] = ACTIONS(1273), - [aux_sym_echo_statement_token1] = ACTIONS(1273), - [aux_sym_exit_statement_token1] = ACTIONS(1273), - [anon_sym_unset] = ACTIONS(1273), - [aux_sym_declare_statement_token1] = ACTIONS(1273), - [aux_sym_declare_statement_token2] = ACTIONS(1273), - [sym_float] = ACTIONS(1273), - [aux_sym_try_statement_token1] = ACTIONS(1273), - [aux_sym_goto_statement_token1] = ACTIONS(1273), - [aux_sym_continue_statement_token1] = ACTIONS(1273), - [aux_sym_break_statement_token1] = ACTIONS(1273), - [sym_integer] = ACTIONS(1273), - [aux_sym_return_statement_token1] = ACTIONS(1273), - [aux_sym_throw_expression_token1] = ACTIONS(1273), - [aux_sym_while_statement_token1] = ACTIONS(1273), - [aux_sym_while_statement_token2] = ACTIONS(1273), - [aux_sym_do_statement_token1] = ACTIONS(1273), - [aux_sym_for_statement_token1] = ACTIONS(1273), - [aux_sym_for_statement_token2] = ACTIONS(1273), - [aux_sym_foreach_statement_token1] = ACTIONS(1273), - [aux_sym_foreach_statement_token2] = ACTIONS(1273), - [aux_sym_if_statement_token1] = ACTIONS(1273), - [aux_sym_if_statement_token2] = ACTIONS(1273), - [aux_sym_else_if_clause_token1] = ACTIONS(1273), - [aux_sym_else_clause_token1] = ACTIONS(1273), - [aux_sym_match_expression_token1] = ACTIONS(1273), - [aux_sym_match_default_expression_token1] = ACTIONS(1273), - [aux_sym_switch_statement_token1] = ACTIONS(1273), - [aux_sym_switch_block_token1] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1271), - [anon_sym_AT] = ACTIONS(1271), - [aux_sym_clone_expression_token1] = ACTIONS(1273), - [aux_sym_print_intrinsic_token1] = ACTIONS(1273), - [aux_sym_object_creation_expression_token1] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [aux_sym__list_destructing_token1] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1271), - [anon_sym_self] = ACTIONS(1273), - [anon_sym_parent] = ACTIONS(1273), - [aux_sym__argument_name_token1] = ACTIONS(1273), - [aux_sym__argument_name_token2] = ACTIONS(1273), - [anon_sym_POUND_LBRACK] = ACTIONS(1271), - [aux_sym_encapsed_string_token1] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1271), - [aux_sym_string_token1] = ACTIONS(1271), - [anon_sym_SQUOTE] = ACTIONS(1271), - [anon_sym_LT_LT_LT] = ACTIONS(1271), - [anon_sym_BQUOTE] = ACTIONS(1271), - [anon_sym_DOLLAR] = ACTIONS(1271), - [aux_sym_yield_expression_token1] = ACTIONS(1273), - [aux_sym_include_expression_token1] = ACTIONS(1273), - [aux_sym_include_once_expression_token1] = ACTIONS(1273), - [aux_sym_require_expression_token1] = ACTIONS(1273), - [aux_sym_require_once_expression_token1] = ACTIONS(1273), + [ts_builtin_sym_end] = ACTIONS(1240), + [sym_name] = ACTIONS(1242), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1240), + [aux_sym_function_static_declaration_token1] = ACTIONS(1242), + [aux_sym_global_declaration_token1] = ACTIONS(1242), + [aux_sym_namespace_definition_token1] = ACTIONS(1242), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1242), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1242), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1242), + [anon_sym_BSLASH] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1240), + [aux_sym_trait_declaration_token1] = ACTIONS(1242), + [aux_sym_interface_declaration_token1] = ACTIONS(1242), + [aux_sym_enum_declaration_token1] = ACTIONS(1242), + [aux_sym_enum_case_token1] = ACTIONS(1242), + [aux_sym_class_declaration_token1] = ACTIONS(1242), + [aux_sym_final_modifier_token1] = ACTIONS(1242), + [aux_sym_abstract_modifier_token1] = ACTIONS(1242), + [aux_sym_readonly_modifier_token1] = ACTIONS(1242), + [sym_var_modifier] = ACTIONS(1242), + [aux_sym_visibility_modifier_token1] = ACTIONS(1242), + [aux_sym_visibility_modifier_token2] = ACTIONS(1242), + [aux_sym_visibility_modifier_token3] = ACTIONS(1242), + [aux_sym__arrow_function_header_token1] = ACTIONS(1242), + [anon_sym_LPAREN] = ACTIONS(1240), + [aux_sym_cast_type_token1] = ACTIONS(1242), + [aux_sym_echo_statement_token1] = ACTIONS(1242), + [aux_sym_exit_statement_token1] = ACTIONS(1242), + [anon_sym_unset] = ACTIONS(1242), + [aux_sym_declare_statement_token1] = ACTIONS(1242), + [aux_sym_declare_statement_token2] = ACTIONS(1242), + [sym_float] = ACTIONS(1242), + [aux_sym_try_statement_token1] = ACTIONS(1242), + [aux_sym_goto_statement_token1] = ACTIONS(1242), + [aux_sym_continue_statement_token1] = ACTIONS(1242), + [aux_sym_break_statement_token1] = ACTIONS(1242), + [sym_integer] = ACTIONS(1242), + [aux_sym_return_statement_token1] = ACTIONS(1242), + [aux_sym_throw_expression_token1] = ACTIONS(1242), + [aux_sym_while_statement_token1] = ACTIONS(1242), + [aux_sym_while_statement_token2] = ACTIONS(1242), + [aux_sym_do_statement_token1] = ACTIONS(1242), + [aux_sym_for_statement_token1] = ACTIONS(1242), + [aux_sym_for_statement_token2] = ACTIONS(1242), + [aux_sym_foreach_statement_token1] = ACTIONS(1242), + [aux_sym_foreach_statement_token2] = ACTIONS(1242), + [aux_sym_if_statement_token1] = ACTIONS(1242), + [aux_sym_if_statement_token2] = ACTIONS(1242), + [aux_sym_else_if_clause_token1] = ACTIONS(1242), + [aux_sym_else_clause_token1] = ACTIONS(1242), + [aux_sym_match_expression_token1] = ACTIONS(1242), + [aux_sym_match_default_expression_token1] = ACTIONS(1242), + [aux_sym_switch_statement_token1] = ACTIONS(1242), + [aux_sym_switch_block_token1] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_AT] = ACTIONS(1240), + [aux_sym_clone_expression_token1] = ACTIONS(1242), + [aux_sym_print_intrinsic_token1] = ACTIONS(1242), + [aux_sym_object_creation_expression_token1] = ACTIONS(1242), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [aux_sym__list_destructing_token1] = ACTIONS(1242), + [anon_sym_LBRACK] = ACTIONS(1240), + [anon_sym_self] = ACTIONS(1242), + [anon_sym_parent] = ACTIONS(1242), + [aux_sym__argument_name_token1] = ACTIONS(1242), + [aux_sym__argument_name_token2] = ACTIONS(1242), + [anon_sym_POUND_LBRACK] = ACTIONS(1240), + [aux_sym_encapsed_string_token1] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1240), + [aux_sym_string_token1] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_LT_LT_LT] = ACTIONS(1240), + [anon_sym_BQUOTE] = ACTIONS(1240), + [anon_sym_DOLLAR] = ACTIONS(1240), + [aux_sym_yield_expression_token1] = ACTIONS(1242), + [aux_sym_include_expression_token1] = ACTIONS(1242), + [aux_sym_include_once_expression_token1] = ACTIONS(1242), + [aux_sym_require_expression_token1] = ACTIONS(1242), + [aux_sym_require_once_expression_token1] = ACTIONS(1242), [sym_comment] = ACTIONS(5), }, [487] = { [sym_text_interpolation] = STATE(487), - [ts_builtin_sym_end] = ACTIONS(1275), - [sym_name] = ACTIONS(1277), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1275), - [aux_sym_function_static_declaration_token1] = ACTIONS(1277), - [aux_sym_global_declaration_token1] = ACTIONS(1277), - [aux_sym_namespace_definition_token1] = ACTIONS(1277), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1277), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1277), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1277), - [anon_sym_BSLASH] = ACTIONS(1275), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_RBRACE] = ACTIONS(1275), - [aux_sym_trait_declaration_token1] = ACTIONS(1277), - [aux_sym_interface_declaration_token1] = ACTIONS(1277), - [aux_sym_enum_declaration_token1] = ACTIONS(1277), - [aux_sym_enum_case_token1] = ACTIONS(1277), - [aux_sym_class_declaration_token1] = ACTIONS(1277), - [aux_sym_final_modifier_token1] = ACTIONS(1277), - [aux_sym_abstract_modifier_token1] = ACTIONS(1277), - [aux_sym_readonly_modifier_token1] = ACTIONS(1277), - [aux_sym_visibility_modifier_token1] = ACTIONS(1277), - [aux_sym_visibility_modifier_token2] = ACTIONS(1277), - [aux_sym_visibility_modifier_token3] = ACTIONS(1277), - [aux_sym__arrow_function_header_token1] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(1275), - [aux_sym_cast_type_token1] = ACTIONS(1277), - [aux_sym_echo_statement_token1] = ACTIONS(1277), - [aux_sym_exit_statement_token1] = ACTIONS(1277), - [anon_sym_unset] = ACTIONS(1277), - [aux_sym_declare_statement_token1] = ACTIONS(1277), - [aux_sym_declare_statement_token2] = ACTIONS(1277), - [sym_float] = ACTIONS(1277), - [aux_sym_try_statement_token1] = ACTIONS(1277), - [aux_sym_goto_statement_token1] = ACTIONS(1277), - [aux_sym_continue_statement_token1] = ACTIONS(1277), - [aux_sym_break_statement_token1] = ACTIONS(1277), - [sym_integer] = ACTIONS(1277), - [aux_sym_return_statement_token1] = ACTIONS(1277), - [aux_sym_throw_expression_token1] = ACTIONS(1277), - [aux_sym_while_statement_token1] = ACTIONS(1277), - [aux_sym_while_statement_token2] = ACTIONS(1277), - [aux_sym_do_statement_token1] = ACTIONS(1277), - [aux_sym_for_statement_token1] = ACTIONS(1277), - [aux_sym_for_statement_token2] = ACTIONS(1277), - [aux_sym_foreach_statement_token1] = ACTIONS(1277), - [aux_sym_foreach_statement_token2] = ACTIONS(1277), - [aux_sym_if_statement_token1] = ACTIONS(1277), - [aux_sym_if_statement_token2] = ACTIONS(1277), - [aux_sym_else_if_clause_token1] = ACTIONS(1277), - [aux_sym_else_clause_token1] = ACTIONS(1277), - [aux_sym_match_expression_token1] = ACTIONS(1277), - [aux_sym_match_default_expression_token1] = ACTIONS(1277), - [aux_sym_switch_statement_token1] = ACTIONS(1277), - [aux_sym_switch_block_token1] = ACTIONS(1277), - [anon_sym_PLUS] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1277), - [anon_sym_TILDE] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(1275), - [anon_sym_AT] = ACTIONS(1275), - [aux_sym_clone_expression_token1] = ACTIONS(1277), - [aux_sym_print_intrinsic_token1] = ACTIONS(1277), - [aux_sym_object_creation_expression_token1] = ACTIONS(1277), - [anon_sym_DASH_DASH] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(1275), - [aux_sym__list_destructing_token1] = ACTIONS(1277), - [anon_sym_LBRACK] = ACTIONS(1275), - [anon_sym_self] = ACTIONS(1277), - [anon_sym_parent] = ACTIONS(1277), - [aux_sym__argument_name_token1] = ACTIONS(1277), - [aux_sym__argument_name_token2] = ACTIONS(1277), - [anon_sym_POUND_LBRACK] = ACTIONS(1275), - [aux_sym_encapsed_string_token1] = ACTIONS(1275), - [anon_sym_DQUOTE] = ACTIONS(1275), - [aux_sym_string_token1] = ACTIONS(1275), - [anon_sym_SQUOTE] = ACTIONS(1275), - [anon_sym_LT_LT_LT] = ACTIONS(1275), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_DOLLAR] = ACTIONS(1275), - [aux_sym_yield_expression_token1] = ACTIONS(1277), - [aux_sym_include_expression_token1] = ACTIONS(1277), - [aux_sym_include_once_expression_token1] = ACTIONS(1277), - [aux_sym_require_expression_token1] = ACTIONS(1277), - [aux_sym_require_once_expression_token1] = ACTIONS(1277), + [ts_builtin_sym_end] = ACTIONS(1244), + [sym_name] = ACTIONS(1246), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1244), + [aux_sym_function_static_declaration_token1] = ACTIONS(1246), + [aux_sym_global_declaration_token1] = ACTIONS(1246), + [aux_sym_namespace_definition_token1] = ACTIONS(1246), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1246), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1246), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1246), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [aux_sym_trait_declaration_token1] = ACTIONS(1246), + [aux_sym_interface_declaration_token1] = ACTIONS(1246), + [aux_sym_enum_declaration_token1] = ACTIONS(1246), + [aux_sym_enum_case_token1] = ACTIONS(1246), + [aux_sym_class_declaration_token1] = ACTIONS(1246), + [aux_sym_final_modifier_token1] = ACTIONS(1246), + [aux_sym_abstract_modifier_token1] = ACTIONS(1246), + [aux_sym_readonly_modifier_token1] = ACTIONS(1246), + [sym_var_modifier] = ACTIONS(1246), + [aux_sym_visibility_modifier_token1] = ACTIONS(1246), + [aux_sym_visibility_modifier_token2] = ACTIONS(1246), + [aux_sym_visibility_modifier_token3] = ACTIONS(1246), + [aux_sym__arrow_function_header_token1] = ACTIONS(1246), + [anon_sym_LPAREN] = ACTIONS(1244), + [aux_sym_cast_type_token1] = ACTIONS(1246), + [aux_sym_echo_statement_token1] = ACTIONS(1246), + [aux_sym_exit_statement_token1] = ACTIONS(1246), + [anon_sym_unset] = ACTIONS(1246), + [aux_sym_declare_statement_token1] = ACTIONS(1246), + [aux_sym_declare_statement_token2] = ACTIONS(1246), + [sym_float] = ACTIONS(1246), + [aux_sym_try_statement_token1] = ACTIONS(1246), + [aux_sym_goto_statement_token1] = ACTIONS(1246), + [aux_sym_continue_statement_token1] = ACTIONS(1246), + [aux_sym_break_statement_token1] = ACTIONS(1246), + [sym_integer] = ACTIONS(1246), + [aux_sym_return_statement_token1] = ACTIONS(1246), + [aux_sym_throw_expression_token1] = ACTIONS(1246), + [aux_sym_while_statement_token1] = ACTIONS(1246), + [aux_sym_while_statement_token2] = ACTIONS(1246), + [aux_sym_do_statement_token1] = ACTIONS(1246), + [aux_sym_for_statement_token1] = ACTIONS(1246), + [aux_sym_for_statement_token2] = ACTIONS(1246), + [aux_sym_foreach_statement_token1] = ACTIONS(1246), + [aux_sym_foreach_statement_token2] = ACTIONS(1246), + [aux_sym_if_statement_token1] = ACTIONS(1246), + [aux_sym_if_statement_token2] = ACTIONS(1246), + [aux_sym_else_if_clause_token1] = ACTIONS(1246), + [aux_sym_else_clause_token1] = ACTIONS(1246), + [aux_sym_match_expression_token1] = ACTIONS(1246), + [aux_sym_match_default_expression_token1] = ACTIONS(1246), + [aux_sym_switch_statement_token1] = ACTIONS(1246), + [aux_sym_switch_block_token1] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_AT] = ACTIONS(1244), + [aux_sym_clone_expression_token1] = ACTIONS(1246), + [aux_sym_print_intrinsic_token1] = ACTIONS(1246), + [aux_sym_object_creation_expression_token1] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_PLUS_PLUS] = ACTIONS(1244), + [aux_sym__list_destructing_token1] = ACTIONS(1246), + [anon_sym_LBRACK] = ACTIONS(1244), + [anon_sym_self] = ACTIONS(1246), + [anon_sym_parent] = ACTIONS(1246), + [aux_sym__argument_name_token1] = ACTIONS(1246), + [aux_sym__argument_name_token2] = ACTIONS(1246), + [anon_sym_POUND_LBRACK] = ACTIONS(1244), + [aux_sym_encapsed_string_token1] = ACTIONS(1244), + [anon_sym_DQUOTE] = ACTIONS(1244), + [aux_sym_string_token1] = ACTIONS(1244), + [anon_sym_SQUOTE] = ACTIONS(1244), + [anon_sym_LT_LT_LT] = ACTIONS(1244), + [anon_sym_BQUOTE] = ACTIONS(1244), + [anon_sym_DOLLAR] = ACTIONS(1244), + [aux_sym_yield_expression_token1] = ACTIONS(1246), + [aux_sym_include_expression_token1] = ACTIONS(1246), + [aux_sym_include_once_expression_token1] = ACTIONS(1246), + [aux_sym_require_expression_token1] = ACTIONS(1246), + [aux_sym_require_once_expression_token1] = ACTIONS(1246), [sym_comment] = ACTIONS(5), }, [488] = { [sym_text_interpolation] = STATE(488), - [ts_builtin_sym_end] = ACTIONS(1279), - [sym_name] = ACTIONS(1281), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1279), - [aux_sym_function_static_declaration_token1] = ACTIONS(1281), - [aux_sym_global_declaration_token1] = ACTIONS(1281), - [aux_sym_namespace_definition_token1] = ACTIONS(1281), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1281), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1281), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1281), - [anon_sym_BSLASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_RBRACE] = ACTIONS(1279), - [aux_sym_trait_declaration_token1] = ACTIONS(1281), - [aux_sym_interface_declaration_token1] = ACTIONS(1281), - [aux_sym_enum_declaration_token1] = ACTIONS(1281), - [aux_sym_enum_case_token1] = ACTIONS(1281), - [aux_sym_class_declaration_token1] = ACTIONS(1281), - [aux_sym_final_modifier_token1] = ACTIONS(1281), - [aux_sym_abstract_modifier_token1] = ACTIONS(1281), - [aux_sym_readonly_modifier_token1] = ACTIONS(1281), - [aux_sym_visibility_modifier_token1] = ACTIONS(1281), - [aux_sym_visibility_modifier_token2] = ACTIONS(1281), - [aux_sym_visibility_modifier_token3] = ACTIONS(1281), - [aux_sym__arrow_function_header_token1] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1279), - [aux_sym_cast_type_token1] = ACTIONS(1281), - [aux_sym_echo_statement_token1] = ACTIONS(1281), - [aux_sym_exit_statement_token1] = ACTIONS(1281), - [anon_sym_unset] = ACTIONS(1281), - [aux_sym_declare_statement_token1] = ACTIONS(1281), - [aux_sym_declare_statement_token2] = ACTIONS(1281), - [sym_float] = ACTIONS(1281), - [aux_sym_try_statement_token1] = ACTIONS(1281), - [aux_sym_goto_statement_token1] = ACTIONS(1281), - [aux_sym_continue_statement_token1] = ACTIONS(1281), - [aux_sym_break_statement_token1] = ACTIONS(1281), - [sym_integer] = ACTIONS(1281), - [aux_sym_return_statement_token1] = ACTIONS(1281), - [aux_sym_throw_expression_token1] = ACTIONS(1281), - [aux_sym_while_statement_token1] = ACTIONS(1281), - [aux_sym_while_statement_token2] = ACTIONS(1281), - [aux_sym_do_statement_token1] = ACTIONS(1281), - [aux_sym_for_statement_token1] = ACTIONS(1281), - [aux_sym_for_statement_token2] = ACTIONS(1281), - [aux_sym_foreach_statement_token1] = ACTIONS(1281), - [aux_sym_foreach_statement_token2] = ACTIONS(1281), - [aux_sym_if_statement_token1] = ACTIONS(1281), - [aux_sym_if_statement_token2] = ACTIONS(1281), - [aux_sym_else_if_clause_token1] = ACTIONS(1281), - [aux_sym_else_clause_token1] = ACTIONS(1281), - [aux_sym_match_expression_token1] = ACTIONS(1281), - [aux_sym_match_default_expression_token1] = ACTIONS(1281), - [aux_sym_switch_statement_token1] = ACTIONS(1281), - [aux_sym_switch_block_token1] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1279), - [anon_sym_AT] = ACTIONS(1279), - [aux_sym_clone_expression_token1] = ACTIONS(1281), - [aux_sym_print_intrinsic_token1] = ACTIONS(1281), - [aux_sym_object_creation_expression_token1] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1279), - [anon_sym_PLUS_PLUS] = ACTIONS(1279), - [aux_sym__list_destructing_token1] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(1279), - [anon_sym_self] = ACTIONS(1281), - [anon_sym_parent] = ACTIONS(1281), - [aux_sym__argument_name_token1] = ACTIONS(1281), - [aux_sym__argument_name_token2] = ACTIONS(1281), - [anon_sym_POUND_LBRACK] = ACTIONS(1279), - [aux_sym_encapsed_string_token1] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [aux_sym_string_token1] = ACTIONS(1279), - [anon_sym_SQUOTE] = ACTIONS(1279), - [anon_sym_LT_LT_LT] = ACTIONS(1279), - [anon_sym_BQUOTE] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(1279), - [aux_sym_yield_expression_token1] = ACTIONS(1281), - [aux_sym_include_expression_token1] = ACTIONS(1281), - [aux_sym_include_once_expression_token1] = ACTIONS(1281), - [aux_sym_require_expression_token1] = ACTIONS(1281), - [aux_sym_require_once_expression_token1] = ACTIONS(1281), + [ts_builtin_sym_end] = ACTIONS(1248), + [sym_name] = ACTIONS(1250), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1248), + [aux_sym_function_static_declaration_token1] = ACTIONS(1250), + [aux_sym_global_declaration_token1] = ACTIONS(1250), + [aux_sym_namespace_definition_token1] = ACTIONS(1250), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1250), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1250), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1250), + [anon_sym_BSLASH] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_RBRACE] = ACTIONS(1248), + [aux_sym_trait_declaration_token1] = ACTIONS(1250), + [aux_sym_interface_declaration_token1] = ACTIONS(1250), + [aux_sym_enum_declaration_token1] = ACTIONS(1250), + [aux_sym_enum_case_token1] = ACTIONS(1250), + [aux_sym_class_declaration_token1] = ACTIONS(1250), + [aux_sym_final_modifier_token1] = ACTIONS(1250), + [aux_sym_abstract_modifier_token1] = ACTIONS(1250), + [aux_sym_readonly_modifier_token1] = ACTIONS(1250), + [sym_var_modifier] = ACTIONS(1250), + [aux_sym_visibility_modifier_token1] = ACTIONS(1250), + [aux_sym_visibility_modifier_token2] = ACTIONS(1250), + [aux_sym_visibility_modifier_token3] = ACTIONS(1250), + [aux_sym__arrow_function_header_token1] = ACTIONS(1250), + [anon_sym_LPAREN] = ACTIONS(1248), + [aux_sym_cast_type_token1] = ACTIONS(1250), + [aux_sym_echo_statement_token1] = ACTIONS(1250), + [aux_sym_exit_statement_token1] = ACTIONS(1250), + [anon_sym_unset] = ACTIONS(1250), + [aux_sym_declare_statement_token1] = ACTIONS(1250), + [aux_sym_declare_statement_token2] = ACTIONS(1250), + [sym_float] = ACTIONS(1250), + [aux_sym_try_statement_token1] = ACTIONS(1250), + [aux_sym_goto_statement_token1] = ACTIONS(1250), + [aux_sym_continue_statement_token1] = ACTIONS(1250), + [aux_sym_break_statement_token1] = ACTIONS(1250), + [sym_integer] = ACTIONS(1250), + [aux_sym_return_statement_token1] = ACTIONS(1250), + [aux_sym_throw_expression_token1] = ACTIONS(1250), + [aux_sym_while_statement_token1] = ACTIONS(1250), + [aux_sym_while_statement_token2] = ACTIONS(1250), + [aux_sym_do_statement_token1] = ACTIONS(1250), + [aux_sym_for_statement_token1] = ACTIONS(1250), + [aux_sym_for_statement_token2] = ACTIONS(1250), + [aux_sym_foreach_statement_token1] = ACTIONS(1250), + [aux_sym_foreach_statement_token2] = ACTIONS(1250), + [aux_sym_if_statement_token1] = ACTIONS(1250), + [aux_sym_if_statement_token2] = ACTIONS(1250), + [aux_sym_else_if_clause_token1] = ACTIONS(1250), + [aux_sym_else_clause_token1] = ACTIONS(1250), + [aux_sym_match_expression_token1] = ACTIONS(1250), + [aux_sym_match_default_expression_token1] = ACTIONS(1250), + [aux_sym_switch_statement_token1] = ACTIONS(1250), + [aux_sym_switch_block_token1] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(1248), + [aux_sym_clone_expression_token1] = ACTIONS(1250), + [aux_sym_print_intrinsic_token1] = ACTIONS(1250), + [aux_sym_object_creation_expression_token1] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [aux_sym__list_destructing_token1] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1248), + [anon_sym_self] = ACTIONS(1250), + [anon_sym_parent] = ACTIONS(1250), + [aux_sym__argument_name_token1] = ACTIONS(1250), + [aux_sym__argument_name_token2] = ACTIONS(1250), + [anon_sym_POUND_LBRACK] = ACTIONS(1248), + [aux_sym_encapsed_string_token1] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [aux_sym_string_token1] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_LT_LT_LT] = ACTIONS(1248), + [anon_sym_BQUOTE] = ACTIONS(1248), + [anon_sym_DOLLAR] = ACTIONS(1248), + [aux_sym_yield_expression_token1] = ACTIONS(1250), + [aux_sym_include_expression_token1] = ACTIONS(1250), + [aux_sym_include_once_expression_token1] = ACTIONS(1250), + [aux_sym_require_expression_token1] = ACTIONS(1250), + [aux_sym_require_once_expression_token1] = ACTIONS(1250), [sym_comment] = ACTIONS(5), }, [489] = { [sym_text_interpolation] = STATE(489), - [ts_builtin_sym_end] = ACTIONS(1283), - [sym_name] = ACTIONS(1285), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1283), - [aux_sym_function_static_declaration_token1] = ACTIONS(1285), - [aux_sym_global_declaration_token1] = ACTIONS(1285), - [aux_sym_namespace_definition_token1] = ACTIONS(1285), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1285), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1285), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1285), - [anon_sym_BSLASH] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(1283), - [anon_sym_RBRACE] = ACTIONS(1283), - [aux_sym_trait_declaration_token1] = ACTIONS(1285), - [aux_sym_interface_declaration_token1] = ACTIONS(1285), - [aux_sym_enum_declaration_token1] = ACTIONS(1285), - [aux_sym_enum_case_token1] = ACTIONS(1285), - [aux_sym_class_declaration_token1] = ACTIONS(1285), - [aux_sym_final_modifier_token1] = ACTIONS(1285), - [aux_sym_abstract_modifier_token1] = ACTIONS(1285), - [aux_sym_readonly_modifier_token1] = ACTIONS(1285), - [aux_sym_visibility_modifier_token1] = ACTIONS(1285), - [aux_sym_visibility_modifier_token2] = ACTIONS(1285), - [aux_sym_visibility_modifier_token3] = ACTIONS(1285), - [aux_sym__arrow_function_header_token1] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1283), - [aux_sym_cast_type_token1] = ACTIONS(1285), - [aux_sym_echo_statement_token1] = ACTIONS(1285), - [aux_sym_exit_statement_token1] = ACTIONS(1285), - [anon_sym_unset] = ACTIONS(1285), - [aux_sym_declare_statement_token1] = ACTIONS(1285), - [aux_sym_declare_statement_token2] = ACTIONS(1285), - [sym_float] = ACTIONS(1285), - [aux_sym_try_statement_token1] = ACTIONS(1285), - [aux_sym_goto_statement_token1] = ACTIONS(1285), - [aux_sym_continue_statement_token1] = ACTIONS(1285), - [aux_sym_break_statement_token1] = ACTIONS(1285), - [sym_integer] = ACTIONS(1285), - [aux_sym_return_statement_token1] = ACTIONS(1285), - [aux_sym_throw_expression_token1] = ACTIONS(1285), - [aux_sym_while_statement_token1] = ACTIONS(1285), - [aux_sym_while_statement_token2] = ACTIONS(1285), - [aux_sym_do_statement_token1] = ACTIONS(1285), - [aux_sym_for_statement_token1] = ACTIONS(1285), - [aux_sym_for_statement_token2] = ACTIONS(1285), - [aux_sym_foreach_statement_token1] = ACTIONS(1285), - [aux_sym_foreach_statement_token2] = ACTIONS(1285), - [aux_sym_if_statement_token1] = ACTIONS(1285), - [aux_sym_if_statement_token2] = ACTIONS(1285), - [aux_sym_else_if_clause_token1] = ACTIONS(1285), - [aux_sym_else_clause_token1] = ACTIONS(1285), - [aux_sym_match_expression_token1] = ACTIONS(1285), - [aux_sym_match_default_expression_token1] = ACTIONS(1285), - [aux_sym_switch_statement_token1] = ACTIONS(1285), - [aux_sym_switch_block_token1] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_BANG] = ACTIONS(1283), - [anon_sym_AT] = ACTIONS(1283), - [aux_sym_clone_expression_token1] = ACTIONS(1285), - [aux_sym_print_intrinsic_token1] = ACTIONS(1285), - [aux_sym_object_creation_expression_token1] = ACTIONS(1285), - [anon_sym_DASH_DASH] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [aux_sym__list_destructing_token1] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_self] = ACTIONS(1285), - [anon_sym_parent] = ACTIONS(1285), - [aux_sym__argument_name_token1] = ACTIONS(1285), - [aux_sym__argument_name_token2] = ACTIONS(1285), - [anon_sym_POUND_LBRACK] = ACTIONS(1283), - [aux_sym_encapsed_string_token1] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1283), - [aux_sym_string_token1] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1283), - [anon_sym_LT_LT_LT] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1283), - [anon_sym_DOLLAR] = ACTIONS(1283), - [aux_sym_yield_expression_token1] = ACTIONS(1285), - [aux_sym_include_expression_token1] = ACTIONS(1285), - [aux_sym_include_once_expression_token1] = ACTIONS(1285), - [aux_sym_require_expression_token1] = ACTIONS(1285), - [aux_sym_require_once_expression_token1] = ACTIONS(1285), + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_name] = ACTIONS(1254), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1252), + [aux_sym_function_static_declaration_token1] = ACTIONS(1254), + [aux_sym_global_declaration_token1] = ACTIONS(1254), + [aux_sym_namespace_definition_token1] = ACTIONS(1254), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1254), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1254), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1254), + [anon_sym_BSLASH] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [aux_sym_trait_declaration_token1] = ACTIONS(1254), + [aux_sym_interface_declaration_token1] = ACTIONS(1254), + [aux_sym_enum_declaration_token1] = ACTIONS(1254), + [aux_sym_enum_case_token1] = ACTIONS(1254), + [aux_sym_class_declaration_token1] = ACTIONS(1254), + [aux_sym_final_modifier_token1] = ACTIONS(1254), + [aux_sym_abstract_modifier_token1] = ACTIONS(1254), + [aux_sym_readonly_modifier_token1] = ACTIONS(1254), + [sym_var_modifier] = ACTIONS(1254), + [aux_sym_visibility_modifier_token1] = ACTIONS(1254), + [aux_sym_visibility_modifier_token2] = ACTIONS(1254), + [aux_sym_visibility_modifier_token3] = ACTIONS(1254), + [aux_sym__arrow_function_header_token1] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1252), + [aux_sym_cast_type_token1] = ACTIONS(1254), + [aux_sym_echo_statement_token1] = ACTIONS(1254), + [aux_sym_exit_statement_token1] = ACTIONS(1254), + [anon_sym_unset] = ACTIONS(1254), + [aux_sym_declare_statement_token1] = ACTIONS(1254), + [aux_sym_declare_statement_token2] = ACTIONS(1254), + [sym_float] = ACTIONS(1254), + [aux_sym_try_statement_token1] = ACTIONS(1254), + [aux_sym_goto_statement_token1] = ACTIONS(1254), + [aux_sym_continue_statement_token1] = ACTIONS(1254), + [aux_sym_break_statement_token1] = ACTIONS(1254), + [sym_integer] = ACTIONS(1254), + [aux_sym_return_statement_token1] = ACTIONS(1254), + [aux_sym_throw_expression_token1] = ACTIONS(1254), + [aux_sym_while_statement_token1] = ACTIONS(1254), + [aux_sym_while_statement_token2] = ACTIONS(1254), + [aux_sym_do_statement_token1] = ACTIONS(1254), + [aux_sym_for_statement_token1] = ACTIONS(1254), + [aux_sym_for_statement_token2] = ACTIONS(1254), + [aux_sym_foreach_statement_token1] = ACTIONS(1254), + [aux_sym_foreach_statement_token2] = ACTIONS(1254), + [aux_sym_if_statement_token1] = ACTIONS(1254), + [aux_sym_if_statement_token2] = ACTIONS(1254), + [aux_sym_else_if_clause_token1] = ACTIONS(1254), + [aux_sym_else_clause_token1] = ACTIONS(1254), + [aux_sym_match_expression_token1] = ACTIONS(1254), + [aux_sym_match_default_expression_token1] = ACTIONS(1254), + [aux_sym_switch_statement_token1] = ACTIONS(1254), + [aux_sym_switch_block_token1] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_AT] = ACTIONS(1252), + [aux_sym_clone_expression_token1] = ACTIONS(1254), + [aux_sym_print_intrinsic_token1] = ACTIONS(1254), + [aux_sym_object_creation_expression_token1] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [aux_sym__list_destructing_token1] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_self] = ACTIONS(1254), + [anon_sym_parent] = ACTIONS(1254), + [aux_sym__argument_name_token1] = ACTIONS(1254), + [aux_sym__argument_name_token2] = ACTIONS(1254), + [anon_sym_POUND_LBRACK] = ACTIONS(1252), + [aux_sym_encapsed_string_token1] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [aux_sym_string_token1] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_LT_LT_LT] = ACTIONS(1252), + [anon_sym_BQUOTE] = ACTIONS(1252), + [anon_sym_DOLLAR] = ACTIONS(1252), + [aux_sym_yield_expression_token1] = ACTIONS(1254), + [aux_sym_include_expression_token1] = ACTIONS(1254), + [aux_sym_include_once_expression_token1] = ACTIONS(1254), + [aux_sym_require_expression_token1] = ACTIONS(1254), + [aux_sym_require_once_expression_token1] = ACTIONS(1254), [sym_comment] = ACTIONS(5), }, [490] = { [sym_text_interpolation] = STATE(490), - [ts_builtin_sym_end] = ACTIONS(1287), - [sym_name] = ACTIONS(1289), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1287), - [aux_sym_function_static_declaration_token1] = ACTIONS(1289), - [aux_sym_global_declaration_token1] = ACTIONS(1289), - [aux_sym_namespace_definition_token1] = ACTIONS(1289), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1289), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1289), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1287), - [anon_sym_LBRACE] = ACTIONS(1287), - [anon_sym_RBRACE] = ACTIONS(1287), - [aux_sym_trait_declaration_token1] = ACTIONS(1289), - [aux_sym_interface_declaration_token1] = ACTIONS(1289), - [aux_sym_enum_declaration_token1] = ACTIONS(1289), - [aux_sym_enum_case_token1] = ACTIONS(1289), - [aux_sym_class_declaration_token1] = ACTIONS(1289), - [aux_sym_final_modifier_token1] = ACTIONS(1289), - [aux_sym_abstract_modifier_token1] = ACTIONS(1289), - [aux_sym_readonly_modifier_token1] = ACTIONS(1289), - [aux_sym_visibility_modifier_token1] = ACTIONS(1289), - [aux_sym_visibility_modifier_token2] = ACTIONS(1289), - [aux_sym_visibility_modifier_token3] = ACTIONS(1289), - [aux_sym__arrow_function_header_token1] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1287), - [aux_sym_cast_type_token1] = ACTIONS(1289), - [aux_sym_echo_statement_token1] = ACTIONS(1289), - [aux_sym_exit_statement_token1] = ACTIONS(1289), - [anon_sym_unset] = ACTIONS(1289), - [aux_sym_declare_statement_token1] = ACTIONS(1289), - [aux_sym_declare_statement_token2] = ACTIONS(1289), - [sym_float] = ACTIONS(1289), - [aux_sym_try_statement_token1] = ACTIONS(1289), - [aux_sym_goto_statement_token1] = ACTIONS(1289), - [aux_sym_continue_statement_token1] = ACTIONS(1289), - [aux_sym_break_statement_token1] = ACTIONS(1289), - [sym_integer] = ACTIONS(1289), - [aux_sym_return_statement_token1] = ACTIONS(1289), - [aux_sym_throw_expression_token1] = ACTIONS(1289), - [aux_sym_while_statement_token1] = ACTIONS(1289), - [aux_sym_while_statement_token2] = ACTIONS(1289), - [aux_sym_do_statement_token1] = ACTIONS(1289), - [aux_sym_for_statement_token1] = ACTIONS(1289), - [aux_sym_for_statement_token2] = ACTIONS(1289), - [aux_sym_foreach_statement_token1] = ACTIONS(1289), - [aux_sym_foreach_statement_token2] = ACTIONS(1289), - [aux_sym_if_statement_token1] = ACTIONS(1289), - [aux_sym_if_statement_token2] = ACTIONS(1289), - [aux_sym_else_if_clause_token1] = ACTIONS(1289), - [aux_sym_else_clause_token1] = ACTIONS(1289), - [aux_sym_match_expression_token1] = ACTIONS(1289), - [aux_sym_match_default_expression_token1] = ACTIONS(1289), - [aux_sym_switch_statement_token1] = ACTIONS(1289), - [aux_sym_switch_block_token1] = ACTIONS(1289), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_TILDE] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1287), - [aux_sym_clone_expression_token1] = ACTIONS(1289), - [aux_sym_print_intrinsic_token1] = ACTIONS(1289), - [aux_sym_object_creation_expression_token1] = ACTIONS(1289), - [anon_sym_DASH_DASH] = ACTIONS(1287), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [aux_sym__list_destructing_token1] = ACTIONS(1289), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_self] = ACTIONS(1289), - [anon_sym_parent] = ACTIONS(1289), - [aux_sym__argument_name_token1] = ACTIONS(1289), - [aux_sym__argument_name_token2] = ACTIONS(1289), - [anon_sym_POUND_LBRACK] = ACTIONS(1287), - [aux_sym_encapsed_string_token1] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1287), - [aux_sym_string_token1] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1287), - [anon_sym_LT_LT_LT] = ACTIONS(1287), - [anon_sym_BQUOTE] = ACTIONS(1287), - [anon_sym_DOLLAR] = ACTIONS(1287), - [aux_sym_yield_expression_token1] = ACTIONS(1289), - [aux_sym_include_expression_token1] = ACTIONS(1289), - [aux_sym_include_once_expression_token1] = ACTIONS(1289), - [aux_sym_require_expression_token1] = ACTIONS(1289), - [aux_sym_require_once_expression_token1] = ACTIONS(1289), + [ts_builtin_sym_end] = ACTIONS(1256), + [sym_name] = ACTIONS(1258), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1256), + [aux_sym_function_static_declaration_token1] = ACTIONS(1258), + [aux_sym_global_declaration_token1] = ACTIONS(1258), + [aux_sym_namespace_definition_token1] = ACTIONS(1258), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1258), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1258), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1258), + [anon_sym_BSLASH] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_RBRACE] = ACTIONS(1256), + [aux_sym_trait_declaration_token1] = ACTIONS(1258), + [aux_sym_interface_declaration_token1] = ACTIONS(1258), + [aux_sym_enum_declaration_token1] = ACTIONS(1258), + [aux_sym_enum_case_token1] = ACTIONS(1258), + [aux_sym_class_declaration_token1] = ACTIONS(1258), + [aux_sym_final_modifier_token1] = ACTIONS(1258), + [aux_sym_abstract_modifier_token1] = ACTIONS(1258), + [aux_sym_readonly_modifier_token1] = ACTIONS(1258), + [sym_var_modifier] = ACTIONS(1258), + [aux_sym_visibility_modifier_token1] = ACTIONS(1258), + [aux_sym_visibility_modifier_token2] = ACTIONS(1258), + [aux_sym_visibility_modifier_token3] = ACTIONS(1258), + [aux_sym__arrow_function_header_token1] = ACTIONS(1258), + [anon_sym_LPAREN] = ACTIONS(1256), + [aux_sym_cast_type_token1] = ACTIONS(1258), + [aux_sym_echo_statement_token1] = ACTIONS(1258), + [aux_sym_exit_statement_token1] = ACTIONS(1258), + [anon_sym_unset] = ACTIONS(1258), + [aux_sym_declare_statement_token1] = ACTIONS(1258), + [aux_sym_declare_statement_token2] = ACTIONS(1258), + [sym_float] = ACTIONS(1258), + [aux_sym_try_statement_token1] = ACTIONS(1258), + [aux_sym_goto_statement_token1] = ACTIONS(1258), + [aux_sym_continue_statement_token1] = ACTIONS(1258), + [aux_sym_break_statement_token1] = ACTIONS(1258), + [sym_integer] = ACTIONS(1258), + [aux_sym_return_statement_token1] = ACTIONS(1258), + [aux_sym_throw_expression_token1] = ACTIONS(1258), + [aux_sym_while_statement_token1] = ACTIONS(1258), + [aux_sym_while_statement_token2] = ACTIONS(1258), + [aux_sym_do_statement_token1] = ACTIONS(1258), + [aux_sym_for_statement_token1] = ACTIONS(1258), + [aux_sym_for_statement_token2] = ACTIONS(1258), + [aux_sym_foreach_statement_token1] = ACTIONS(1258), + [aux_sym_foreach_statement_token2] = ACTIONS(1258), + [aux_sym_if_statement_token1] = ACTIONS(1258), + [aux_sym_if_statement_token2] = ACTIONS(1258), + [aux_sym_else_if_clause_token1] = ACTIONS(1258), + [aux_sym_else_clause_token1] = ACTIONS(1258), + [aux_sym_match_expression_token1] = ACTIONS(1258), + [aux_sym_match_default_expression_token1] = ACTIONS(1258), + [aux_sym_switch_statement_token1] = ACTIONS(1258), + [aux_sym_switch_block_token1] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_AT] = ACTIONS(1256), + [aux_sym_clone_expression_token1] = ACTIONS(1258), + [aux_sym_print_intrinsic_token1] = ACTIONS(1258), + [aux_sym_object_creation_expression_token1] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [aux_sym__list_destructing_token1] = ACTIONS(1258), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_self] = ACTIONS(1258), + [anon_sym_parent] = ACTIONS(1258), + [aux_sym__argument_name_token1] = ACTIONS(1258), + [aux_sym__argument_name_token2] = ACTIONS(1258), + [anon_sym_POUND_LBRACK] = ACTIONS(1256), + [aux_sym_encapsed_string_token1] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1256), + [aux_sym_string_token1] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1256), + [anon_sym_LT_LT_LT] = ACTIONS(1256), + [anon_sym_BQUOTE] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1256), + [aux_sym_yield_expression_token1] = ACTIONS(1258), + [aux_sym_include_expression_token1] = ACTIONS(1258), + [aux_sym_include_once_expression_token1] = ACTIONS(1258), + [aux_sym_require_expression_token1] = ACTIONS(1258), + [aux_sym_require_once_expression_token1] = ACTIONS(1258), [sym_comment] = ACTIONS(5), }, [491] = { [sym_text_interpolation] = STATE(491), - [ts_builtin_sym_end] = ACTIONS(1291), - [sym_name] = ACTIONS(1293), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1291), - [aux_sym_function_static_declaration_token1] = ACTIONS(1293), - [aux_sym_global_declaration_token1] = ACTIONS(1293), - [aux_sym_namespace_definition_token1] = ACTIONS(1293), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1293), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1293), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1293), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_LBRACE] = ACTIONS(1291), - [anon_sym_RBRACE] = ACTIONS(1291), - [aux_sym_trait_declaration_token1] = ACTIONS(1293), - [aux_sym_interface_declaration_token1] = ACTIONS(1293), - [aux_sym_enum_declaration_token1] = ACTIONS(1293), - [aux_sym_enum_case_token1] = ACTIONS(1293), - [aux_sym_class_declaration_token1] = ACTIONS(1293), - [aux_sym_final_modifier_token1] = ACTIONS(1293), - [aux_sym_abstract_modifier_token1] = ACTIONS(1293), - [aux_sym_readonly_modifier_token1] = ACTIONS(1293), - [aux_sym_visibility_modifier_token1] = ACTIONS(1293), - [aux_sym_visibility_modifier_token2] = ACTIONS(1293), - [aux_sym_visibility_modifier_token3] = ACTIONS(1293), - [aux_sym__arrow_function_header_token1] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1291), - [aux_sym_cast_type_token1] = ACTIONS(1293), - [aux_sym_echo_statement_token1] = ACTIONS(1293), - [aux_sym_exit_statement_token1] = ACTIONS(1293), - [anon_sym_unset] = ACTIONS(1293), - [aux_sym_declare_statement_token1] = ACTIONS(1293), - [aux_sym_declare_statement_token2] = ACTIONS(1293), - [sym_float] = ACTIONS(1293), - [aux_sym_try_statement_token1] = ACTIONS(1293), - [aux_sym_goto_statement_token1] = ACTIONS(1293), - [aux_sym_continue_statement_token1] = ACTIONS(1293), - [aux_sym_break_statement_token1] = ACTIONS(1293), - [sym_integer] = ACTIONS(1293), - [aux_sym_return_statement_token1] = ACTIONS(1293), - [aux_sym_throw_expression_token1] = ACTIONS(1293), - [aux_sym_while_statement_token1] = ACTIONS(1293), - [aux_sym_while_statement_token2] = ACTIONS(1293), - [aux_sym_do_statement_token1] = ACTIONS(1293), - [aux_sym_for_statement_token1] = ACTIONS(1293), - [aux_sym_for_statement_token2] = ACTIONS(1293), - [aux_sym_foreach_statement_token1] = ACTIONS(1293), - [aux_sym_foreach_statement_token2] = ACTIONS(1293), - [aux_sym_if_statement_token1] = ACTIONS(1293), - [aux_sym_if_statement_token2] = ACTIONS(1293), - [aux_sym_else_if_clause_token1] = ACTIONS(1293), - [aux_sym_else_clause_token1] = ACTIONS(1293), - [aux_sym_match_expression_token1] = ACTIONS(1293), - [aux_sym_match_default_expression_token1] = ACTIONS(1293), - [aux_sym_switch_statement_token1] = ACTIONS(1293), - [aux_sym_switch_block_token1] = ACTIONS(1293), - [anon_sym_PLUS] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_TILDE] = ACTIONS(1291), - [anon_sym_BANG] = ACTIONS(1291), - [anon_sym_AT] = ACTIONS(1291), - [aux_sym_clone_expression_token1] = ACTIONS(1293), - [aux_sym_print_intrinsic_token1] = ACTIONS(1293), - [aux_sym_object_creation_expression_token1] = ACTIONS(1293), - [anon_sym_DASH_DASH] = ACTIONS(1291), - [anon_sym_PLUS_PLUS] = ACTIONS(1291), - [aux_sym__list_destructing_token1] = ACTIONS(1293), - [anon_sym_LBRACK] = ACTIONS(1291), - [anon_sym_self] = ACTIONS(1293), - [anon_sym_parent] = ACTIONS(1293), - [aux_sym__argument_name_token1] = ACTIONS(1293), - [aux_sym__argument_name_token2] = ACTIONS(1293), - [anon_sym_POUND_LBRACK] = ACTIONS(1291), - [aux_sym_encapsed_string_token1] = ACTIONS(1291), - [anon_sym_DQUOTE] = ACTIONS(1291), - [aux_sym_string_token1] = ACTIONS(1291), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_LT_LT_LT] = ACTIONS(1291), - [anon_sym_BQUOTE] = ACTIONS(1291), - [anon_sym_DOLLAR] = ACTIONS(1291), - [aux_sym_yield_expression_token1] = ACTIONS(1293), - [aux_sym_include_expression_token1] = ACTIONS(1293), - [aux_sym_include_once_expression_token1] = ACTIONS(1293), - [aux_sym_require_expression_token1] = ACTIONS(1293), - [aux_sym_require_once_expression_token1] = ACTIONS(1293), + [ts_builtin_sym_end] = ACTIONS(1260), + [sym_name] = ACTIONS(1262), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1260), + [aux_sym_function_static_declaration_token1] = ACTIONS(1262), + [aux_sym_global_declaration_token1] = ACTIONS(1262), + [aux_sym_namespace_definition_token1] = ACTIONS(1262), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1262), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1262), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1262), + [anon_sym_BSLASH] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1260), + [anon_sym_RBRACE] = ACTIONS(1260), + [aux_sym_trait_declaration_token1] = ACTIONS(1262), + [aux_sym_interface_declaration_token1] = ACTIONS(1262), + [aux_sym_enum_declaration_token1] = ACTIONS(1262), + [aux_sym_enum_case_token1] = ACTIONS(1262), + [aux_sym_class_declaration_token1] = ACTIONS(1262), + [aux_sym_final_modifier_token1] = ACTIONS(1262), + [aux_sym_abstract_modifier_token1] = ACTIONS(1262), + [aux_sym_readonly_modifier_token1] = ACTIONS(1262), + [sym_var_modifier] = ACTIONS(1262), + [aux_sym_visibility_modifier_token1] = ACTIONS(1262), + [aux_sym_visibility_modifier_token2] = ACTIONS(1262), + [aux_sym_visibility_modifier_token3] = ACTIONS(1262), + [aux_sym__arrow_function_header_token1] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1260), + [aux_sym_cast_type_token1] = ACTIONS(1262), + [aux_sym_echo_statement_token1] = ACTIONS(1262), + [aux_sym_exit_statement_token1] = ACTIONS(1262), + [anon_sym_unset] = ACTIONS(1262), + [aux_sym_declare_statement_token1] = ACTIONS(1262), + [aux_sym_declare_statement_token2] = ACTIONS(1262), + [sym_float] = ACTIONS(1262), + [aux_sym_try_statement_token1] = ACTIONS(1262), + [aux_sym_goto_statement_token1] = ACTIONS(1262), + [aux_sym_continue_statement_token1] = ACTIONS(1262), + [aux_sym_break_statement_token1] = ACTIONS(1262), + [sym_integer] = ACTIONS(1262), + [aux_sym_return_statement_token1] = ACTIONS(1262), + [aux_sym_throw_expression_token1] = ACTIONS(1262), + [aux_sym_while_statement_token1] = ACTIONS(1262), + [aux_sym_while_statement_token2] = ACTIONS(1262), + [aux_sym_do_statement_token1] = ACTIONS(1262), + [aux_sym_for_statement_token1] = ACTIONS(1262), + [aux_sym_for_statement_token2] = ACTIONS(1262), + [aux_sym_foreach_statement_token1] = ACTIONS(1262), + [aux_sym_foreach_statement_token2] = ACTIONS(1262), + [aux_sym_if_statement_token1] = ACTIONS(1262), + [aux_sym_if_statement_token2] = ACTIONS(1262), + [aux_sym_else_if_clause_token1] = ACTIONS(1262), + [aux_sym_else_clause_token1] = ACTIONS(1262), + [aux_sym_match_expression_token1] = ACTIONS(1262), + [aux_sym_match_default_expression_token1] = ACTIONS(1262), + [aux_sym_switch_statement_token1] = ACTIONS(1262), + [aux_sym_switch_block_token1] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_TILDE] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_AT] = ACTIONS(1260), + [aux_sym_clone_expression_token1] = ACTIONS(1262), + [aux_sym_print_intrinsic_token1] = ACTIONS(1262), + [aux_sym_object_creation_expression_token1] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [aux_sym__list_destructing_token1] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_self] = ACTIONS(1262), + [anon_sym_parent] = ACTIONS(1262), + [aux_sym__argument_name_token1] = ACTIONS(1262), + [aux_sym__argument_name_token2] = ACTIONS(1262), + [anon_sym_POUND_LBRACK] = ACTIONS(1260), + [aux_sym_encapsed_string_token1] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(1260), + [aux_sym_string_token1] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [anon_sym_LT_LT_LT] = ACTIONS(1260), + [anon_sym_BQUOTE] = ACTIONS(1260), + [anon_sym_DOLLAR] = ACTIONS(1260), + [aux_sym_yield_expression_token1] = ACTIONS(1262), + [aux_sym_include_expression_token1] = ACTIONS(1262), + [aux_sym_include_once_expression_token1] = ACTIONS(1262), + [aux_sym_require_expression_token1] = ACTIONS(1262), + [aux_sym_require_once_expression_token1] = ACTIONS(1262), [sym_comment] = ACTIONS(5), }, [492] = { [sym_text_interpolation] = STATE(492), - [ts_builtin_sym_end] = ACTIONS(1295), - [sym_name] = ACTIONS(1297), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1295), - [aux_sym_function_static_declaration_token1] = ACTIONS(1297), - [aux_sym_global_declaration_token1] = ACTIONS(1297), - [aux_sym_namespace_definition_token1] = ACTIONS(1297), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1297), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1297), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(1295), - [anon_sym_RBRACE] = ACTIONS(1295), - [aux_sym_trait_declaration_token1] = ACTIONS(1297), - [aux_sym_interface_declaration_token1] = ACTIONS(1297), - [aux_sym_enum_declaration_token1] = ACTIONS(1297), - [aux_sym_enum_case_token1] = ACTIONS(1297), - [aux_sym_class_declaration_token1] = ACTIONS(1297), - [aux_sym_final_modifier_token1] = ACTIONS(1297), - [aux_sym_abstract_modifier_token1] = ACTIONS(1297), - [aux_sym_readonly_modifier_token1] = ACTIONS(1297), - [aux_sym_visibility_modifier_token1] = ACTIONS(1297), - [aux_sym_visibility_modifier_token2] = ACTIONS(1297), - [aux_sym_visibility_modifier_token3] = ACTIONS(1297), - [aux_sym__arrow_function_header_token1] = ACTIONS(1297), - [anon_sym_LPAREN] = ACTIONS(1295), - [aux_sym_cast_type_token1] = ACTIONS(1297), - [aux_sym_echo_statement_token1] = ACTIONS(1297), - [aux_sym_exit_statement_token1] = ACTIONS(1297), - [anon_sym_unset] = ACTIONS(1297), - [aux_sym_declare_statement_token1] = ACTIONS(1297), - [aux_sym_declare_statement_token2] = ACTIONS(1297), - [sym_float] = ACTIONS(1297), - [aux_sym_try_statement_token1] = ACTIONS(1297), - [aux_sym_goto_statement_token1] = ACTIONS(1297), - [aux_sym_continue_statement_token1] = ACTIONS(1297), - [aux_sym_break_statement_token1] = ACTIONS(1297), - [sym_integer] = ACTIONS(1297), - [aux_sym_return_statement_token1] = ACTIONS(1297), - [aux_sym_throw_expression_token1] = ACTIONS(1297), - [aux_sym_while_statement_token1] = ACTIONS(1297), - [aux_sym_while_statement_token2] = ACTIONS(1297), - [aux_sym_do_statement_token1] = ACTIONS(1297), - [aux_sym_for_statement_token1] = ACTIONS(1297), - [aux_sym_for_statement_token2] = ACTIONS(1297), - [aux_sym_foreach_statement_token1] = ACTIONS(1297), - [aux_sym_foreach_statement_token2] = ACTIONS(1297), - [aux_sym_if_statement_token1] = ACTIONS(1297), - [aux_sym_if_statement_token2] = ACTIONS(1297), - [aux_sym_else_if_clause_token1] = ACTIONS(1297), - [aux_sym_else_clause_token1] = ACTIONS(1297), - [aux_sym_match_expression_token1] = ACTIONS(1297), - [aux_sym_match_default_expression_token1] = ACTIONS(1297), - [aux_sym_switch_statement_token1] = ACTIONS(1297), - [aux_sym_switch_block_token1] = ACTIONS(1297), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_TILDE] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1295), - [anon_sym_AT] = ACTIONS(1295), - [aux_sym_clone_expression_token1] = ACTIONS(1297), - [aux_sym_print_intrinsic_token1] = ACTIONS(1297), - [aux_sym_object_creation_expression_token1] = ACTIONS(1297), - [anon_sym_DASH_DASH] = ACTIONS(1295), - [anon_sym_PLUS_PLUS] = ACTIONS(1295), - [aux_sym__list_destructing_token1] = ACTIONS(1297), - [anon_sym_LBRACK] = ACTIONS(1295), - [anon_sym_self] = ACTIONS(1297), - [anon_sym_parent] = ACTIONS(1297), - [aux_sym__argument_name_token1] = ACTIONS(1297), - [aux_sym__argument_name_token2] = ACTIONS(1297), - [anon_sym_POUND_LBRACK] = ACTIONS(1295), - [aux_sym_encapsed_string_token1] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1295), - [aux_sym_string_token1] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1295), - [anon_sym_LT_LT_LT] = ACTIONS(1295), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_DOLLAR] = ACTIONS(1295), - [aux_sym_yield_expression_token1] = ACTIONS(1297), - [aux_sym_include_expression_token1] = ACTIONS(1297), - [aux_sym_include_once_expression_token1] = ACTIONS(1297), - [aux_sym_require_expression_token1] = ACTIONS(1297), - [aux_sym_require_once_expression_token1] = ACTIONS(1297), + [ts_builtin_sym_end] = ACTIONS(1264), + [sym_name] = ACTIONS(1266), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1264), + [aux_sym_function_static_declaration_token1] = ACTIONS(1266), + [aux_sym_global_declaration_token1] = ACTIONS(1266), + [aux_sym_namespace_definition_token1] = ACTIONS(1266), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1266), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1266), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1266), + [anon_sym_BSLASH] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_RBRACE] = ACTIONS(1264), + [aux_sym_trait_declaration_token1] = ACTIONS(1266), + [aux_sym_interface_declaration_token1] = ACTIONS(1266), + [aux_sym_enum_declaration_token1] = ACTIONS(1266), + [aux_sym_enum_case_token1] = ACTIONS(1266), + [aux_sym_class_declaration_token1] = ACTIONS(1266), + [aux_sym_final_modifier_token1] = ACTIONS(1266), + [aux_sym_abstract_modifier_token1] = ACTIONS(1266), + [aux_sym_readonly_modifier_token1] = ACTIONS(1266), + [sym_var_modifier] = ACTIONS(1266), + [aux_sym_visibility_modifier_token1] = ACTIONS(1266), + [aux_sym_visibility_modifier_token2] = ACTIONS(1266), + [aux_sym_visibility_modifier_token3] = ACTIONS(1266), + [aux_sym__arrow_function_header_token1] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1264), + [aux_sym_cast_type_token1] = ACTIONS(1266), + [aux_sym_echo_statement_token1] = ACTIONS(1266), + [aux_sym_exit_statement_token1] = ACTIONS(1266), + [anon_sym_unset] = ACTIONS(1266), + [aux_sym_declare_statement_token1] = ACTIONS(1266), + [aux_sym_declare_statement_token2] = ACTIONS(1266), + [sym_float] = ACTIONS(1266), + [aux_sym_try_statement_token1] = ACTIONS(1266), + [aux_sym_goto_statement_token1] = ACTIONS(1266), + [aux_sym_continue_statement_token1] = ACTIONS(1266), + [aux_sym_break_statement_token1] = ACTIONS(1266), + [sym_integer] = ACTIONS(1266), + [aux_sym_return_statement_token1] = ACTIONS(1266), + [aux_sym_throw_expression_token1] = ACTIONS(1266), + [aux_sym_while_statement_token1] = ACTIONS(1266), + [aux_sym_while_statement_token2] = ACTIONS(1266), + [aux_sym_do_statement_token1] = ACTIONS(1266), + [aux_sym_for_statement_token1] = ACTIONS(1266), + [aux_sym_for_statement_token2] = ACTIONS(1266), + [aux_sym_foreach_statement_token1] = ACTIONS(1266), + [aux_sym_foreach_statement_token2] = ACTIONS(1266), + [aux_sym_if_statement_token1] = ACTIONS(1266), + [aux_sym_if_statement_token2] = ACTIONS(1266), + [aux_sym_else_if_clause_token1] = ACTIONS(1266), + [aux_sym_else_clause_token1] = ACTIONS(1266), + [aux_sym_match_expression_token1] = ACTIONS(1266), + [aux_sym_match_default_expression_token1] = ACTIONS(1266), + [aux_sym_switch_statement_token1] = ACTIONS(1266), + [aux_sym_switch_block_token1] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AT] = ACTIONS(1264), + [aux_sym_clone_expression_token1] = ACTIONS(1266), + [aux_sym_print_intrinsic_token1] = ACTIONS(1266), + [aux_sym_object_creation_expression_token1] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1264), + [anon_sym_PLUS_PLUS] = ACTIONS(1264), + [aux_sym__list_destructing_token1] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1264), + [anon_sym_self] = ACTIONS(1266), + [anon_sym_parent] = ACTIONS(1266), + [aux_sym__argument_name_token1] = ACTIONS(1266), + [aux_sym__argument_name_token2] = ACTIONS(1266), + [anon_sym_POUND_LBRACK] = ACTIONS(1264), + [aux_sym_encapsed_string_token1] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1264), + [aux_sym_string_token1] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_LT_LT_LT] = ACTIONS(1264), + [anon_sym_BQUOTE] = ACTIONS(1264), + [anon_sym_DOLLAR] = ACTIONS(1264), + [aux_sym_yield_expression_token1] = ACTIONS(1266), + [aux_sym_include_expression_token1] = ACTIONS(1266), + [aux_sym_include_once_expression_token1] = ACTIONS(1266), + [aux_sym_require_expression_token1] = ACTIONS(1266), + [aux_sym_require_once_expression_token1] = ACTIONS(1266), [sym_comment] = ACTIONS(5), }, [493] = { [sym_text_interpolation] = STATE(493), - [ts_builtin_sym_end] = ACTIONS(1295), - [sym_name] = ACTIONS(1297), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1295), - [aux_sym_function_static_declaration_token1] = ACTIONS(1297), - [aux_sym_global_declaration_token1] = ACTIONS(1297), - [aux_sym_namespace_definition_token1] = ACTIONS(1297), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1297), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1297), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(1295), - [anon_sym_RBRACE] = ACTIONS(1295), - [aux_sym_trait_declaration_token1] = ACTIONS(1297), - [aux_sym_interface_declaration_token1] = ACTIONS(1297), - [aux_sym_enum_declaration_token1] = ACTIONS(1297), - [aux_sym_enum_case_token1] = ACTIONS(1297), - [aux_sym_class_declaration_token1] = ACTIONS(1297), - [aux_sym_final_modifier_token1] = ACTIONS(1297), - [aux_sym_abstract_modifier_token1] = ACTIONS(1297), - [aux_sym_readonly_modifier_token1] = ACTIONS(1297), - [aux_sym_visibility_modifier_token1] = ACTIONS(1297), - [aux_sym_visibility_modifier_token2] = ACTIONS(1297), - [aux_sym_visibility_modifier_token3] = ACTIONS(1297), - [aux_sym__arrow_function_header_token1] = ACTIONS(1297), - [anon_sym_LPAREN] = ACTIONS(1295), - [aux_sym_cast_type_token1] = ACTIONS(1297), - [aux_sym_echo_statement_token1] = ACTIONS(1297), - [aux_sym_exit_statement_token1] = ACTIONS(1297), - [anon_sym_unset] = ACTIONS(1297), - [aux_sym_declare_statement_token1] = ACTIONS(1297), - [aux_sym_declare_statement_token2] = ACTIONS(1297), - [sym_float] = ACTIONS(1297), - [aux_sym_try_statement_token1] = ACTIONS(1297), - [aux_sym_goto_statement_token1] = ACTIONS(1297), - [aux_sym_continue_statement_token1] = ACTIONS(1297), - [aux_sym_break_statement_token1] = ACTIONS(1297), - [sym_integer] = ACTIONS(1297), - [aux_sym_return_statement_token1] = ACTIONS(1297), - [aux_sym_throw_expression_token1] = ACTIONS(1297), - [aux_sym_while_statement_token1] = ACTIONS(1297), - [aux_sym_while_statement_token2] = ACTIONS(1297), - [aux_sym_do_statement_token1] = ACTIONS(1297), - [aux_sym_for_statement_token1] = ACTIONS(1297), - [aux_sym_for_statement_token2] = ACTIONS(1297), - [aux_sym_foreach_statement_token1] = ACTIONS(1297), - [aux_sym_foreach_statement_token2] = ACTIONS(1297), - [aux_sym_if_statement_token1] = ACTIONS(1297), - [aux_sym_if_statement_token2] = ACTIONS(1297), - [aux_sym_else_if_clause_token1] = ACTIONS(1297), - [aux_sym_else_clause_token1] = ACTIONS(1297), - [aux_sym_match_expression_token1] = ACTIONS(1297), - [aux_sym_match_default_expression_token1] = ACTIONS(1297), - [aux_sym_switch_statement_token1] = ACTIONS(1297), - [aux_sym_switch_block_token1] = ACTIONS(1297), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_TILDE] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1295), - [anon_sym_AT] = ACTIONS(1295), - [aux_sym_clone_expression_token1] = ACTIONS(1297), - [aux_sym_print_intrinsic_token1] = ACTIONS(1297), - [aux_sym_object_creation_expression_token1] = ACTIONS(1297), - [anon_sym_DASH_DASH] = ACTIONS(1295), - [anon_sym_PLUS_PLUS] = ACTIONS(1295), - [aux_sym__list_destructing_token1] = ACTIONS(1297), - [anon_sym_LBRACK] = ACTIONS(1295), - [anon_sym_self] = ACTIONS(1297), - [anon_sym_parent] = ACTIONS(1297), - [aux_sym__argument_name_token1] = ACTIONS(1297), - [aux_sym__argument_name_token2] = ACTIONS(1297), - [anon_sym_POUND_LBRACK] = ACTIONS(1295), - [aux_sym_encapsed_string_token1] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1295), - [aux_sym_string_token1] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1295), - [anon_sym_LT_LT_LT] = ACTIONS(1295), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_DOLLAR] = ACTIONS(1295), - [aux_sym_yield_expression_token1] = ACTIONS(1297), - [aux_sym_include_expression_token1] = ACTIONS(1297), - [aux_sym_include_once_expression_token1] = ACTIONS(1297), - [aux_sym_require_expression_token1] = ACTIONS(1297), - [aux_sym_require_once_expression_token1] = ACTIONS(1297), + [ts_builtin_sym_end] = ACTIONS(1268), + [sym_name] = ACTIONS(1270), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1268), + [aux_sym_function_static_declaration_token1] = ACTIONS(1270), + [aux_sym_global_declaration_token1] = ACTIONS(1270), + [aux_sym_namespace_definition_token1] = ACTIONS(1270), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1270), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1270), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1270), + [anon_sym_BSLASH] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_RBRACE] = ACTIONS(1268), + [aux_sym_trait_declaration_token1] = ACTIONS(1270), + [aux_sym_interface_declaration_token1] = ACTIONS(1270), + [aux_sym_enum_declaration_token1] = ACTIONS(1270), + [aux_sym_enum_case_token1] = ACTIONS(1270), + [aux_sym_class_declaration_token1] = ACTIONS(1270), + [aux_sym_final_modifier_token1] = ACTIONS(1270), + [aux_sym_abstract_modifier_token1] = ACTIONS(1270), + [aux_sym_readonly_modifier_token1] = ACTIONS(1270), + [sym_var_modifier] = ACTIONS(1270), + [aux_sym_visibility_modifier_token1] = ACTIONS(1270), + [aux_sym_visibility_modifier_token2] = ACTIONS(1270), + [aux_sym_visibility_modifier_token3] = ACTIONS(1270), + [aux_sym__arrow_function_header_token1] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1268), + [aux_sym_cast_type_token1] = ACTIONS(1270), + [aux_sym_echo_statement_token1] = ACTIONS(1270), + [aux_sym_exit_statement_token1] = ACTIONS(1270), + [anon_sym_unset] = ACTIONS(1270), + [aux_sym_declare_statement_token1] = ACTIONS(1270), + [aux_sym_declare_statement_token2] = ACTIONS(1270), + [sym_float] = ACTIONS(1270), + [aux_sym_try_statement_token1] = ACTIONS(1270), + [aux_sym_goto_statement_token1] = ACTIONS(1270), + [aux_sym_continue_statement_token1] = ACTIONS(1270), + [aux_sym_break_statement_token1] = ACTIONS(1270), + [sym_integer] = ACTIONS(1270), + [aux_sym_return_statement_token1] = ACTIONS(1270), + [aux_sym_throw_expression_token1] = ACTIONS(1270), + [aux_sym_while_statement_token1] = ACTIONS(1270), + [aux_sym_while_statement_token2] = ACTIONS(1270), + [aux_sym_do_statement_token1] = ACTIONS(1270), + [aux_sym_for_statement_token1] = ACTIONS(1270), + [aux_sym_for_statement_token2] = ACTIONS(1270), + [aux_sym_foreach_statement_token1] = ACTIONS(1270), + [aux_sym_foreach_statement_token2] = ACTIONS(1270), + [aux_sym_if_statement_token1] = ACTIONS(1270), + [aux_sym_if_statement_token2] = ACTIONS(1270), + [aux_sym_else_if_clause_token1] = ACTIONS(1270), + [aux_sym_else_clause_token1] = ACTIONS(1270), + [aux_sym_match_expression_token1] = ACTIONS(1270), + [aux_sym_match_default_expression_token1] = ACTIONS(1270), + [aux_sym_switch_statement_token1] = ACTIONS(1270), + [aux_sym_switch_block_token1] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_TILDE] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_AT] = ACTIONS(1268), + [aux_sym_clone_expression_token1] = ACTIONS(1270), + [aux_sym_print_intrinsic_token1] = ACTIONS(1270), + [aux_sym_object_creation_expression_token1] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [aux_sym__list_destructing_token1] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_self] = ACTIONS(1270), + [anon_sym_parent] = ACTIONS(1270), + [aux_sym__argument_name_token1] = ACTIONS(1270), + [aux_sym__argument_name_token2] = ACTIONS(1270), + [anon_sym_POUND_LBRACK] = ACTIONS(1268), + [aux_sym_encapsed_string_token1] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [aux_sym_string_token1] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_LT_LT_LT] = ACTIONS(1268), + [anon_sym_BQUOTE] = ACTIONS(1268), + [anon_sym_DOLLAR] = ACTIONS(1268), + [aux_sym_yield_expression_token1] = ACTIONS(1270), + [aux_sym_include_expression_token1] = ACTIONS(1270), + [aux_sym_include_once_expression_token1] = ACTIONS(1270), + [aux_sym_require_expression_token1] = ACTIONS(1270), + [aux_sym_require_once_expression_token1] = ACTIONS(1270), [sym_comment] = ACTIONS(5), }, [494] = { [sym_text_interpolation] = STATE(494), - [ts_builtin_sym_end] = ACTIONS(1299), - [sym_name] = ACTIONS(1301), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1299), - [aux_sym_function_static_declaration_token1] = ACTIONS(1301), - [aux_sym_global_declaration_token1] = ACTIONS(1301), - [aux_sym_namespace_definition_token1] = ACTIONS(1301), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1301), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1301), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1301), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_RBRACE] = ACTIONS(1299), - [aux_sym_trait_declaration_token1] = ACTIONS(1301), - [aux_sym_interface_declaration_token1] = ACTIONS(1301), - [aux_sym_enum_declaration_token1] = ACTIONS(1301), - [aux_sym_enum_case_token1] = ACTIONS(1301), - [aux_sym_class_declaration_token1] = ACTIONS(1301), - [aux_sym_final_modifier_token1] = ACTIONS(1301), - [aux_sym_abstract_modifier_token1] = ACTIONS(1301), - [aux_sym_readonly_modifier_token1] = ACTIONS(1301), - [aux_sym_visibility_modifier_token1] = ACTIONS(1301), - [aux_sym_visibility_modifier_token2] = ACTIONS(1301), - [aux_sym_visibility_modifier_token3] = ACTIONS(1301), - [aux_sym__arrow_function_header_token1] = ACTIONS(1301), - [anon_sym_LPAREN] = ACTIONS(1299), - [aux_sym_cast_type_token1] = ACTIONS(1301), - [aux_sym_echo_statement_token1] = ACTIONS(1301), - [aux_sym_exit_statement_token1] = ACTIONS(1301), - [anon_sym_unset] = ACTIONS(1301), - [aux_sym_declare_statement_token1] = ACTIONS(1301), - [aux_sym_declare_statement_token2] = ACTIONS(1301), - [sym_float] = ACTIONS(1301), - [aux_sym_try_statement_token1] = ACTIONS(1301), - [aux_sym_goto_statement_token1] = ACTIONS(1301), - [aux_sym_continue_statement_token1] = ACTIONS(1301), - [aux_sym_break_statement_token1] = ACTIONS(1301), - [sym_integer] = ACTIONS(1301), - [aux_sym_return_statement_token1] = ACTIONS(1301), - [aux_sym_throw_expression_token1] = ACTIONS(1301), - [aux_sym_while_statement_token1] = ACTIONS(1301), - [aux_sym_while_statement_token2] = ACTIONS(1301), - [aux_sym_do_statement_token1] = ACTIONS(1301), - [aux_sym_for_statement_token1] = ACTIONS(1301), - [aux_sym_for_statement_token2] = ACTIONS(1301), - [aux_sym_foreach_statement_token1] = ACTIONS(1301), - [aux_sym_foreach_statement_token2] = ACTIONS(1301), - [aux_sym_if_statement_token1] = ACTIONS(1301), - [aux_sym_if_statement_token2] = ACTIONS(1301), - [aux_sym_else_if_clause_token1] = ACTIONS(1301), - [aux_sym_else_clause_token1] = ACTIONS(1301), - [aux_sym_match_expression_token1] = ACTIONS(1301), - [aux_sym_match_default_expression_token1] = ACTIONS(1301), - [aux_sym_switch_statement_token1] = ACTIONS(1301), - [aux_sym_switch_block_token1] = ACTIONS(1301), - [anon_sym_PLUS] = ACTIONS(1301), - [anon_sym_DASH] = ACTIONS(1301), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(1299), - [anon_sym_AT] = ACTIONS(1299), - [aux_sym_clone_expression_token1] = ACTIONS(1301), - [aux_sym_print_intrinsic_token1] = ACTIONS(1301), - [aux_sym_object_creation_expression_token1] = ACTIONS(1301), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [aux_sym__list_destructing_token1] = ACTIONS(1301), - [anon_sym_LBRACK] = ACTIONS(1299), - [anon_sym_self] = ACTIONS(1301), - [anon_sym_parent] = ACTIONS(1301), - [aux_sym__argument_name_token1] = ACTIONS(1301), - [aux_sym__argument_name_token2] = ACTIONS(1301), - [anon_sym_POUND_LBRACK] = ACTIONS(1299), - [aux_sym_encapsed_string_token1] = ACTIONS(1299), - [anon_sym_DQUOTE] = ACTIONS(1299), - [aux_sym_string_token1] = ACTIONS(1299), - [anon_sym_SQUOTE] = ACTIONS(1299), - [anon_sym_LT_LT_LT] = ACTIONS(1299), - [anon_sym_BQUOTE] = ACTIONS(1299), - [anon_sym_DOLLAR] = ACTIONS(1299), - [aux_sym_yield_expression_token1] = ACTIONS(1301), - [aux_sym_include_expression_token1] = ACTIONS(1301), - [aux_sym_include_once_expression_token1] = ACTIONS(1301), - [aux_sym_require_expression_token1] = ACTIONS(1301), - [aux_sym_require_once_expression_token1] = ACTIONS(1301), + [ts_builtin_sym_end] = ACTIONS(1272), + [sym_name] = ACTIONS(1274), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1272), + [aux_sym_function_static_declaration_token1] = ACTIONS(1274), + [aux_sym_global_declaration_token1] = ACTIONS(1274), + [aux_sym_namespace_definition_token1] = ACTIONS(1274), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1274), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1274), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1274), + [anon_sym_BSLASH] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(1272), + [aux_sym_trait_declaration_token1] = ACTIONS(1274), + [aux_sym_interface_declaration_token1] = ACTIONS(1274), + [aux_sym_enum_declaration_token1] = ACTIONS(1274), + [aux_sym_enum_case_token1] = ACTIONS(1274), + [aux_sym_class_declaration_token1] = ACTIONS(1274), + [aux_sym_final_modifier_token1] = ACTIONS(1274), + [aux_sym_abstract_modifier_token1] = ACTIONS(1274), + [aux_sym_readonly_modifier_token1] = ACTIONS(1274), + [sym_var_modifier] = ACTIONS(1274), + [aux_sym_visibility_modifier_token1] = ACTIONS(1274), + [aux_sym_visibility_modifier_token2] = ACTIONS(1274), + [aux_sym_visibility_modifier_token3] = ACTIONS(1274), + [aux_sym__arrow_function_header_token1] = ACTIONS(1274), + [anon_sym_LPAREN] = ACTIONS(1272), + [aux_sym_cast_type_token1] = ACTIONS(1274), + [aux_sym_echo_statement_token1] = ACTIONS(1274), + [aux_sym_exit_statement_token1] = ACTIONS(1274), + [anon_sym_unset] = ACTIONS(1274), + [aux_sym_declare_statement_token1] = ACTIONS(1274), + [aux_sym_declare_statement_token2] = ACTIONS(1274), + [sym_float] = ACTIONS(1274), + [aux_sym_try_statement_token1] = ACTIONS(1274), + [aux_sym_goto_statement_token1] = ACTIONS(1274), + [aux_sym_continue_statement_token1] = ACTIONS(1274), + [aux_sym_break_statement_token1] = ACTIONS(1274), + [sym_integer] = ACTIONS(1274), + [aux_sym_return_statement_token1] = ACTIONS(1274), + [aux_sym_throw_expression_token1] = ACTIONS(1274), + [aux_sym_while_statement_token1] = ACTIONS(1274), + [aux_sym_while_statement_token2] = ACTIONS(1274), + [aux_sym_do_statement_token1] = ACTIONS(1274), + [aux_sym_for_statement_token1] = ACTIONS(1274), + [aux_sym_for_statement_token2] = ACTIONS(1274), + [aux_sym_foreach_statement_token1] = ACTIONS(1274), + [aux_sym_foreach_statement_token2] = ACTIONS(1274), + [aux_sym_if_statement_token1] = ACTIONS(1274), + [aux_sym_if_statement_token2] = ACTIONS(1274), + [aux_sym_else_if_clause_token1] = ACTIONS(1274), + [aux_sym_else_clause_token1] = ACTIONS(1274), + [aux_sym_match_expression_token1] = ACTIONS(1274), + [aux_sym_match_default_expression_token1] = ACTIONS(1274), + [aux_sym_switch_statement_token1] = ACTIONS(1274), + [aux_sym_switch_block_token1] = ACTIONS(1274), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_AT] = ACTIONS(1272), + [aux_sym_clone_expression_token1] = ACTIONS(1274), + [aux_sym_print_intrinsic_token1] = ACTIONS(1274), + [aux_sym_object_creation_expression_token1] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [aux_sym__list_destructing_token1] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_self] = ACTIONS(1274), + [anon_sym_parent] = ACTIONS(1274), + [aux_sym__argument_name_token1] = ACTIONS(1274), + [aux_sym__argument_name_token2] = ACTIONS(1274), + [anon_sym_POUND_LBRACK] = ACTIONS(1272), + [aux_sym_encapsed_string_token1] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [aux_sym_string_token1] = ACTIONS(1272), + [anon_sym_SQUOTE] = ACTIONS(1272), + [anon_sym_LT_LT_LT] = ACTIONS(1272), + [anon_sym_BQUOTE] = ACTIONS(1272), + [anon_sym_DOLLAR] = ACTIONS(1272), + [aux_sym_yield_expression_token1] = ACTIONS(1274), + [aux_sym_include_expression_token1] = ACTIONS(1274), + [aux_sym_include_once_expression_token1] = ACTIONS(1274), + [aux_sym_require_expression_token1] = ACTIONS(1274), + [aux_sym_require_once_expression_token1] = ACTIONS(1274), [sym_comment] = ACTIONS(5), }, [495] = { [sym_text_interpolation] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(1303), - [sym_name] = ACTIONS(1305), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1303), - [aux_sym_function_static_declaration_token1] = ACTIONS(1305), - [aux_sym_global_declaration_token1] = ACTIONS(1305), - [aux_sym_namespace_definition_token1] = ACTIONS(1305), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1305), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1305), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1305), - [anon_sym_BSLASH] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_RBRACE] = ACTIONS(1303), - [aux_sym_trait_declaration_token1] = ACTIONS(1305), - [aux_sym_interface_declaration_token1] = ACTIONS(1305), - [aux_sym_enum_declaration_token1] = ACTIONS(1305), - [aux_sym_enum_case_token1] = ACTIONS(1305), - [aux_sym_class_declaration_token1] = ACTIONS(1305), - [aux_sym_final_modifier_token1] = ACTIONS(1305), - [aux_sym_abstract_modifier_token1] = ACTIONS(1305), - [aux_sym_readonly_modifier_token1] = ACTIONS(1305), - [aux_sym_visibility_modifier_token1] = ACTIONS(1305), - [aux_sym_visibility_modifier_token2] = ACTIONS(1305), - [aux_sym_visibility_modifier_token3] = ACTIONS(1305), - [aux_sym__arrow_function_header_token1] = ACTIONS(1305), - [anon_sym_LPAREN] = ACTIONS(1303), - [aux_sym_cast_type_token1] = ACTIONS(1305), - [aux_sym_echo_statement_token1] = ACTIONS(1305), - [aux_sym_exit_statement_token1] = ACTIONS(1305), - [anon_sym_unset] = ACTIONS(1305), - [aux_sym_declare_statement_token1] = ACTIONS(1305), - [aux_sym_declare_statement_token2] = ACTIONS(1305), - [sym_float] = ACTIONS(1305), - [aux_sym_try_statement_token1] = ACTIONS(1305), - [aux_sym_goto_statement_token1] = ACTIONS(1305), - [aux_sym_continue_statement_token1] = ACTIONS(1305), - [aux_sym_break_statement_token1] = ACTIONS(1305), - [sym_integer] = ACTIONS(1305), - [aux_sym_return_statement_token1] = ACTIONS(1305), - [aux_sym_throw_expression_token1] = ACTIONS(1305), - [aux_sym_while_statement_token1] = ACTIONS(1305), - [aux_sym_while_statement_token2] = ACTIONS(1305), - [aux_sym_do_statement_token1] = ACTIONS(1305), - [aux_sym_for_statement_token1] = ACTIONS(1305), - [aux_sym_for_statement_token2] = ACTIONS(1305), - [aux_sym_foreach_statement_token1] = ACTIONS(1305), - [aux_sym_foreach_statement_token2] = ACTIONS(1305), - [aux_sym_if_statement_token1] = ACTIONS(1305), - [aux_sym_if_statement_token2] = ACTIONS(1305), - [aux_sym_else_if_clause_token1] = ACTIONS(1305), - [aux_sym_else_clause_token1] = ACTIONS(1305), - [aux_sym_match_expression_token1] = ACTIONS(1305), - [aux_sym_match_default_expression_token1] = ACTIONS(1305), - [aux_sym_switch_statement_token1] = ACTIONS(1305), - [aux_sym_switch_block_token1] = ACTIONS(1305), - [anon_sym_PLUS] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_TILDE] = ACTIONS(1303), - [anon_sym_BANG] = ACTIONS(1303), - [anon_sym_AT] = ACTIONS(1303), - [aux_sym_clone_expression_token1] = ACTIONS(1305), - [aux_sym_print_intrinsic_token1] = ACTIONS(1305), - [aux_sym_object_creation_expression_token1] = ACTIONS(1305), - [anon_sym_DASH_DASH] = ACTIONS(1303), - [anon_sym_PLUS_PLUS] = ACTIONS(1303), - [aux_sym__list_destructing_token1] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_self] = ACTIONS(1305), - [anon_sym_parent] = ACTIONS(1305), - [aux_sym__argument_name_token1] = ACTIONS(1305), - [aux_sym__argument_name_token2] = ACTIONS(1305), - [anon_sym_POUND_LBRACK] = ACTIONS(1303), - [aux_sym_encapsed_string_token1] = ACTIONS(1303), - [anon_sym_DQUOTE] = ACTIONS(1303), - [aux_sym_string_token1] = ACTIONS(1303), - [anon_sym_SQUOTE] = ACTIONS(1303), - [anon_sym_LT_LT_LT] = ACTIONS(1303), - [anon_sym_BQUOTE] = ACTIONS(1303), - [anon_sym_DOLLAR] = ACTIONS(1303), - [aux_sym_yield_expression_token1] = ACTIONS(1305), - [aux_sym_include_expression_token1] = ACTIONS(1305), - [aux_sym_include_once_expression_token1] = ACTIONS(1305), - [aux_sym_require_expression_token1] = ACTIONS(1305), - [aux_sym_require_once_expression_token1] = ACTIONS(1305), + [ts_builtin_sym_end] = ACTIONS(1276), + [sym_name] = ACTIONS(1278), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1276), + [aux_sym_function_static_declaration_token1] = ACTIONS(1278), + [aux_sym_global_declaration_token1] = ACTIONS(1278), + [aux_sym_namespace_definition_token1] = ACTIONS(1278), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1278), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1278), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1278), + [anon_sym_BSLASH] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_RBRACE] = ACTIONS(1276), + [aux_sym_trait_declaration_token1] = ACTIONS(1278), + [aux_sym_interface_declaration_token1] = ACTIONS(1278), + [aux_sym_enum_declaration_token1] = ACTIONS(1278), + [aux_sym_enum_case_token1] = ACTIONS(1278), + [aux_sym_class_declaration_token1] = ACTIONS(1278), + [aux_sym_final_modifier_token1] = ACTIONS(1278), + [aux_sym_abstract_modifier_token1] = ACTIONS(1278), + [aux_sym_readonly_modifier_token1] = ACTIONS(1278), + [sym_var_modifier] = ACTIONS(1278), + [aux_sym_visibility_modifier_token1] = ACTIONS(1278), + [aux_sym_visibility_modifier_token2] = ACTIONS(1278), + [aux_sym_visibility_modifier_token3] = ACTIONS(1278), + [aux_sym__arrow_function_header_token1] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(1276), + [aux_sym_cast_type_token1] = ACTIONS(1278), + [aux_sym_echo_statement_token1] = ACTIONS(1278), + [aux_sym_exit_statement_token1] = ACTIONS(1278), + [anon_sym_unset] = ACTIONS(1278), + [aux_sym_declare_statement_token1] = ACTIONS(1278), + [aux_sym_declare_statement_token2] = ACTIONS(1278), + [sym_float] = ACTIONS(1278), + [aux_sym_try_statement_token1] = ACTIONS(1278), + [aux_sym_goto_statement_token1] = ACTIONS(1278), + [aux_sym_continue_statement_token1] = ACTIONS(1278), + [aux_sym_break_statement_token1] = ACTIONS(1278), + [sym_integer] = ACTIONS(1278), + [aux_sym_return_statement_token1] = ACTIONS(1278), + [aux_sym_throw_expression_token1] = ACTIONS(1278), + [aux_sym_while_statement_token1] = ACTIONS(1278), + [aux_sym_while_statement_token2] = ACTIONS(1278), + [aux_sym_do_statement_token1] = ACTIONS(1278), + [aux_sym_for_statement_token1] = ACTIONS(1278), + [aux_sym_for_statement_token2] = ACTIONS(1278), + [aux_sym_foreach_statement_token1] = ACTIONS(1278), + [aux_sym_foreach_statement_token2] = ACTIONS(1278), + [aux_sym_if_statement_token1] = ACTIONS(1278), + [aux_sym_if_statement_token2] = ACTIONS(1278), + [aux_sym_else_if_clause_token1] = ACTIONS(1278), + [aux_sym_else_clause_token1] = ACTIONS(1278), + [aux_sym_match_expression_token1] = ACTIONS(1278), + [aux_sym_match_default_expression_token1] = ACTIONS(1278), + [aux_sym_switch_statement_token1] = ACTIONS(1278), + [aux_sym_switch_block_token1] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AT] = ACTIONS(1276), + [aux_sym_clone_expression_token1] = ACTIONS(1278), + [aux_sym_print_intrinsic_token1] = ACTIONS(1278), + [aux_sym_object_creation_expression_token1] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [aux_sym__list_destructing_token1] = ACTIONS(1278), + [anon_sym_LBRACK] = ACTIONS(1276), + [anon_sym_self] = ACTIONS(1278), + [anon_sym_parent] = ACTIONS(1278), + [aux_sym__argument_name_token1] = ACTIONS(1278), + [aux_sym__argument_name_token2] = ACTIONS(1278), + [anon_sym_POUND_LBRACK] = ACTIONS(1276), + [aux_sym_encapsed_string_token1] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1276), + [aux_sym_string_token1] = ACTIONS(1276), + [anon_sym_SQUOTE] = ACTIONS(1276), + [anon_sym_LT_LT_LT] = ACTIONS(1276), + [anon_sym_BQUOTE] = ACTIONS(1276), + [anon_sym_DOLLAR] = ACTIONS(1276), + [aux_sym_yield_expression_token1] = ACTIONS(1278), + [aux_sym_include_expression_token1] = ACTIONS(1278), + [aux_sym_include_once_expression_token1] = ACTIONS(1278), + [aux_sym_require_expression_token1] = ACTIONS(1278), + [aux_sym_require_once_expression_token1] = ACTIONS(1278), [sym_comment] = ACTIONS(5), }, [496] = { [sym_text_interpolation] = STATE(496), - [ts_builtin_sym_end] = ACTIONS(1307), - [sym_name] = ACTIONS(1309), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1307), - [aux_sym_function_static_declaration_token1] = ACTIONS(1309), - [aux_sym_global_declaration_token1] = ACTIONS(1309), - [aux_sym_namespace_definition_token1] = ACTIONS(1309), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1309), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1309), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1309), - [anon_sym_BSLASH] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1307), - [anon_sym_RBRACE] = ACTIONS(1307), - [aux_sym_trait_declaration_token1] = ACTIONS(1309), - [aux_sym_interface_declaration_token1] = ACTIONS(1309), - [aux_sym_enum_declaration_token1] = ACTIONS(1309), - [aux_sym_enum_case_token1] = ACTIONS(1309), - [aux_sym_class_declaration_token1] = ACTIONS(1309), - [aux_sym_final_modifier_token1] = ACTIONS(1309), - [aux_sym_abstract_modifier_token1] = ACTIONS(1309), - [aux_sym_readonly_modifier_token1] = ACTIONS(1309), - [aux_sym_visibility_modifier_token1] = ACTIONS(1309), - [aux_sym_visibility_modifier_token2] = ACTIONS(1309), - [aux_sym_visibility_modifier_token3] = ACTIONS(1309), - [aux_sym__arrow_function_header_token1] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1307), - [aux_sym_cast_type_token1] = ACTIONS(1309), - [aux_sym_echo_statement_token1] = ACTIONS(1309), - [aux_sym_exit_statement_token1] = ACTIONS(1309), - [anon_sym_unset] = ACTIONS(1309), - [aux_sym_declare_statement_token1] = ACTIONS(1309), - [aux_sym_declare_statement_token2] = ACTIONS(1309), - [sym_float] = ACTIONS(1309), - [aux_sym_try_statement_token1] = ACTIONS(1309), - [aux_sym_goto_statement_token1] = ACTIONS(1309), - [aux_sym_continue_statement_token1] = ACTIONS(1309), - [aux_sym_break_statement_token1] = ACTIONS(1309), - [sym_integer] = ACTIONS(1309), - [aux_sym_return_statement_token1] = ACTIONS(1309), - [aux_sym_throw_expression_token1] = ACTIONS(1309), - [aux_sym_while_statement_token1] = ACTIONS(1309), - [aux_sym_while_statement_token2] = ACTIONS(1309), - [aux_sym_do_statement_token1] = ACTIONS(1309), - [aux_sym_for_statement_token1] = ACTIONS(1309), - [aux_sym_for_statement_token2] = ACTIONS(1309), - [aux_sym_foreach_statement_token1] = ACTIONS(1309), - [aux_sym_foreach_statement_token2] = ACTIONS(1309), - [aux_sym_if_statement_token1] = ACTIONS(1309), - [aux_sym_if_statement_token2] = ACTIONS(1309), - [aux_sym_else_if_clause_token1] = ACTIONS(1309), - [aux_sym_else_clause_token1] = ACTIONS(1309), - [aux_sym_match_expression_token1] = ACTIONS(1309), - [aux_sym_match_default_expression_token1] = ACTIONS(1309), - [aux_sym_switch_statement_token1] = ACTIONS(1309), - [aux_sym_switch_block_token1] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1307), - [anon_sym_BANG] = ACTIONS(1307), - [anon_sym_AT] = ACTIONS(1307), - [aux_sym_clone_expression_token1] = ACTIONS(1309), - [aux_sym_print_intrinsic_token1] = ACTIONS(1309), - [aux_sym_object_creation_expression_token1] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1307), - [anon_sym_PLUS_PLUS] = ACTIONS(1307), - [aux_sym__list_destructing_token1] = ACTIONS(1309), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_self] = ACTIONS(1309), - [anon_sym_parent] = ACTIONS(1309), - [aux_sym__argument_name_token1] = ACTIONS(1309), - [aux_sym__argument_name_token2] = ACTIONS(1309), - [anon_sym_POUND_LBRACK] = ACTIONS(1307), - [aux_sym_encapsed_string_token1] = ACTIONS(1307), - [anon_sym_DQUOTE] = ACTIONS(1307), - [aux_sym_string_token1] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1307), - [anon_sym_LT_LT_LT] = ACTIONS(1307), - [anon_sym_BQUOTE] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1307), - [aux_sym_yield_expression_token1] = ACTIONS(1309), - [aux_sym_include_expression_token1] = ACTIONS(1309), - [aux_sym_include_once_expression_token1] = ACTIONS(1309), - [aux_sym_require_expression_token1] = ACTIONS(1309), - [aux_sym_require_once_expression_token1] = ACTIONS(1309), + [ts_builtin_sym_end] = ACTIONS(1280), + [sym_name] = ACTIONS(1282), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1280), + [aux_sym_function_static_declaration_token1] = ACTIONS(1282), + [aux_sym_global_declaration_token1] = ACTIONS(1282), + [aux_sym_namespace_definition_token1] = ACTIONS(1282), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1282), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1282), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1282), + [anon_sym_BSLASH] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_RBRACE] = ACTIONS(1280), + [aux_sym_trait_declaration_token1] = ACTIONS(1282), + [aux_sym_interface_declaration_token1] = ACTIONS(1282), + [aux_sym_enum_declaration_token1] = ACTIONS(1282), + [aux_sym_enum_case_token1] = ACTIONS(1282), + [aux_sym_class_declaration_token1] = ACTIONS(1282), + [aux_sym_final_modifier_token1] = ACTIONS(1282), + [aux_sym_abstract_modifier_token1] = ACTIONS(1282), + [aux_sym_readonly_modifier_token1] = ACTIONS(1282), + [sym_var_modifier] = ACTIONS(1282), + [aux_sym_visibility_modifier_token1] = ACTIONS(1282), + [aux_sym_visibility_modifier_token2] = ACTIONS(1282), + [aux_sym_visibility_modifier_token3] = ACTIONS(1282), + [aux_sym__arrow_function_header_token1] = ACTIONS(1282), + [anon_sym_LPAREN] = ACTIONS(1280), + [aux_sym_cast_type_token1] = ACTIONS(1282), + [aux_sym_echo_statement_token1] = ACTIONS(1282), + [aux_sym_exit_statement_token1] = ACTIONS(1282), + [anon_sym_unset] = ACTIONS(1282), + [aux_sym_declare_statement_token1] = ACTIONS(1282), + [aux_sym_declare_statement_token2] = ACTIONS(1282), + [sym_float] = ACTIONS(1282), + [aux_sym_try_statement_token1] = ACTIONS(1282), + [aux_sym_goto_statement_token1] = ACTIONS(1282), + [aux_sym_continue_statement_token1] = ACTIONS(1282), + [aux_sym_break_statement_token1] = ACTIONS(1282), + [sym_integer] = ACTIONS(1282), + [aux_sym_return_statement_token1] = ACTIONS(1282), + [aux_sym_throw_expression_token1] = ACTIONS(1282), + [aux_sym_while_statement_token1] = ACTIONS(1282), + [aux_sym_while_statement_token2] = ACTIONS(1282), + [aux_sym_do_statement_token1] = ACTIONS(1282), + [aux_sym_for_statement_token1] = ACTIONS(1282), + [aux_sym_for_statement_token2] = ACTIONS(1282), + [aux_sym_foreach_statement_token1] = ACTIONS(1282), + [aux_sym_foreach_statement_token2] = ACTIONS(1282), + [aux_sym_if_statement_token1] = ACTIONS(1282), + [aux_sym_if_statement_token2] = ACTIONS(1282), + [aux_sym_else_if_clause_token1] = ACTIONS(1282), + [aux_sym_else_clause_token1] = ACTIONS(1282), + [aux_sym_match_expression_token1] = ACTIONS(1282), + [aux_sym_match_default_expression_token1] = ACTIONS(1282), + [aux_sym_switch_statement_token1] = ACTIONS(1282), + [aux_sym_switch_block_token1] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_AT] = ACTIONS(1280), + [aux_sym_clone_expression_token1] = ACTIONS(1282), + [aux_sym_print_intrinsic_token1] = ACTIONS(1282), + [aux_sym_object_creation_expression_token1] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [aux_sym__list_destructing_token1] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_self] = ACTIONS(1282), + [anon_sym_parent] = ACTIONS(1282), + [aux_sym__argument_name_token1] = ACTIONS(1282), + [aux_sym__argument_name_token2] = ACTIONS(1282), + [anon_sym_POUND_LBRACK] = ACTIONS(1280), + [aux_sym_encapsed_string_token1] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [aux_sym_string_token1] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_LT_LT_LT] = ACTIONS(1280), + [anon_sym_BQUOTE] = ACTIONS(1280), + [anon_sym_DOLLAR] = ACTIONS(1280), + [aux_sym_yield_expression_token1] = ACTIONS(1282), + [aux_sym_include_expression_token1] = ACTIONS(1282), + [aux_sym_include_once_expression_token1] = ACTIONS(1282), + [aux_sym_require_expression_token1] = ACTIONS(1282), + [aux_sym_require_once_expression_token1] = ACTIONS(1282), [sym_comment] = ACTIONS(5), }, [497] = { [sym_text_interpolation] = STATE(497), - [ts_builtin_sym_end] = ACTIONS(1311), - [sym_name] = ACTIONS(1313), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1311), - [aux_sym_function_static_declaration_token1] = ACTIONS(1313), - [aux_sym_global_declaration_token1] = ACTIONS(1313), - [aux_sym_namespace_definition_token1] = ACTIONS(1313), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1313), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1313), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1313), - [anon_sym_BSLASH] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1311), - [anon_sym_RBRACE] = ACTIONS(1311), - [aux_sym_trait_declaration_token1] = ACTIONS(1313), - [aux_sym_interface_declaration_token1] = ACTIONS(1313), - [aux_sym_enum_declaration_token1] = ACTIONS(1313), - [aux_sym_enum_case_token1] = ACTIONS(1313), - [aux_sym_class_declaration_token1] = ACTIONS(1313), - [aux_sym_final_modifier_token1] = ACTIONS(1313), - [aux_sym_abstract_modifier_token1] = ACTIONS(1313), - [aux_sym_readonly_modifier_token1] = ACTIONS(1313), - [aux_sym_visibility_modifier_token1] = ACTIONS(1313), - [aux_sym_visibility_modifier_token2] = ACTIONS(1313), - [aux_sym_visibility_modifier_token3] = ACTIONS(1313), - [aux_sym__arrow_function_header_token1] = ACTIONS(1313), - [anon_sym_LPAREN] = ACTIONS(1311), - [aux_sym_cast_type_token1] = ACTIONS(1313), - [aux_sym_echo_statement_token1] = ACTIONS(1313), - [aux_sym_exit_statement_token1] = ACTIONS(1313), - [anon_sym_unset] = ACTIONS(1313), - [aux_sym_declare_statement_token1] = ACTIONS(1313), - [aux_sym_declare_statement_token2] = ACTIONS(1313), - [sym_float] = ACTIONS(1313), - [aux_sym_try_statement_token1] = ACTIONS(1313), - [aux_sym_goto_statement_token1] = ACTIONS(1313), - [aux_sym_continue_statement_token1] = ACTIONS(1313), - [aux_sym_break_statement_token1] = ACTIONS(1313), - [sym_integer] = ACTIONS(1313), - [aux_sym_return_statement_token1] = ACTIONS(1313), - [aux_sym_throw_expression_token1] = ACTIONS(1313), - [aux_sym_while_statement_token1] = ACTIONS(1313), - [aux_sym_while_statement_token2] = ACTIONS(1313), - [aux_sym_do_statement_token1] = ACTIONS(1313), - [aux_sym_for_statement_token1] = ACTIONS(1313), - [aux_sym_for_statement_token2] = ACTIONS(1313), - [aux_sym_foreach_statement_token1] = ACTIONS(1313), - [aux_sym_foreach_statement_token2] = ACTIONS(1313), - [aux_sym_if_statement_token1] = ACTIONS(1313), - [aux_sym_if_statement_token2] = ACTIONS(1313), - [aux_sym_else_if_clause_token1] = ACTIONS(1313), - [aux_sym_else_clause_token1] = ACTIONS(1313), - [aux_sym_match_expression_token1] = ACTIONS(1313), - [aux_sym_match_default_expression_token1] = ACTIONS(1313), - [aux_sym_switch_statement_token1] = ACTIONS(1313), - [aux_sym_switch_block_token1] = ACTIONS(1313), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_TILDE] = ACTIONS(1311), - [anon_sym_BANG] = ACTIONS(1311), - [anon_sym_AT] = ACTIONS(1311), - [aux_sym_clone_expression_token1] = ACTIONS(1313), - [aux_sym_print_intrinsic_token1] = ACTIONS(1313), - [aux_sym_object_creation_expression_token1] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1311), - [anon_sym_PLUS_PLUS] = ACTIONS(1311), - [aux_sym__list_destructing_token1] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_self] = ACTIONS(1313), - [anon_sym_parent] = ACTIONS(1313), - [aux_sym__argument_name_token1] = ACTIONS(1313), - [aux_sym__argument_name_token2] = ACTIONS(1313), - [anon_sym_POUND_LBRACK] = ACTIONS(1311), - [aux_sym_encapsed_string_token1] = ACTIONS(1311), - [anon_sym_DQUOTE] = ACTIONS(1311), - [aux_sym_string_token1] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1311), - [anon_sym_LT_LT_LT] = ACTIONS(1311), - [anon_sym_BQUOTE] = ACTIONS(1311), - [anon_sym_DOLLAR] = ACTIONS(1311), - [aux_sym_yield_expression_token1] = ACTIONS(1313), - [aux_sym_include_expression_token1] = ACTIONS(1313), - [aux_sym_include_once_expression_token1] = ACTIONS(1313), - [aux_sym_require_expression_token1] = ACTIONS(1313), - [aux_sym_require_once_expression_token1] = ACTIONS(1313), + [ts_builtin_sym_end] = ACTIONS(1284), + [sym_name] = ACTIONS(1286), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1284), + [aux_sym_function_static_declaration_token1] = ACTIONS(1286), + [aux_sym_global_declaration_token1] = ACTIONS(1286), + [aux_sym_namespace_definition_token1] = ACTIONS(1286), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1286), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1286), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [aux_sym_trait_declaration_token1] = ACTIONS(1286), + [aux_sym_interface_declaration_token1] = ACTIONS(1286), + [aux_sym_enum_declaration_token1] = ACTIONS(1286), + [aux_sym_enum_case_token1] = ACTIONS(1286), + [aux_sym_class_declaration_token1] = ACTIONS(1286), + [aux_sym_final_modifier_token1] = ACTIONS(1286), + [aux_sym_abstract_modifier_token1] = ACTIONS(1286), + [aux_sym_readonly_modifier_token1] = ACTIONS(1286), + [sym_var_modifier] = ACTIONS(1286), + [aux_sym_visibility_modifier_token1] = ACTIONS(1286), + [aux_sym_visibility_modifier_token2] = ACTIONS(1286), + [aux_sym_visibility_modifier_token3] = ACTIONS(1286), + [aux_sym__arrow_function_header_token1] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1284), + [aux_sym_cast_type_token1] = ACTIONS(1286), + [aux_sym_echo_statement_token1] = ACTIONS(1286), + [aux_sym_exit_statement_token1] = ACTIONS(1286), + [anon_sym_unset] = ACTIONS(1286), + [aux_sym_declare_statement_token1] = ACTIONS(1286), + [aux_sym_declare_statement_token2] = ACTIONS(1286), + [sym_float] = ACTIONS(1286), + [aux_sym_try_statement_token1] = ACTIONS(1286), + [aux_sym_goto_statement_token1] = ACTIONS(1286), + [aux_sym_continue_statement_token1] = ACTIONS(1286), + [aux_sym_break_statement_token1] = ACTIONS(1286), + [sym_integer] = ACTIONS(1286), + [aux_sym_return_statement_token1] = ACTIONS(1286), + [aux_sym_throw_expression_token1] = ACTIONS(1286), + [aux_sym_while_statement_token1] = ACTIONS(1286), + [aux_sym_while_statement_token2] = ACTIONS(1286), + [aux_sym_do_statement_token1] = ACTIONS(1286), + [aux_sym_for_statement_token1] = ACTIONS(1286), + [aux_sym_for_statement_token2] = ACTIONS(1286), + [aux_sym_foreach_statement_token1] = ACTIONS(1286), + [aux_sym_foreach_statement_token2] = ACTIONS(1286), + [aux_sym_if_statement_token1] = ACTIONS(1286), + [aux_sym_if_statement_token2] = ACTIONS(1286), + [aux_sym_else_if_clause_token1] = ACTIONS(1286), + [aux_sym_else_clause_token1] = ACTIONS(1286), + [aux_sym_match_expression_token1] = ACTIONS(1286), + [aux_sym_match_default_expression_token1] = ACTIONS(1286), + [aux_sym_switch_statement_token1] = ACTIONS(1286), + [aux_sym_switch_block_token1] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_TILDE] = ACTIONS(1284), + [anon_sym_BANG] = ACTIONS(1284), + [anon_sym_AT] = ACTIONS(1284), + [aux_sym_clone_expression_token1] = ACTIONS(1286), + [aux_sym_print_intrinsic_token1] = ACTIONS(1286), + [aux_sym_object_creation_expression_token1] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1284), + [aux_sym__list_destructing_token1] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1284), + [anon_sym_self] = ACTIONS(1286), + [anon_sym_parent] = ACTIONS(1286), + [aux_sym__argument_name_token1] = ACTIONS(1286), + [aux_sym__argument_name_token2] = ACTIONS(1286), + [anon_sym_POUND_LBRACK] = ACTIONS(1284), + [aux_sym_encapsed_string_token1] = ACTIONS(1284), + [anon_sym_DQUOTE] = ACTIONS(1284), + [aux_sym_string_token1] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(1284), + [anon_sym_LT_LT_LT] = ACTIONS(1284), + [anon_sym_BQUOTE] = ACTIONS(1284), + [anon_sym_DOLLAR] = ACTIONS(1284), + [aux_sym_yield_expression_token1] = ACTIONS(1286), + [aux_sym_include_expression_token1] = ACTIONS(1286), + [aux_sym_include_once_expression_token1] = ACTIONS(1286), + [aux_sym_require_expression_token1] = ACTIONS(1286), + [aux_sym_require_once_expression_token1] = ACTIONS(1286), [sym_comment] = ACTIONS(5), }, [498] = { [sym_text_interpolation] = STATE(498), - [ts_builtin_sym_end] = ACTIONS(1139), - [sym_name] = ACTIONS(1141), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1139), - [aux_sym_function_static_declaration_token1] = ACTIONS(1141), - [aux_sym_global_declaration_token1] = ACTIONS(1141), - [aux_sym_namespace_definition_token1] = ACTIONS(1141), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1141), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1141), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1141), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_RBRACE] = ACTIONS(1139), - [aux_sym_trait_declaration_token1] = ACTIONS(1141), - [aux_sym_interface_declaration_token1] = ACTIONS(1141), - [aux_sym_enum_declaration_token1] = ACTIONS(1141), - [aux_sym_enum_case_token1] = ACTIONS(1141), - [aux_sym_class_declaration_token1] = ACTIONS(1141), - [aux_sym_final_modifier_token1] = ACTIONS(1141), - [aux_sym_abstract_modifier_token1] = ACTIONS(1141), - [aux_sym_readonly_modifier_token1] = ACTIONS(1141), - [aux_sym_visibility_modifier_token1] = ACTIONS(1141), - [aux_sym_visibility_modifier_token2] = ACTIONS(1141), - [aux_sym_visibility_modifier_token3] = ACTIONS(1141), - [aux_sym__arrow_function_header_token1] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1139), - [aux_sym_cast_type_token1] = ACTIONS(1141), - [aux_sym_echo_statement_token1] = ACTIONS(1141), - [aux_sym_exit_statement_token1] = ACTIONS(1141), - [anon_sym_unset] = ACTIONS(1141), - [aux_sym_declare_statement_token1] = ACTIONS(1141), - [aux_sym_declare_statement_token2] = ACTIONS(1141), - [sym_float] = ACTIONS(1141), - [aux_sym_try_statement_token1] = ACTIONS(1141), - [aux_sym_goto_statement_token1] = ACTIONS(1141), - [aux_sym_continue_statement_token1] = ACTIONS(1141), - [aux_sym_break_statement_token1] = ACTIONS(1141), - [sym_integer] = ACTIONS(1141), - [aux_sym_return_statement_token1] = ACTIONS(1141), - [aux_sym_throw_expression_token1] = ACTIONS(1141), - [aux_sym_while_statement_token1] = ACTIONS(1141), - [aux_sym_while_statement_token2] = ACTIONS(1141), - [aux_sym_do_statement_token1] = ACTIONS(1141), - [aux_sym_for_statement_token1] = ACTIONS(1141), - [aux_sym_for_statement_token2] = ACTIONS(1141), - [aux_sym_foreach_statement_token1] = ACTIONS(1141), - [aux_sym_foreach_statement_token2] = ACTIONS(1141), - [aux_sym_if_statement_token1] = ACTIONS(1141), - [aux_sym_if_statement_token2] = ACTIONS(1141), - [aux_sym_else_if_clause_token1] = ACTIONS(1141), - [aux_sym_else_clause_token1] = ACTIONS(1141), - [aux_sym_match_expression_token1] = ACTIONS(1141), - [aux_sym_match_default_expression_token1] = ACTIONS(1141), - [aux_sym_switch_statement_token1] = ACTIONS(1141), - [aux_sym_switch_block_token1] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1139), - [anon_sym_BANG] = ACTIONS(1139), - [anon_sym_AT] = ACTIONS(1139), - [aux_sym_clone_expression_token1] = ACTIONS(1141), - [aux_sym_print_intrinsic_token1] = ACTIONS(1141), - [aux_sym_object_creation_expression_token1] = ACTIONS(1141), - [anon_sym_DASH_DASH] = ACTIONS(1139), - [anon_sym_PLUS_PLUS] = ACTIONS(1139), - [aux_sym__list_destructing_token1] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1139), - [anon_sym_self] = ACTIONS(1141), - [anon_sym_parent] = ACTIONS(1141), - [aux_sym__argument_name_token1] = ACTIONS(1141), - [aux_sym__argument_name_token2] = ACTIONS(1141), - [anon_sym_POUND_LBRACK] = ACTIONS(1139), - [aux_sym_encapsed_string_token1] = ACTIONS(1139), - [anon_sym_DQUOTE] = ACTIONS(1139), - [aux_sym_string_token1] = ACTIONS(1139), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_LT_LT_LT] = ACTIONS(1139), - [anon_sym_BQUOTE] = ACTIONS(1139), - [anon_sym_DOLLAR] = ACTIONS(1139), - [aux_sym_yield_expression_token1] = ACTIONS(1141), - [aux_sym_include_expression_token1] = ACTIONS(1141), - [aux_sym_include_once_expression_token1] = ACTIONS(1141), - [aux_sym_require_expression_token1] = ACTIONS(1141), - [aux_sym_require_once_expression_token1] = ACTIONS(1141), + [ts_builtin_sym_end] = ACTIONS(1288), + [sym_name] = ACTIONS(1290), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1288), + [aux_sym_function_static_declaration_token1] = ACTIONS(1290), + [aux_sym_global_declaration_token1] = ACTIONS(1290), + [aux_sym_namespace_definition_token1] = ACTIONS(1290), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1290), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1290), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1290), + [anon_sym_BSLASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_RBRACE] = ACTIONS(1288), + [aux_sym_trait_declaration_token1] = ACTIONS(1290), + [aux_sym_interface_declaration_token1] = ACTIONS(1290), + [aux_sym_enum_declaration_token1] = ACTIONS(1290), + [aux_sym_enum_case_token1] = ACTIONS(1290), + [aux_sym_class_declaration_token1] = ACTIONS(1290), + [aux_sym_final_modifier_token1] = ACTIONS(1290), + [aux_sym_abstract_modifier_token1] = ACTIONS(1290), + [aux_sym_readonly_modifier_token1] = ACTIONS(1290), + [sym_var_modifier] = ACTIONS(1290), + [aux_sym_visibility_modifier_token1] = ACTIONS(1290), + [aux_sym_visibility_modifier_token2] = ACTIONS(1290), + [aux_sym_visibility_modifier_token3] = ACTIONS(1290), + [aux_sym__arrow_function_header_token1] = ACTIONS(1290), + [anon_sym_LPAREN] = ACTIONS(1288), + [aux_sym_cast_type_token1] = ACTIONS(1290), + [aux_sym_echo_statement_token1] = ACTIONS(1290), + [aux_sym_exit_statement_token1] = ACTIONS(1290), + [anon_sym_unset] = ACTIONS(1290), + [aux_sym_declare_statement_token1] = ACTIONS(1290), + [aux_sym_declare_statement_token2] = ACTIONS(1290), + [sym_float] = ACTIONS(1290), + [aux_sym_try_statement_token1] = ACTIONS(1290), + [aux_sym_goto_statement_token1] = ACTIONS(1290), + [aux_sym_continue_statement_token1] = ACTIONS(1290), + [aux_sym_break_statement_token1] = ACTIONS(1290), + [sym_integer] = ACTIONS(1290), + [aux_sym_return_statement_token1] = ACTIONS(1290), + [aux_sym_throw_expression_token1] = ACTIONS(1290), + [aux_sym_while_statement_token1] = ACTIONS(1290), + [aux_sym_while_statement_token2] = ACTIONS(1290), + [aux_sym_do_statement_token1] = ACTIONS(1290), + [aux_sym_for_statement_token1] = ACTIONS(1290), + [aux_sym_for_statement_token2] = ACTIONS(1290), + [aux_sym_foreach_statement_token1] = ACTIONS(1290), + [aux_sym_foreach_statement_token2] = ACTIONS(1290), + [aux_sym_if_statement_token1] = ACTIONS(1290), + [aux_sym_if_statement_token2] = ACTIONS(1290), + [aux_sym_else_if_clause_token1] = ACTIONS(1290), + [aux_sym_else_clause_token1] = ACTIONS(1290), + [aux_sym_match_expression_token1] = ACTIONS(1290), + [aux_sym_match_default_expression_token1] = ACTIONS(1290), + [aux_sym_switch_statement_token1] = ACTIONS(1290), + [aux_sym_switch_block_token1] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_AT] = ACTIONS(1288), + [aux_sym_clone_expression_token1] = ACTIONS(1290), + [aux_sym_print_intrinsic_token1] = ACTIONS(1290), + [aux_sym_object_creation_expression_token1] = ACTIONS(1290), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [aux_sym__list_destructing_token1] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_self] = ACTIONS(1290), + [anon_sym_parent] = ACTIONS(1290), + [aux_sym__argument_name_token1] = ACTIONS(1290), + [aux_sym__argument_name_token2] = ACTIONS(1290), + [anon_sym_POUND_LBRACK] = ACTIONS(1288), + [aux_sym_encapsed_string_token1] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [aux_sym_string_token1] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1288), + [anon_sym_LT_LT_LT] = ACTIONS(1288), + [anon_sym_BQUOTE] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1288), + [aux_sym_yield_expression_token1] = ACTIONS(1290), + [aux_sym_include_expression_token1] = ACTIONS(1290), + [aux_sym_include_once_expression_token1] = ACTIONS(1290), + [aux_sym_require_expression_token1] = ACTIONS(1290), + [aux_sym_require_once_expression_token1] = ACTIONS(1290), [sym_comment] = ACTIONS(5), }, [499] = { [sym_text_interpolation] = STATE(499), - [ts_builtin_sym_end] = ACTIONS(1315), - [sym_name] = ACTIONS(1317), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1315), - [aux_sym_function_static_declaration_token1] = ACTIONS(1317), - [aux_sym_global_declaration_token1] = ACTIONS(1317), - [aux_sym_namespace_definition_token1] = ACTIONS(1317), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1317), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1317), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1317), - [anon_sym_BSLASH] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(1315), - [aux_sym_trait_declaration_token1] = ACTIONS(1317), - [aux_sym_interface_declaration_token1] = ACTIONS(1317), - [aux_sym_enum_declaration_token1] = ACTIONS(1317), - [aux_sym_enum_case_token1] = ACTIONS(1317), - [aux_sym_class_declaration_token1] = ACTIONS(1317), - [aux_sym_final_modifier_token1] = ACTIONS(1317), - [aux_sym_abstract_modifier_token1] = ACTIONS(1317), - [aux_sym_readonly_modifier_token1] = ACTIONS(1317), - [aux_sym_visibility_modifier_token1] = ACTIONS(1317), - [aux_sym_visibility_modifier_token2] = ACTIONS(1317), - [aux_sym_visibility_modifier_token3] = ACTIONS(1317), - [aux_sym__arrow_function_header_token1] = ACTIONS(1317), - [anon_sym_LPAREN] = ACTIONS(1315), - [aux_sym_cast_type_token1] = ACTIONS(1317), - [aux_sym_echo_statement_token1] = ACTIONS(1317), - [aux_sym_exit_statement_token1] = ACTIONS(1317), - [anon_sym_unset] = ACTIONS(1317), - [aux_sym_declare_statement_token1] = ACTIONS(1317), - [aux_sym_declare_statement_token2] = ACTIONS(1317), - [sym_float] = ACTIONS(1317), - [aux_sym_try_statement_token1] = ACTIONS(1317), - [aux_sym_goto_statement_token1] = ACTIONS(1317), - [aux_sym_continue_statement_token1] = ACTIONS(1317), - [aux_sym_break_statement_token1] = ACTIONS(1317), - [sym_integer] = ACTIONS(1317), - [aux_sym_return_statement_token1] = ACTIONS(1317), - [aux_sym_throw_expression_token1] = ACTIONS(1317), - [aux_sym_while_statement_token1] = ACTIONS(1317), - [aux_sym_while_statement_token2] = ACTIONS(1317), - [aux_sym_do_statement_token1] = ACTIONS(1317), - [aux_sym_for_statement_token1] = ACTIONS(1317), - [aux_sym_for_statement_token2] = ACTIONS(1317), - [aux_sym_foreach_statement_token1] = ACTIONS(1317), - [aux_sym_foreach_statement_token2] = ACTIONS(1317), - [aux_sym_if_statement_token1] = ACTIONS(1317), - [aux_sym_if_statement_token2] = ACTIONS(1317), - [aux_sym_else_if_clause_token1] = ACTIONS(1317), - [aux_sym_else_clause_token1] = ACTIONS(1317), - [aux_sym_match_expression_token1] = ACTIONS(1317), - [aux_sym_match_default_expression_token1] = ACTIONS(1317), - [aux_sym_switch_statement_token1] = ACTIONS(1317), - [aux_sym_switch_block_token1] = ACTIONS(1317), - [anon_sym_PLUS] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1315), - [anon_sym_AT] = ACTIONS(1315), - [aux_sym_clone_expression_token1] = ACTIONS(1317), - [aux_sym_print_intrinsic_token1] = ACTIONS(1317), - [aux_sym_object_creation_expression_token1] = ACTIONS(1317), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [aux_sym__list_destructing_token1] = ACTIONS(1317), - [anon_sym_LBRACK] = ACTIONS(1315), - [anon_sym_self] = ACTIONS(1317), - [anon_sym_parent] = ACTIONS(1317), - [aux_sym__argument_name_token1] = ACTIONS(1317), - [aux_sym__argument_name_token2] = ACTIONS(1317), - [anon_sym_POUND_LBRACK] = ACTIONS(1315), - [aux_sym_encapsed_string_token1] = ACTIONS(1315), - [anon_sym_DQUOTE] = ACTIONS(1315), - [aux_sym_string_token1] = ACTIONS(1315), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_LT_LT_LT] = ACTIONS(1315), - [anon_sym_BQUOTE] = ACTIONS(1315), - [anon_sym_DOLLAR] = ACTIONS(1315), - [aux_sym_yield_expression_token1] = ACTIONS(1317), - [aux_sym_include_expression_token1] = ACTIONS(1317), - [aux_sym_include_once_expression_token1] = ACTIONS(1317), - [aux_sym_require_expression_token1] = ACTIONS(1317), - [aux_sym_require_once_expression_token1] = ACTIONS(1317), + [ts_builtin_sym_end] = ACTIONS(1292), + [sym_name] = ACTIONS(1294), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1292), + [aux_sym_function_static_declaration_token1] = ACTIONS(1294), + [aux_sym_global_declaration_token1] = ACTIONS(1294), + [aux_sym_namespace_definition_token1] = ACTIONS(1294), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1294), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1294), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1294), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [aux_sym_trait_declaration_token1] = ACTIONS(1294), + [aux_sym_interface_declaration_token1] = ACTIONS(1294), + [aux_sym_enum_declaration_token1] = ACTIONS(1294), + [aux_sym_enum_case_token1] = ACTIONS(1294), + [aux_sym_class_declaration_token1] = ACTIONS(1294), + [aux_sym_final_modifier_token1] = ACTIONS(1294), + [aux_sym_abstract_modifier_token1] = ACTIONS(1294), + [aux_sym_readonly_modifier_token1] = ACTIONS(1294), + [sym_var_modifier] = ACTIONS(1294), + [aux_sym_visibility_modifier_token1] = ACTIONS(1294), + [aux_sym_visibility_modifier_token2] = ACTIONS(1294), + [aux_sym_visibility_modifier_token3] = ACTIONS(1294), + [aux_sym__arrow_function_header_token1] = ACTIONS(1294), + [anon_sym_LPAREN] = ACTIONS(1292), + [aux_sym_cast_type_token1] = ACTIONS(1294), + [aux_sym_echo_statement_token1] = ACTIONS(1294), + [aux_sym_exit_statement_token1] = ACTIONS(1294), + [anon_sym_unset] = ACTIONS(1294), + [aux_sym_declare_statement_token1] = ACTIONS(1294), + [aux_sym_declare_statement_token2] = ACTIONS(1294), + [sym_float] = ACTIONS(1294), + [aux_sym_try_statement_token1] = ACTIONS(1294), + [aux_sym_goto_statement_token1] = ACTIONS(1294), + [aux_sym_continue_statement_token1] = ACTIONS(1294), + [aux_sym_break_statement_token1] = ACTIONS(1294), + [sym_integer] = ACTIONS(1294), + [aux_sym_return_statement_token1] = ACTIONS(1294), + [aux_sym_throw_expression_token1] = ACTIONS(1294), + [aux_sym_while_statement_token1] = ACTIONS(1294), + [aux_sym_while_statement_token2] = ACTIONS(1294), + [aux_sym_do_statement_token1] = ACTIONS(1294), + [aux_sym_for_statement_token1] = ACTIONS(1294), + [aux_sym_for_statement_token2] = ACTIONS(1294), + [aux_sym_foreach_statement_token1] = ACTIONS(1294), + [aux_sym_foreach_statement_token2] = ACTIONS(1294), + [aux_sym_if_statement_token1] = ACTIONS(1294), + [aux_sym_if_statement_token2] = ACTIONS(1294), + [aux_sym_else_if_clause_token1] = ACTIONS(1294), + [aux_sym_else_clause_token1] = ACTIONS(1294), + [aux_sym_match_expression_token1] = ACTIONS(1294), + [aux_sym_match_default_expression_token1] = ACTIONS(1294), + [aux_sym_switch_statement_token1] = ACTIONS(1294), + [aux_sym_switch_block_token1] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_AT] = ACTIONS(1292), + [aux_sym_clone_expression_token1] = ACTIONS(1294), + [aux_sym_print_intrinsic_token1] = ACTIONS(1294), + [aux_sym_object_creation_expression_token1] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [aux_sym__list_destructing_token1] = ACTIONS(1294), + [anon_sym_LBRACK] = ACTIONS(1292), + [anon_sym_self] = ACTIONS(1294), + [anon_sym_parent] = ACTIONS(1294), + [aux_sym__argument_name_token1] = ACTIONS(1294), + [aux_sym__argument_name_token2] = ACTIONS(1294), + [anon_sym_POUND_LBRACK] = ACTIONS(1292), + [aux_sym_encapsed_string_token1] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [aux_sym_string_token1] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_LT_LT_LT] = ACTIONS(1292), + [anon_sym_BQUOTE] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1292), + [aux_sym_yield_expression_token1] = ACTIONS(1294), + [aux_sym_include_expression_token1] = ACTIONS(1294), + [aux_sym_include_once_expression_token1] = ACTIONS(1294), + [aux_sym_require_expression_token1] = ACTIONS(1294), + [aux_sym_require_once_expression_token1] = ACTIONS(1294), [sym_comment] = ACTIONS(5), }, [500] = { [sym_text_interpolation] = STATE(500), - [ts_builtin_sym_end] = ACTIONS(1319), - [sym_name] = ACTIONS(1321), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1319), - [aux_sym_function_static_declaration_token1] = ACTIONS(1321), - [aux_sym_global_declaration_token1] = ACTIONS(1321), - [aux_sym_namespace_definition_token1] = ACTIONS(1321), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1321), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1321), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1321), - [anon_sym_BSLASH] = ACTIONS(1319), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(1319), - [aux_sym_trait_declaration_token1] = ACTIONS(1321), - [aux_sym_interface_declaration_token1] = ACTIONS(1321), - [aux_sym_enum_declaration_token1] = ACTIONS(1321), - [aux_sym_enum_case_token1] = ACTIONS(1321), - [aux_sym_class_declaration_token1] = ACTIONS(1321), - [aux_sym_final_modifier_token1] = ACTIONS(1321), - [aux_sym_abstract_modifier_token1] = ACTIONS(1321), - [aux_sym_readonly_modifier_token1] = ACTIONS(1321), - [aux_sym_visibility_modifier_token1] = ACTIONS(1321), - [aux_sym_visibility_modifier_token2] = ACTIONS(1321), - [aux_sym_visibility_modifier_token3] = ACTIONS(1321), - [aux_sym__arrow_function_header_token1] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(1319), - [aux_sym_cast_type_token1] = ACTIONS(1321), - [aux_sym_echo_statement_token1] = ACTIONS(1321), - [aux_sym_exit_statement_token1] = ACTIONS(1321), - [anon_sym_unset] = ACTIONS(1321), - [aux_sym_declare_statement_token1] = ACTIONS(1321), - [aux_sym_declare_statement_token2] = ACTIONS(1321), - [sym_float] = ACTIONS(1321), - [aux_sym_try_statement_token1] = ACTIONS(1321), - [aux_sym_goto_statement_token1] = ACTIONS(1321), - [aux_sym_continue_statement_token1] = ACTIONS(1321), - [aux_sym_break_statement_token1] = ACTIONS(1321), - [sym_integer] = ACTIONS(1321), - [aux_sym_return_statement_token1] = ACTIONS(1321), - [aux_sym_throw_expression_token1] = ACTIONS(1321), - [aux_sym_while_statement_token1] = ACTIONS(1321), - [aux_sym_while_statement_token2] = ACTIONS(1321), - [aux_sym_do_statement_token1] = ACTIONS(1321), - [aux_sym_for_statement_token1] = ACTIONS(1321), - [aux_sym_for_statement_token2] = ACTIONS(1321), - [aux_sym_foreach_statement_token1] = ACTIONS(1321), - [aux_sym_foreach_statement_token2] = ACTIONS(1321), - [aux_sym_if_statement_token1] = ACTIONS(1321), - [aux_sym_if_statement_token2] = ACTIONS(1321), - [aux_sym_else_if_clause_token1] = ACTIONS(1321), - [aux_sym_else_clause_token1] = ACTIONS(1321), - [aux_sym_match_expression_token1] = ACTIONS(1321), - [aux_sym_match_default_expression_token1] = ACTIONS(1321), - [aux_sym_switch_statement_token1] = ACTIONS(1321), - [aux_sym_switch_block_token1] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1319), - [anon_sym_AT] = ACTIONS(1319), - [aux_sym_clone_expression_token1] = ACTIONS(1321), - [aux_sym_print_intrinsic_token1] = ACTIONS(1321), - [aux_sym_object_creation_expression_token1] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1319), - [anon_sym_PLUS_PLUS] = ACTIONS(1319), - [aux_sym__list_destructing_token1] = ACTIONS(1321), - [anon_sym_LBRACK] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_parent] = ACTIONS(1321), - [aux_sym__argument_name_token1] = ACTIONS(1321), - [aux_sym__argument_name_token2] = ACTIONS(1321), - [anon_sym_POUND_LBRACK] = ACTIONS(1319), - [aux_sym_encapsed_string_token1] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [aux_sym_string_token1] = ACTIONS(1319), - [anon_sym_SQUOTE] = ACTIONS(1319), - [anon_sym_LT_LT_LT] = ACTIONS(1319), - [anon_sym_BQUOTE] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), - [aux_sym_yield_expression_token1] = ACTIONS(1321), - [aux_sym_include_expression_token1] = ACTIONS(1321), - [aux_sym_include_once_expression_token1] = ACTIONS(1321), - [aux_sym_require_expression_token1] = ACTIONS(1321), - [aux_sym_require_once_expression_token1] = ACTIONS(1321), + [ts_builtin_sym_end] = ACTIONS(1296), + [sym_name] = ACTIONS(1298), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1296), + [aux_sym_function_static_declaration_token1] = ACTIONS(1298), + [aux_sym_global_declaration_token1] = ACTIONS(1298), + [aux_sym_namespace_definition_token1] = ACTIONS(1298), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1298), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1298), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1298), + [anon_sym_BSLASH] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(1296), + [aux_sym_trait_declaration_token1] = ACTIONS(1298), + [aux_sym_interface_declaration_token1] = ACTIONS(1298), + [aux_sym_enum_declaration_token1] = ACTIONS(1298), + [aux_sym_enum_case_token1] = ACTIONS(1298), + [aux_sym_class_declaration_token1] = ACTIONS(1298), + [aux_sym_final_modifier_token1] = ACTIONS(1298), + [aux_sym_abstract_modifier_token1] = ACTIONS(1298), + [aux_sym_readonly_modifier_token1] = ACTIONS(1298), + [sym_var_modifier] = ACTIONS(1298), + [aux_sym_visibility_modifier_token1] = ACTIONS(1298), + [aux_sym_visibility_modifier_token2] = ACTIONS(1298), + [aux_sym_visibility_modifier_token3] = ACTIONS(1298), + [aux_sym__arrow_function_header_token1] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1296), + [aux_sym_cast_type_token1] = ACTIONS(1298), + [aux_sym_echo_statement_token1] = ACTIONS(1298), + [aux_sym_exit_statement_token1] = ACTIONS(1298), + [anon_sym_unset] = ACTIONS(1298), + [aux_sym_declare_statement_token1] = ACTIONS(1298), + [aux_sym_declare_statement_token2] = ACTIONS(1298), + [sym_float] = ACTIONS(1298), + [aux_sym_try_statement_token1] = ACTIONS(1298), + [aux_sym_goto_statement_token1] = ACTIONS(1298), + [aux_sym_continue_statement_token1] = ACTIONS(1298), + [aux_sym_break_statement_token1] = ACTIONS(1298), + [sym_integer] = ACTIONS(1298), + [aux_sym_return_statement_token1] = ACTIONS(1298), + [aux_sym_throw_expression_token1] = ACTIONS(1298), + [aux_sym_while_statement_token1] = ACTIONS(1298), + [aux_sym_while_statement_token2] = ACTIONS(1298), + [aux_sym_do_statement_token1] = ACTIONS(1298), + [aux_sym_for_statement_token1] = ACTIONS(1298), + [aux_sym_for_statement_token2] = ACTIONS(1298), + [aux_sym_foreach_statement_token1] = ACTIONS(1298), + [aux_sym_foreach_statement_token2] = ACTIONS(1298), + [aux_sym_if_statement_token1] = ACTIONS(1298), + [aux_sym_if_statement_token2] = ACTIONS(1298), + [aux_sym_else_if_clause_token1] = ACTIONS(1298), + [aux_sym_else_clause_token1] = ACTIONS(1298), + [aux_sym_match_expression_token1] = ACTIONS(1298), + [aux_sym_match_default_expression_token1] = ACTIONS(1298), + [aux_sym_switch_statement_token1] = ACTIONS(1298), + [aux_sym_switch_block_token1] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1296), + [anon_sym_AT] = ACTIONS(1296), + [aux_sym_clone_expression_token1] = ACTIONS(1298), + [aux_sym_print_intrinsic_token1] = ACTIONS(1298), + [aux_sym_object_creation_expression_token1] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [aux_sym__list_destructing_token1] = ACTIONS(1298), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_self] = ACTIONS(1298), + [anon_sym_parent] = ACTIONS(1298), + [aux_sym__argument_name_token1] = ACTIONS(1298), + [aux_sym__argument_name_token2] = ACTIONS(1298), + [anon_sym_POUND_LBRACK] = ACTIONS(1296), + [aux_sym_encapsed_string_token1] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [aux_sym_string_token1] = ACTIONS(1296), + [anon_sym_SQUOTE] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_BQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1296), + [aux_sym_yield_expression_token1] = ACTIONS(1298), + [aux_sym_include_expression_token1] = ACTIONS(1298), + [aux_sym_include_once_expression_token1] = ACTIONS(1298), + [aux_sym_require_expression_token1] = ACTIONS(1298), + [aux_sym_require_once_expression_token1] = ACTIONS(1298), [sym_comment] = ACTIONS(5), }, [501] = { [sym_text_interpolation] = STATE(501), - [ts_builtin_sym_end] = ACTIONS(1323), - [sym_name] = ACTIONS(1325), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1323), - [aux_sym_function_static_declaration_token1] = ACTIONS(1325), - [aux_sym_global_declaration_token1] = ACTIONS(1325), - [aux_sym_namespace_definition_token1] = ACTIONS(1325), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1325), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1325), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1325), - [anon_sym_BSLASH] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_RBRACE] = ACTIONS(1323), - [aux_sym_trait_declaration_token1] = ACTIONS(1325), - [aux_sym_interface_declaration_token1] = ACTIONS(1325), - [aux_sym_enum_declaration_token1] = ACTIONS(1325), - [aux_sym_enum_case_token1] = ACTIONS(1325), - [aux_sym_class_declaration_token1] = ACTIONS(1325), - [aux_sym_final_modifier_token1] = ACTIONS(1325), - [aux_sym_abstract_modifier_token1] = ACTIONS(1325), - [aux_sym_readonly_modifier_token1] = ACTIONS(1325), - [aux_sym_visibility_modifier_token1] = ACTIONS(1325), - [aux_sym_visibility_modifier_token2] = ACTIONS(1325), - [aux_sym_visibility_modifier_token3] = ACTIONS(1325), - [aux_sym__arrow_function_header_token1] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1323), - [aux_sym_cast_type_token1] = ACTIONS(1325), - [aux_sym_echo_statement_token1] = ACTIONS(1325), - [aux_sym_exit_statement_token1] = ACTIONS(1325), - [anon_sym_unset] = ACTIONS(1325), - [aux_sym_declare_statement_token1] = ACTIONS(1325), - [aux_sym_declare_statement_token2] = ACTIONS(1325), - [sym_float] = ACTIONS(1325), - [aux_sym_try_statement_token1] = ACTIONS(1325), - [aux_sym_goto_statement_token1] = ACTIONS(1325), - [aux_sym_continue_statement_token1] = ACTIONS(1325), - [aux_sym_break_statement_token1] = ACTIONS(1325), - [sym_integer] = ACTIONS(1325), - [aux_sym_return_statement_token1] = ACTIONS(1325), - [aux_sym_throw_expression_token1] = ACTIONS(1325), - [aux_sym_while_statement_token1] = ACTIONS(1325), - [aux_sym_while_statement_token2] = ACTIONS(1325), - [aux_sym_do_statement_token1] = ACTIONS(1325), - [aux_sym_for_statement_token1] = ACTIONS(1325), - [aux_sym_for_statement_token2] = ACTIONS(1325), - [aux_sym_foreach_statement_token1] = ACTIONS(1325), - [aux_sym_foreach_statement_token2] = ACTIONS(1325), - [aux_sym_if_statement_token1] = ACTIONS(1325), - [aux_sym_if_statement_token2] = ACTIONS(1325), - [aux_sym_else_if_clause_token1] = ACTIONS(1325), - [aux_sym_else_clause_token1] = ACTIONS(1325), - [aux_sym_match_expression_token1] = ACTIONS(1325), - [aux_sym_match_default_expression_token1] = ACTIONS(1325), - [aux_sym_switch_statement_token1] = ACTIONS(1325), - [aux_sym_switch_block_token1] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_AT] = ACTIONS(1323), - [aux_sym_clone_expression_token1] = ACTIONS(1325), - [aux_sym_print_intrinsic_token1] = ACTIONS(1325), - [aux_sym_object_creation_expression_token1] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [aux_sym__list_destructing_token1] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1323), - [anon_sym_self] = ACTIONS(1325), - [anon_sym_parent] = ACTIONS(1325), - [aux_sym__argument_name_token1] = ACTIONS(1325), - [aux_sym__argument_name_token2] = ACTIONS(1325), - [anon_sym_POUND_LBRACK] = ACTIONS(1323), - [aux_sym_encapsed_string_token1] = ACTIONS(1323), - [anon_sym_DQUOTE] = ACTIONS(1323), - [aux_sym_string_token1] = ACTIONS(1323), - [anon_sym_SQUOTE] = ACTIONS(1323), - [anon_sym_LT_LT_LT] = ACTIONS(1323), - [anon_sym_BQUOTE] = ACTIONS(1323), - [anon_sym_DOLLAR] = ACTIONS(1323), - [aux_sym_yield_expression_token1] = ACTIONS(1325), - [aux_sym_include_expression_token1] = ACTIONS(1325), - [aux_sym_include_once_expression_token1] = ACTIONS(1325), - [aux_sym_require_expression_token1] = ACTIONS(1325), - [aux_sym_require_once_expression_token1] = ACTIONS(1325), + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_name] = ACTIONS(1302), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1300), + [aux_sym_function_static_declaration_token1] = ACTIONS(1302), + [aux_sym_global_declaration_token1] = ACTIONS(1302), + [aux_sym_namespace_definition_token1] = ACTIONS(1302), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1302), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1302), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1302), + [anon_sym_BSLASH] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [aux_sym_trait_declaration_token1] = ACTIONS(1302), + [aux_sym_interface_declaration_token1] = ACTIONS(1302), + [aux_sym_enum_declaration_token1] = ACTIONS(1302), + [aux_sym_enum_case_token1] = ACTIONS(1302), + [aux_sym_class_declaration_token1] = ACTIONS(1302), + [aux_sym_final_modifier_token1] = ACTIONS(1302), + [aux_sym_abstract_modifier_token1] = ACTIONS(1302), + [aux_sym_readonly_modifier_token1] = ACTIONS(1302), + [sym_var_modifier] = ACTIONS(1302), + [aux_sym_visibility_modifier_token1] = ACTIONS(1302), + [aux_sym_visibility_modifier_token2] = ACTIONS(1302), + [aux_sym_visibility_modifier_token3] = ACTIONS(1302), + [aux_sym__arrow_function_header_token1] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1300), + [aux_sym_cast_type_token1] = ACTIONS(1302), + [aux_sym_echo_statement_token1] = ACTIONS(1302), + [aux_sym_exit_statement_token1] = ACTIONS(1302), + [anon_sym_unset] = ACTIONS(1302), + [aux_sym_declare_statement_token1] = ACTIONS(1302), + [aux_sym_declare_statement_token2] = ACTIONS(1302), + [sym_float] = ACTIONS(1302), + [aux_sym_try_statement_token1] = ACTIONS(1302), + [aux_sym_goto_statement_token1] = ACTIONS(1302), + [aux_sym_continue_statement_token1] = ACTIONS(1302), + [aux_sym_break_statement_token1] = ACTIONS(1302), + [sym_integer] = ACTIONS(1302), + [aux_sym_return_statement_token1] = ACTIONS(1302), + [aux_sym_throw_expression_token1] = ACTIONS(1302), + [aux_sym_while_statement_token1] = ACTIONS(1302), + [aux_sym_while_statement_token2] = ACTIONS(1302), + [aux_sym_do_statement_token1] = ACTIONS(1302), + [aux_sym_for_statement_token1] = ACTIONS(1302), + [aux_sym_for_statement_token2] = ACTIONS(1302), + [aux_sym_foreach_statement_token1] = ACTIONS(1302), + [aux_sym_foreach_statement_token2] = ACTIONS(1302), + [aux_sym_if_statement_token1] = ACTIONS(1302), + [aux_sym_if_statement_token2] = ACTIONS(1302), + [aux_sym_else_if_clause_token1] = ACTIONS(1302), + [aux_sym_else_clause_token1] = ACTIONS(1302), + [aux_sym_match_expression_token1] = ACTIONS(1302), + [aux_sym_match_default_expression_token1] = ACTIONS(1302), + [aux_sym_switch_statement_token1] = ACTIONS(1302), + [aux_sym_switch_block_token1] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(1300), + [aux_sym_clone_expression_token1] = ACTIONS(1302), + [aux_sym_print_intrinsic_token1] = ACTIONS(1302), + [aux_sym_object_creation_expression_token1] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [aux_sym__list_destructing_token1] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1300), + [anon_sym_self] = ACTIONS(1302), + [anon_sym_parent] = ACTIONS(1302), + [aux_sym__argument_name_token1] = ACTIONS(1302), + [aux_sym__argument_name_token2] = ACTIONS(1302), + [anon_sym_POUND_LBRACK] = ACTIONS(1300), + [aux_sym_encapsed_string_token1] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [aux_sym_string_token1] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1300), + [aux_sym_yield_expression_token1] = ACTIONS(1302), + [aux_sym_include_expression_token1] = ACTIONS(1302), + [aux_sym_include_once_expression_token1] = ACTIONS(1302), + [aux_sym_require_expression_token1] = ACTIONS(1302), + [aux_sym_require_once_expression_token1] = ACTIONS(1302), [sym_comment] = ACTIONS(5), }, [502] = { [sym_text_interpolation] = STATE(502), - [ts_builtin_sym_end] = ACTIONS(1223), - [sym_name] = ACTIONS(1225), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1223), - [aux_sym_function_static_declaration_token1] = ACTIONS(1225), - [aux_sym_global_declaration_token1] = ACTIONS(1225), - [aux_sym_namespace_definition_token1] = ACTIONS(1225), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1225), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1225), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1225), - [anon_sym_BSLASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1223), - [aux_sym_trait_declaration_token1] = ACTIONS(1225), - [aux_sym_interface_declaration_token1] = ACTIONS(1225), - [aux_sym_enum_declaration_token1] = ACTIONS(1225), - [aux_sym_enum_case_token1] = ACTIONS(1225), - [aux_sym_class_declaration_token1] = ACTIONS(1225), - [aux_sym_final_modifier_token1] = ACTIONS(1225), - [aux_sym_abstract_modifier_token1] = ACTIONS(1225), - [aux_sym_readonly_modifier_token1] = ACTIONS(1225), - [aux_sym_visibility_modifier_token1] = ACTIONS(1225), - [aux_sym_visibility_modifier_token2] = ACTIONS(1225), - [aux_sym_visibility_modifier_token3] = ACTIONS(1225), - [aux_sym__arrow_function_header_token1] = ACTIONS(1225), - [anon_sym_LPAREN] = ACTIONS(1223), - [aux_sym_cast_type_token1] = ACTIONS(1225), - [aux_sym_echo_statement_token1] = ACTIONS(1225), - [aux_sym_exit_statement_token1] = ACTIONS(1225), - [anon_sym_unset] = ACTIONS(1225), - [aux_sym_declare_statement_token1] = ACTIONS(1225), - [aux_sym_declare_statement_token2] = ACTIONS(1225), - [sym_float] = ACTIONS(1225), - [aux_sym_try_statement_token1] = ACTIONS(1225), - [aux_sym_goto_statement_token1] = ACTIONS(1225), - [aux_sym_continue_statement_token1] = ACTIONS(1225), - [aux_sym_break_statement_token1] = ACTIONS(1225), - [sym_integer] = ACTIONS(1225), - [aux_sym_return_statement_token1] = ACTIONS(1225), - [aux_sym_throw_expression_token1] = ACTIONS(1225), - [aux_sym_while_statement_token1] = ACTIONS(1225), - [aux_sym_while_statement_token2] = ACTIONS(1225), - [aux_sym_do_statement_token1] = ACTIONS(1225), - [aux_sym_for_statement_token1] = ACTIONS(1225), - [aux_sym_for_statement_token2] = ACTIONS(1225), - [aux_sym_foreach_statement_token1] = ACTIONS(1225), - [aux_sym_foreach_statement_token2] = ACTIONS(1225), - [aux_sym_if_statement_token1] = ACTIONS(1225), - [aux_sym_if_statement_token2] = ACTIONS(1225), - [aux_sym_else_if_clause_token1] = ACTIONS(1225), - [aux_sym_else_clause_token1] = ACTIONS(1225), - [aux_sym_match_expression_token1] = ACTIONS(1225), - [aux_sym_match_default_expression_token1] = ACTIONS(1225), - [aux_sym_switch_statement_token1] = ACTIONS(1225), - [aux_sym_switch_block_token1] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1223), - [anon_sym_AT] = ACTIONS(1223), - [aux_sym_clone_expression_token1] = ACTIONS(1225), - [aux_sym_print_intrinsic_token1] = ACTIONS(1225), - [aux_sym_object_creation_expression_token1] = ACTIONS(1225), - [anon_sym_DASH_DASH] = ACTIONS(1223), - [anon_sym_PLUS_PLUS] = ACTIONS(1223), - [aux_sym__list_destructing_token1] = ACTIONS(1225), - [anon_sym_LBRACK] = ACTIONS(1223), - [anon_sym_self] = ACTIONS(1225), - [anon_sym_parent] = ACTIONS(1225), - [aux_sym__argument_name_token1] = ACTIONS(1225), - [aux_sym__argument_name_token2] = ACTIONS(1225), - [anon_sym_POUND_LBRACK] = ACTIONS(1223), - [aux_sym_encapsed_string_token1] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(1223), - [aux_sym_string_token1] = ACTIONS(1223), - [anon_sym_SQUOTE] = ACTIONS(1223), - [anon_sym_LT_LT_LT] = ACTIONS(1223), - [anon_sym_BQUOTE] = ACTIONS(1223), - [anon_sym_DOLLAR] = ACTIONS(1223), - [aux_sym_yield_expression_token1] = ACTIONS(1225), - [aux_sym_include_expression_token1] = ACTIONS(1225), - [aux_sym_include_once_expression_token1] = ACTIONS(1225), - [aux_sym_require_expression_token1] = ACTIONS(1225), - [aux_sym_require_once_expression_token1] = ACTIONS(1225), + [ts_builtin_sym_end] = ACTIONS(1304), + [sym_name] = ACTIONS(1306), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1304), + [aux_sym_function_static_declaration_token1] = ACTIONS(1306), + [aux_sym_global_declaration_token1] = ACTIONS(1306), + [aux_sym_namespace_definition_token1] = ACTIONS(1306), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1306), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1306), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1306), + [anon_sym_BSLASH] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [aux_sym_trait_declaration_token1] = ACTIONS(1306), + [aux_sym_interface_declaration_token1] = ACTIONS(1306), + [aux_sym_enum_declaration_token1] = ACTIONS(1306), + [aux_sym_enum_case_token1] = ACTIONS(1306), + [aux_sym_class_declaration_token1] = ACTIONS(1306), + [aux_sym_final_modifier_token1] = ACTIONS(1306), + [aux_sym_abstract_modifier_token1] = ACTIONS(1306), + [aux_sym_readonly_modifier_token1] = ACTIONS(1306), + [sym_var_modifier] = ACTIONS(1306), + [aux_sym_visibility_modifier_token1] = ACTIONS(1306), + [aux_sym_visibility_modifier_token2] = ACTIONS(1306), + [aux_sym_visibility_modifier_token3] = ACTIONS(1306), + [aux_sym__arrow_function_header_token1] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1304), + [aux_sym_cast_type_token1] = ACTIONS(1306), + [aux_sym_echo_statement_token1] = ACTIONS(1306), + [aux_sym_exit_statement_token1] = ACTIONS(1306), + [anon_sym_unset] = ACTIONS(1306), + [aux_sym_declare_statement_token1] = ACTIONS(1306), + [aux_sym_declare_statement_token2] = ACTIONS(1306), + [sym_float] = ACTIONS(1306), + [aux_sym_try_statement_token1] = ACTIONS(1306), + [aux_sym_goto_statement_token1] = ACTIONS(1306), + [aux_sym_continue_statement_token1] = ACTIONS(1306), + [aux_sym_break_statement_token1] = ACTIONS(1306), + [sym_integer] = ACTIONS(1306), + [aux_sym_return_statement_token1] = ACTIONS(1306), + [aux_sym_throw_expression_token1] = ACTIONS(1306), + [aux_sym_while_statement_token1] = ACTIONS(1306), + [aux_sym_while_statement_token2] = ACTIONS(1306), + [aux_sym_do_statement_token1] = ACTIONS(1306), + [aux_sym_for_statement_token1] = ACTIONS(1306), + [aux_sym_for_statement_token2] = ACTIONS(1306), + [aux_sym_foreach_statement_token1] = ACTIONS(1306), + [aux_sym_foreach_statement_token2] = ACTIONS(1306), + [aux_sym_if_statement_token1] = ACTIONS(1306), + [aux_sym_if_statement_token2] = ACTIONS(1306), + [aux_sym_else_if_clause_token1] = ACTIONS(1306), + [aux_sym_else_clause_token1] = ACTIONS(1306), + [aux_sym_match_expression_token1] = ACTIONS(1306), + [aux_sym_match_default_expression_token1] = ACTIONS(1306), + [aux_sym_switch_statement_token1] = ACTIONS(1306), + [aux_sym_switch_block_token1] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_AT] = ACTIONS(1304), + [aux_sym_clone_expression_token1] = ACTIONS(1306), + [aux_sym_print_intrinsic_token1] = ACTIONS(1306), + [aux_sym_object_creation_expression_token1] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [aux_sym__list_destructing_token1] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1304), + [anon_sym_self] = ACTIONS(1306), + [anon_sym_parent] = ACTIONS(1306), + [aux_sym__argument_name_token1] = ACTIONS(1306), + [aux_sym__argument_name_token2] = ACTIONS(1306), + [anon_sym_POUND_LBRACK] = ACTIONS(1304), + [aux_sym_encapsed_string_token1] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [aux_sym_string_token1] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_LT_LT_LT] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1304), + [aux_sym_yield_expression_token1] = ACTIONS(1306), + [aux_sym_include_expression_token1] = ACTIONS(1306), + [aux_sym_include_once_expression_token1] = ACTIONS(1306), + [aux_sym_require_expression_token1] = ACTIONS(1306), + [aux_sym_require_once_expression_token1] = ACTIONS(1306), [sym_comment] = ACTIONS(5), }, [503] = { [sym_text_interpolation] = STATE(503), - [ts_builtin_sym_end] = ACTIONS(1327), - [sym_name] = ACTIONS(1329), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1327), - [aux_sym_function_static_declaration_token1] = ACTIONS(1329), - [aux_sym_global_declaration_token1] = ACTIONS(1329), - [aux_sym_namespace_definition_token1] = ACTIONS(1329), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1329), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1329), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1329), - [anon_sym_BSLASH] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1327), - [aux_sym_trait_declaration_token1] = ACTIONS(1329), - [aux_sym_interface_declaration_token1] = ACTIONS(1329), - [aux_sym_enum_declaration_token1] = ACTIONS(1329), - [aux_sym_enum_case_token1] = ACTIONS(1329), - [aux_sym_class_declaration_token1] = ACTIONS(1329), - [aux_sym_final_modifier_token1] = ACTIONS(1329), - [aux_sym_abstract_modifier_token1] = ACTIONS(1329), - [aux_sym_readonly_modifier_token1] = ACTIONS(1329), - [aux_sym_visibility_modifier_token1] = ACTIONS(1329), - [aux_sym_visibility_modifier_token2] = ACTIONS(1329), - [aux_sym_visibility_modifier_token3] = ACTIONS(1329), - [aux_sym__arrow_function_header_token1] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1327), - [aux_sym_cast_type_token1] = ACTIONS(1329), - [aux_sym_echo_statement_token1] = ACTIONS(1329), - [aux_sym_exit_statement_token1] = ACTIONS(1329), - [anon_sym_unset] = ACTIONS(1329), - [aux_sym_declare_statement_token1] = ACTIONS(1329), - [aux_sym_declare_statement_token2] = ACTIONS(1329), - [sym_float] = ACTIONS(1329), - [aux_sym_try_statement_token1] = ACTIONS(1329), - [aux_sym_goto_statement_token1] = ACTIONS(1329), - [aux_sym_continue_statement_token1] = ACTIONS(1329), - [aux_sym_break_statement_token1] = ACTIONS(1329), - [sym_integer] = ACTIONS(1329), - [aux_sym_return_statement_token1] = ACTIONS(1329), - [aux_sym_throw_expression_token1] = ACTIONS(1329), - [aux_sym_while_statement_token1] = ACTIONS(1329), - [aux_sym_while_statement_token2] = ACTIONS(1329), - [aux_sym_do_statement_token1] = ACTIONS(1329), - [aux_sym_for_statement_token1] = ACTIONS(1329), - [aux_sym_for_statement_token2] = ACTIONS(1329), - [aux_sym_foreach_statement_token1] = ACTIONS(1329), - [aux_sym_foreach_statement_token2] = ACTIONS(1329), - [aux_sym_if_statement_token1] = ACTIONS(1329), - [aux_sym_if_statement_token2] = ACTIONS(1329), - [aux_sym_else_if_clause_token1] = ACTIONS(1329), - [aux_sym_else_clause_token1] = ACTIONS(1329), - [aux_sym_match_expression_token1] = ACTIONS(1329), - [aux_sym_match_default_expression_token1] = ACTIONS(1329), - [aux_sym_switch_statement_token1] = ACTIONS(1329), - [aux_sym_switch_block_token1] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_TILDE] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_AT] = ACTIONS(1327), - [aux_sym_clone_expression_token1] = ACTIONS(1329), - [aux_sym_print_intrinsic_token1] = ACTIONS(1329), - [aux_sym_object_creation_expression_token1] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1327), - [aux_sym__list_destructing_token1] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_self] = ACTIONS(1329), - [anon_sym_parent] = ACTIONS(1329), - [aux_sym__argument_name_token1] = ACTIONS(1329), - [aux_sym__argument_name_token2] = ACTIONS(1329), - [anon_sym_POUND_LBRACK] = ACTIONS(1327), - [aux_sym_encapsed_string_token1] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1327), - [aux_sym_string_token1] = ACTIONS(1327), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_LT_LT_LT] = ACTIONS(1327), - [anon_sym_BQUOTE] = ACTIONS(1327), - [anon_sym_DOLLAR] = ACTIONS(1327), - [aux_sym_yield_expression_token1] = ACTIONS(1329), - [aux_sym_include_expression_token1] = ACTIONS(1329), - [aux_sym_include_once_expression_token1] = ACTIONS(1329), - [aux_sym_require_expression_token1] = ACTIONS(1329), - [aux_sym_require_once_expression_token1] = ACTIONS(1329), + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_name] = ACTIONS(1310), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1308), + [aux_sym_function_static_declaration_token1] = ACTIONS(1310), + [aux_sym_global_declaration_token1] = ACTIONS(1310), + [aux_sym_namespace_definition_token1] = ACTIONS(1310), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1310), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1310), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1310), + [anon_sym_BSLASH] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [aux_sym_trait_declaration_token1] = ACTIONS(1310), + [aux_sym_interface_declaration_token1] = ACTIONS(1310), + [aux_sym_enum_declaration_token1] = ACTIONS(1310), + [aux_sym_enum_case_token1] = ACTIONS(1310), + [aux_sym_class_declaration_token1] = ACTIONS(1310), + [aux_sym_final_modifier_token1] = ACTIONS(1310), + [aux_sym_abstract_modifier_token1] = ACTIONS(1310), + [aux_sym_readonly_modifier_token1] = ACTIONS(1310), + [sym_var_modifier] = ACTIONS(1310), + [aux_sym_visibility_modifier_token1] = ACTIONS(1310), + [aux_sym_visibility_modifier_token2] = ACTIONS(1310), + [aux_sym_visibility_modifier_token3] = ACTIONS(1310), + [aux_sym__arrow_function_header_token1] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1308), + [aux_sym_cast_type_token1] = ACTIONS(1310), + [aux_sym_echo_statement_token1] = ACTIONS(1310), + [aux_sym_exit_statement_token1] = ACTIONS(1310), + [anon_sym_unset] = ACTIONS(1310), + [aux_sym_declare_statement_token1] = ACTIONS(1310), + [aux_sym_declare_statement_token2] = ACTIONS(1310), + [sym_float] = ACTIONS(1310), + [aux_sym_try_statement_token1] = ACTIONS(1310), + [aux_sym_goto_statement_token1] = ACTIONS(1310), + [aux_sym_continue_statement_token1] = ACTIONS(1310), + [aux_sym_break_statement_token1] = ACTIONS(1310), + [sym_integer] = ACTIONS(1310), + [aux_sym_return_statement_token1] = ACTIONS(1310), + [aux_sym_throw_expression_token1] = ACTIONS(1310), + [aux_sym_while_statement_token1] = ACTIONS(1310), + [aux_sym_while_statement_token2] = ACTIONS(1310), + [aux_sym_do_statement_token1] = ACTIONS(1310), + [aux_sym_for_statement_token1] = ACTIONS(1310), + [aux_sym_for_statement_token2] = ACTIONS(1310), + [aux_sym_foreach_statement_token1] = ACTIONS(1310), + [aux_sym_foreach_statement_token2] = ACTIONS(1310), + [aux_sym_if_statement_token1] = ACTIONS(1310), + [aux_sym_if_statement_token2] = ACTIONS(1310), + [aux_sym_else_if_clause_token1] = ACTIONS(1310), + [aux_sym_else_clause_token1] = ACTIONS(1310), + [aux_sym_match_expression_token1] = ACTIONS(1310), + [aux_sym_match_default_expression_token1] = ACTIONS(1310), + [aux_sym_switch_statement_token1] = ACTIONS(1310), + [aux_sym_switch_block_token1] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_AT] = ACTIONS(1308), + [aux_sym_clone_expression_token1] = ACTIONS(1310), + [aux_sym_print_intrinsic_token1] = ACTIONS(1310), + [aux_sym_object_creation_expression_token1] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [aux_sym__list_destructing_token1] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1308), + [anon_sym_self] = ACTIONS(1310), + [anon_sym_parent] = ACTIONS(1310), + [aux_sym__argument_name_token1] = ACTIONS(1310), + [aux_sym__argument_name_token2] = ACTIONS(1310), + [anon_sym_POUND_LBRACK] = ACTIONS(1308), + [aux_sym_encapsed_string_token1] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [aux_sym_string_token1] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_LT_LT_LT] = ACTIONS(1308), + [anon_sym_BQUOTE] = ACTIONS(1308), + [anon_sym_DOLLAR] = ACTIONS(1308), + [aux_sym_yield_expression_token1] = ACTIONS(1310), + [aux_sym_include_expression_token1] = ACTIONS(1310), + [aux_sym_include_once_expression_token1] = ACTIONS(1310), + [aux_sym_require_expression_token1] = ACTIONS(1310), + [aux_sym_require_once_expression_token1] = ACTIONS(1310), [sym_comment] = ACTIONS(5), }, [504] = { [sym_text_interpolation] = STATE(504), - [ts_builtin_sym_end] = ACTIONS(1331), - [sym_name] = ACTIONS(1333), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1331), - [aux_sym_function_static_declaration_token1] = ACTIONS(1333), - [aux_sym_global_declaration_token1] = ACTIONS(1333), - [aux_sym_namespace_definition_token1] = ACTIONS(1333), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1333), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1333), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1333), - [anon_sym_BSLASH] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_RBRACE] = ACTIONS(1331), - [aux_sym_trait_declaration_token1] = ACTIONS(1333), - [aux_sym_interface_declaration_token1] = ACTIONS(1333), - [aux_sym_enum_declaration_token1] = ACTIONS(1333), - [aux_sym_enum_case_token1] = ACTIONS(1333), - [aux_sym_class_declaration_token1] = ACTIONS(1333), - [aux_sym_final_modifier_token1] = ACTIONS(1333), - [aux_sym_abstract_modifier_token1] = ACTIONS(1333), - [aux_sym_readonly_modifier_token1] = ACTIONS(1333), - [aux_sym_visibility_modifier_token1] = ACTIONS(1333), - [aux_sym_visibility_modifier_token2] = ACTIONS(1333), - [aux_sym_visibility_modifier_token3] = ACTIONS(1333), - [aux_sym__arrow_function_header_token1] = ACTIONS(1333), - [anon_sym_LPAREN] = ACTIONS(1331), - [aux_sym_cast_type_token1] = ACTIONS(1333), - [aux_sym_echo_statement_token1] = ACTIONS(1333), - [aux_sym_exit_statement_token1] = ACTIONS(1333), - [anon_sym_unset] = ACTIONS(1333), - [aux_sym_declare_statement_token1] = ACTIONS(1333), - [aux_sym_declare_statement_token2] = ACTIONS(1333), - [sym_float] = ACTIONS(1333), - [aux_sym_try_statement_token1] = ACTIONS(1333), - [aux_sym_goto_statement_token1] = ACTIONS(1333), - [aux_sym_continue_statement_token1] = ACTIONS(1333), - [aux_sym_break_statement_token1] = ACTIONS(1333), - [sym_integer] = ACTIONS(1333), - [aux_sym_return_statement_token1] = ACTIONS(1333), - [aux_sym_throw_expression_token1] = ACTIONS(1333), - [aux_sym_while_statement_token1] = ACTIONS(1333), - [aux_sym_while_statement_token2] = ACTIONS(1333), - [aux_sym_do_statement_token1] = ACTIONS(1333), - [aux_sym_for_statement_token1] = ACTIONS(1333), - [aux_sym_for_statement_token2] = ACTIONS(1333), - [aux_sym_foreach_statement_token1] = ACTIONS(1333), - [aux_sym_foreach_statement_token2] = ACTIONS(1333), - [aux_sym_if_statement_token1] = ACTIONS(1333), - [aux_sym_if_statement_token2] = ACTIONS(1333), - [aux_sym_else_if_clause_token1] = ACTIONS(1333), - [aux_sym_else_clause_token1] = ACTIONS(1333), - [aux_sym_match_expression_token1] = ACTIONS(1333), - [aux_sym_match_default_expression_token1] = ACTIONS(1333), - [aux_sym_switch_statement_token1] = ACTIONS(1333), - [aux_sym_switch_block_token1] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1333), - [anon_sym_DASH] = ACTIONS(1333), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_AT] = ACTIONS(1331), - [aux_sym_clone_expression_token1] = ACTIONS(1333), - [aux_sym_print_intrinsic_token1] = ACTIONS(1333), - [aux_sym_object_creation_expression_token1] = ACTIONS(1333), - [anon_sym_DASH_DASH] = ACTIONS(1331), - [anon_sym_PLUS_PLUS] = ACTIONS(1331), - [aux_sym__list_destructing_token1] = ACTIONS(1333), - [anon_sym_LBRACK] = ACTIONS(1331), - [anon_sym_self] = ACTIONS(1333), - [anon_sym_parent] = ACTIONS(1333), - [aux_sym__argument_name_token1] = ACTIONS(1333), - [aux_sym__argument_name_token2] = ACTIONS(1333), - [anon_sym_POUND_LBRACK] = ACTIONS(1331), - [aux_sym_encapsed_string_token1] = ACTIONS(1331), - [anon_sym_DQUOTE] = ACTIONS(1331), - [aux_sym_string_token1] = ACTIONS(1331), - [anon_sym_SQUOTE] = ACTIONS(1331), - [anon_sym_LT_LT_LT] = ACTIONS(1331), - [anon_sym_BQUOTE] = ACTIONS(1331), - [anon_sym_DOLLAR] = ACTIONS(1331), - [aux_sym_yield_expression_token1] = ACTIONS(1333), - [aux_sym_include_expression_token1] = ACTIONS(1333), - [aux_sym_include_once_expression_token1] = ACTIONS(1333), - [aux_sym_require_expression_token1] = ACTIONS(1333), - [aux_sym_require_once_expression_token1] = ACTIONS(1333), + [ts_builtin_sym_end] = ACTIONS(1296), + [sym_name] = ACTIONS(1298), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1296), + [aux_sym_function_static_declaration_token1] = ACTIONS(1298), + [aux_sym_global_declaration_token1] = ACTIONS(1298), + [aux_sym_namespace_definition_token1] = ACTIONS(1298), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1298), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1298), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1298), + [anon_sym_BSLASH] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(1296), + [aux_sym_trait_declaration_token1] = ACTIONS(1298), + [aux_sym_interface_declaration_token1] = ACTIONS(1298), + [aux_sym_enum_declaration_token1] = ACTIONS(1298), + [aux_sym_enum_case_token1] = ACTIONS(1298), + [aux_sym_class_declaration_token1] = ACTIONS(1298), + [aux_sym_final_modifier_token1] = ACTIONS(1298), + [aux_sym_abstract_modifier_token1] = ACTIONS(1298), + [aux_sym_readonly_modifier_token1] = ACTIONS(1298), + [sym_var_modifier] = ACTIONS(1298), + [aux_sym_visibility_modifier_token1] = ACTIONS(1298), + [aux_sym_visibility_modifier_token2] = ACTIONS(1298), + [aux_sym_visibility_modifier_token3] = ACTIONS(1298), + [aux_sym__arrow_function_header_token1] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1296), + [aux_sym_cast_type_token1] = ACTIONS(1298), + [aux_sym_echo_statement_token1] = ACTIONS(1298), + [aux_sym_exit_statement_token1] = ACTIONS(1298), + [anon_sym_unset] = ACTIONS(1298), + [aux_sym_declare_statement_token1] = ACTIONS(1298), + [aux_sym_declare_statement_token2] = ACTIONS(1298), + [sym_float] = ACTIONS(1298), + [aux_sym_try_statement_token1] = ACTIONS(1298), + [aux_sym_goto_statement_token1] = ACTIONS(1298), + [aux_sym_continue_statement_token1] = ACTIONS(1298), + [aux_sym_break_statement_token1] = ACTIONS(1298), + [sym_integer] = ACTIONS(1298), + [aux_sym_return_statement_token1] = ACTIONS(1298), + [aux_sym_throw_expression_token1] = ACTIONS(1298), + [aux_sym_while_statement_token1] = ACTIONS(1298), + [aux_sym_while_statement_token2] = ACTIONS(1298), + [aux_sym_do_statement_token1] = ACTIONS(1298), + [aux_sym_for_statement_token1] = ACTIONS(1298), + [aux_sym_for_statement_token2] = ACTIONS(1298), + [aux_sym_foreach_statement_token1] = ACTIONS(1298), + [aux_sym_foreach_statement_token2] = ACTIONS(1298), + [aux_sym_if_statement_token1] = ACTIONS(1298), + [aux_sym_if_statement_token2] = ACTIONS(1298), + [aux_sym_else_if_clause_token1] = ACTIONS(1298), + [aux_sym_else_clause_token1] = ACTIONS(1298), + [aux_sym_match_expression_token1] = ACTIONS(1298), + [aux_sym_match_default_expression_token1] = ACTIONS(1298), + [aux_sym_switch_statement_token1] = ACTIONS(1298), + [aux_sym_switch_block_token1] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1296), + [anon_sym_AT] = ACTIONS(1296), + [aux_sym_clone_expression_token1] = ACTIONS(1298), + [aux_sym_print_intrinsic_token1] = ACTIONS(1298), + [aux_sym_object_creation_expression_token1] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [aux_sym__list_destructing_token1] = ACTIONS(1298), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_self] = ACTIONS(1298), + [anon_sym_parent] = ACTIONS(1298), + [aux_sym__argument_name_token1] = ACTIONS(1298), + [aux_sym__argument_name_token2] = ACTIONS(1298), + [anon_sym_POUND_LBRACK] = ACTIONS(1296), + [aux_sym_encapsed_string_token1] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [aux_sym_string_token1] = ACTIONS(1296), + [anon_sym_SQUOTE] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_BQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1296), + [aux_sym_yield_expression_token1] = ACTIONS(1298), + [aux_sym_include_expression_token1] = ACTIONS(1298), + [aux_sym_include_once_expression_token1] = ACTIONS(1298), + [aux_sym_require_expression_token1] = ACTIONS(1298), + [aux_sym_require_once_expression_token1] = ACTIONS(1298), [sym_comment] = ACTIONS(5), }, [505] = { [sym_text_interpolation] = STATE(505), - [ts_builtin_sym_end] = ACTIONS(1323), - [sym_name] = ACTIONS(1325), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1323), - [aux_sym_function_static_declaration_token1] = ACTIONS(1325), - [aux_sym_global_declaration_token1] = ACTIONS(1325), - [aux_sym_namespace_definition_token1] = ACTIONS(1325), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1325), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1325), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1325), - [anon_sym_BSLASH] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_RBRACE] = ACTIONS(1323), - [aux_sym_trait_declaration_token1] = ACTIONS(1325), - [aux_sym_interface_declaration_token1] = ACTIONS(1325), - [aux_sym_enum_declaration_token1] = ACTIONS(1325), - [aux_sym_enum_case_token1] = ACTIONS(1325), - [aux_sym_class_declaration_token1] = ACTIONS(1325), - [aux_sym_final_modifier_token1] = ACTIONS(1325), - [aux_sym_abstract_modifier_token1] = ACTIONS(1325), - [aux_sym_readonly_modifier_token1] = ACTIONS(1325), - [aux_sym_visibility_modifier_token1] = ACTIONS(1325), - [aux_sym_visibility_modifier_token2] = ACTIONS(1325), - [aux_sym_visibility_modifier_token3] = ACTIONS(1325), - [aux_sym__arrow_function_header_token1] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1323), - [aux_sym_cast_type_token1] = ACTIONS(1325), - [aux_sym_echo_statement_token1] = ACTIONS(1325), - [aux_sym_exit_statement_token1] = ACTIONS(1325), - [anon_sym_unset] = ACTIONS(1325), - [aux_sym_declare_statement_token1] = ACTIONS(1325), - [aux_sym_declare_statement_token2] = ACTIONS(1325), - [sym_float] = ACTIONS(1325), - [aux_sym_try_statement_token1] = ACTIONS(1325), - [aux_sym_goto_statement_token1] = ACTIONS(1325), - [aux_sym_continue_statement_token1] = ACTIONS(1325), - [aux_sym_break_statement_token1] = ACTIONS(1325), - [sym_integer] = ACTIONS(1325), - [aux_sym_return_statement_token1] = ACTIONS(1325), - [aux_sym_throw_expression_token1] = ACTIONS(1325), - [aux_sym_while_statement_token1] = ACTIONS(1325), - [aux_sym_while_statement_token2] = ACTIONS(1325), - [aux_sym_do_statement_token1] = ACTIONS(1325), - [aux_sym_for_statement_token1] = ACTIONS(1325), - [aux_sym_for_statement_token2] = ACTIONS(1325), - [aux_sym_foreach_statement_token1] = ACTIONS(1325), - [aux_sym_foreach_statement_token2] = ACTIONS(1325), - [aux_sym_if_statement_token1] = ACTIONS(1325), - [aux_sym_if_statement_token2] = ACTIONS(1325), - [aux_sym_else_if_clause_token1] = ACTIONS(1325), - [aux_sym_else_clause_token1] = ACTIONS(1325), - [aux_sym_match_expression_token1] = ACTIONS(1325), - [aux_sym_match_default_expression_token1] = ACTIONS(1325), - [aux_sym_switch_statement_token1] = ACTIONS(1325), - [aux_sym_switch_block_token1] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_AT] = ACTIONS(1323), - [aux_sym_clone_expression_token1] = ACTIONS(1325), - [aux_sym_print_intrinsic_token1] = ACTIONS(1325), - [aux_sym_object_creation_expression_token1] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [aux_sym__list_destructing_token1] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1323), - [anon_sym_self] = ACTIONS(1325), - [anon_sym_parent] = ACTIONS(1325), - [aux_sym__argument_name_token1] = ACTIONS(1325), - [aux_sym__argument_name_token2] = ACTIONS(1325), - [anon_sym_POUND_LBRACK] = ACTIONS(1323), - [aux_sym_encapsed_string_token1] = ACTIONS(1323), - [anon_sym_DQUOTE] = ACTIONS(1323), - [aux_sym_string_token1] = ACTIONS(1323), - [anon_sym_SQUOTE] = ACTIONS(1323), - [anon_sym_LT_LT_LT] = ACTIONS(1323), - [anon_sym_BQUOTE] = ACTIONS(1323), - [anon_sym_DOLLAR] = ACTIONS(1323), - [aux_sym_yield_expression_token1] = ACTIONS(1325), - [aux_sym_include_expression_token1] = ACTIONS(1325), - [aux_sym_include_once_expression_token1] = ACTIONS(1325), - [aux_sym_require_expression_token1] = ACTIONS(1325), - [aux_sym_require_once_expression_token1] = ACTIONS(1325), + [ts_builtin_sym_end] = ACTIONS(1312), + [sym_name] = ACTIONS(1314), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1312), + [aux_sym_function_static_declaration_token1] = ACTIONS(1314), + [aux_sym_global_declaration_token1] = ACTIONS(1314), + [aux_sym_namespace_definition_token1] = ACTIONS(1314), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1314), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1314), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1314), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_RBRACE] = ACTIONS(1312), + [aux_sym_trait_declaration_token1] = ACTIONS(1314), + [aux_sym_interface_declaration_token1] = ACTIONS(1314), + [aux_sym_enum_declaration_token1] = ACTIONS(1314), + [aux_sym_enum_case_token1] = ACTIONS(1314), + [aux_sym_class_declaration_token1] = ACTIONS(1314), + [aux_sym_final_modifier_token1] = ACTIONS(1314), + [aux_sym_abstract_modifier_token1] = ACTIONS(1314), + [aux_sym_readonly_modifier_token1] = ACTIONS(1314), + [sym_var_modifier] = ACTIONS(1314), + [aux_sym_visibility_modifier_token1] = ACTIONS(1314), + [aux_sym_visibility_modifier_token2] = ACTIONS(1314), + [aux_sym_visibility_modifier_token3] = ACTIONS(1314), + [aux_sym__arrow_function_header_token1] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1312), + [aux_sym_cast_type_token1] = ACTIONS(1314), + [aux_sym_echo_statement_token1] = ACTIONS(1314), + [aux_sym_exit_statement_token1] = ACTIONS(1314), + [anon_sym_unset] = ACTIONS(1314), + [aux_sym_declare_statement_token1] = ACTIONS(1314), + [aux_sym_declare_statement_token2] = ACTIONS(1314), + [sym_float] = ACTIONS(1314), + [aux_sym_try_statement_token1] = ACTIONS(1314), + [aux_sym_goto_statement_token1] = ACTIONS(1314), + [aux_sym_continue_statement_token1] = ACTIONS(1314), + [aux_sym_break_statement_token1] = ACTIONS(1314), + [sym_integer] = ACTIONS(1314), + [aux_sym_return_statement_token1] = ACTIONS(1314), + [aux_sym_throw_expression_token1] = ACTIONS(1314), + [aux_sym_while_statement_token1] = ACTIONS(1314), + [aux_sym_while_statement_token2] = ACTIONS(1314), + [aux_sym_do_statement_token1] = ACTIONS(1314), + [aux_sym_for_statement_token1] = ACTIONS(1314), + [aux_sym_for_statement_token2] = ACTIONS(1314), + [aux_sym_foreach_statement_token1] = ACTIONS(1314), + [aux_sym_foreach_statement_token2] = ACTIONS(1314), + [aux_sym_if_statement_token1] = ACTIONS(1314), + [aux_sym_if_statement_token2] = ACTIONS(1314), + [aux_sym_else_if_clause_token1] = ACTIONS(1314), + [aux_sym_else_clause_token1] = ACTIONS(1314), + [aux_sym_match_expression_token1] = ACTIONS(1314), + [aux_sym_match_default_expression_token1] = ACTIONS(1314), + [aux_sym_switch_statement_token1] = ACTIONS(1314), + [aux_sym_switch_block_token1] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [aux_sym_clone_expression_token1] = ACTIONS(1314), + [aux_sym_print_intrinsic_token1] = ACTIONS(1314), + [aux_sym_object_creation_expression_token1] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [aux_sym__list_destructing_token1] = ACTIONS(1314), + [anon_sym_LBRACK] = ACTIONS(1312), + [anon_sym_self] = ACTIONS(1314), + [anon_sym_parent] = ACTIONS(1314), + [aux_sym__argument_name_token1] = ACTIONS(1314), + [aux_sym__argument_name_token2] = ACTIONS(1314), + [anon_sym_POUND_LBRACK] = ACTIONS(1312), + [aux_sym_encapsed_string_token1] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [aux_sym_string_token1] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_LT_LT_LT] = ACTIONS(1312), + [anon_sym_BQUOTE] = ACTIONS(1312), + [anon_sym_DOLLAR] = ACTIONS(1312), + [aux_sym_yield_expression_token1] = ACTIONS(1314), + [aux_sym_include_expression_token1] = ACTIONS(1314), + [aux_sym_include_once_expression_token1] = ACTIONS(1314), + [aux_sym_require_expression_token1] = ACTIONS(1314), + [aux_sym_require_once_expression_token1] = ACTIONS(1314), [sym_comment] = ACTIONS(5), }, [506] = { [sym_text_interpolation] = STATE(506), - [ts_builtin_sym_end] = ACTIONS(1335), - [sym_name] = ACTIONS(1337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1335), - [aux_sym_function_static_declaration_token1] = ACTIONS(1337), - [aux_sym_global_declaration_token1] = ACTIONS(1337), - [aux_sym_namespace_definition_token1] = ACTIONS(1337), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1337), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1337), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1337), - [anon_sym_BSLASH] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), - [aux_sym_trait_declaration_token1] = ACTIONS(1337), - [aux_sym_interface_declaration_token1] = ACTIONS(1337), - [aux_sym_enum_declaration_token1] = ACTIONS(1337), - [aux_sym_enum_case_token1] = ACTIONS(1337), - [aux_sym_class_declaration_token1] = ACTIONS(1337), - [aux_sym_final_modifier_token1] = ACTIONS(1337), - [aux_sym_abstract_modifier_token1] = ACTIONS(1337), - [aux_sym_readonly_modifier_token1] = ACTIONS(1337), - [aux_sym_visibility_modifier_token1] = ACTIONS(1337), - [aux_sym_visibility_modifier_token2] = ACTIONS(1337), - [aux_sym_visibility_modifier_token3] = ACTIONS(1337), - [aux_sym__arrow_function_header_token1] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1335), - [aux_sym_cast_type_token1] = ACTIONS(1337), - [aux_sym_echo_statement_token1] = ACTIONS(1337), - [aux_sym_exit_statement_token1] = ACTIONS(1337), - [anon_sym_unset] = ACTIONS(1337), - [aux_sym_declare_statement_token1] = ACTIONS(1337), - [aux_sym_declare_statement_token2] = ACTIONS(1337), - [sym_float] = ACTIONS(1337), - [aux_sym_try_statement_token1] = ACTIONS(1337), - [aux_sym_goto_statement_token1] = ACTIONS(1337), - [aux_sym_continue_statement_token1] = ACTIONS(1337), - [aux_sym_break_statement_token1] = ACTIONS(1337), - [sym_integer] = ACTIONS(1337), - [aux_sym_return_statement_token1] = ACTIONS(1337), - [aux_sym_throw_expression_token1] = ACTIONS(1337), - [aux_sym_while_statement_token1] = ACTIONS(1337), - [aux_sym_while_statement_token2] = ACTIONS(1337), - [aux_sym_do_statement_token1] = ACTIONS(1337), - [aux_sym_for_statement_token1] = ACTIONS(1337), - [aux_sym_for_statement_token2] = ACTIONS(1337), - [aux_sym_foreach_statement_token1] = ACTIONS(1337), - [aux_sym_foreach_statement_token2] = ACTIONS(1337), - [aux_sym_if_statement_token1] = ACTIONS(1337), - [aux_sym_if_statement_token2] = ACTIONS(1337), - [aux_sym_else_if_clause_token1] = ACTIONS(1337), - [aux_sym_else_clause_token1] = ACTIONS(1337), - [aux_sym_match_expression_token1] = ACTIONS(1337), - [aux_sym_match_default_expression_token1] = ACTIONS(1337), - [aux_sym_switch_statement_token1] = ACTIONS(1337), - [aux_sym_switch_block_token1] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1335), - [aux_sym_clone_expression_token1] = ACTIONS(1337), - [aux_sym_print_intrinsic_token1] = ACTIONS(1337), - [aux_sym_object_creation_expression_token1] = ACTIONS(1337), - [anon_sym_DASH_DASH] = ACTIONS(1335), - [anon_sym_PLUS_PLUS] = ACTIONS(1335), - [aux_sym__list_destructing_token1] = ACTIONS(1337), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_self] = ACTIONS(1337), - [anon_sym_parent] = ACTIONS(1337), - [aux_sym__argument_name_token1] = ACTIONS(1337), - [aux_sym__argument_name_token2] = ACTIONS(1337), - [anon_sym_POUND_LBRACK] = ACTIONS(1335), - [aux_sym_encapsed_string_token1] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [aux_sym_string_token1] = ACTIONS(1335), - [anon_sym_SQUOTE] = ACTIONS(1335), - [anon_sym_LT_LT_LT] = ACTIONS(1335), - [anon_sym_BQUOTE] = ACTIONS(1335), - [anon_sym_DOLLAR] = ACTIONS(1335), - [aux_sym_yield_expression_token1] = ACTIONS(1337), - [aux_sym_include_expression_token1] = ACTIONS(1337), - [aux_sym_include_once_expression_token1] = ACTIONS(1337), - [aux_sym_require_expression_token1] = ACTIONS(1337), - [aux_sym_require_once_expression_token1] = ACTIONS(1337), + [ts_builtin_sym_end] = ACTIONS(1316), + [sym_name] = ACTIONS(1318), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1316), + [aux_sym_function_static_declaration_token1] = ACTIONS(1318), + [aux_sym_global_declaration_token1] = ACTIONS(1318), + [aux_sym_namespace_definition_token1] = ACTIONS(1318), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1318), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1318), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1318), + [anon_sym_BSLASH] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_RBRACE] = ACTIONS(1316), + [aux_sym_trait_declaration_token1] = ACTIONS(1318), + [aux_sym_interface_declaration_token1] = ACTIONS(1318), + [aux_sym_enum_declaration_token1] = ACTIONS(1318), + [aux_sym_enum_case_token1] = ACTIONS(1318), + [aux_sym_class_declaration_token1] = ACTIONS(1318), + [aux_sym_final_modifier_token1] = ACTIONS(1318), + [aux_sym_abstract_modifier_token1] = ACTIONS(1318), + [aux_sym_readonly_modifier_token1] = ACTIONS(1318), + [sym_var_modifier] = ACTIONS(1318), + [aux_sym_visibility_modifier_token1] = ACTIONS(1318), + [aux_sym_visibility_modifier_token2] = ACTIONS(1318), + [aux_sym_visibility_modifier_token3] = ACTIONS(1318), + [aux_sym__arrow_function_header_token1] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1316), + [aux_sym_cast_type_token1] = ACTIONS(1318), + [aux_sym_echo_statement_token1] = ACTIONS(1318), + [aux_sym_exit_statement_token1] = ACTIONS(1318), + [anon_sym_unset] = ACTIONS(1318), + [aux_sym_declare_statement_token1] = ACTIONS(1318), + [aux_sym_declare_statement_token2] = ACTIONS(1318), + [sym_float] = ACTIONS(1318), + [aux_sym_try_statement_token1] = ACTIONS(1318), + [aux_sym_goto_statement_token1] = ACTIONS(1318), + [aux_sym_continue_statement_token1] = ACTIONS(1318), + [aux_sym_break_statement_token1] = ACTIONS(1318), + [sym_integer] = ACTIONS(1318), + [aux_sym_return_statement_token1] = ACTIONS(1318), + [aux_sym_throw_expression_token1] = ACTIONS(1318), + [aux_sym_while_statement_token1] = ACTIONS(1318), + [aux_sym_while_statement_token2] = ACTIONS(1318), + [aux_sym_do_statement_token1] = ACTIONS(1318), + [aux_sym_for_statement_token1] = ACTIONS(1318), + [aux_sym_for_statement_token2] = ACTIONS(1318), + [aux_sym_foreach_statement_token1] = ACTIONS(1318), + [aux_sym_foreach_statement_token2] = ACTIONS(1318), + [aux_sym_if_statement_token1] = ACTIONS(1318), + [aux_sym_if_statement_token2] = ACTIONS(1318), + [aux_sym_else_if_clause_token1] = ACTIONS(1318), + [aux_sym_else_clause_token1] = ACTIONS(1318), + [aux_sym_match_expression_token1] = ACTIONS(1318), + [aux_sym_match_default_expression_token1] = ACTIONS(1318), + [aux_sym_switch_statement_token1] = ACTIONS(1318), + [aux_sym_switch_block_token1] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_AT] = ACTIONS(1316), + [aux_sym_clone_expression_token1] = ACTIONS(1318), + [aux_sym_print_intrinsic_token1] = ACTIONS(1318), + [aux_sym_object_creation_expression_token1] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [aux_sym__list_destructing_token1] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_self] = ACTIONS(1318), + [anon_sym_parent] = ACTIONS(1318), + [aux_sym__argument_name_token1] = ACTIONS(1318), + [aux_sym__argument_name_token2] = ACTIONS(1318), + [anon_sym_POUND_LBRACK] = ACTIONS(1316), + [aux_sym_encapsed_string_token1] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [aux_sym_string_token1] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_LT_LT_LT] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(1316), + [anon_sym_DOLLAR] = ACTIONS(1316), + [aux_sym_yield_expression_token1] = ACTIONS(1318), + [aux_sym_include_expression_token1] = ACTIONS(1318), + [aux_sym_include_once_expression_token1] = ACTIONS(1318), + [aux_sym_require_expression_token1] = ACTIONS(1318), + [aux_sym_require_once_expression_token1] = ACTIONS(1318), [sym_comment] = ACTIONS(5), }, [507] = { [sym_text_interpolation] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1339), - [sym_name] = ACTIONS(1341), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1339), - [aux_sym_function_static_declaration_token1] = ACTIONS(1341), - [aux_sym_global_declaration_token1] = ACTIONS(1341), - [aux_sym_namespace_definition_token1] = ACTIONS(1341), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1341), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1341), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1341), - [anon_sym_BSLASH] = ACTIONS(1339), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_RBRACE] = ACTIONS(1339), - [aux_sym_trait_declaration_token1] = ACTIONS(1341), - [aux_sym_interface_declaration_token1] = ACTIONS(1341), - [aux_sym_enum_declaration_token1] = ACTIONS(1341), - [aux_sym_enum_case_token1] = ACTIONS(1341), - [aux_sym_class_declaration_token1] = ACTIONS(1341), - [aux_sym_final_modifier_token1] = ACTIONS(1341), - [aux_sym_abstract_modifier_token1] = ACTIONS(1341), - [aux_sym_readonly_modifier_token1] = ACTIONS(1341), - [aux_sym_visibility_modifier_token1] = ACTIONS(1341), - [aux_sym_visibility_modifier_token2] = ACTIONS(1341), - [aux_sym_visibility_modifier_token3] = ACTIONS(1341), - [aux_sym__arrow_function_header_token1] = ACTIONS(1341), - [anon_sym_LPAREN] = ACTIONS(1339), - [aux_sym_cast_type_token1] = ACTIONS(1341), - [aux_sym_echo_statement_token1] = ACTIONS(1341), - [aux_sym_exit_statement_token1] = ACTIONS(1341), - [anon_sym_unset] = ACTIONS(1341), - [aux_sym_declare_statement_token1] = ACTIONS(1341), - [aux_sym_declare_statement_token2] = ACTIONS(1341), - [sym_float] = ACTIONS(1341), - [aux_sym_try_statement_token1] = ACTIONS(1341), - [aux_sym_goto_statement_token1] = ACTIONS(1341), - [aux_sym_continue_statement_token1] = ACTIONS(1341), - [aux_sym_break_statement_token1] = ACTIONS(1341), - [sym_integer] = ACTIONS(1341), - [aux_sym_return_statement_token1] = ACTIONS(1341), - [aux_sym_throw_expression_token1] = ACTIONS(1341), - [aux_sym_while_statement_token1] = ACTIONS(1341), - [aux_sym_while_statement_token2] = ACTIONS(1341), - [aux_sym_do_statement_token1] = ACTIONS(1341), - [aux_sym_for_statement_token1] = ACTIONS(1341), - [aux_sym_for_statement_token2] = ACTIONS(1341), - [aux_sym_foreach_statement_token1] = ACTIONS(1341), - [aux_sym_foreach_statement_token2] = ACTIONS(1341), - [aux_sym_if_statement_token1] = ACTIONS(1341), - [aux_sym_if_statement_token2] = ACTIONS(1341), - [aux_sym_else_if_clause_token1] = ACTIONS(1341), - [aux_sym_else_clause_token1] = ACTIONS(1341), - [aux_sym_match_expression_token1] = ACTIONS(1341), - [aux_sym_match_default_expression_token1] = ACTIONS(1341), - [aux_sym_switch_statement_token1] = ACTIONS(1341), - [aux_sym_switch_block_token1] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1341), - [anon_sym_DASH] = ACTIONS(1341), - [anon_sym_TILDE] = ACTIONS(1339), - [anon_sym_BANG] = ACTIONS(1339), - [anon_sym_AT] = ACTIONS(1339), - [aux_sym_clone_expression_token1] = ACTIONS(1341), - [aux_sym_print_intrinsic_token1] = ACTIONS(1341), - [aux_sym_object_creation_expression_token1] = ACTIONS(1341), - [anon_sym_DASH_DASH] = ACTIONS(1339), - [anon_sym_PLUS_PLUS] = ACTIONS(1339), - [aux_sym__list_destructing_token1] = ACTIONS(1341), - [anon_sym_LBRACK] = ACTIONS(1339), - [anon_sym_self] = ACTIONS(1341), - [anon_sym_parent] = ACTIONS(1341), - [aux_sym__argument_name_token1] = ACTIONS(1341), - [aux_sym__argument_name_token2] = ACTIONS(1341), - [anon_sym_POUND_LBRACK] = ACTIONS(1339), - [aux_sym_encapsed_string_token1] = ACTIONS(1339), - [anon_sym_DQUOTE] = ACTIONS(1339), - [aux_sym_string_token1] = ACTIONS(1339), - [anon_sym_SQUOTE] = ACTIONS(1339), - [anon_sym_LT_LT_LT] = ACTIONS(1339), - [anon_sym_BQUOTE] = ACTIONS(1339), - [anon_sym_DOLLAR] = ACTIONS(1339), - [aux_sym_yield_expression_token1] = ACTIONS(1341), - [aux_sym_include_expression_token1] = ACTIONS(1341), - [aux_sym_include_once_expression_token1] = ACTIONS(1341), - [aux_sym_require_expression_token1] = ACTIONS(1341), - [aux_sym_require_once_expression_token1] = ACTIONS(1341), + [ts_builtin_sym_end] = ACTIONS(1320), + [sym_name] = ACTIONS(1322), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1320), + [aux_sym_function_static_declaration_token1] = ACTIONS(1322), + [aux_sym_global_declaration_token1] = ACTIONS(1322), + [aux_sym_namespace_definition_token1] = ACTIONS(1322), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1322), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1322), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1320), + [aux_sym_trait_declaration_token1] = ACTIONS(1322), + [aux_sym_interface_declaration_token1] = ACTIONS(1322), + [aux_sym_enum_declaration_token1] = ACTIONS(1322), + [aux_sym_enum_case_token1] = ACTIONS(1322), + [aux_sym_class_declaration_token1] = ACTIONS(1322), + [aux_sym_final_modifier_token1] = ACTIONS(1322), + [aux_sym_abstract_modifier_token1] = ACTIONS(1322), + [aux_sym_readonly_modifier_token1] = ACTIONS(1322), + [sym_var_modifier] = ACTIONS(1322), + [aux_sym_visibility_modifier_token1] = ACTIONS(1322), + [aux_sym_visibility_modifier_token2] = ACTIONS(1322), + [aux_sym_visibility_modifier_token3] = ACTIONS(1322), + [aux_sym__arrow_function_header_token1] = ACTIONS(1322), + [anon_sym_LPAREN] = ACTIONS(1320), + [aux_sym_cast_type_token1] = ACTIONS(1322), + [aux_sym_echo_statement_token1] = ACTIONS(1322), + [aux_sym_exit_statement_token1] = ACTIONS(1322), + [anon_sym_unset] = ACTIONS(1322), + [aux_sym_declare_statement_token1] = ACTIONS(1322), + [aux_sym_declare_statement_token2] = ACTIONS(1322), + [sym_float] = ACTIONS(1322), + [aux_sym_try_statement_token1] = ACTIONS(1322), + [aux_sym_goto_statement_token1] = ACTIONS(1322), + [aux_sym_continue_statement_token1] = ACTIONS(1322), + [aux_sym_break_statement_token1] = ACTIONS(1322), + [sym_integer] = ACTIONS(1322), + [aux_sym_return_statement_token1] = ACTIONS(1322), + [aux_sym_throw_expression_token1] = ACTIONS(1322), + [aux_sym_while_statement_token1] = ACTIONS(1322), + [aux_sym_while_statement_token2] = ACTIONS(1322), + [aux_sym_do_statement_token1] = ACTIONS(1322), + [aux_sym_for_statement_token1] = ACTIONS(1322), + [aux_sym_for_statement_token2] = ACTIONS(1322), + [aux_sym_foreach_statement_token1] = ACTIONS(1322), + [aux_sym_foreach_statement_token2] = ACTIONS(1322), + [aux_sym_if_statement_token1] = ACTIONS(1322), + [aux_sym_if_statement_token2] = ACTIONS(1322), + [aux_sym_else_if_clause_token1] = ACTIONS(1322), + [aux_sym_else_clause_token1] = ACTIONS(1322), + [aux_sym_match_expression_token1] = ACTIONS(1322), + [aux_sym_match_default_expression_token1] = ACTIONS(1322), + [aux_sym_switch_statement_token1] = ACTIONS(1322), + [aux_sym_switch_block_token1] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_AT] = ACTIONS(1320), + [aux_sym_clone_expression_token1] = ACTIONS(1322), + [aux_sym_print_intrinsic_token1] = ACTIONS(1322), + [aux_sym_object_creation_expression_token1] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [aux_sym__list_destructing_token1] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_self] = ACTIONS(1322), + [anon_sym_parent] = ACTIONS(1322), + [aux_sym__argument_name_token1] = ACTIONS(1322), + [aux_sym__argument_name_token2] = ACTIONS(1322), + [anon_sym_POUND_LBRACK] = ACTIONS(1320), + [aux_sym_encapsed_string_token1] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [aux_sym_string_token1] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_LT_LT_LT] = ACTIONS(1320), + [anon_sym_BQUOTE] = ACTIONS(1320), + [anon_sym_DOLLAR] = ACTIONS(1320), + [aux_sym_yield_expression_token1] = ACTIONS(1322), + [aux_sym_include_expression_token1] = ACTIONS(1322), + [aux_sym_include_once_expression_token1] = ACTIONS(1322), + [aux_sym_require_expression_token1] = ACTIONS(1322), + [aux_sym_require_once_expression_token1] = ACTIONS(1322), [sym_comment] = ACTIONS(5), }, [508] = { [sym_text_interpolation] = STATE(508), - [ts_builtin_sym_end] = ACTIONS(1343), - [sym_name] = ACTIONS(1345), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1343), - [aux_sym_function_static_declaration_token1] = ACTIONS(1345), - [aux_sym_global_declaration_token1] = ACTIONS(1345), - [aux_sym_namespace_definition_token1] = ACTIONS(1345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1345), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1345), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1345), - [anon_sym_BSLASH] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_RBRACE] = ACTIONS(1343), - [aux_sym_trait_declaration_token1] = ACTIONS(1345), - [aux_sym_interface_declaration_token1] = ACTIONS(1345), - [aux_sym_enum_declaration_token1] = ACTIONS(1345), - [aux_sym_enum_case_token1] = ACTIONS(1345), - [aux_sym_class_declaration_token1] = ACTIONS(1345), - [aux_sym_final_modifier_token1] = ACTIONS(1345), - [aux_sym_abstract_modifier_token1] = ACTIONS(1345), - [aux_sym_readonly_modifier_token1] = ACTIONS(1345), - [aux_sym_visibility_modifier_token1] = ACTIONS(1345), - [aux_sym_visibility_modifier_token2] = ACTIONS(1345), - [aux_sym_visibility_modifier_token3] = ACTIONS(1345), - [aux_sym__arrow_function_header_token1] = ACTIONS(1345), - [anon_sym_LPAREN] = ACTIONS(1343), - [aux_sym_cast_type_token1] = ACTIONS(1345), - [aux_sym_echo_statement_token1] = ACTIONS(1345), - [aux_sym_exit_statement_token1] = ACTIONS(1345), - [anon_sym_unset] = ACTIONS(1345), - [aux_sym_declare_statement_token1] = ACTIONS(1345), - [aux_sym_declare_statement_token2] = ACTIONS(1345), - [sym_float] = ACTIONS(1345), - [aux_sym_try_statement_token1] = ACTIONS(1345), - [aux_sym_goto_statement_token1] = ACTIONS(1345), - [aux_sym_continue_statement_token1] = ACTIONS(1345), - [aux_sym_break_statement_token1] = ACTIONS(1345), - [sym_integer] = ACTIONS(1345), - [aux_sym_return_statement_token1] = ACTIONS(1345), - [aux_sym_throw_expression_token1] = ACTIONS(1345), - [aux_sym_while_statement_token1] = ACTIONS(1345), - [aux_sym_while_statement_token2] = ACTIONS(1345), - [aux_sym_do_statement_token1] = ACTIONS(1345), - [aux_sym_for_statement_token1] = ACTIONS(1345), - [aux_sym_for_statement_token2] = ACTIONS(1345), - [aux_sym_foreach_statement_token1] = ACTIONS(1345), - [aux_sym_foreach_statement_token2] = ACTIONS(1345), - [aux_sym_if_statement_token1] = ACTIONS(1345), - [aux_sym_if_statement_token2] = ACTIONS(1345), - [aux_sym_else_if_clause_token1] = ACTIONS(1345), - [aux_sym_else_clause_token1] = ACTIONS(1345), - [aux_sym_match_expression_token1] = ACTIONS(1345), - [aux_sym_match_default_expression_token1] = ACTIONS(1345), - [aux_sym_switch_statement_token1] = ACTIONS(1345), - [aux_sym_switch_block_token1] = ACTIONS(1345), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_TILDE] = ACTIONS(1343), - [anon_sym_BANG] = ACTIONS(1343), - [anon_sym_AT] = ACTIONS(1343), - [aux_sym_clone_expression_token1] = ACTIONS(1345), - [aux_sym_print_intrinsic_token1] = ACTIONS(1345), - [aux_sym_object_creation_expression_token1] = ACTIONS(1345), - [anon_sym_DASH_DASH] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), - [aux_sym__list_destructing_token1] = ACTIONS(1345), - [anon_sym_LBRACK] = ACTIONS(1343), - [anon_sym_self] = ACTIONS(1345), - [anon_sym_parent] = ACTIONS(1345), - [aux_sym__argument_name_token1] = ACTIONS(1345), - [aux_sym__argument_name_token2] = ACTIONS(1345), - [anon_sym_POUND_LBRACK] = ACTIONS(1343), - [aux_sym_encapsed_string_token1] = ACTIONS(1343), - [anon_sym_DQUOTE] = ACTIONS(1343), - [aux_sym_string_token1] = ACTIONS(1343), - [anon_sym_SQUOTE] = ACTIONS(1343), - [anon_sym_LT_LT_LT] = ACTIONS(1343), - [anon_sym_BQUOTE] = ACTIONS(1343), - [anon_sym_DOLLAR] = ACTIONS(1343), - [aux_sym_yield_expression_token1] = ACTIONS(1345), - [aux_sym_include_expression_token1] = ACTIONS(1345), - [aux_sym_include_once_expression_token1] = ACTIONS(1345), - [aux_sym_require_expression_token1] = ACTIONS(1345), - [aux_sym_require_once_expression_token1] = ACTIONS(1345), + [ts_builtin_sym_end] = ACTIONS(1324), + [sym_name] = ACTIONS(1326), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1324), + [aux_sym_function_static_declaration_token1] = ACTIONS(1326), + [aux_sym_global_declaration_token1] = ACTIONS(1326), + [aux_sym_namespace_definition_token1] = ACTIONS(1326), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1326), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1326), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1326), + [anon_sym_BSLASH] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1324), + [aux_sym_trait_declaration_token1] = ACTIONS(1326), + [aux_sym_interface_declaration_token1] = ACTIONS(1326), + [aux_sym_enum_declaration_token1] = ACTIONS(1326), + [aux_sym_enum_case_token1] = ACTIONS(1326), + [aux_sym_class_declaration_token1] = ACTIONS(1326), + [aux_sym_final_modifier_token1] = ACTIONS(1326), + [aux_sym_abstract_modifier_token1] = ACTIONS(1326), + [aux_sym_readonly_modifier_token1] = ACTIONS(1326), + [sym_var_modifier] = ACTIONS(1326), + [aux_sym_visibility_modifier_token1] = ACTIONS(1326), + [aux_sym_visibility_modifier_token2] = ACTIONS(1326), + [aux_sym_visibility_modifier_token3] = ACTIONS(1326), + [aux_sym__arrow_function_header_token1] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1324), + [aux_sym_cast_type_token1] = ACTIONS(1326), + [aux_sym_echo_statement_token1] = ACTIONS(1326), + [aux_sym_exit_statement_token1] = ACTIONS(1326), + [anon_sym_unset] = ACTIONS(1326), + [aux_sym_declare_statement_token1] = ACTIONS(1326), + [aux_sym_declare_statement_token2] = ACTIONS(1326), + [sym_float] = ACTIONS(1326), + [aux_sym_try_statement_token1] = ACTIONS(1326), + [aux_sym_goto_statement_token1] = ACTIONS(1326), + [aux_sym_continue_statement_token1] = ACTIONS(1326), + [aux_sym_break_statement_token1] = ACTIONS(1326), + [sym_integer] = ACTIONS(1326), + [aux_sym_return_statement_token1] = ACTIONS(1326), + [aux_sym_throw_expression_token1] = ACTIONS(1326), + [aux_sym_while_statement_token1] = ACTIONS(1326), + [aux_sym_while_statement_token2] = ACTIONS(1326), + [aux_sym_do_statement_token1] = ACTIONS(1326), + [aux_sym_for_statement_token1] = ACTIONS(1326), + [aux_sym_for_statement_token2] = ACTIONS(1326), + [aux_sym_foreach_statement_token1] = ACTIONS(1326), + [aux_sym_foreach_statement_token2] = ACTIONS(1326), + [aux_sym_if_statement_token1] = ACTIONS(1326), + [aux_sym_if_statement_token2] = ACTIONS(1326), + [aux_sym_else_if_clause_token1] = ACTIONS(1326), + [aux_sym_else_clause_token1] = ACTIONS(1326), + [aux_sym_match_expression_token1] = ACTIONS(1326), + [aux_sym_match_default_expression_token1] = ACTIONS(1326), + [aux_sym_switch_statement_token1] = ACTIONS(1326), + [aux_sym_switch_block_token1] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_AT] = ACTIONS(1324), + [aux_sym_clone_expression_token1] = ACTIONS(1326), + [aux_sym_print_intrinsic_token1] = ACTIONS(1326), + [aux_sym_object_creation_expression_token1] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [aux_sym__list_destructing_token1] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_self] = ACTIONS(1326), + [anon_sym_parent] = ACTIONS(1326), + [aux_sym__argument_name_token1] = ACTIONS(1326), + [aux_sym__argument_name_token2] = ACTIONS(1326), + [anon_sym_POUND_LBRACK] = ACTIONS(1324), + [aux_sym_encapsed_string_token1] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [aux_sym_string_token1] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_LT_LT_LT] = ACTIONS(1324), + [anon_sym_BQUOTE] = ACTIONS(1324), + [anon_sym_DOLLAR] = ACTIONS(1324), + [aux_sym_yield_expression_token1] = ACTIONS(1326), + [aux_sym_include_expression_token1] = ACTIONS(1326), + [aux_sym_include_once_expression_token1] = ACTIONS(1326), + [aux_sym_require_expression_token1] = ACTIONS(1326), + [aux_sym_require_once_expression_token1] = ACTIONS(1326), [sym_comment] = ACTIONS(5), }, [509] = { [sym_text_interpolation] = STATE(509), - [ts_builtin_sym_end] = ACTIONS(1347), - [sym_name] = ACTIONS(1349), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1347), - [aux_sym_function_static_declaration_token1] = ACTIONS(1349), - [aux_sym_global_declaration_token1] = ACTIONS(1349), - [aux_sym_namespace_definition_token1] = ACTIONS(1349), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1349), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1349), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1349), - [anon_sym_BSLASH] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1347), - [anon_sym_RBRACE] = ACTIONS(1347), - [aux_sym_trait_declaration_token1] = ACTIONS(1349), - [aux_sym_interface_declaration_token1] = ACTIONS(1349), - [aux_sym_enum_declaration_token1] = ACTIONS(1349), - [aux_sym_enum_case_token1] = ACTIONS(1349), - [aux_sym_class_declaration_token1] = ACTIONS(1349), - [aux_sym_final_modifier_token1] = ACTIONS(1349), - [aux_sym_abstract_modifier_token1] = ACTIONS(1349), - [aux_sym_readonly_modifier_token1] = ACTIONS(1349), - [aux_sym_visibility_modifier_token1] = ACTIONS(1349), - [aux_sym_visibility_modifier_token2] = ACTIONS(1349), - [aux_sym_visibility_modifier_token3] = ACTIONS(1349), - [aux_sym__arrow_function_header_token1] = ACTIONS(1349), - [anon_sym_LPAREN] = ACTIONS(1347), - [aux_sym_cast_type_token1] = ACTIONS(1349), - [aux_sym_echo_statement_token1] = ACTIONS(1349), - [aux_sym_exit_statement_token1] = ACTIONS(1349), - [anon_sym_unset] = ACTIONS(1349), - [aux_sym_declare_statement_token1] = ACTIONS(1349), - [aux_sym_declare_statement_token2] = ACTIONS(1349), - [sym_float] = ACTIONS(1349), - [aux_sym_try_statement_token1] = ACTIONS(1349), - [aux_sym_goto_statement_token1] = ACTIONS(1349), - [aux_sym_continue_statement_token1] = ACTIONS(1349), - [aux_sym_break_statement_token1] = ACTIONS(1349), - [sym_integer] = ACTIONS(1349), - [aux_sym_return_statement_token1] = ACTIONS(1349), - [aux_sym_throw_expression_token1] = ACTIONS(1349), - [aux_sym_while_statement_token1] = ACTIONS(1349), - [aux_sym_while_statement_token2] = ACTIONS(1349), - [aux_sym_do_statement_token1] = ACTIONS(1349), - [aux_sym_for_statement_token1] = ACTIONS(1349), - [aux_sym_for_statement_token2] = ACTIONS(1349), - [aux_sym_foreach_statement_token1] = ACTIONS(1349), - [aux_sym_foreach_statement_token2] = ACTIONS(1349), - [aux_sym_if_statement_token1] = ACTIONS(1349), - [aux_sym_if_statement_token2] = ACTIONS(1349), - [aux_sym_else_if_clause_token1] = ACTIONS(1349), - [aux_sym_else_clause_token1] = ACTIONS(1349), - [aux_sym_match_expression_token1] = ACTIONS(1349), - [aux_sym_match_default_expression_token1] = ACTIONS(1349), - [aux_sym_switch_statement_token1] = ACTIONS(1349), - [aux_sym_switch_block_token1] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1347), - [anon_sym_BANG] = ACTIONS(1347), - [anon_sym_AT] = ACTIONS(1347), - [aux_sym_clone_expression_token1] = ACTIONS(1349), - [aux_sym_print_intrinsic_token1] = ACTIONS(1349), - [aux_sym_object_creation_expression_token1] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1347), - [aux_sym__list_destructing_token1] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(1347), - [anon_sym_self] = ACTIONS(1349), - [anon_sym_parent] = ACTIONS(1349), - [aux_sym__argument_name_token1] = ACTIONS(1349), - [aux_sym__argument_name_token2] = ACTIONS(1349), - [anon_sym_POUND_LBRACK] = ACTIONS(1347), - [aux_sym_encapsed_string_token1] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(1347), - [aux_sym_string_token1] = ACTIONS(1347), - [anon_sym_SQUOTE] = ACTIONS(1347), - [anon_sym_LT_LT_LT] = ACTIONS(1347), - [anon_sym_BQUOTE] = ACTIONS(1347), - [anon_sym_DOLLAR] = ACTIONS(1347), - [aux_sym_yield_expression_token1] = ACTIONS(1349), - [aux_sym_include_expression_token1] = ACTIONS(1349), - [aux_sym_include_once_expression_token1] = ACTIONS(1349), - [aux_sym_require_expression_token1] = ACTIONS(1349), - [aux_sym_require_once_expression_token1] = ACTIONS(1349), + [ts_builtin_sym_end] = ACTIONS(1328), + [sym_name] = ACTIONS(1330), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1328), + [aux_sym_function_static_declaration_token1] = ACTIONS(1330), + [aux_sym_global_declaration_token1] = ACTIONS(1330), + [aux_sym_namespace_definition_token1] = ACTIONS(1330), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1330), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1330), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1330), + [anon_sym_BSLASH] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_RBRACE] = ACTIONS(1328), + [aux_sym_trait_declaration_token1] = ACTIONS(1330), + [aux_sym_interface_declaration_token1] = ACTIONS(1330), + [aux_sym_enum_declaration_token1] = ACTIONS(1330), + [aux_sym_enum_case_token1] = ACTIONS(1330), + [aux_sym_class_declaration_token1] = ACTIONS(1330), + [aux_sym_final_modifier_token1] = ACTIONS(1330), + [aux_sym_abstract_modifier_token1] = ACTIONS(1330), + [aux_sym_readonly_modifier_token1] = ACTIONS(1330), + [sym_var_modifier] = ACTIONS(1330), + [aux_sym_visibility_modifier_token1] = ACTIONS(1330), + [aux_sym_visibility_modifier_token2] = ACTIONS(1330), + [aux_sym_visibility_modifier_token3] = ACTIONS(1330), + [aux_sym__arrow_function_header_token1] = ACTIONS(1330), + [anon_sym_LPAREN] = ACTIONS(1328), + [aux_sym_cast_type_token1] = ACTIONS(1330), + [aux_sym_echo_statement_token1] = ACTIONS(1330), + [aux_sym_exit_statement_token1] = ACTIONS(1330), + [anon_sym_unset] = ACTIONS(1330), + [aux_sym_declare_statement_token1] = ACTIONS(1330), + [aux_sym_declare_statement_token2] = ACTIONS(1330), + [sym_float] = ACTIONS(1330), + [aux_sym_try_statement_token1] = ACTIONS(1330), + [aux_sym_goto_statement_token1] = ACTIONS(1330), + [aux_sym_continue_statement_token1] = ACTIONS(1330), + [aux_sym_break_statement_token1] = ACTIONS(1330), + [sym_integer] = ACTIONS(1330), + [aux_sym_return_statement_token1] = ACTIONS(1330), + [aux_sym_throw_expression_token1] = ACTIONS(1330), + [aux_sym_while_statement_token1] = ACTIONS(1330), + [aux_sym_while_statement_token2] = ACTIONS(1330), + [aux_sym_do_statement_token1] = ACTIONS(1330), + [aux_sym_for_statement_token1] = ACTIONS(1330), + [aux_sym_for_statement_token2] = ACTIONS(1330), + [aux_sym_foreach_statement_token1] = ACTIONS(1330), + [aux_sym_foreach_statement_token2] = ACTIONS(1330), + [aux_sym_if_statement_token1] = ACTIONS(1330), + [aux_sym_if_statement_token2] = ACTIONS(1330), + [aux_sym_else_if_clause_token1] = ACTIONS(1330), + [aux_sym_else_clause_token1] = ACTIONS(1330), + [aux_sym_match_expression_token1] = ACTIONS(1330), + [aux_sym_match_default_expression_token1] = ACTIONS(1330), + [aux_sym_switch_statement_token1] = ACTIONS(1330), + [aux_sym_switch_block_token1] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_AT] = ACTIONS(1328), + [aux_sym_clone_expression_token1] = ACTIONS(1330), + [aux_sym_print_intrinsic_token1] = ACTIONS(1330), + [aux_sym_object_creation_expression_token1] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [aux_sym__list_destructing_token1] = ACTIONS(1330), + [anon_sym_LBRACK] = ACTIONS(1328), + [anon_sym_self] = ACTIONS(1330), + [anon_sym_parent] = ACTIONS(1330), + [aux_sym__argument_name_token1] = ACTIONS(1330), + [aux_sym__argument_name_token2] = ACTIONS(1330), + [anon_sym_POUND_LBRACK] = ACTIONS(1328), + [aux_sym_encapsed_string_token1] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [aux_sym_string_token1] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_LT_LT_LT] = ACTIONS(1328), + [anon_sym_BQUOTE] = ACTIONS(1328), + [anon_sym_DOLLAR] = ACTIONS(1328), + [aux_sym_yield_expression_token1] = ACTIONS(1330), + [aux_sym_include_expression_token1] = ACTIONS(1330), + [aux_sym_include_once_expression_token1] = ACTIONS(1330), + [aux_sym_require_expression_token1] = ACTIONS(1330), + [aux_sym_require_once_expression_token1] = ACTIONS(1330), [sym_comment] = ACTIONS(5), }, [510] = { [sym_text_interpolation] = STATE(510), - [ts_builtin_sym_end] = ACTIONS(1351), - [sym_name] = ACTIONS(1353), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1351), - [aux_sym_function_static_declaration_token1] = ACTIONS(1353), - [aux_sym_global_declaration_token1] = ACTIONS(1353), - [aux_sym_namespace_definition_token1] = ACTIONS(1353), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1353), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1353), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1353), - [anon_sym_BSLASH] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1351), - [anon_sym_RBRACE] = ACTIONS(1351), - [aux_sym_trait_declaration_token1] = ACTIONS(1353), - [aux_sym_interface_declaration_token1] = ACTIONS(1353), - [aux_sym_enum_declaration_token1] = ACTIONS(1353), - [aux_sym_enum_case_token1] = ACTIONS(1353), - [aux_sym_class_declaration_token1] = ACTIONS(1353), - [aux_sym_final_modifier_token1] = ACTIONS(1353), - [aux_sym_abstract_modifier_token1] = ACTIONS(1353), - [aux_sym_readonly_modifier_token1] = ACTIONS(1353), - [aux_sym_visibility_modifier_token1] = ACTIONS(1353), - [aux_sym_visibility_modifier_token2] = ACTIONS(1353), - [aux_sym_visibility_modifier_token3] = ACTIONS(1353), - [aux_sym__arrow_function_header_token1] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1351), - [aux_sym_cast_type_token1] = ACTIONS(1353), - [aux_sym_echo_statement_token1] = ACTIONS(1353), - [aux_sym_exit_statement_token1] = ACTIONS(1353), - [anon_sym_unset] = ACTIONS(1353), - [aux_sym_declare_statement_token1] = ACTIONS(1353), - [aux_sym_declare_statement_token2] = ACTIONS(1353), - [sym_float] = ACTIONS(1353), - [aux_sym_try_statement_token1] = ACTIONS(1353), - [aux_sym_goto_statement_token1] = ACTIONS(1353), - [aux_sym_continue_statement_token1] = ACTIONS(1353), - [aux_sym_break_statement_token1] = ACTIONS(1353), - [sym_integer] = ACTIONS(1353), - [aux_sym_return_statement_token1] = ACTIONS(1353), - [aux_sym_throw_expression_token1] = ACTIONS(1353), - [aux_sym_while_statement_token1] = ACTIONS(1353), - [aux_sym_while_statement_token2] = ACTIONS(1353), - [aux_sym_do_statement_token1] = ACTIONS(1353), - [aux_sym_for_statement_token1] = ACTIONS(1353), - [aux_sym_for_statement_token2] = ACTIONS(1353), - [aux_sym_foreach_statement_token1] = ACTIONS(1353), - [aux_sym_foreach_statement_token2] = ACTIONS(1353), - [aux_sym_if_statement_token1] = ACTIONS(1353), - [aux_sym_if_statement_token2] = ACTIONS(1353), - [aux_sym_else_if_clause_token1] = ACTIONS(1353), - [aux_sym_else_clause_token1] = ACTIONS(1353), - [aux_sym_match_expression_token1] = ACTIONS(1353), - [aux_sym_match_default_expression_token1] = ACTIONS(1353), - [aux_sym_switch_statement_token1] = ACTIONS(1353), - [aux_sym_switch_block_token1] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1353), - [anon_sym_DASH] = ACTIONS(1353), - [anon_sym_TILDE] = ACTIONS(1351), - [anon_sym_BANG] = ACTIONS(1351), - [anon_sym_AT] = ACTIONS(1351), - [aux_sym_clone_expression_token1] = ACTIONS(1353), - [aux_sym_print_intrinsic_token1] = ACTIONS(1353), - [aux_sym_object_creation_expression_token1] = ACTIONS(1353), - [anon_sym_DASH_DASH] = ACTIONS(1351), - [anon_sym_PLUS_PLUS] = ACTIONS(1351), - [aux_sym__list_destructing_token1] = ACTIONS(1353), - [anon_sym_LBRACK] = ACTIONS(1351), - [anon_sym_self] = ACTIONS(1353), - [anon_sym_parent] = ACTIONS(1353), - [aux_sym__argument_name_token1] = ACTIONS(1353), - [aux_sym__argument_name_token2] = ACTIONS(1353), - [anon_sym_POUND_LBRACK] = ACTIONS(1351), - [aux_sym_encapsed_string_token1] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1351), - [aux_sym_string_token1] = ACTIONS(1351), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_LT_LT_LT] = ACTIONS(1351), - [anon_sym_BQUOTE] = ACTIONS(1351), - [anon_sym_DOLLAR] = ACTIONS(1351), - [aux_sym_yield_expression_token1] = ACTIONS(1353), - [aux_sym_include_expression_token1] = ACTIONS(1353), - [aux_sym_include_once_expression_token1] = ACTIONS(1353), - [aux_sym_require_expression_token1] = ACTIONS(1353), - [aux_sym_require_once_expression_token1] = ACTIONS(1353), + [ts_builtin_sym_end] = ACTIONS(1332), + [sym_name] = ACTIONS(1334), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1332), + [aux_sym_function_static_declaration_token1] = ACTIONS(1334), + [aux_sym_global_declaration_token1] = ACTIONS(1334), + [aux_sym_namespace_definition_token1] = ACTIONS(1334), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1334), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1334), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1334), + [anon_sym_BSLASH] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_RBRACE] = ACTIONS(1332), + [aux_sym_trait_declaration_token1] = ACTIONS(1334), + [aux_sym_interface_declaration_token1] = ACTIONS(1334), + [aux_sym_enum_declaration_token1] = ACTIONS(1334), + [aux_sym_enum_case_token1] = ACTIONS(1334), + [aux_sym_class_declaration_token1] = ACTIONS(1334), + [aux_sym_final_modifier_token1] = ACTIONS(1334), + [aux_sym_abstract_modifier_token1] = ACTIONS(1334), + [aux_sym_readonly_modifier_token1] = ACTIONS(1334), + [sym_var_modifier] = ACTIONS(1334), + [aux_sym_visibility_modifier_token1] = ACTIONS(1334), + [aux_sym_visibility_modifier_token2] = ACTIONS(1334), + [aux_sym_visibility_modifier_token3] = ACTIONS(1334), + [aux_sym__arrow_function_header_token1] = ACTIONS(1334), + [anon_sym_LPAREN] = ACTIONS(1332), + [aux_sym_cast_type_token1] = ACTIONS(1334), + [aux_sym_echo_statement_token1] = ACTIONS(1334), + [aux_sym_exit_statement_token1] = ACTIONS(1334), + [anon_sym_unset] = ACTIONS(1334), + [aux_sym_declare_statement_token1] = ACTIONS(1334), + [aux_sym_declare_statement_token2] = ACTIONS(1334), + [sym_float] = ACTIONS(1334), + [aux_sym_try_statement_token1] = ACTIONS(1334), + [aux_sym_goto_statement_token1] = ACTIONS(1334), + [aux_sym_continue_statement_token1] = ACTIONS(1334), + [aux_sym_break_statement_token1] = ACTIONS(1334), + [sym_integer] = ACTIONS(1334), + [aux_sym_return_statement_token1] = ACTIONS(1334), + [aux_sym_throw_expression_token1] = ACTIONS(1334), + [aux_sym_while_statement_token1] = ACTIONS(1334), + [aux_sym_while_statement_token2] = ACTIONS(1334), + [aux_sym_do_statement_token1] = ACTIONS(1334), + [aux_sym_for_statement_token1] = ACTIONS(1334), + [aux_sym_for_statement_token2] = ACTIONS(1334), + [aux_sym_foreach_statement_token1] = ACTIONS(1334), + [aux_sym_foreach_statement_token2] = ACTIONS(1334), + [aux_sym_if_statement_token1] = ACTIONS(1334), + [aux_sym_if_statement_token2] = ACTIONS(1334), + [aux_sym_else_if_clause_token1] = ACTIONS(1334), + [aux_sym_else_clause_token1] = ACTIONS(1334), + [aux_sym_match_expression_token1] = ACTIONS(1334), + [aux_sym_match_default_expression_token1] = ACTIONS(1334), + [aux_sym_switch_statement_token1] = ACTIONS(1334), + [aux_sym_switch_block_token1] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_AT] = ACTIONS(1332), + [aux_sym_clone_expression_token1] = ACTIONS(1334), + [aux_sym_print_intrinsic_token1] = ACTIONS(1334), + [aux_sym_object_creation_expression_token1] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [aux_sym__list_destructing_token1] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1332), + [anon_sym_self] = ACTIONS(1334), + [anon_sym_parent] = ACTIONS(1334), + [aux_sym__argument_name_token1] = ACTIONS(1334), + [aux_sym__argument_name_token2] = ACTIONS(1334), + [anon_sym_POUND_LBRACK] = ACTIONS(1332), + [aux_sym_encapsed_string_token1] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [aux_sym_string_token1] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_LT_LT_LT] = ACTIONS(1332), + [anon_sym_BQUOTE] = ACTIONS(1332), + [anon_sym_DOLLAR] = ACTIONS(1332), + [aux_sym_yield_expression_token1] = ACTIONS(1334), + [aux_sym_include_expression_token1] = ACTIONS(1334), + [aux_sym_include_once_expression_token1] = ACTIONS(1334), + [aux_sym_require_expression_token1] = ACTIONS(1334), + [aux_sym_require_once_expression_token1] = ACTIONS(1334), [sym_comment] = ACTIONS(5), }, [511] = { [sym_text_interpolation] = STATE(511), - [ts_builtin_sym_end] = ACTIONS(1355), - [sym_name] = ACTIONS(1357), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1355), - [aux_sym_function_static_declaration_token1] = ACTIONS(1357), - [aux_sym_global_declaration_token1] = ACTIONS(1357), - [aux_sym_namespace_definition_token1] = ACTIONS(1357), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1357), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1357), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1357), - [anon_sym_BSLASH] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_RBRACE] = ACTIONS(1355), - [aux_sym_trait_declaration_token1] = ACTIONS(1357), - [aux_sym_interface_declaration_token1] = ACTIONS(1357), - [aux_sym_enum_declaration_token1] = ACTIONS(1357), - [aux_sym_enum_case_token1] = ACTIONS(1357), - [aux_sym_class_declaration_token1] = ACTIONS(1357), - [aux_sym_final_modifier_token1] = ACTIONS(1357), - [aux_sym_abstract_modifier_token1] = ACTIONS(1357), - [aux_sym_readonly_modifier_token1] = ACTIONS(1357), - [aux_sym_visibility_modifier_token1] = ACTIONS(1357), - [aux_sym_visibility_modifier_token2] = ACTIONS(1357), - [aux_sym_visibility_modifier_token3] = ACTIONS(1357), - [aux_sym__arrow_function_header_token1] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1355), - [aux_sym_cast_type_token1] = ACTIONS(1357), - [aux_sym_echo_statement_token1] = ACTIONS(1357), - [aux_sym_exit_statement_token1] = ACTIONS(1357), - [anon_sym_unset] = ACTIONS(1357), - [aux_sym_declare_statement_token1] = ACTIONS(1357), - [aux_sym_declare_statement_token2] = ACTIONS(1357), - [sym_float] = ACTIONS(1357), - [aux_sym_try_statement_token1] = ACTIONS(1357), - [aux_sym_goto_statement_token1] = ACTIONS(1357), - [aux_sym_continue_statement_token1] = ACTIONS(1357), - [aux_sym_break_statement_token1] = ACTIONS(1357), - [sym_integer] = ACTIONS(1357), - [aux_sym_return_statement_token1] = ACTIONS(1357), - [aux_sym_throw_expression_token1] = ACTIONS(1357), - [aux_sym_while_statement_token1] = ACTIONS(1357), - [aux_sym_while_statement_token2] = ACTIONS(1357), - [aux_sym_do_statement_token1] = ACTIONS(1357), - [aux_sym_for_statement_token1] = ACTIONS(1357), - [aux_sym_for_statement_token2] = ACTIONS(1357), - [aux_sym_foreach_statement_token1] = ACTIONS(1357), - [aux_sym_foreach_statement_token2] = ACTIONS(1357), - [aux_sym_if_statement_token1] = ACTIONS(1357), - [aux_sym_if_statement_token2] = ACTIONS(1357), - [aux_sym_else_if_clause_token1] = ACTIONS(1357), - [aux_sym_else_clause_token1] = ACTIONS(1357), - [aux_sym_match_expression_token1] = ACTIONS(1357), - [aux_sym_match_default_expression_token1] = ACTIONS(1357), - [aux_sym_switch_statement_token1] = ACTIONS(1357), - [aux_sym_switch_block_token1] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1355), - [anon_sym_AT] = ACTIONS(1355), - [aux_sym_clone_expression_token1] = ACTIONS(1357), - [aux_sym_print_intrinsic_token1] = ACTIONS(1357), - [aux_sym_object_creation_expression_token1] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1355), - [anon_sym_PLUS_PLUS] = ACTIONS(1355), - [aux_sym__list_destructing_token1] = ACTIONS(1357), - [anon_sym_LBRACK] = ACTIONS(1355), - [anon_sym_self] = ACTIONS(1357), - [anon_sym_parent] = ACTIONS(1357), - [aux_sym__argument_name_token1] = ACTIONS(1357), - [aux_sym__argument_name_token2] = ACTIONS(1357), - [anon_sym_POUND_LBRACK] = ACTIONS(1355), - [aux_sym_encapsed_string_token1] = ACTIONS(1355), - [anon_sym_DQUOTE] = ACTIONS(1355), - [aux_sym_string_token1] = ACTIONS(1355), - [anon_sym_SQUOTE] = ACTIONS(1355), - [anon_sym_LT_LT_LT] = ACTIONS(1355), - [anon_sym_BQUOTE] = ACTIONS(1355), - [anon_sym_DOLLAR] = ACTIONS(1355), - [aux_sym_yield_expression_token1] = ACTIONS(1357), - [aux_sym_include_expression_token1] = ACTIONS(1357), - [aux_sym_include_once_expression_token1] = ACTIONS(1357), - [aux_sym_require_expression_token1] = ACTIONS(1357), - [aux_sym_require_once_expression_token1] = ACTIONS(1357), + [ts_builtin_sym_end] = ACTIONS(1336), + [sym_name] = ACTIONS(1338), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1336), + [aux_sym_function_static_declaration_token1] = ACTIONS(1338), + [aux_sym_global_declaration_token1] = ACTIONS(1338), + [aux_sym_namespace_definition_token1] = ACTIONS(1338), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1338), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1338), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1338), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(1336), + [aux_sym_trait_declaration_token1] = ACTIONS(1338), + [aux_sym_interface_declaration_token1] = ACTIONS(1338), + [aux_sym_enum_declaration_token1] = ACTIONS(1338), + [aux_sym_enum_case_token1] = ACTIONS(1338), + [aux_sym_class_declaration_token1] = ACTIONS(1338), + [aux_sym_final_modifier_token1] = ACTIONS(1338), + [aux_sym_abstract_modifier_token1] = ACTIONS(1338), + [aux_sym_readonly_modifier_token1] = ACTIONS(1338), + [sym_var_modifier] = ACTIONS(1338), + [aux_sym_visibility_modifier_token1] = ACTIONS(1338), + [aux_sym_visibility_modifier_token2] = ACTIONS(1338), + [aux_sym_visibility_modifier_token3] = ACTIONS(1338), + [aux_sym__arrow_function_header_token1] = ACTIONS(1338), + [anon_sym_LPAREN] = ACTIONS(1336), + [aux_sym_cast_type_token1] = ACTIONS(1338), + [aux_sym_echo_statement_token1] = ACTIONS(1338), + [aux_sym_exit_statement_token1] = ACTIONS(1338), + [anon_sym_unset] = ACTIONS(1338), + [aux_sym_declare_statement_token1] = ACTIONS(1338), + [aux_sym_declare_statement_token2] = ACTIONS(1338), + [sym_float] = ACTIONS(1338), + [aux_sym_try_statement_token1] = ACTIONS(1338), + [aux_sym_goto_statement_token1] = ACTIONS(1338), + [aux_sym_continue_statement_token1] = ACTIONS(1338), + [aux_sym_break_statement_token1] = ACTIONS(1338), + [sym_integer] = ACTIONS(1338), + [aux_sym_return_statement_token1] = ACTIONS(1338), + [aux_sym_throw_expression_token1] = ACTIONS(1338), + [aux_sym_while_statement_token1] = ACTIONS(1338), + [aux_sym_while_statement_token2] = ACTIONS(1338), + [aux_sym_do_statement_token1] = ACTIONS(1338), + [aux_sym_for_statement_token1] = ACTIONS(1338), + [aux_sym_for_statement_token2] = ACTIONS(1338), + [aux_sym_foreach_statement_token1] = ACTIONS(1338), + [aux_sym_foreach_statement_token2] = ACTIONS(1338), + [aux_sym_if_statement_token1] = ACTIONS(1338), + [aux_sym_if_statement_token2] = ACTIONS(1338), + [aux_sym_else_if_clause_token1] = ACTIONS(1338), + [aux_sym_else_clause_token1] = ACTIONS(1338), + [aux_sym_match_expression_token1] = ACTIONS(1338), + [aux_sym_match_default_expression_token1] = ACTIONS(1338), + [aux_sym_switch_statement_token1] = ACTIONS(1338), + [aux_sym_switch_block_token1] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [aux_sym_clone_expression_token1] = ACTIONS(1338), + [aux_sym_print_intrinsic_token1] = ACTIONS(1338), + [aux_sym_object_creation_expression_token1] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [aux_sym__list_destructing_token1] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1336), + [anon_sym_self] = ACTIONS(1338), + [anon_sym_parent] = ACTIONS(1338), + [aux_sym__argument_name_token1] = ACTIONS(1338), + [aux_sym__argument_name_token2] = ACTIONS(1338), + [anon_sym_POUND_LBRACK] = ACTIONS(1336), + [aux_sym_encapsed_string_token1] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [aux_sym_string_token1] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_LT_LT_LT] = ACTIONS(1336), + [anon_sym_BQUOTE] = ACTIONS(1336), + [anon_sym_DOLLAR] = ACTIONS(1336), + [aux_sym_yield_expression_token1] = ACTIONS(1338), + [aux_sym_include_expression_token1] = ACTIONS(1338), + [aux_sym_include_once_expression_token1] = ACTIONS(1338), + [aux_sym_require_expression_token1] = ACTIONS(1338), + [aux_sym_require_once_expression_token1] = ACTIONS(1338), [sym_comment] = ACTIONS(5), }, [512] = { [sym_text_interpolation] = STATE(512), - [ts_builtin_sym_end] = ACTIONS(1359), - [sym_name] = ACTIONS(1361), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1359), - [aux_sym_function_static_declaration_token1] = ACTIONS(1361), - [aux_sym_global_declaration_token1] = ACTIONS(1361), - [aux_sym_namespace_definition_token1] = ACTIONS(1361), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1361), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1361), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1361), - [anon_sym_BSLASH] = ACTIONS(1359), - [anon_sym_LBRACE] = ACTIONS(1359), - [anon_sym_RBRACE] = ACTIONS(1359), - [aux_sym_trait_declaration_token1] = ACTIONS(1361), - [aux_sym_interface_declaration_token1] = ACTIONS(1361), - [aux_sym_enum_declaration_token1] = ACTIONS(1361), - [aux_sym_enum_case_token1] = ACTIONS(1361), - [aux_sym_class_declaration_token1] = ACTIONS(1361), - [aux_sym_final_modifier_token1] = ACTIONS(1361), - [aux_sym_abstract_modifier_token1] = ACTIONS(1361), - [aux_sym_readonly_modifier_token1] = ACTIONS(1361), - [aux_sym_visibility_modifier_token1] = ACTIONS(1361), - [aux_sym_visibility_modifier_token2] = ACTIONS(1361), - [aux_sym_visibility_modifier_token3] = ACTIONS(1361), - [aux_sym__arrow_function_header_token1] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_cast_type_token1] = ACTIONS(1361), - [aux_sym_echo_statement_token1] = ACTIONS(1361), - [aux_sym_exit_statement_token1] = ACTIONS(1361), - [anon_sym_unset] = ACTIONS(1361), - [aux_sym_declare_statement_token1] = ACTIONS(1361), - [aux_sym_declare_statement_token2] = ACTIONS(1361), - [sym_float] = ACTIONS(1361), - [aux_sym_try_statement_token1] = ACTIONS(1361), - [aux_sym_goto_statement_token1] = ACTIONS(1361), - [aux_sym_continue_statement_token1] = ACTIONS(1361), - [aux_sym_break_statement_token1] = ACTIONS(1361), - [sym_integer] = ACTIONS(1361), - [aux_sym_return_statement_token1] = ACTIONS(1361), - [aux_sym_throw_expression_token1] = ACTIONS(1361), - [aux_sym_while_statement_token1] = ACTIONS(1361), - [aux_sym_while_statement_token2] = ACTIONS(1361), - [aux_sym_do_statement_token1] = ACTIONS(1361), - [aux_sym_for_statement_token1] = ACTIONS(1361), - [aux_sym_for_statement_token2] = ACTIONS(1361), - [aux_sym_foreach_statement_token1] = ACTIONS(1361), - [aux_sym_foreach_statement_token2] = ACTIONS(1361), - [aux_sym_if_statement_token1] = ACTIONS(1361), - [aux_sym_if_statement_token2] = ACTIONS(1361), - [aux_sym_else_if_clause_token1] = ACTIONS(1361), - [aux_sym_else_clause_token1] = ACTIONS(1361), - [aux_sym_match_expression_token1] = ACTIONS(1361), - [aux_sym_match_default_expression_token1] = ACTIONS(1361), - [aux_sym_switch_statement_token1] = ACTIONS(1361), - [aux_sym_switch_block_token1] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1361), - [anon_sym_DASH] = ACTIONS(1361), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_AT] = ACTIONS(1359), - [aux_sym_clone_expression_token1] = ACTIONS(1361), - [aux_sym_print_intrinsic_token1] = ACTIONS(1361), - [aux_sym_object_creation_expression_token1] = ACTIONS(1361), - [anon_sym_DASH_DASH] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1359), - [aux_sym__list_destructing_token1] = ACTIONS(1361), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_self] = ACTIONS(1361), - [anon_sym_parent] = ACTIONS(1361), - [aux_sym__argument_name_token1] = ACTIONS(1361), - [aux_sym__argument_name_token2] = ACTIONS(1361), - [anon_sym_POUND_LBRACK] = ACTIONS(1359), - [aux_sym_encapsed_string_token1] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [aux_sym_string_token1] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1359), - [anon_sym_LT_LT_LT] = ACTIONS(1359), - [anon_sym_BQUOTE] = ACTIONS(1359), - [anon_sym_DOLLAR] = ACTIONS(1359), - [aux_sym_yield_expression_token1] = ACTIONS(1361), - [aux_sym_include_expression_token1] = ACTIONS(1361), - [aux_sym_include_once_expression_token1] = ACTIONS(1361), - [aux_sym_require_expression_token1] = ACTIONS(1361), - [aux_sym_require_once_expression_token1] = ACTIONS(1361), + [ts_builtin_sym_end] = ACTIONS(1340), + [sym_name] = ACTIONS(1342), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1340), + [aux_sym_function_static_declaration_token1] = ACTIONS(1342), + [aux_sym_global_declaration_token1] = ACTIONS(1342), + [aux_sym_namespace_definition_token1] = ACTIONS(1342), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1342), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1342), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1342), + [anon_sym_BSLASH] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_RBRACE] = ACTIONS(1340), + [aux_sym_trait_declaration_token1] = ACTIONS(1342), + [aux_sym_interface_declaration_token1] = ACTIONS(1342), + [aux_sym_enum_declaration_token1] = ACTIONS(1342), + [aux_sym_enum_case_token1] = ACTIONS(1342), + [aux_sym_class_declaration_token1] = ACTIONS(1342), + [aux_sym_final_modifier_token1] = ACTIONS(1342), + [aux_sym_abstract_modifier_token1] = ACTIONS(1342), + [aux_sym_readonly_modifier_token1] = ACTIONS(1342), + [sym_var_modifier] = ACTIONS(1342), + [aux_sym_visibility_modifier_token1] = ACTIONS(1342), + [aux_sym_visibility_modifier_token2] = ACTIONS(1342), + [aux_sym_visibility_modifier_token3] = ACTIONS(1342), + [aux_sym__arrow_function_header_token1] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(1340), + [aux_sym_cast_type_token1] = ACTIONS(1342), + [aux_sym_echo_statement_token1] = ACTIONS(1342), + [aux_sym_exit_statement_token1] = ACTIONS(1342), + [anon_sym_unset] = ACTIONS(1342), + [aux_sym_declare_statement_token1] = ACTIONS(1342), + [aux_sym_declare_statement_token2] = ACTIONS(1342), + [sym_float] = ACTIONS(1342), + [aux_sym_try_statement_token1] = ACTIONS(1342), + [aux_sym_goto_statement_token1] = ACTIONS(1342), + [aux_sym_continue_statement_token1] = ACTIONS(1342), + [aux_sym_break_statement_token1] = ACTIONS(1342), + [sym_integer] = ACTIONS(1342), + [aux_sym_return_statement_token1] = ACTIONS(1342), + [aux_sym_throw_expression_token1] = ACTIONS(1342), + [aux_sym_while_statement_token1] = ACTIONS(1342), + [aux_sym_while_statement_token2] = ACTIONS(1342), + [aux_sym_do_statement_token1] = ACTIONS(1342), + [aux_sym_for_statement_token1] = ACTIONS(1342), + [aux_sym_for_statement_token2] = ACTIONS(1342), + [aux_sym_foreach_statement_token1] = ACTIONS(1342), + [aux_sym_foreach_statement_token2] = ACTIONS(1342), + [aux_sym_if_statement_token1] = ACTIONS(1342), + [aux_sym_if_statement_token2] = ACTIONS(1342), + [aux_sym_else_if_clause_token1] = ACTIONS(1342), + [aux_sym_else_clause_token1] = ACTIONS(1342), + [aux_sym_match_expression_token1] = ACTIONS(1342), + [aux_sym_match_default_expression_token1] = ACTIONS(1342), + [aux_sym_switch_statement_token1] = ACTIONS(1342), + [aux_sym_switch_block_token1] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_AT] = ACTIONS(1340), + [aux_sym_clone_expression_token1] = ACTIONS(1342), + [aux_sym_print_intrinsic_token1] = ACTIONS(1342), + [aux_sym_object_creation_expression_token1] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [aux_sym__list_destructing_token1] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1340), + [anon_sym_self] = ACTIONS(1342), + [anon_sym_parent] = ACTIONS(1342), + [aux_sym__argument_name_token1] = ACTIONS(1342), + [aux_sym__argument_name_token2] = ACTIONS(1342), + [anon_sym_POUND_LBRACK] = ACTIONS(1340), + [aux_sym_encapsed_string_token1] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [aux_sym_string_token1] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_LT_LT_LT] = ACTIONS(1340), + [anon_sym_BQUOTE] = ACTIONS(1340), + [anon_sym_DOLLAR] = ACTIONS(1340), + [aux_sym_yield_expression_token1] = ACTIONS(1342), + [aux_sym_include_expression_token1] = ACTIONS(1342), + [aux_sym_include_once_expression_token1] = ACTIONS(1342), + [aux_sym_require_expression_token1] = ACTIONS(1342), + [aux_sym_require_once_expression_token1] = ACTIONS(1342), [sym_comment] = ACTIONS(5), }, [513] = { [sym_text_interpolation] = STATE(513), - [ts_builtin_sym_end] = ACTIONS(1363), - [sym_name] = ACTIONS(1365), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1363), - [aux_sym_function_static_declaration_token1] = ACTIONS(1365), - [aux_sym_global_declaration_token1] = ACTIONS(1365), - [aux_sym_namespace_definition_token1] = ACTIONS(1365), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1365), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1365), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1365), - [anon_sym_BSLASH] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_RBRACE] = ACTIONS(1363), - [aux_sym_trait_declaration_token1] = ACTIONS(1365), - [aux_sym_interface_declaration_token1] = ACTIONS(1365), - [aux_sym_enum_declaration_token1] = ACTIONS(1365), - [aux_sym_enum_case_token1] = ACTIONS(1365), - [aux_sym_class_declaration_token1] = ACTIONS(1365), - [aux_sym_final_modifier_token1] = ACTIONS(1365), - [aux_sym_abstract_modifier_token1] = ACTIONS(1365), - [aux_sym_readonly_modifier_token1] = ACTIONS(1365), - [aux_sym_visibility_modifier_token1] = ACTIONS(1365), - [aux_sym_visibility_modifier_token2] = ACTIONS(1365), - [aux_sym_visibility_modifier_token3] = ACTIONS(1365), - [aux_sym__arrow_function_header_token1] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1363), - [aux_sym_cast_type_token1] = ACTIONS(1365), - [aux_sym_echo_statement_token1] = ACTIONS(1365), - [aux_sym_exit_statement_token1] = ACTIONS(1365), - [anon_sym_unset] = ACTIONS(1365), - [aux_sym_declare_statement_token1] = ACTIONS(1365), - [aux_sym_declare_statement_token2] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [aux_sym_try_statement_token1] = ACTIONS(1365), - [aux_sym_goto_statement_token1] = ACTIONS(1365), - [aux_sym_continue_statement_token1] = ACTIONS(1365), - [aux_sym_break_statement_token1] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [aux_sym_return_statement_token1] = ACTIONS(1365), - [aux_sym_throw_expression_token1] = ACTIONS(1365), - [aux_sym_while_statement_token1] = ACTIONS(1365), - [aux_sym_while_statement_token2] = ACTIONS(1365), - [aux_sym_do_statement_token1] = ACTIONS(1365), - [aux_sym_for_statement_token1] = ACTIONS(1365), - [aux_sym_for_statement_token2] = ACTIONS(1365), - [aux_sym_foreach_statement_token1] = ACTIONS(1365), - [aux_sym_foreach_statement_token2] = ACTIONS(1365), - [aux_sym_if_statement_token1] = ACTIONS(1365), - [aux_sym_if_statement_token2] = ACTIONS(1365), - [aux_sym_else_if_clause_token1] = ACTIONS(1365), - [aux_sym_else_clause_token1] = ACTIONS(1365), - [aux_sym_match_expression_token1] = ACTIONS(1365), - [aux_sym_match_default_expression_token1] = ACTIONS(1365), - [aux_sym_switch_statement_token1] = ACTIONS(1365), - [aux_sym_switch_block_token1] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1363), - [anon_sym_BANG] = ACTIONS(1363), - [anon_sym_AT] = ACTIONS(1363), - [aux_sym_clone_expression_token1] = ACTIONS(1365), - [aux_sym_print_intrinsic_token1] = ACTIONS(1365), - [aux_sym_object_creation_expression_token1] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1363), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [aux_sym__list_destructing_token1] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(1363), - [anon_sym_self] = ACTIONS(1365), - [anon_sym_parent] = ACTIONS(1365), - [aux_sym__argument_name_token1] = ACTIONS(1365), - [aux_sym__argument_name_token2] = ACTIONS(1365), - [anon_sym_POUND_LBRACK] = ACTIONS(1363), - [aux_sym_encapsed_string_token1] = ACTIONS(1363), - [anon_sym_DQUOTE] = ACTIONS(1363), - [aux_sym_string_token1] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1363), - [anon_sym_LT_LT_LT] = ACTIONS(1363), - [anon_sym_BQUOTE] = ACTIONS(1363), - [anon_sym_DOLLAR] = ACTIONS(1363), - [aux_sym_yield_expression_token1] = ACTIONS(1365), - [aux_sym_include_expression_token1] = ACTIONS(1365), - [aux_sym_include_once_expression_token1] = ACTIONS(1365), - [aux_sym_require_expression_token1] = ACTIONS(1365), - [aux_sym_require_once_expression_token1] = ACTIONS(1365), + [ts_builtin_sym_end] = ACTIONS(1344), + [sym_name] = ACTIONS(1346), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1344), + [aux_sym_function_static_declaration_token1] = ACTIONS(1346), + [aux_sym_global_declaration_token1] = ACTIONS(1346), + [aux_sym_namespace_definition_token1] = ACTIONS(1346), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1346), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1346), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1344), + [aux_sym_trait_declaration_token1] = ACTIONS(1346), + [aux_sym_interface_declaration_token1] = ACTIONS(1346), + [aux_sym_enum_declaration_token1] = ACTIONS(1346), + [aux_sym_enum_case_token1] = ACTIONS(1346), + [aux_sym_class_declaration_token1] = ACTIONS(1346), + [aux_sym_final_modifier_token1] = ACTIONS(1346), + [aux_sym_abstract_modifier_token1] = ACTIONS(1346), + [aux_sym_readonly_modifier_token1] = ACTIONS(1346), + [sym_var_modifier] = ACTIONS(1346), + [aux_sym_visibility_modifier_token1] = ACTIONS(1346), + [aux_sym_visibility_modifier_token2] = ACTIONS(1346), + [aux_sym_visibility_modifier_token3] = ACTIONS(1346), + [aux_sym__arrow_function_header_token1] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1344), + [aux_sym_cast_type_token1] = ACTIONS(1346), + [aux_sym_echo_statement_token1] = ACTIONS(1346), + [aux_sym_exit_statement_token1] = ACTIONS(1346), + [anon_sym_unset] = ACTIONS(1346), + [aux_sym_declare_statement_token1] = ACTIONS(1346), + [aux_sym_declare_statement_token2] = ACTIONS(1346), + [sym_float] = ACTIONS(1346), + [aux_sym_try_statement_token1] = ACTIONS(1346), + [aux_sym_goto_statement_token1] = ACTIONS(1346), + [aux_sym_continue_statement_token1] = ACTIONS(1346), + [aux_sym_break_statement_token1] = ACTIONS(1346), + [sym_integer] = ACTIONS(1346), + [aux_sym_return_statement_token1] = ACTIONS(1346), + [aux_sym_throw_expression_token1] = ACTIONS(1346), + [aux_sym_while_statement_token1] = ACTIONS(1346), + [aux_sym_while_statement_token2] = ACTIONS(1346), + [aux_sym_do_statement_token1] = ACTIONS(1346), + [aux_sym_for_statement_token1] = ACTIONS(1346), + [aux_sym_for_statement_token2] = ACTIONS(1346), + [aux_sym_foreach_statement_token1] = ACTIONS(1346), + [aux_sym_foreach_statement_token2] = ACTIONS(1346), + [aux_sym_if_statement_token1] = ACTIONS(1346), + [aux_sym_if_statement_token2] = ACTIONS(1346), + [aux_sym_else_if_clause_token1] = ACTIONS(1346), + [aux_sym_else_clause_token1] = ACTIONS(1346), + [aux_sym_match_expression_token1] = ACTIONS(1346), + [aux_sym_match_default_expression_token1] = ACTIONS(1346), + [aux_sym_switch_statement_token1] = ACTIONS(1346), + [aux_sym_switch_block_token1] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_AT] = ACTIONS(1344), + [aux_sym_clone_expression_token1] = ACTIONS(1346), + [aux_sym_print_intrinsic_token1] = ACTIONS(1346), + [aux_sym_object_creation_expression_token1] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [aux_sym__list_destructing_token1] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1344), + [anon_sym_self] = ACTIONS(1346), + [anon_sym_parent] = ACTIONS(1346), + [aux_sym__argument_name_token1] = ACTIONS(1346), + [aux_sym__argument_name_token2] = ACTIONS(1346), + [anon_sym_POUND_LBRACK] = ACTIONS(1344), + [aux_sym_encapsed_string_token1] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [aux_sym_string_token1] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_LT_LT_LT] = ACTIONS(1344), + [anon_sym_BQUOTE] = ACTIONS(1344), + [anon_sym_DOLLAR] = ACTIONS(1344), + [aux_sym_yield_expression_token1] = ACTIONS(1346), + [aux_sym_include_expression_token1] = ACTIONS(1346), + [aux_sym_include_once_expression_token1] = ACTIONS(1346), + [aux_sym_require_expression_token1] = ACTIONS(1346), + [aux_sym_require_once_expression_token1] = ACTIONS(1346), [sym_comment] = ACTIONS(5), }, [514] = { [sym_text_interpolation] = STATE(514), - [ts_builtin_sym_end] = ACTIONS(1367), - [sym_name] = ACTIONS(1369), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1367), - [aux_sym_function_static_declaration_token1] = ACTIONS(1369), - [aux_sym_global_declaration_token1] = ACTIONS(1369), - [aux_sym_namespace_definition_token1] = ACTIONS(1369), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1369), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1369), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1369), - [anon_sym_BSLASH] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [aux_sym_trait_declaration_token1] = ACTIONS(1369), - [aux_sym_interface_declaration_token1] = ACTIONS(1369), - [aux_sym_enum_declaration_token1] = ACTIONS(1369), - [aux_sym_enum_case_token1] = ACTIONS(1369), - [aux_sym_class_declaration_token1] = ACTIONS(1369), - [aux_sym_final_modifier_token1] = ACTIONS(1369), - [aux_sym_abstract_modifier_token1] = ACTIONS(1369), - [aux_sym_readonly_modifier_token1] = ACTIONS(1369), - [aux_sym_visibility_modifier_token1] = ACTIONS(1369), - [aux_sym_visibility_modifier_token2] = ACTIONS(1369), - [aux_sym_visibility_modifier_token3] = ACTIONS(1369), - [aux_sym__arrow_function_header_token1] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1367), - [aux_sym_cast_type_token1] = ACTIONS(1369), - [aux_sym_echo_statement_token1] = ACTIONS(1369), - [aux_sym_exit_statement_token1] = ACTIONS(1369), - [anon_sym_unset] = ACTIONS(1369), - [aux_sym_declare_statement_token1] = ACTIONS(1369), - [aux_sym_declare_statement_token2] = ACTIONS(1369), - [sym_float] = ACTIONS(1369), - [aux_sym_try_statement_token1] = ACTIONS(1369), - [aux_sym_goto_statement_token1] = ACTIONS(1369), - [aux_sym_continue_statement_token1] = ACTIONS(1369), - [aux_sym_break_statement_token1] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [aux_sym_return_statement_token1] = ACTIONS(1369), - [aux_sym_throw_expression_token1] = ACTIONS(1369), - [aux_sym_while_statement_token1] = ACTIONS(1369), - [aux_sym_while_statement_token2] = ACTIONS(1369), - [aux_sym_do_statement_token1] = ACTIONS(1369), - [aux_sym_for_statement_token1] = ACTIONS(1369), - [aux_sym_for_statement_token2] = ACTIONS(1369), - [aux_sym_foreach_statement_token1] = ACTIONS(1369), - [aux_sym_foreach_statement_token2] = ACTIONS(1369), - [aux_sym_if_statement_token1] = ACTIONS(1369), - [aux_sym_if_statement_token2] = ACTIONS(1369), - [aux_sym_else_if_clause_token1] = ACTIONS(1369), - [aux_sym_else_clause_token1] = ACTIONS(1369), - [aux_sym_match_expression_token1] = ACTIONS(1369), - [aux_sym_match_default_expression_token1] = ACTIONS(1369), - [aux_sym_switch_statement_token1] = ACTIONS(1369), - [aux_sym_switch_block_token1] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_AT] = ACTIONS(1367), - [aux_sym_clone_expression_token1] = ACTIONS(1369), - [aux_sym_print_intrinsic_token1] = ACTIONS(1369), - [aux_sym_object_creation_expression_token1] = ACTIONS(1369), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [aux_sym__list_destructing_token1] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_self] = ACTIONS(1369), - [anon_sym_parent] = ACTIONS(1369), - [aux_sym__argument_name_token1] = ACTIONS(1369), - [aux_sym__argument_name_token2] = ACTIONS(1369), - [anon_sym_POUND_LBRACK] = ACTIONS(1367), - [aux_sym_encapsed_string_token1] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [aux_sym_string_token1] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_LT_LT_LT] = ACTIONS(1367), - [anon_sym_BQUOTE] = ACTIONS(1367), - [anon_sym_DOLLAR] = ACTIONS(1367), - [aux_sym_yield_expression_token1] = ACTIONS(1369), - [aux_sym_include_expression_token1] = ACTIONS(1369), - [aux_sym_include_once_expression_token1] = ACTIONS(1369), - [aux_sym_require_expression_token1] = ACTIONS(1369), - [aux_sym_require_once_expression_token1] = ACTIONS(1369), + [ts_builtin_sym_end] = ACTIONS(1348), + [sym_name] = ACTIONS(1350), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1348), + [aux_sym_function_static_declaration_token1] = ACTIONS(1350), + [aux_sym_global_declaration_token1] = ACTIONS(1350), + [aux_sym_namespace_definition_token1] = ACTIONS(1350), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1350), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1350), + [anon_sym_BSLASH] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [aux_sym_trait_declaration_token1] = ACTIONS(1350), + [aux_sym_interface_declaration_token1] = ACTIONS(1350), + [aux_sym_enum_declaration_token1] = ACTIONS(1350), + [aux_sym_enum_case_token1] = ACTIONS(1350), + [aux_sym_class_declaration_token1] = ACTIONS(1350), + [aux_sym_final_modifier_token1] = ACTIONS(1350), + [aux_sym_abstract_modifier_token1] = ACTIONS(1350), + [aux_sym_readonly_modifier_token1] = ACTIONS(1350), + [sym_var_modifier] = ACTIONS(1350), + [aux_sym_visibility_modifier_token1] = ACTIONS(1350), + [aux_sym_visibility_modifier_token2] = ACTIONS(1350), + [aux_sym_visibility_modifier_token3] = ACTIONS(1350), + [aux_sym__arrow_function_header_token1] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1348), + [aux_sym_cast_type_token1] = ACTIONS(1350), + [aux_sym_echo_statement_token1] = ACTIONS(1350), + [aux_sym_exit_statement_token1] = ACTIONS(1350), + [anon_sym_unset] = ACTIONS(1350), + [aux_sym_declare_statement_token1] = ACTIONS(1350), + [aux_sym_declare_statement_token2] = ACTIONS(1350), + [sym_float] = ACTIONS(1350), + [aux_sym_try_statement_token1] = ACTIONS(1350), + [aux_sym_goto_statement_token1] = ACTIONS(1350), + [aux_sym_continue_statement_token1] = ACTIONS(1350), + [aux_sym_break_statement_token1] = ACTIONS(1350), + [sym_integer] = ACTIONS(1350), + [aux_sym_return_statement_token1] = ACTIONS(1350), + [aux_sym_throw_expression_token1] = ACTIONS(1350), + [aux_sym_while_statement_token1] = ACTIONS(1350), + [aux_sym_while_statement_token2] = ACTIONS(1350), + [aux_sym_do_statement_token1] = ACTIONS(1350), + [aux_sym_for_statement_token1] = ACTIONS(1350), + [aux_sym_for_statement_token2] = ACTIONS(1350), + [aux_sym_foreach_statement_token1] = ACTIONS(1350), + [aux_sym_foreach_statement_token2] = ACTIONS(1350), + [aux_sym_if_statement_token1] = ACTIONS(1350), + [aux_sym_if_statement_token2] = ACTIONS(1350), + [aux_sym_else_if_clause_token1] = ACTIONS(1350), + [aux_sym_else_clause_token1] = ACTIONS(1350), + [aux_sym_match_expression_token1] = ACTIONS(1350), + [aux_sym_match_default_expression_token1] = ACTIONS(1350), + [aux_sym_switch_statement_token1] = ACTIONS(1350), + [aux_sym_switch_block_token1] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_AT] = ACTIONS(1348), + [aux_sym_clone_expression_token1] = ACTIONS(1350), + [aux_sym_print_intrinsic_token1] = ACTIONS(1350), + [aux_sym_object_creation_expression_token1] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [aux_sym__list_destructing_token1] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_self] = ACTIONS(1350), + [anon_sym_parent] = ACTIONS(1350), + [aux_sym__argument_name_token1] = ACTIONS(1350), + [aux_sym__argument_name_token2] = ACTIONS(1350), + [anon_sym_POUND_LBRACK] = ACTIONS(1348), + [aux_sym_encapsed_string_token1] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [aux_sym_string_token1] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_LT_LT_LT] = ACTIONS(1348), + [anon_sym_BQUOTE] = ACTIONS(1348), + [anon_sym_DOLLAR] = ACTIONS(1348), + [aux_sym_yield_expression_token1] = ACTIONS(1350), + [aux_sym_include_expression_token1] = ACTIONS(1350), + [aux_sym_include_once_expression_token1] = ACTIONS(1350), + [aux_sym_require_expression_token1] = ACTIONS(1350), + [aux_sym_require_once_expression_token1] = ACTIONS(1350), [sym_comment] = ACTIONS(5), }, [515] = { [sym_text_interpolation] = STATE(515), - [ts_builtin_sym_end] = ACTIONS(1371), - [sym_name] = ACTIONS(1373), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1371), - [aux_sym_function_static_declaration_token1] = ACTIONS(1373), - [aux_sym_global_declaration_token1] = ACTIONS(1373), - [aux_sym_namespace_definition_token1] = ACTIONS(1373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1373), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1373), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1373), - [anon_sym_BSLASH] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1371), - [aux_sym_trait_declaration_token1] = ACTIONS(1373), - [aux_sym_interface_declaration_token1] = ACTIONS(1373), - [aux_sym_enum_declaration_token1] = ACTIONS(1373), - [aux_sym_enum_case_token1] = ACTIONS(1373), - [aux_sym_class_declaration_token1] = ACTIONS(1373), - [aux_sym_final_modifier_token1] = ACTIONS(1373), - [aux_sym_abstract_modifier_token1] = ACTIONS(1373), - [aux_sym_readonly_modifier_token1] = ACTIONS(1373), - [aux_sym_visibility_modifier_token1] = ACTIONS(1373), - [aux_sym_visibility_modifier_token2] = ACTIONS(1373), - [aux_sym_visibility_modifier_token3] = ACTIONS(1373), - [aux_sym__arrow_function_header_token1] = ACTIONS(1373), - [anon_sym_LPAREN] = ACTIONS(1371), - [aux_sym_cast_type_token1] = ACTIONS(1373), - [aux_sym_echo_statement_token1] = ACTIONS(1373), - [aux_sym_exit_statement_token1] = ACTIONS(1373), - [anon_sym_unset] = ACTIONS(1373), - [aux_sym_declare_statement_token1] = ACTIONS(1373), - [aux_sym_declare_statement_token2] = ACTIONS(1373), - [sym_float] = ACTIONS(1373), - [aux_sym_try_statement_token1] = ACTIONS(1373), - [aux_sym_goto_statement_token1] = ACTIONS(1373), - [aux_sym_continue_statement_token1] = ACTIONS(1373), - [aux_sym_break_statement_token1] = ACTIONS(1373), - [sym_integer] = ACTIONS(1373), - [aux_sym_return_statement_token1] = ACTIONS(1373), - [aux_sym_throw_expression_token1] = ACTIONS(1373), - [aux_sym_while_statement_token1] = ACTIONS(1373), - [aux_sym_while_statement_token2] = ACTIONS(1373), - [aux_sym_do_statement_token1] = ACTIONS(1373), - [aux_sym_for_statement_token1] = ACTIONS(1373), - [aux_sym_for_statement_token2] = ACTIONS(1373), - [aux_sym_foreach_statement_token1] = ACTIONS(1373), - [aux_sym_foreach_statement_token2] = ACTIONS(1373), - [aux_sym_if_statement_token1] = ACTIONS(1373), - [aux_sym_if_statement_token2] = ACTIONS(1373), - [aux_sym_else_if_clause_token1] = ACTIONS(1373), - [aux_sym_else_clause_token1] = ACTIONS(1373), - [aux_sym_match_expression_token1] = ACTIONS(1373), - [aux_sym_match_default_expression_token1] = ACTIONS(1373), - [aux_sym_switch_statement_token1] = ACTIONS(1373), - [aux_sym_switch_block_token1] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1371), - [anon_sym_BANG] = ACTIONS(1371), - [anon_sym_AT] = ACTIONS(1371), - [aux_sym_clone_expression_token1] = ACTIONS(1373), - [aux_sym_print_intrinsic_token1] = ACTIONS(1373), - [aux_sym_object_creation_expression_token1] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1371), - [anon_sym_PLUS_PLUS] = ACTIONS(1371), - [aux_sym__list_destructing_token1] = ACTIONS(1373), - [anon_sym_LBRACK] = ACTIONS(1371), - [anon_sym_self] = ACTIONS(1373), - [anon_sym_parent] = ACTIONS(1373), - [aux_sym__argument_name_token1] = ACTIONS(1373), - [aux_sym__argument_name_token2] = ACTIONS(1373), - [anon_sym_POUND_LBRACK] = ACTIONS(1371), - [aux_sym_encapsed_string_token1] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1371), - [aux_sym_string_token1] = ACTIONS(1371), - [anon_sym_SQUOTE] = ACTIONS(1371), - [anon_sym_LT_LT_LT] = ACTIONS(1371), - [anon_sym_BQUOTE] = ACTIONS(1371), - [anon_sym_DOLLAR] = ACTIONS(1371), - [aux_sym_yield_expression_token1] = ACTIONS(1373), - [aux_sym_include_expression_token1] = ACTIONS(1373), - [aux_sym_include_once_expression_token1] = ACTIONS(1373), - [aux_sym_require_expression_token1] = ACTIONS(1373), - [aux_sym_require_once_expression_token1] = ACTIONS(1373), + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_name] = ACTIONS(1354), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1352), + [aux_sym_function_static_declaration_token1] = ACTIONS(1354), + [aux_sym_global_declaration_token1] = ACTIONS(1354), + [aux_sym_namespace_definition_token1] = ACTIONS(1354), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1354), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1354), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1354), + [anon_sym_BSLASH] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [aux_sym_trait_declaration_token1] = ACTIONS(1354), + [aux_sym_interface_declaration_token1] = ACTIONS(1354), + [aux_sym_enum_declaration_token1] = ACTIONS(1354), + [aux_sym_enum_case_token1] = ACTIONS(1354), + [aux_sym_class_declaration_token1] = ACTIONS(1354), + [aux_sym_final_modifier_token1] = ACTIONS(1354), + [aux_sym_abstract_modifier_token1] = ACTIONS(1354), + [aux_sym_readonly_modifier_token1] = ACTIONS(1354), + [sym_var_modifier] = ACTIONS(1354), + [aux_sym_visibility_modifier_token1] = ACTIONS(1354), + [aux_sym_visibility_modifier_token2] = ACTIONS(1354), + [aux_sym_visibility_modifier_token3] = ACTIONS(1354), + [aux_sym__arrow_function_header_token1] = ACTIONS(1354), + [anon_sym_LPAREN] = ACTIONS(1352), + [aux_sym_cast_type_token1] = ACTIONS(1354), + [aux_sym_echo_statement_token1] = ACTIONS(1354), + [aux_sym_exit_statement_token1] = ACTIONS(1354), + [anon_sym_unset] = ACTIONS(1354), + [aux_sym_declare_statement_token1] = ACTIONS(1354), + [aux_sym_declare_statement_token2] = ACTIONS(1354), + [sym_float] = ACTIONS(1354), + [aux_sym_try_statement_token1] = ACTIONS(1354), + [aux_sym_goto_statement_token1] = ACTIONS(1354), + [aux_sym_continue_statement_token1] = ACTIONS(1354), + [aux_sym_break_statement_token1] = ACTIONS(1354), + [sym_integer] = ACTIONS(1354), + [aux_sym_return_statement_token1] = ACTIONS(1354), + [aux_sym_throw_expression_token1] = ACTIONS(1354), + [aux_sym_while_statement_token1] = ACTIONS(1354), + [aux_sym_while_statement_token2] = ACTIONS(1354), + [aux_sym_do_statement_token1] = ACTIONS(1354), + [aux_sym_for_statement_token1] = ACTIONS(1354), + [aux_sym_for_statement_token2] = ACTIONS(1354), + [aux_sym_foreach_statement_token1] = ACTIONS(1354), + [aux_sym_foreach_statement_token2] = ACTIONS(1354), + [aux_sym_if_statement_token1] = ACTIONS(1354), + [aux_sym_if_statement_token2] = ACTIONS(1354), + [aux_sym_else_if_clause_token1] = ACTIONS(1354), + [aux_sym_else_clause_token1] = ACTIONS(1354), + [aux_sym_match_expression_token1] = ACTIONS(1354), + [aux_sym_match_default_expression_token1] = ACTIONS(1354), + [aux_sym_switch_statement_token1] = ACTIONS(1354), + [aux_sym_switch_block_token1] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_AT] = ACTIONS(1352), + [aux_sym_clone_expression_token1] = ACTIONS(1354), + [aux_sym_print_intrinsic_token1] = ACTIONS(1354), + [aux_sym_object_creation_expression_token1] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [aux_sym__list_destructing_token1] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1352), + [anon_sym_self] = ACTIONS(1354), + [anon_sym_parent] = ACTIONS(1354), + [aux_sym__argument_name_token1] = ACTIONS(1354), + [aux_sym__argument_name_token2] = ACTIONS(1354), + [anon_sym_POUND_LBRACK] = ACTIONS(1352), + [aux_sym_encapsed_string_token1] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [aux_sym_string_token1] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_LT_LT_LT] = ACTIONS(1352), + [anon_sym_BQUOTE] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1352), + [aux_sym_yield_expression_token1] = ACTIONS(1354), + [aux_sym_include_expression_token1] = ACTIONS(1354), + [aux_sym_include_once_expression_token1] = ACTIONS(1354), + [aux_sym_require_expression_token1] = ACTIONS(1354), + [aux_sym_require_once_expression_token1] = ACTIONS(1354), [sym_comment] = ACTIONS(5), }, [516] = { [sym_text_interpolation] = STATE(516), - [ts_builtin_sym_end] = ACTIONS(1359), - [sym_name] = ACTIONS(1361), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1359), - [aux_sym_function_static_declaration_token1] = ACTIONS(1361), - [aux_sym_global_declaration_token1] = ACTIONS(1361), - [aux_sym_namespace_definition_token1] = ACTIONS(1361), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1361), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1361), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1361), - [anon_sym_BSLASH] = ACTIONS(1359), - [anon_sym_LBRACE] = ACTIONS(1359), - [anon_sym_RBRACE] = ACTIONS(1359), - [aux_sym_trait_declaration_token1] = ACTIONS(1361), - [aux_sym_interface_declaration_token1] = ACTIONS(1361), - [aux_sym_enum_declaration_token1] = ACTIONS(1361), - [aux_sym_enum_case_token1] = ACTIONS(1361), - [aux_sym_class_declaration_token1] = ACTIONS(1361), - [aux_sym_final_modifier_token1] = ACTIONS(1361), - [aux_sym_abstract_modifier_token1] = ACTIONS(1361), - [aux_sym_readonly_modifier_token1] = ACTIONS(1361), - [aux_sym_visibility_modifier_token1] = ACTIONS(1361), - [aux_sym_visibility_modifier_token2] = ACTIONS(1361), - [aux_sym_visibility_modifier_token3] = ACTIONS(1361), - [aux_sym__arrow_function_header_token1] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_cast_type_token1] = ACTIONS(1361), - [aux_sym_echo_statement_token1] = ACTIONS(1361), - [aux_sym_exit_statement_token1] = ACTIONS(1361), - [anon_sym_unset] = ACTIONS(1361), - [aux_sym_declare_statement_token1] = ACTIONS(1361), - [aux_sym_declare_statement_token2] = ACTIONS(1361), - [sym_float] = ACTIONS(1361), - [aux_sym_try_statement_token1] = ACTIONS(1361), - [aux_sym_goto_statement_token1] = ACTIONS(1361), - [aux_sym_continue_statement_token1] = ACTIONS(1361), - [aux_sym_break_statement_token1] = ACTIONS(1361), - [sym_integer] = ACTIONS(1361), - [aux_sym_return_statement_token1] = ACTIONS(1361), - [aux_sym_throw_expression_token1] = ACTIONS(1361), - [aux_sym_while_statement_token1] = ACTIONS(1361), - [aux_sym_while_statement_token2] = ACTIONS(1361), - [aux_sym_do_statement_token1] = ACTIONS(1361), - [aux_sym_for_statement_token1] = ACTIONS(1361), - [aux_sym_for_statement_token2] = ACTIONS(1361), - [aux_sym_foreach_statement_token1] = ACTIONS(1361), - [aux_sym_foreach_statement_token2] = ACTIONS(1361), - [aux_sym_if_statement_token1] = ACTIONS(1361), - [aux_sym_if_statement_token2] = ACTIONS(1361), - [aux_sym_else_if_clause_token1] = ACTIONS(1361), - [aux_sym_else_clause_token1] = ACTIONS(1361), - [aux_sym_match_expression_token1] = ACTIONS(1361), - [aux_sym_match_default_expression_token1] = ACTIONS(1361), - [aux_sym_switch_statement_token1] = ACTIONS(1361), - [aux_sym_switch_block_token1] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1361), - [anon_sym_DASH] = ACTIONS(1361), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_AT] = ACTIONS(1359), - [aux_sym_clone_expression_token1] = ACTIONS(1361), - [aux_sym_print_intrinsic_token1] = ACTIONS(1361), - [aux_sym_object_creation_expression_token1] = ACTIONS(1361), - [anon_sym_DASH_DASH] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1359), - [aux_sym__list_destructing_token1] = ACTIONS(1361), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_self] = ACTIONS(1361), - [anon_sym_parent] = ACTIONS(1361), - [aux_sym__argument_name_token1] = ACTIONS(1361), - [aux_sym__argument_name_token2] = ACTIONS(1361), - [anon_sym_POUND_LBRACK] = ACTIONS(1359), - [aux_sym_encapsed_string_token1] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [aux_sym_string_token1] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1359), - [anon_sym_LT_LT_LT] = ACTIONS(1359), - [anon_sym_BQUOTE] = ACTIONS(1359), - [anon_sym_DOLLAR] = ACTIONS(1359), - [aux_sym_yield_expression_token1] = ACTIONS(1361), - [aux_sym_include_expression_token1] = ACTIONS(1361), - [aux_sym_include_once_expression_token1] = ACTIONS(1361), - [aux_sym_require_expression_token1] = ACTIONS(1361), - [aux_sym_require_once_expression_token1] = ACTIONS(1361), + [ts_builtin_sym_end] = ACTIONS(1356), + [sym_name] = ACTIONS(1358), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1356), + [aux_sym_function_static_declaration_token1] = ACTIONS(1358), + [aux_sym_global_declaration_token1] = ACTIONS(1358), + [aux_sym_namespace_definition_token1] = ACTIONS(1358), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1358), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1358), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1358), + [anon_sym_BSLASH] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [aux_sym_trait_declaration_token1] = ACTIONS(1358), + [aux_sym_interface_declaration_token1] = ACTIONS(1358), + [aux_sym_enum_declaration_token1] = ACTIONS(1358), + [aux_sym_enum_case_token1] = ACTIONS(1358), + [aux_sym_class_declaration_token1] = ACTIONS(1358), + [aux_sym_final_modifier_token1] = ACTIONS(1358), + [aux_sym_abstract_modifier_token1] = ACTIONS(1358), + [aux_sym_readonly_modifier_token1] = ACTIONS(1358), + [sym_var_modifier] = ACTIONS(1358), + [aux_sym_visibility_modifier_token1] = ACTIONS(1358), + [aux_sym_visibility_modifier_token2] = ACTIONS(1358), + [aux_sym_visibility_modifier_token3] = ACTIONS(1358), + [aux_sym__arrow_function_header_token1] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1356), + [aux_sym_cast_type_token1] = ACTIONS(1358), + [aux_sym_echo_statement_token1] = ACTIONS(1358), + [aux_sym_exit_statement_token1] = ACTIONS(1358), + [anon_sym_unset] = ACTIONS(1358), + [aux_sym_declare_statement_token1] = ACTIONS(1358), + [aux_sym_declare_statement_token2] = ACTIONS(1358), + [sym_float] = ACTIONS(1358), + [aux_sym_try_statement_token1] = ACTIONS(1358), + [aux_sym_goto_statement_token1] = ACTIONS(1358), + [aux_sym_continue_statement_token1] = ACTIONS(1358), + [aux_sym_break_statement_token1] = ACTIONS(1358), + [sym_integer] = ACTIONS(1358), + [aux_sym_return_statement_token1] = ACTIONS(1358), + [aux_sym_throw_expression_token1] = ACTIONS(1358), + [aux_sym_while_statement_token1] = ACTIONS(1358), + [aux_sym_while_statement_token2] = ACTIONS(1358), + [aux_sym_do_statement_token1] = ACTIONS(1358), + [aux_sym_for_statement_token1] = ACTIONS(1358), + [aux_sym_for_statement_token2] = ACTIONS(1358), + [aux_sym_foreach_statement_token1] = ACTIONS(1358), + [aux_sym_foreach_statement_token2] = ACTIONS(1358), + [aux_sym_if_statement_token1] = ACTIONS(1358), + [aux_sym_if_statement_token2] = ACTIONS(1358), + [aux_sym_else_if_clause_token1] = ACTIONS(1358), + [aux_sym_else_clause_token1] = ACTIONS(1358), + [aux_sym_match_expression_token1] = ACTIONS(1358), + [aux_sym_match_default_expression_token1] = ACTIONS(1358), + [aux_sym_switch_statement_token1] = ACTIONS(1358), + [aux_sym_switch_block_token1] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1356), + [aux_sym_clone_expression_token1] = ACTIONS(1358), + [aux_sym_print_intrinsic_token1] = ACTIONS(1358), + [aux_sym_object_creation_expression_token1] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [aux_sym__list_destructing_token1] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_self] = ACTIONS(1358), + [anon_sym_parent] = ACTIONS(1358), + [aux_sym__argument_name_token1] = ACTIONS(1358), + [aux_sym__argument_name_token2] = ACTIONS(1358), + [anon_sym_POUND_LBRACK] = ACTIONS(1356), + [aux_sym_encapsed_string_token1] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [aux_sym_string_token1] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_LT_LT_LT] = ACTIONS(1356), + [anon_sym_BQUOTE] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [aux_sym_yield_expression_token1] = ACTIONS(1358), + [aux_sym_include_expression_token1] = ACTIONS(1358), + [aux_sym_include_once_expression_token1] = ACTIONS(1358), + [aux_sym_require_expression_token1] = ACTIONS(1358), + [aux_sym_require_once_expression_token1] = ACTIONS(1358), [sym_comment] = ACTIONS(5), }, [517] = { [sym_text_interpolation] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1375), - [sym_name] = ACTIONS(1377), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1375), - [aux_sym_function_static_declaration_token1] = ACTIONS(1377), - [aux_sym_global_declaration_token1] = ACTIONS(1377), - [aux_sym_namespace_definition_token1] = ACTIONS(1377), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1377), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1377), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1377), - [anon_sym_BSLASH] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_RBRACE] = ACTIONS(1375), - [aux_sym_trait_declaration_token1] = ACTIONS(1377), - [aux_sym_interface_declaration_token1] = ACTIONS(1377), - [aux_sym_enum_declaration_token1] = ACTIONS(1377), - [aux_sym_enum_case_token1] = ACTIONS(1377), - [aux_sym_class_declaration_token1] = ACTIONS(1377), - [aux_sym_final_modifier_token1] = ACTIONS(1377), - [aux_sym_abstract_modifier_token1] = ACTIONS(1377), - [aux_sym_readonly_modifier_token1] = ACTIONS(1377), - [aux_sym_visibility_modifier_token1] = ACTIONS(1377), - [aux_sym_visibility_modifier_token2] = ACTIONS(1377), - [aux_sym_visibility_modifier_token3] = ACTIONS(1377), - [aux_sym__arrow_function_header_token1] = ACTIONS(1377), - [anon_sym_LPAREN] = ACTIONS(1375), - [aux_sym_cast_type_token1] = ACTIONS(1377), - [aux_sym_echo_statement_token1] = ACTIONS(1377), - [aux_sym_exit_statement_token1] = ACTIONS(1377), - [anon_sym_unset] = ACTIONS(1377), - [aux_sym_declare_statement_token1] = ACTIONS(1377), - [aux_sym_declare_statement_token2] = ACTIONS(1377), - [sym_float] = ACTIONS(1377), - [aux_sym_try_statement_token1] = ACTIONS(1377), - [aux_sym_goto_statement_token1] = ACTIONS(1377), - [aux_sym_continue_statement_token1] = ACTIONS(1377), - [aux_sym_break_statement_token1] = ACTIONS(1377), - [sym_integer] = ACTIONS(1377), - [aux_sym_return_statement_token1] = ACTIONS(1377), - [aux_sym_throw_expression_token1] = ACTIONS(1377), - [aux_sym_while_statement_token1] = ACTIONS(1377), - [aux_sym_while_statement_token2] = ACTIONS(1377), - [aux_sym_do_statement_token1] = ACTIONS(1377), - [aux_sym_for_statement_token1] = ACTIONS(1377), - [aux_sym_for_statement_token2] = ACTIONS(1377), - [aux_sym_foreach_statement_token1] = ACTIONS(1377), - [aux_sym_foreach_statement_token2] = ACTIONS(1377), - [aux_sym_if_statement_token1] = ACTIONS(1377), - [aux_sym_if_statement_token2] = ACTIONS(1377), - [aux_sym_else_if_clause_token1] = ACTIONS(1377), - [aux_sym_else_clause_token1] = ACTIONS(1377), - [aux_sym_match_expression_token1] = ACTIONS(1377), - [aux_sym_match_default_expression_token1] = ACTIONS(1377), - [aux_sym_switch_statement_token1] = ACTIONS(1377), - [aux_sym_switch_block_token1] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1375), - [anon_sym_AT] = ACTIONS(1375), - [aux_sym_clone_expression_token1] = ACTIONS(1377), - [aux_sym_print_intrinsic_token1] = ACTIONS(1377), - [aux_sym_object_creation_expression_token1] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1375), - [aux_sym__list_destructing_token1] = ACTIONS(1377), - [anon_sym_LBRACK] = ACTIONS(1375), - [anon_sym_self] = ACTIONS(1377), - [anon_sym_parent] = ACTIONS(1377), - [aux_sym__argument_name_token1] = ACTIONS(1377), - [aux_sym__argument_name_token2] = ACTIONS(1377), - [anon_sym_POUND_LBRACK] = ACTIONS(1375), - [aux_sym_encapsed_string_token1] = ACTIONS(1375), - [anon_sym_DQUOTE] = ACTIONS(1375), - [aux_sym_string_token1] = ACTIONS(1375), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_LT_LT_LT] = ACTIONS(1375), - [anon_sym_BQUOTE] = ACTIONS(1375), - [anon_sym_DOLLAR] = ACTIONS(1375), - [aux_sym_yield_expression_token1] = ACTIONS(1377), - [aux_sym_include_expression_token1] = ACTIONS(1377), - [aux_sym_include_once_expression_token1] = ACTIONS(1377), - [aux_sym_require_expression_token1] = ACTIONS(1377), - [aux_sym_require_once_expression_token1] = ACTIONS(1377), + [ts_builtin_sym_end] = ACTIONS(1360), + [sym_name] = ACTIONS(1362), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1360), + [aux_sym_function_static_declaration_token1] = ACTIONS(1362), + [aux_sym_global_declaration_token1] = ACTIONS(1362), + [aux_sym_namespace_definition_token1] = ACTIONS(1362), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1362), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1362), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1362), + [anon_sym_BSLASH] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [aux_sym_trait_declaration_token1] = ACTIONS(1362), + [aux_sym_interface_declaration_token1] = ACTIONS(1362), + [aux_sym_enum_declaration_token1] = ACTIONS(1362), + [aux_sym_enum_case_token1] = ACTIONS(1362), + [aux_sym_class_declaration_token1] = ACTIONS(1362), + [aux_sym_final_modifier_token1] = ACTIONS(1362), + [aux_sym_abstract_modifier_token1] = ACTIONS(1362), + [aux_sym_readonly_modifier_token1] = ACTIONS(1362), + [sym_var_modifier] = ACTIONS(1362), + [aux_sym_visibility_modifier_token1] = ACTIONS(1362), + [aux_sym_visibility_modifier_token2] = ACTIONS(1362), + [aux_sym_visibility_modifier_token3] = ACTIONS(1362), + [aux_sym__arrow_function_header_token1] = ACTIONS(1362), + [anon_sym_LPAREN] = ACTIONS(1360), + [aux_sym_cast_type_token1] = ACTIONS(1362), + [aux_sym_echo_statement_token1] = ACTIONS(1362), + [aux_sym_exit_statement_token1] = ACTIONS(1362), + [anon_sym_unset] = ACTIONS(1362), + [aux_sym_declare_statement_token1] = ACTIONS(1362), + [aux_sym_declare_statement_token2] = ACTIONS(1362), + [sym_float] = ACTIONS(1362), + [aux_sym_try_statement_token1] = ACTIONS(1362), + [aux_sym_goto_statement_token1] = ACTIONS(1362), + [aux_sym_continue_statement_token1] = ACTIONS(1362), + [aux_sym_break_statement_token1] = ACTIONS(1362), + [sym_integer] = ACTIONS(1362), + [aux_sym_return_statement_token1] = ACTIONS(1362), + [aux_sym_throw_expression_token1] = ACTIONS(1362), + [aux_sym_while_statement_token1] = ACTIONS(1362), + [aux_sym_while_statement_token2] = ACTIONS(1362), + [aux_sym_do_statement_token1] = ACTIONS(1362), + [aux_sym_for_statement_token1] = ACTIONS(1362), + [aux_sym_for_statement_token2] = ACTIONS(1362), + [aux_sym_foreach_statement_token1] = ACTIONS(1362), + [aux_sym_foreach_statement_token2] = ACTIONS(1362), + [aux_sym_if_statement_token1] = ACTIONS(1362), + [aux_sym_if_statement_token2] = ACTIONS(1362), + [aux_sym_else_if_clause_token1] = ACTIONS(1362), + [aux_sym_else_clause_token1] = ACTIONS(1362), + [aux_sym_match_expression_token1] = ACTIONS(1362), + [aux_sym_match_default_expression_token1] = ACTIONS(1362), + [aux_sym_switch_statement_token1] = ACTIONS(1362), + [aux_sym_switch_block_token1] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_AT] = ACTIONS(1360), + [aux_sym_clone_expression_token1] = ACTIONS(1362), + [aux_sym_print_intrinsic_token1] = ACTIONS(1362), + [aux_sym_object_creation_expression_token1] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [aux_sym__list_destructing_token1] = ACTIONS(1362), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_self] = ACTIONS(1362), + [anon_sym_parent] = ACTIONS(1362), + [aux_sym__argument_name_token1] = ACTIONS(1362), + [aux_sym__argument_name_token2] = ACTIONS(1362), + [anon_sym_POUND_LBRACK] = ACTIONS(1360), + [aux_sym_encapsed_string_token1] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [aux_sym_string_token1] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_LT_LT_LT] = ACTIONS(1360), + [anon_sym_BQUOTE] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1360), + [aux_sym_yield_expression_token1] = ACTIONS(1362), + [aux_sym_include_expression_token1] = ACTIONS(1362), + [aux_sym_include_once_expression_token1] = ACTIONS(1362), + [aux_sym_require_expression_token1] = ACTIONS(1362), + [aux_sym_require_once_expression_token1] = ACTIONS(1362), [sym_comment] = ACTIONS(5), }, [518] = { [sym_text_interpolation] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1379), - [sym_name] = ACTIONS(1381), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1379), - [aux_sym_function_static_declaration_token1] = ACTIONS(1381), - [aux_sym_global_declaration_token1] = ACTIONS(1381), - [aux_sym_namespace_definition_token1] = ACTIONS(1381), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1381), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1381), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1381), - [anon_sym_BSLASH] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_RBRACE] = ACTIONS(1379), - [aux_sym_trait_declaration_token1] = ACTIONS(1381), - [aux_sym_interface_declaration_token1] = ACTIONS(1381), - [aux_sym_enum_declaration_token1] = ACTIONS(1381), - [aux_sym_enum_case_token1] = ACTIONS(1381), - [aux_sym_class_declaration_token1] = ACTIONS(1381), - [aux_sym_final_modifier_token1] = ACTIONS(1381), - [aux_sym_abstract_modifier_token1] = ACTIONS(1381), - [aux_sym_readonly_modifier_token1] = ACTIONS(1381), - [aux_sym_visibility_modifier_token1] = ACTIONS(1381), - [aux_sym_visibility_modifier_token2] = ACTIONS(1381), - [aux_sym_visibility_modifier_token3] = ACTIONS(1381), - [aux_sym__arrow_function_header_token1] = ACTIONS(1381), - [anon_sym_LPAREN] = ACTIONS(1379), - [aux_sym_cast_type_token1] = ACTIONS(1381), - [aux_sym_echo_statement_token1] = ACTIONS(1381), - [aux_sym_exit_statement_token1] = ACTIONS(1381), - [anon_sym_unset] = ACTIONS(1381), - [aux_sym_declare_statement_token1] = ACTIONS(1381), - [aux_sym_declare_statement_token2] = ACTIONS(1381), - [sym_float] = ACTIONS(1381), - [aux_sym_try_statement_token1] = ACTIONS(1381), - [aux_sym_goto_statement_token1] = ACTIONS(1381), - [aux_sym_continue_statement_token1] = ACTIONS(1381), - [aux_sym_break_statement_token1] = ACTIONS(1381), - [sym_integer] = ACTIONS(1381), - [aux_sym_return_statement_token1] = ACTIONS(1381), - [aux_sym_throw_expression_token1] = ACTIONS(1381), - [aux_sym_while_statement_token1] = ACTIONS(1381), - [aux_sym_while_statement_token2] = ACTIONS(1381), - [aux_sym_do_statement_token1] = ACTIONS(1381), - [aux_sym_for_statement_token1] = ACTIONS(1381), - [aux_sym_for_statement_token2] = ACTIONS(1381), - [aux_sym_foreach_statement_token1] = ACTIONS(1381), - [aux_sym_foreach_statement_token2] = ACTIONS(1381), - [aux_sym_if_statement_token1] = ACTIONS(1381), - [aux_sym_if_statement_token2] = ACTIONS(1381), - [aux_sym_else_if_clause_token1] = ACTIONS(1381), - [aux_sym_else_clause_token1] = ACTIONS(1381), - [aux_sym_match_expression_token1] = ACTIONS(1381), - [aux_sym_match_default_expression_token1] = ACTIONS(1381), - [aux_sym_switch_statement_token1] = ACTIONS(1381), - [aux_sym_switch_block_token1] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1379), - [aux_sym_clone_expression_token1] = ACTIONS(1381), - [aux_sym_print_intrinsic_token1] = ACTIONS(1381), - [aux_sym_object_creation_expression_token1] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [aux_sym__list_destructing_token1] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1379), - [anon_sym_self] = ACTIONS(1381), - [anon_sym_parent] = ACTIONS(1381), - [aux_sym__argument_name_token1] = ACTIONS(1381), - [aux_sym__argument_name_token2] = ACTIONS(1381), - [anon_sym_POUND_LBRACK] = ACTIONS(1379), - [aux_sym_encapsed_string_token1] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1379), - [aux_sym_string_token1] = ACTIONS(1379), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_LT_LT_LT] = ACTIONS(1379), - [anon_sym_BQUOTE] = ACTIONS(1379), - [anon_sym_DOLLAR] = ACTIONS(1379), - [aux_sym_yield_expression_token1] = ACTIONS(1381), - [aux_sym_include_expression_token1] = ACTIONS(1381), - [aux_sym_include_once_expression_token1] = ACTIONS(1381), - [aux_sym_require_expression_token1] = ACTIONS(1381), - [aux_sym_require_once_expression_token1] = ACTIONS(1381), + [ts_builtin_sym_end] = ACTIONS(1364), + [sym_name] = ACTIONS(1366), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1364), + [aux_sym_function_static_declaration_token1] = ACTIONS(1366), + [aux_sym_global_declaration_token1] = ACTIONS(1366), + [aux_sym_namespace_definition_token1] = ACTIONS(1366), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1366), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1366), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1366), + [anon_sym_BSLASH] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1364), + [aux_sym_trait_declaration_token1] = ACTIONS(1366), + [aux_sym_interface_declaration_token1] = ACTIONS(1366), + [aux_sym_enum_declaration_token1] = ACTIONS(1366), + [aux_sym_enum_case_token1] = ACTIONS(1366), + [aux_sym_class_declaration_token1] = ACTIONS(1366), + [aux_sym_final_modifier_token1] = ACTIONS(1366), + [aux_sym_abstract_modifier_token1] = ACTIONS(1366), + [aux_sym_readonly_modifier_token1] = ACTIONS(1366), + [sym_var_modifier] = ACTIONS(1366), + [aux_sym_visibility_modifier_token1] = ACTIONS(1366), + [aux_sym_visibility_modifier_token2] = ACTIONS(1366), + [aux_sym_visibility_modifier_token3] = ACTIONS(1366), + [aux_sym__arrow_function_header_token1] = ACTIONS(1366), + [anon_sym_LPAREN] = ACTIONS(1364), + [aux_sym_cast_type_token1] = ACTIONS(1366), + [aux_sym_echo_statement_token1] = ACTIONS(1366), + [aux_sym_exit_statement_token1] = ACTIONS(1366), + [anon_sym_unset] = ACTIONS(1366), + [aux_sym_declare_statement_token1] = ACTIONS(1366), + [aux_sym_declare_statement_token2] = ACTIONS(1366), + [sym_float] = ACTIONS(1366), + [aux_sym_try_statement_token1] = ACTIONS(1366), + [aux_sym_goto_statement_token1] = ACTIONS(1366), + [aux_sym_continue_statement_token1] = ACTIONS(1366), + [aux_sym_break_statement_token1] = ACTIONS(1366), + [sym_integer] = ACTIONS(1366), + [aux_sym_return_statement_token1] = ACTIONS(1366), + [aux_sym_throw_expression_token1] = ACTIONS(1366), + [aux_sym_while_statement_token1] = ACTIONS(1366), + [aux_sym_while_statement_token2] = ACTIONS(1366), + [aux_sym_do_statement_token1] = ACTIONS(1366), + [aux_sym_for_statement_token1] = ACTIONS(1366), + [aux_sym_for_statement_token2] = ACTIONS(1366), + [aux_sym_foreach_statement_token1] = ACTIONS(1366), + [aux_sym_foreach_statement_token2] = ACTIONS(1366), + [aux_sym_if_statement_token1] = ACTIONS(1366), + [aux_sym_if_statement_token2] = ACTIONS(1366), + [aux_sym_else_if_clause_token1] = ACTIONS(1366), + [aux_sym_else_clause_token1] = ACTIONS(1366), + [aux_sym_match_expression_token1] = ACTIONS(1366), + [aux_sym_match_default_expression_token1] = ACTIONS(1366), + [aux_sym_switch_statement_token1] = ACTIONS(1366), + [aux_sym_switch_block_token1] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_AT] = ACTIONS(1364), + [aux_sym_clone_expression_token1] = ACTIONS(1366), + [aux_sym_print_intrinsic_token1] = ACTIONS(1366), + [aux_sym_object_creation_expression_token1] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [aux_sym__list_destructing_token1] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1364), + [anon_sym_self] = ACTIONS(1366), + [anon_sym_parent] = ACTIONS(1366), + [aux_sym__argument_name_token1] = ACTIONS(1366), + [aux_sym__argument_name_token2] = ACTIONS(1366), + [anon_sym_POUND_LBRACK] = ACTIONS(1364), + [aux_sym_encapsed_string_token1] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [aux_sym_string_token1] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_LT_LT_LT] = ACTIONS(1364), + [anon_sym_BQUOTE] = ACTIONS(1364), + [anon_sym_DOLLAR] = ACTIONS(1364), + [aux_sym_yield_expression_token1] = ACTIONS(1366), + [aux_sym_include_expression_token1] = ACTIONS(1366), + [aux_sym_include_once_expression_token1] = ACTIONS(1366), + [aux_sym_require_expression_token1] = ACTIONS(1366), + [aux_sym_require_once_expression_token1] = ACTIONS(1366), [sym_comment] = ACTIONS(5), }, [519] = { [sym_text_interpolation] = STATE(519), - [ts_builtin_sym_end] = ACTIONS(1383), - [sym_name] = ACTIONS(1385), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1383), - [aux_sym_function_static_declaration_token1] = ACTIONS(1385), - [aux_sym_global_declaration_token1] = ACTIONS(1385), - [aux_sym_namespace_definition_token1] = ACTIONS(1385), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1385), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1385), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1385), - [anon_sym_BSLASH] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1383), - [aux_sym_trait_declaration_token1] = ACTIONS(1385), - [aux_sym_interface_declaration_token1] = ACTIONS(1385), - [aux_sym_enum_declaration_token1] = ACTIONS(1385), - [aux_sym_enum_case_token1] = ACTIONS(1385), - [aux_sym_class_declaration_token1] = ACTIONS(1385), - [aux_sym_final_modifier_token1] = ACTIONS(1385), - [aux_sym_abstract_modifier_token1] = ACTIONS(1385), - [aux_sym_readonly_modifier_token1] = ACTIONS(1385), - [aux_sym_visibility_modifier_token1] = ACTIONS(1385), - [aux_sym_visibility_modifier_token2] = ACTIONS(1385), - [aux_sym_visibility_modifier_token3] = ACTIONS(1385), - [aux_sym__arrow_function_header_token1] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1383), - [aux_sym_cast_type_token1] = ACTIONS(1385), - [aux_sym_echo_statement_token1] = ACTIONS(1385), - [aux_sym_exit_statement_token1] = ACTIONS(1385), - [anon_sym_unset] = ACTIONS(1385), - [aux_sym_declare_statement_token1] = ACTIONS(1385), - [aux_sym_declare_statement_token2] = ACTIONS(1385), - [sym_float] = ACTIONS(1385), - [aux_sym_try_statement_token1] = ACTIONS(1385), - [aux_sym_goto_statement_token1] = ACTIONS(1385), - [aux_sym_continue_statement_token1] = ACTIONS(1385), - [aux_sym_break_statement_token1] = ACTIONS(1385), - [sym_integer] = ACTIONS(1385), - [aux_sym_return_statement_token1] = ACTIONS(1385), - [aux_sym_throw_expression_token1] = ACTIONS(1385), - [aux_sym_while_statement_token1] = ACTIONS(1385), - [aux_sym_while_statement_token2] = ACTIONS(1385), - [aux_sym_do_statement_token1] = ACTIONS(1385), - [aux_sym_for_statement_token1] = ACTIONS(1385), - [aux_sym_for_statement_token2] = ACTIONS(1385), - [aux_sym_foreach_statement_token1] = ACTIONS(1385), - [aux_sym_foreach_statement_token2] = ACTIONS(1385), - [aux_sym_if_statement_token1] = ACTIONS(1385), - [aux_sym_if_statement_token2] = ACTIONS(1385), - [aux_sym_else_if_clause_token1] = ACTIONS(1385), - [aux_sym_else_clause_token1] = ACTIONS(1385), - [aux_sym_match_expression_token1] = ACTIONS(1385), - [aux_sym_match_default_expression_token1] = ACTIONS(1385), - [aux_sym_switch_statement_token1] = ACTIONS(1385), - [aux_sym_switch_block_token1] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1383), - [anon_sym_AT] = ACTIONS(1383), - [aux_sym_clone_expression_token1] = ACTIONS(1385), - [aux_sym_print_intrinsic_token1] = ACTIONS(1385), - [aux_sym_object_creation_expression_token1] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1383), - [aux_sym__list_destructing_token1] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_self] = ACTIONS(1385), - [anon_sym_parent] = ACTIONS(1385), - [aux_sym__argument_name_token1] = ACTIONS(1385), - [aux_sym__argument_name_token2] = ACTIONS(1385), - [anon_sym_POUND_LBRACK] = ACTIONS(1383), - [aux_sym_encapsed_string_token1] = ACTIONS(1383), - [anon_sym_DQUOTE] = ACTIONS(1383), - [aux_sym_string_token1] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1383), - [anon_sym_LT_LT_LT] = ACTIONS(1383), - [anon_sym_BQUOTE] = ACTIONS(1383), - [anon_sym_DOLLAR] = ACTIONS(1383), - [aux_sym_yield_expression_token1] = ACTIONS(1385), - [aux_sym_include_expression_token1] = ACTIONS(1385), - [aux_sym_include_once_expression_token1] = ACTIONS(1385), - [aux_sym_require_expression_token1] = ACTIONS(1385), - [aux_sym_require_once_expression_token1] = ACTIONS(1385), + [ts_builtin_sym_end] = ACTIONS(1144), + [sym_name] = ACTIONS(1146), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1144), + [aux_sym_function_static_declaration_token1] = ACTIONS(1146), + [aux_sym_global_declaration_token1] = ACTIONS(1146), + [aux_sym_namespace_definition_token1] = ACTIONS(1146), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1146), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1146), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1146), + [anon_sym_BSLASH] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_RBRACE] = ACTIONS(1144), + [aux_sym_trait_declaration_token1] = ACTIONS(1146), + [aux_sym_interface_declaration_token1] = ACTIONS(1146), + [aux_sym_enum_declaration_token1] = ACTIONS(1146), + [aux_sym_enum_case_token1] = ACTIONS(1146), + [aux_sym_class_declaration_token1] = ACTIONS(1146), + [aux_sym_final_modifier_token1] = ACTIONS(1146), + [aux_sym_abstract_modifier_token1] = ACTIONS(1146), + [aux_sym_readonly_modifier_token1] = ACTIONS(1146), + [sym_var_modifier] = ACTIONS(1146), + [aux_sym_visibility_modifier_token1] = ACTIONS(1146), + [aux_sym_visibility_modifier_token2] = ACTIONS(1146), + [aux_sym_visibility_modifier_token3] = ACTIONS(1146), + [aux_sym__arrow_function_header_token1] = ACTIONS(1146), + [anon_sym_LPAREN] = ACTIONS(1144), + [aux_sym_cast_type_token1] = ACTIONS(1146), + [aux_sym_echo_statement_token1] = ACTIONS(1146), + [aux_sym_exit_statement_token1] = ACTIONS(1146), + [anon_sym_unset] = ACTIONS(1146), + [aux_sym_declare_statement_token1] = ACTIONS(1146), + [aux_sym_declare_statement_token2] = ACTIONS(1146), + [sym_float] = ACTIONS(1146), + [aux_sym_try_statement_token1] = ACTIONS(1146), + [aux_sym_goto_statement_token1] = ACTIONS(1146), + [aux_sym_continue_statement_token1] = ACTIONS(1146), + [aux_sym_break_statement_token1] = ACTIONS(1146), + [sym_integer] = ACTIONS(1146), + [aux_sym_return_statement_token1] = ACTIONS(1146), + [aux_sym_throw_expression_token1] = ACTIONS(1146), + [aux_sym_while_statement_token1] = ACTIONS(1146), + [aux_sym_while_statement_token2] = ACTIONS(1146), + [aux_sym_do_statement_token1] = ACTIONS(1146), + [aux_sym_for_statement_token1] = ACTIONS(1146), + [aux_sym_for_statement_token2] = ACTIONS(1146), + [aux_sym_foreach_statement_token1] = ACTIONS(1146), + [aux_sym_foreach_statement_token2] = ACTIONS(1146), + [aux_sym_if_statement_token1] = ACTIONS(1146), + [aux_sym_if_statement_token2] = ACTIONS(1146), + [aux_sym_else_if_clause_token1] = ACTIONS(1146), + [aux_sym_else_clause_token1] = ACTIONS(1146), + [aux_sym_match_expression_token1] = ACTIONS(1146), + [aux_sym_match_default_expression_token1] = ACTIONS(1146), + [aux_sym_switch_statement_token1] = ACTIONS(1146), + [aux_sym_switch_block_token1] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1146), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_AT] = ACTIONS(1144), + [aux_sym_clone_expression_token1] = ACTIONS(1146), + [aux_sym_print_intrinsic_token1] = ACTIONS(1146), + [aux_sym_object_creation_expression_token1] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [aux_sym__list_destructing_token1] = ACTIONS(1146), + [anon_sym_LBRACK] = ACTIONS(1144), + [anon_sym_self] = ACTIONS(1146), + [anon_sym_parent] = ACTIONS(1146), + [aux_sym__argument_name_token1] = ACTIONS(1146), + [aux_sym__argument_name_token2] = ACTIONS(1146), + [anon_sym_POUND_LBRACK] = ACTIONS(1144), + [aux_sym_encapsed_string_token1] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [aux_sym_string_token1] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [anon_sym_LT_LT_LT] = ACTIONS(1144), + [anon_sym_BQUOTE] = ACTIONS(1144), + [anon_sym_DOLLAR] = ACTIONS(1144), + [aux_sym_yield_expression_token1] = ACTIONS(1146), + [aux_sym_include_expression_token1] = ACTIONS(1146), + [aux_sym_include_once_expression_token1] = ACTIONS(1146), + [aux_sym_require_expression_token1] = ACTIONS(1146), + [aux_sym_require_once_expression_token1] = ACTIONS(1146), [sym_comment] = ACTIONS(5), }, [520] = { [sym_text_interpolation] = STATE(520), - [ts_builtin_sym_end] = ACTIONS(1387), - [sym_name] = ACTIONS(1389), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1387), - [aux_sym_function_static_declaration_token1] = ACTIONS(1389), - [aux_sym_global_declaration_token1] = ACTIONS(1389), - [aux_sym_namespace_definition_token1] = ACTIONS(1389), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1389), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1389), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1389), - [anon_sym_BSLASH] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_RBRACE] = ACTIONS(1387), - [aux_sym_trait_declaration_token1] = ACTIONS(1389), - [aux_sym_interface_declaration_token1] = ACTIONS(1389), - [aux_sym_enum_declaration_token1] = ACTIONS(1389), - [aux_sym_enum_case_token1] = ACTIONS(1389), - [aux_sym_class_declaration_token1] = ACTIONS(1389), - [aux_sym_final_modifier_token1] = ACTIONS(1389), - [aux_sym_abstract_modifier_token1] = ACTIONS(1389), - [aux_sym_readonly_modifier_token1] = ACTIONS(1389), - [aux_sym_visibility_modifier_token1] = ACTIONS(1389), - [aux_sym_visibility_modifier_token2] = ACTIONS(1389), - [aux_sym_visibility_modifier_token3] = ACTIONS(1389), - [aux_sym__arrow_function_header_token1] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1387), - [aux_sym_cast_type_token1] = ACTIONS(1389), - [aux_sym_echo_statement_token1] = ACTIONS(1389), - [aux_sym_exit_statement_token1] = ACTIONS(1389), - [anon_sym_unset] = ACTIONS(1389), - [aux_sym_declare_statement_token1] = ACTIONS(1389), - [aux_sym_declare_statement_token2] = ACTIONS(1389), - [sym_float] = ACTIONS(1389), - [aux_sym_try_statement_token1] = ACTIONS(1389), - [aux_sym_goto_statement_token1] = ACTIONS(1389), - [aux_sym_continue_statement_token1] = ACTIONS(1389), - [aux_sym_break_statement_token1] = ACTIONS(1389), - [sym_integer] = ACTIONS(1389), - [aux_sym_return_statement_token1] = ACTIONS(1389), - [aux_sym_throw_expression_token1] = ACTIONS(1389), - [aux_sym_while_statement_token1] = ACTIONS(1389), - [aux_sym_while_statement_token2] = ACTIONS(1389), - [aux_sym_do_statement_token1] = ACTIONS(1389), - [aux_sym_for_statement_token1] = ACTIONS(1389), - [aux_sym_for_statement_token2] = ACTIONS(1389), - [aux_sym_foreach_statement_token1] = ACTIONS(1389), - [aux_sym_foreach_statement_token2] = ACTIONS(1389), - [aux_sym_if_statement_token1] = ACTIONS(1389), - [aux_sym_if_statement_token2] = ACTIONS(1389), - [aux_sym_else_if_clause_token1] = ACTIONS(1389), - [aux_sym_else_clause_token1] = ACTIONS(1389), - [aux_sym_match_expression_token1] = ACTIONS(1389), - [aux_sym_match_default_expression_token1] = ACTIONS(1389), - [aux_sym_switch_statement_token1] = ACTIONS(1389), - [aux_sym_switch_block_token1] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_AT] = ACTIONS(1387), - [aux_sym_clone_expression_token1] = ACTIONS(1389), - [aux_sym_print_intrinsic_token1] = ACTIONS(1389), - [aux_sym_object_creation_expression_token1] = ACTIONS(1389), - [anon_sym_DASH_DASH] = ACTIONS(1387), - [anon_sym_PLUS_PLUS] = ACTIONS(1387), - [aux_sym__list_destructing_token1] = ACTIONS(1389), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_self] = ACTIONS(1389), - [anon_sym_parent] = ACTIONS(1389), - [aux_sym__argument_name_token1] = ACTIONS(1389), - [aux_sym__argument_name_token2] = ACTIONS(1389), - [anon_sym_POUND_LBRACK] = ACTIONS(1387), - [aux_sym_encapsed_string_token1] = ACTIONS(1387), - [anon_sym_DQUOTE] = ACTIONS(1387), - [aux_sym_string_token1] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1387), - [anon_sym_LT_LT_LT] = ACTIONS(1387), - [anon_sym_BQUOTE] = ACTIONS(1387), - [anon_sym_DOLLAR] = ACTIONS(1387), - [aux_sym_yield_expression_token1] = ACTIONS(1389), - [aux_sym_include_expression_token1] = ACTIONS(1389), - [aux_sym_include_once_expression_token1] = ACTIONS(1389), - [aux_sym_require_expression_token1] = ACTIONS(1389), - [aux_sym_require_once_expression_token1] = ACTIONS(1389), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_name] = ACTIONS(1158), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1156), + [aux_sym_function_static_declaration_token1] = ACTIONS(1158), + [aux_sym_global_declaration_token1] = ACTIONS(1158), + [aux_sym_namespace_definition_token1] = ACTIONS(1158), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1158), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1158), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1158), + [anon_sym_BSLASH] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [aux_sym_trait_declaration_token1] = ACTIONS(1158), + [aux_sym_interface_declaration_token1] = ACTIONS(1158), + [aux_sym_enum_declaration_token1] = ACTIONS(1158), + [aux_sym_enum_case_token1] = ACTIONS(1158), + [aux_sym_class_declaration_token1] = ACTIONS(1158), + [aux_sym_final_modifier_token1] = ACTIONS(1158), + [aux_sym_abstract_modifier_token1] = ACTIONS(1158), + [aux_sym_readonly_modifier_token1] = ACTIONS(1158), + [sym_var_modifier] = ACTIONS(1158), + [aux_sym_visibility_modifier_token1] = ACTIONS(1158), + [aux_sym_visibility_modifier_token2] = ACTIONS(1158), + [aux_sym_visibility_modifier_token3] = ACTIONS(1158), + [aux_sym__arrow_function_header_token1] = ACTIONS(1158), + [anon_sym_LPAREN] = ACTIONS(1156), + [aux_sym_cast_type_token1] = ACTIONS(1158), + [aux_sym_echo_statement_token1] = ACTIONS(1158), + [aux_sym_exit_statement_token1] = ACTIONS(1158), + [anon_sym_unset] = ACTIONS(1158), + [aux_sym_declare_statement_token1] = ACTIONS(1158), + [aux_sym_declare_statement_token2] = ACTIONS(1158), + [sym_float] = ACTIONS(1158), + [aux_sym_try_statement_token1] = ACTIONS(1158), + [aux_sym_goto_statement_token1] = ACTIONS(1158), + [aux_sym_continue_statement_token1] = ACTIONS(1158), + [aux_sym_break_statement_token1] = ACTIONS(1158), + [sym_integer] = ACTIONS(1158), + [aux_sym_return_statement_token1] = ACTIONS(1158), + [aux_sym_throw_expression_token1] = ACTIONS(1158), + [aux_sym_while_statement_token1] = ACTIONS(1158), + [aux_sym_while_statement_token2] = ACTIONS(1158), + [aux_sym_do_statement_token1] = ACTIONS(1158), + [aux_sym_for_statement_token1] = ACTIONS(1158), + [aux_sym_for_statement_token2] = ACTIONS(1158), + [aux_sym_foreach_statement_token1] = ACTIONS(1158), + [aux_sym_foreach_statement_token2] = ACTIONS(1158), + [aux_sym_if_statement_token1] = ACTIONS(1158), + [aux_sym_if_statement_token2] = ACTIONS(1158), + [aux_sym_else_if_clause_token1] = ACTIONS(1158), + [aux_sym_else_clause_token1] = ACTIONS(1158), + [aux_sym_match_expression_token1] = ACTIONS(1158), + [aux_sym_match_default_expression_token1] = ACTIONS(1158), + [aux_sym_switch_statement_token1] = ACTIONS(1158), + [aux_sym_switch_block_token1] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_AT] = ACTIONS(1156), + [aux_sym_clone_expression_token1] = ACTIONS(1158), + [aux_sym_print_intrinsic_token1] = ACTIONS(1158), + [aux_sym_object_creation_expression_token1] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [aux_sym__list_destructing_token1] = ACTIONS(1158), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_self] = ACTIONS(1158), + [anon_sym_parent] = ACTIONS(1158), + [aux_sym__argument_name_token1] = ACTIONS(1158), + [aux_sym__argument_name_token2] = ACTIONS(1158), + [anon_sym_POUND_LBRACK] = ACTIONS(1156), + [aux_sym_encapsed_string_token1] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [aux_sym_string_token1] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_LT_LT_LT] = ACTIONS(1156), + [anon_sym_BQUOTE] = ACTIONS(1156), + [anon_sym_DOLLAR] = ACTIONS(1156), + [aux_sym_yield_expression_token1] = ACTIONS(1158), + [aux_sym_include_expression_token1] = ACTIONS(1158), + [aux_sym_include_once_expression_token1] = ACTIONS(1158), + [aux_sym_require_expression_token1] = ACTIONS(1158), + [aux_sym_require_once_expression_token1] = ACTIONS(1158), [sym_comment] = ACTIONS(5), }, [521] = { [sym_text_interpolation] = STATE(521), - [ts_builtin_sym_end] = ACTIONS(1391), - [sym_name] = ACTIONS(1393), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1391), - [aux_sym_function_static_declaration_token1] = ACTIONS(1393), - [aux_sym_global_declaration_token1] = ACTIONS(1393), - [aux_sym_namespace_definition_token1] = ACTIONS(1393), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1393), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1393), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1393), - [anon_sym_BSLASH] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_RBRACE] = ACTIONS(1391), - [aux_sym_trait_declaration_token1] = ACTIONS(1393), - [aux_sym_interface_declaration_token1] = ACTIONS(1393), - [aux_sym_enum_declaration_token1] = ACTIONS(1393), - [aux_sym_enum_case_token1] = ACTIONS(1393), - [aux_sym_class_declaration_token1] = ACTIONS(1393), - [aux_sym_final_modifier_token1] = ACTIONS(1393), - [aux_sym_abstract_modifier_token1] = ACTIONS(1393), - [aux_sym_readonly_modifier_token1] = ACTIONS(1393), - [aux_sym_visibility_modifier_token1] = ACTIONS(1393), - [aux_sym_visibility_modifier_token2] = ACTIONS(1393), - [aux_sym_visibility_modifier_token3] = ACTIONS(1393), - [aux_sym__arrow_function_header_token1] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1391), - [aux_sym_cast_type_token1] = ACTIONS(1393), - [aux_sym_echo_statement_token1] = ACTIONS(1393), - [aux_sym_exit_statement_token1] = ACTIONS(1393), - [anon_sym_unset] = ACTIONS(1393), - [aux_sym_declare_statement_token1] = ACTIONS(1393), - [aux_sym_declare_statement_token2] = ACTIONS(1393), - [sym_float] = ACTIONS(1393), - [aux_sym_try_statement_token1] = ACTIONS(1393), - [aux_sym_goto_statement_token1] = ACTIONS(1393), - [aux_sym_continue_statement_token1] = ACTIONS(1393), - [aux_sym_break_statement_token1] = ACTIONS(1393), - [sym_integer] = ACTIONS(1393), - [aux_sym_return_statement_token1] = ACTIONS(1393), - [aux_sym_throw_expression_token1] = ACTIONS(1393), - [aux_sym_while_statement_token1] = ACTIONS(1393), - [aux_sym_while_statement_token2] = ACTIONS(1393), - [aux_sym_do_statement_token1] = ACTIONS(1393), - [aux_sym_for_statement_token1] = ACTIONS(1393), - [aux_sym_for_statement_token2] = ACTIONS(1393), - [aux_sym_foreach_statement_token1] = ACTIONS(1393), - [aux_sym_foreach_statement_token2] = ACTIONS(1393), - [aux_sym_if_statement_token1] = ACTIONS(1393), - [aux_sym_if_statement_token2] = ACTIONS(1393), - [aux_sym_else_if_clause_token1] = ACTIONS(1393), - [aux_sym_else_clause_token1] = ACTIONS(1393), - [aux_sym_match_expression_token1] = ACTIONS(1393), - [aux_sym_match_default_expression_token1] = ACTIONS(1393), - [aux_sym_switch_statement_token1] = ACTIONS(1393), - [aux_sym_switch_block_token1] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1393), - [anon_sym_DASH] = ACTIONS(1393), - [anon_sym_TILDE] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1391), - [aux_sym_clone_expression_token1] = ACTIONS(1393), - [aux_sym_print_intrinsic_token1] = ACTIONS(1393), - [aux_sym_object_creation_expression_token1] = ACTIONS(1393), - [anon_sym_DASH_DASH] = ACTIONS(1391), - [anon_sym_PLUS_PLUS] = ACTIONS(1391), - [aux_sym__list_destructing_token1] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_self] = ACTIONS(1393), - [anon_sym_parent] = ACTIONS(1393), - [aux_sym__argument_name_token1] = ACTIONS(1393), - [aux_sym__argument_name_token2] = ACTIONS(1393), - [anon_sym_POUND_LBRACK] = ACTIONS(1391), - [aux_sym_encapsed_string_token1] = ACTIONS(1391), - [anon_sym_DQUOTE] = ACTIONS(1391), - [aux_sym_string_token1] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1391), - [anon_sym_LT_LT_LT] = ACTIONS(1391), - [anon_sym_BQUOTE] = ACTIONS(1391), - [anon_sym_DOLLAR] = ACTIONS(1391), - [aux_sym_yield_expression_token1] = ACTIONS(1393), - [aux_sym_include_expression_token1] = ACTIONS(1393), - [aux_sym_include_once_expression_token1] = ACTIONS(1393), - [aux_sym_require_expression_token1] = ACTIONS(1393), - [aux_sym_require_once_expression_token1] = ACTIONS(1393), + [ts_builtin_sym_end] = ACTIONS(1368), + [sym_name] = ACTIONS(1370), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1368), + [aux_sym_function_static_declaration_token1] = ACTIONS(1370), + [aux_sym_global_declaration_token1] = ACTIONS(1370), + [aux_sym_namespace_definition_token1] = ACTIONS(1370), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1370), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1370), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1370), + [anon_sym_BSLASH] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [aux_sym_trait_declaration_token1] = ACTIONS(1370), + [aux_sym_interface_declaration_token1] = ACTIONS(1370), + [aux_sym_enum_declaration_token1] = ACTIONS(1370), + [aux_sym_enum_case_token1] = ACTIONS(1370), + [aux_sym_class_declaration_token1] = ACTIONS(1370), + [aux_sym_final_modifier_token1] = ACTIONS(1370), + [aux_sym_abstract_modifier_token1] = ACTIONS(1370), + [aux_sym_readonly_modifier_token1] = ACTIONS(1370), + [sym_var_modifier] = ACTIONS(1370), + [aux_sym_visibility_modifier_token1] = ACTIONS(1370), + [aux_sym_visibility_modifier_token2] = ACTIONS(1370), + [aux_sym_visibility_modifier_token3] = ACTIONS(1370), + [aux_sym__arrow_function_header_token1] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1368), + [aux_sym_cast_type_token1] = ACTIONS(1370), + [aux_sym_echo_statement_token1] = ACTIONS(1370), + [aux_sym_exit_statement_token1] = ACTIONS(1370), + [anon_sym_unset] = ACTIONS(1370), + [aux_sym_declare_statement_token1] = ACTIONS(1370), + [aux_sym_declare_statement_token2] = ACTIONS(1370), + [sym_float] = ACTIONS(1370), + [aux_sym_try_statement_token1] = ACTIONS(1370), + [aux_sym_goto_statement_token1] = ACTIONS(1370), + [aux_sym_continue_statement_token1] = ACTIONS(1370), + [aux_sym_break_statement_token1] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [aux_sym_return_statement_token1] = ACTIONS(1370), + [aux_sym_throw_expression_token1] = ACTIONS(1370), + [aux_sym_while_statement_token1] = ACTIONS(1370), + [aux_sym_while_statement_token2] = ACTIONS(1370), + [aux_sym_do_statement_token1] = ACTIONS(1370), + [aux_sym_for_statement_token1] = ACTIONS(1370), + [aux_sym_for_statement_token2] = ACTIONS(1370), + [aux_sym_foreach_statement_token1] = ACTIONS(1370), + [aux_sym_foreach_statement_token2] = ACTIONS(1370), + [aux_sym_if_statement_token1] = ACTIONS(1370), + [aux_sym_if_statement_token2] = ACTIONS(1370), + [aux_sym_else_if_clause_token1] = ACTIONS(1370), + [aux_sym_else_clause_token1] = ACTIONS(1370), + [aux_sym_match_expression_token1] = ACTIONS(1370), + [aux_sym_match_default_expression_token1] = ACTIONS(1370), + [aux_sym_switch_statement_token1] = ACTIONS(1370), + [aux_sym_switch_block_token1] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_AT] = ACTIONS(1368), + [aux_sym_clone_expression_token1] = ACTIONS(1370), + [aux_sym_print_intrinsic_token1] = ACTIONS(1370), + [aux_sym_object_creation_expression_token1] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [aux_sym__list_destructing_token1] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_self] = ACTIONS(1370), + [anon_sym_parent] = ACTIONS(1370), + [aux_sym__argument_name_token1] = ACTIONS(1370), + [aux_sym__argument_name_token2] = ACTIONS(1370), + [anon_sym_POUND_LBRACK] = ACTIONS(1368), + [aux_sym_encapsed_string_token1] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [aux_sym_string_token1] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_LT_LT_LT] = ACTIONS(1368), + [anon_sym_BQUOTE] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [aux_sym_yield_expression_token1] = ACTIONS(1370), + [aux_sym_include_expression_token1] = ACTIONS(1370), + [aux_sym_include_once_expression_token1] = ACTIONS(1370), + [aux_sym_require_expression_token1] = ACTIONS(1370), + [aux_sym_require_once_expression_token1] = ACTIONS(1370), [sym_comment] = ACTIONS(5), }, [522] = { [sym_text_interpolation] = STATE(522), - [ts_builtin_sym_end] = ACTIONS(1395), - [sym_name] = ACTIONS(1397), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1395), - [aux_sym_function_static_declaration_token1] = ACTIONS(1397), - [aux_sym_global_declaration_token1] = ACTIONS(1397), - [aux_sym_namespace_definition_token1] = ACTIONS(1397), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1397), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1397), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1397), - [anon_sym_BSLASH] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [aux_sym_trait_declaration_token1] = ACTIONS(1397), - [aux_sym_interface_declaration_token1] = ACTIONS(1397), - [aux_sym_enum_declaration_token1] = ACTIONS(1397), - [aux_sym_enum_case_token1] = ACTIONS(1397), - [aux_sym_class_declaration_token1] = ACTIONS(1397), - [aux_sym_final_modifier_token1] = ACTIONS(1397), - [aux_sym_abstract_modifier_token1] = ACTIONS(1397), - [aux_sym_readonly_modifier_token1] = ACTIONS(1397), - [aux_sym_visibility_modifier_token1] = ACTIONS(1397), - [aux_sym_visibility_modifier_token2] = ACTIONS(1397), - [aux_sym_visibility_modifier_token3] = ACTIONS(1397), - [aux_sym__arrow_function_header_token1] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1395), - [aux_sym_cast_type_token1] = ACTIONS(1397), - [aux_sym_echo_statement_token1] = ACTIONS(1397), - [aux_sym_exit_statement_token1] = ACTIONS(1397), - [anon_sym_unset] = ACTIONS(1397), - [aux_sym_declare_statement_token1] = ACTIONS(1397), - [aux_sym_declare_statement_token2] = ACTIONS(1397), - [sym_float] = ACTIONS(1397), - [aux_sym_try_statement_token1] = ACTIONS(1397), - [aux_sym_goto_statement_token1] = ACTIONS(1397), - [aux_sym_continue_statement_token1] = ACTIONS(1397), - [aux_sym_break_statement_token1] = ACTIONS(1397), - [sym_integer] = ACTIONS(1397), - [aux_sym_return_statement_token1] = ACTIONS(1397), - [aux_sym_throw_expression_token1] = ACTIONS(1397), - [aux_sym_while_statement_token1] = ACTIONS(1397), - [aux_sym_while_statement_token2] = ACTIONS(1397), - [aux_sym_do_statement_token1] = ACTIONS(1397), - [aux_sym_for_statement_token1] = ACTIONS(1397), - [aux_sym_for_statement_token2] = ACTIONS(1397), - [aux_sym_foreach_statement_token1] = ACTIONS(1397), - [aux_sym_foreach_statement_token2] = ACTIONS(1397), - [aux_sym_if_statement_token1] = ACTIONS(1397), - [aux_sym_if_statement_token2] = ACTIONS(1397), - [aux_sym_else_if_clause_token1] = ACTIONS(1397), - [aux_sym_else_clause_token1] = ACTIONS(1397), - [aux_sym_match_expression_token1] = ACTIONS(1397), - [aux_sym_match_default_expression_token1] = ACTIONS(1397), - [aux_sym_switch_statement_token1] = ACTIONS(1397), - [aux_sym_switch_block_token1] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1395), - [aux_sym_clone_expression_token1] = ACTIONS(1397), - [aux_sym_print_intrinsic_token1] = ACTIONS(1397), - [aux_sym_object_creation_expression_token1] = ACTIONS(1397), - [anon_sym_DASH_DASH] = ACTIONS(1395), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [aux_sym__list_destructing_token1] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_self] = ACTIONS(1397), - [anon_sym_parent] = ACTIONS(1397), - [aux_sym__argument_name_token1] = ACTIONS(1397), - [aux_sym__argument_name_token2] = ACTIONS(1397), - [anon_sym_POUND_LBRACK] = ACTIONS(1395), - [aux_sym_encapsed_string_token1] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [aux_sym_string_token1] = ACTIONS(1395), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_LT_LT_LT] = ACTIONS(1395), - [anon_sym_BQUOTE] = ACTIONS(1395), - [anon_sym_DOLLAR] = ACTIONS(1395), - [aux_sym_yield_expression_token1] = ACTIONS(1397), - [aux_sym_include_expression_token1] = ACTIONS(1397), - [aux_sym_include_once_expression_token1] = ACTIONS(1397), - [aux_sym_require_expression_token1] = ACTIONS(1397), - [aux_sym_require_once_expression_token1] = ACTIONS(1397), + [ts_builtin_sym_end] = ACTIONS(1372), + [sym_name] = ACTIONS(1374), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1372), + [aux_sym_function_static_declaration_token1] = ACTIONS(1374), + [aux_sym_global_declaration_token1] = ACTIONS(1374), + [aux_sym_namespace_definition_token1] = ACTIONS(1374), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1374), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1374), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1374), + [anon_sym_BSLASH] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_RBRACE] = ACTIONS(1372), + [aux_sym_trait_declaration_token1] = ACTIONS(1374), + [aux_sym_interface_declaration_token1] = ACTIONS(1374), + [aux_sym_enum_declaration_token1] = ACTIONS(1374), + [aux_sym_enum_case_token1] = ACTIONS(1374), + [aux_sym_class_declaration_token1] = ACTIONS(1374), + [aux_sym_final_modifier_token1] = ACTIONS(1374), + [aux_sym_abstract_modifier_token1] = ACTIONS(1374), + [aux_sym_readonly_modifier_token1] = ACTIONS(1374), + [sym_var_modifier] = ACTIONS(1374), + [aux_sym_visibility_modifier_token1] = ACTIONS(1374), + [aux_sym_visibility_modifier_token2] = ACTIONS(1374), + [aux_sym_visibility_modifier_token3] = ACTIONS(1374), + [aux_sym__arrow_function_header_token1] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1372), + [aux_sym_cast_type_token1] = ACTIONS(1374), + [aux_sym_echo_statement_token1] = ACTIONS(1374), + [aux_sym_exit_statement_token1] = ACTIONS(1374), + [anon_sym_unset] = ACTIONS(1374), + [aux_sym_declare_statement_token1] = ACTIONS(1374), + [aux_sym_declare_statement_token2] = ACTIONS(1374), + [sym_float] = ACTIONS(1374), + [aux_sym_try_statement_token1] = ACTIONS(1374), + [aux_sym_goto_statement_token1] = ACTIONS(1374), + [aux_sym_continue_statement_token1] = ACTIONS(1374), + [aux_sym_break_statement_token1] = ACTIONS(1374), + [sym_integer] = ACTIONS(1374), + [aux_sym_return_statement_token1] = ACTIONS(1374), + [aux_sym_throw_expression_token1] = ACTIONS(1374), + [aux_sym_while_statement_token1] = ACTIONS(1374), + [aux_sym_while_statement_token2] = ACTIONS(1374), + [aux_sym_do_statement_token1] = ACTIONS(1374), + [aux_sym_for_statement_token1] = ACTIONS(1374), + [aux_sym_for_statement_token2] = ACTIONS(1374), + [aux_sym_foreach_statement_token1] = ACTIONS(1374), + [aux_sym_foreach_statement_token2] = ACTIONS(1374), + [aux_sym_if_statement_token1] = ACTIONS(1374), + [aux_sym_if_statement_token2] = ACTIONS(1374), + [aux_sym_else_if_clause_token1] = ACTIONS(1374), + [aux_sym_else_clause_token1] = ACTIONS(1374), + [aux_sym_match_expression_token1] = ACTIONS(1374), + [aux_sym_match_default_expression_token1] = ACTIONS(1374), + [aux_sym_switch_statement_token1] = ACTIONS(1374), + [aux_sym_switch_block_token1] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_AT] = ACTIONS(1372), + [aux_sym_clone_expression_token1] = ACTIONS(1374), + [aux_sym_print_intrinsic_token1] = ACTIONS(1374), + [aux_sym_object_creation_expression_token1] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [aux_sym__list_destructing_token1] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1372), + [anon_sym_self] = ACTIONS(1374), + [anon_sym_parent] = ACTIONS(1374), + [aux_sym__argument_name_token1] = ACTIONS(1374), + [aux_sym__argument_name_token2] = ACTIONS(1374), + [anon_sym_POUND_LBRACK] = ACTIONS(1372), + [aux_sym_encapsed_string_token1] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [aux_sym_string_token1] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_LT_LT_LT] = ACTIONS(1372), + [anon_sym_BQUOTE] = ACTIONS(1372), + [anon_sym_DOLLAR] = ACTIONS(1372), + [aux_sym_yield_expression_token1] = ACTIONS(1374), + [aux_sym_include_expression_token1] = ACTIONS(1374), + [aux_sym_include_once_expression_token1] = ACTIONS(1374), + [aux_sym_require_expression_token1] = ACTIONS(1374), + [aux_sym_require_once_expression_token1] = ACTIONS(1374), [sym_comment] = ACTIONS(5), }, [523] = { [sym_text_interpolation] = STATE(523), - [ts_builtin_sym_end] = ACTIONS(1399), - [sym_name] = ACTIONS(1401), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1399), - [aux_sym_function_static_declaration_token1] = ACTIONS(1401), - [aux_sym_global_declaration_token1] = ACTIONS(1401), - [aux_sym_namespace_definition_token1] = ACTIONS(1401), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1401), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1401), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1401), - [anon_sym_BSLASH] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [aux_sym_trait_declaration_token1] = ACTIONS(1401), - [aux_sym_interface_declaration_token1] = ACTIONS(1401), - [aux_sym_enum_declaration_token1] = ACTIONS(1401), - [aux_sym_enum_case_token1] = ACTIONS(1401), - [aux_sym_class_declaration_token1] = ACTIONS(1401), - [aux_sym_final_modifier_token1] = ACTIONS(1401), - [aux_sym_abstract_modifier_token1] = ACTIONS(1401), - [aux_sym_readonly_modifier_token1] = ACTIONS(1401), - [aux_sym_visibility_modifier_token1] = ACTIONS(1401), - [aux_sym_visibility_modifier_token2] = ACTIONS(1401), - [aux_sym_visibility_modifier_token3] = ACTIONS(1401), - [aux_sym__arrow_function_header_token1] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1399), - [aux_sym_cast_type_token1] = ACTIONS(1401), - [aux_sym_echo_statement_token1] = ACTIONS(1401), - [aux_sym_exit_statement_token1] = ACTIONS(1401), - [anon_sym_unset] = ACTIONS(1401), - [aux_sym_declare_statement_token1] = ACTIONS(1401), - [aux_sym_declare_statement_token2] = ACTIONS(1401), - [sym_float] = ACTIONS(1401), - [aux_sym_try_statement_token1] = ACTIONS(1401), - [aux_sym_goto_statement_token1] = ACTIONS(1401), - [aux_sym_continue_statement_token1] = ACTIONS(1401), - [aux_sym_break_statement_token1] = ACTIONS(1401), - [sym_integer] = ACTIONS(1401), - [aux_sym_return_statement_token1] = ACTIONS(1401), - [aux_sym_throw_expression_token1] = ACTIONS(1401), - [aux_sym_while_statement_token1] = ACTIONS(1401), - [aux_sym_while_statement_token2] = ACTIONS(1401), - [aux_sym_do_statement_token1] = ACTIONS(1401), - [aux_sym_for_statement_token1] = ACTIONS(1401), - [aux_sym_for_statement_token2] = ACTIONS(1401), - [aux_sym_foreach_statement_token1] = ACTIONS(1401), - [aux_sym_foreach_statement_token2] = ACTIONS(1401), - [aux_sym_if_statement_token1] = ACTIONS(1401), - [aux_sym_if_statement_token2] = ACTIONS(1401), - [aux_sym_else_if_clause_token1] = ACTIONS(1401), - [aux_sym_else_clause_token1] = ACTIONS(1401), - [aux_sym_match_expression_token1] = ACTIONS(1401), - [aux_sym_match_default_expression_token1] = ACTIONS(1401), - [aux_sym_switch_statement_token1] = ACTIONS(1401), - [aux_sym_switch_block_token1] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1399), - [anon_sym_AT] = ACTIONS(1399), - [aux_sym_clone_expression_token1] = ACTIONS(1401), - [aux_sym_print_intrinsic_token1] = ACTIONS(1401), - [aux_sym_object_creation_expression_token1] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [aux_sym__list_destructing_token1] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_self] = ACTIONS(1401), - [anon_sym_parent] = ACTIONS(1401), - [aux_sym__argument_name_token1] = ACTIONS(1401), - [aux_sym__argument_name_token2] = ACTIONS(1401), - [anon_sym_POUND_LBRACK] = ACTIONS(1399), - [aux_sym_encapsed_string_token1] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_SQUOTE] = ACTIONS(1399), - [anon_sym_LT_LT_LT] = ACTIONS(1399), - [anon_sym_BQUOTE] = ACTIONS(1399), - [anon_sym_DOLLAR] = ACTIONS(1399), - [aux_sym_yield_expression_token1] = ACTIONS(1401), - [aux_sym_include_expression_token1] = ACTIONS(1401), - [aux_sym_include_once_expression_token1] = ACTIONS(1401), - [aux_sym_require_expression_token1] = ACTIONS(1401), - [aux_sym_require_once_expression_token1] = ACTIONS(1401), + [ts_builtin_sym_end] = ACTIONS(1376), + [sym_name] = ACTIONS(1378), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1376), + [aux_sym_function_static_declaration_token1] = ACTIONS(1378), + [aux_sym_global_declaration_token1] = ACTIONS(1378), + [aux_sym_namespace_definition_token1] = ACTIONS(1378), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1378), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1378), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1378), + [anon_sym_BSLASH] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1376), + [aux_sym_trait_declaration_token1] = ACTIONS(1378), + [aux_sym_interface_declaration_token1] = ACTIONS(1378), + [aux_sym_enum_declaration_token1] = ACTIONS(1378), + [aux_sym_enum_case_token1] = ACTIONS(1378), + [aux_sym_class_declaration_token1] = ACTIONS(1378), + [aux_sym_final_modifier_token1] = ACTIONS(1378), + [aux_sym_abstract_modifier_token1] = ACTIONS(1378), + [aux_sym_readonly_modifier_token1] = ACTIONS(1378), + [sym_var_modifier] = ACTIONS(1378), + [aux_sym_visibility_modifier_token1] = ACTIONS(1378), + [aux_sym_visibility_modifier_token2] = ACTIONS(1378), + [aux_sym_visibility_modifier_token3] = ACTIONS(1378), + [aux_sym__arrow_function_header_token1] = ACTIONS(1378), + [anon_sym_LPAREN] = ACTIONS(1376), + [aux_sym_cast_type_token1] = ACTIONS(1378), + [aux_sym_echo_statement_token1] = ACTIONS(1378), + [aux_sym_exit_statement_token1] = ACTIONS(1378), + [anon_sym_unset] = ACTIONS(1378), + [aux_sym_declare_statement_token1] = ACTIONS(1378), + [aux_sym_declare_statement_token2] = ACTIONS(1378), + [sym_float] = ACTIONS(1378), + [aux_sym_try_statement_token1] = ACTIONS(1378), + [aux_sym_goto_statement_token1] = ACTIONS(1378), + [aux_sym_continue_statement_token1] = ACTIONS(1378), + [aux_sym_break_statement_token1] = ACTIONS(1378), + [sym_integer] = ACTIONS(1378), + [aux_sym_return_statement_token1] = ACTIONS(1378), + [aux_sym_throw_expression_token1] = ACTIONS(1378), + [aux_sym_while_statement_token1] = ACTIONS(1378), + [aux_sym_while_statement_token2] = ACTIONS(1378), + [aux_sym_do_statement_token1] = ACTIONS(1378), + [aux_sym_for_statement_token1] = ACTIONS(1378), + [aux_sym_for_statement_token2] = ACTIONS(1378), + [aux_sym_foreach_statement_token1] = ACTIONS(1378), + [aux_sym_foreach_statement_token2] = ACTIONS(1378), + [aux_sym_if_statement_token1] = ACTIONS(1378), + [aux_sym_if_statement_token2] = ACTIONS(1378), + [aux_sym_else_if_clause_token1] = ACTIONS(1378), + [aux_sym_else_clause_token1] = ACTIONS(1378), + [aux_sym_match_expression_token1] = ACTIONS(1378), + [aux_sym_match_default_expression_token1] = ACTIONS(1378), + [aux_sym_switch_statement_token1] = ACTIONS(1378), + [aux_sym_switch_block_token1] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_AT] = ACTIONS(1376), + [aux_sym_clone_expression_token1] = ACTIONS(1378), + [aux_sym_print_intrinsic_token1] = ACTIONS(1378), + [aux_sym_object_creation_expression_token1] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [aux_sym__list_destructing_token1] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_self] = ACTIONS(1378), + [anon_sym_parent] = ACTIONS(1378), + [aux_sym__argument_name_token1] = ACTIONS(1378), + [aux_sym__argument_name_token2] = ACTIONS(1378), + [anon_sym_POUND_LBRACK] = ACTIONS(1376), + [aux_sym_encapsed_string_token1] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [aux_sym_string_token1] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_LT_LT_LT] = ACTIONS(1376), + [anon_sym_BQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR] = ACTIONS(1376), + [aux_sym_yield_expression_token1] = ACTIONS(1378), + [aux_sym_include_expression_token1] = ACTIONS(1378), + [aux_sym_include_once_expression_token1] = ACTIONS(1378), + [aux_sym_require_expression_token1] = ACTIONS(1378), + [aux_sym_require_once_expression_token1] = ACTIONS(1378), [sym_comment] = ACTIONS(5), }, [524] = { [sym_text_interpolation] = STATE(524), - [ts_builtin_sym_end] = ACTIONS(1403), - [sym_name] = ACTIONS(1405), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1403), - [aux_sym_function_static_declaration_token1] = ACTIONS(1405), - [aux_sym_global_declaration_token1] = ACTIONS(1405), - [aux_sym_namespace_definition_token1] = ACTIONS(1405), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1405), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1405), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1405), - [anon_sym_BSLASH] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [aux_sym_trait_declaration_token1] = ACTIONS(1405), - [aux_sym_interface_declaration_token1] = ACTIONS(1405), - [aux_sym_enum_declaration_token1] = ACTIONS(1405), - [aux_sym_enum_case_token1] = ACTIONS(1405), - [aux_sym_class_declaration_token1] = ACTIONS(1405), - [aux_sym_final_modifier_token1] = ACTIONS(1405), - [aux_sym_abstract_modifier_token1] = ACTIONS(1405), - [aux_sym_readonly_modifier_token1] = ACTIONS(1405), - [aux_sym_visibility_modifier_token1] = ACTIONS(1405), - [aux_sym_visibility_modifier_token2] = ACTIONS(1405), - [aux_sym_visibility_modifier_token3] = ACTIONS(1405), - [aux_sym__arrow_function_header_token1] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1403), - [aux_sym_cast_type_token1] = ACTIONS(1405), - [aux_sym_echo_statement_token1] = ACTIONS(1405), - [aux_sym_exit_statement_token1] = ACTIONS(1405), - [anon_sym_unset] = ACTIONS(1405), - [aux_sym_declare_statement_token1] = ACTIONS(1405), - [aux_sym_declare_statement_token2] = ACTIONS(1405), - [sym_float] = ACTIONS(1405), - [aux_sym_try_statement_token1] = ACTIONS(1405), - [aux_sym_goto_statement_token1] = ACTIONS(1405), - [aux_sym_continue_statement_token1] = ACTIONS(1405), - [aux_sym_break_statement_token1] = ACTIONS(1405), - [sym_integer] = ACTIONS(1405), - [aux_sym_return_statement_token1] = ACTIONS(1405), - [aux_sym_throw_expression_token1] = ACTIONS(1405), - [aux_sym_while_statement_token1] = ACTIONS(1405), - [aux_sym_while_statement_token2] = ACTIONS(1405), - [aux_sym_do_statement_token1] = ACTIONS(1405), - [aux_sym_for_statement_token1] = ACTIONS(1405), - [aux_sym_for_statement_token2] = ACTIONS(1405), - [aux_sym_foreach_statement_token1] = ACTIONS(1405), - [aux_sym_foreach_statement_token2] = ACTIONS(1405), - [aux_sym_if_statement_token1] = ACTIONS(1405), - [aux_sym_if_statement_token2] = ACTIONS(1405), - [aux_sym_else_if_clause_token1] = ACTIONS(1405), - [aux_sym_else_clause_token1] = ACTIONS(1405), - [aux_sym_match_expression_token1] = ACTIONS(1405), - [aux_sym_match_default_expression_token1] = ACTIONS(1405), - [aux_sym_switch_statement_token1] = ACTIONS(1405), - [aux_sym_switch_block_token1] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_AT] = ACTIONS(1403), - [aux_sym_clone_expression_token1] = ACTIONS(1405), - [aux_sym_print_intrinsic_token1] = ACTIONS(1405), - [aux_sym_object_creation_expression_token1] = ACTIONS(1405), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [aux_sym__list_destructing_token1] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1403), - [anon_sym_self] = ACTIONS(1405), - [anon_sym_parent] = ACTIONS(1405), - [aux_sym__argument_name_token1] = ACTIONS(1405), - [aux_sym__argument_name_token2] = ACTIONS(1405), - [anon_sym_POUND_LBRACK] = ACTIONS(1403), - [aux_sym_encapsed_string_token1] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [aux_sym_string_token1] = ACTIONS(1403), - [anon_sym_SQUOTE] = ACTIONS(1403), - [anon_sym_LT_LT_LT] = ACTIONS(1403), - [anon_sym_BQUOTE] = ACTIONS(1403), - [anon_sym_DOLLAR] = ACTIONS(1403), - [aux_sym_yield_expression_token1] = ACTIONS(1405), - [aux_sym_include_expression_token1] = ACTIONS(1405), - [aux_sym_include_once_expression_token1] = ACTIONS(1405), - [aux_sym_require_expression_token1] = ACTIONS(1405), - [aux_sym_require_once_expression_token1] = ACTIONS(1405), + [ts_builtin_sym_end] = ACTIONS(1380), + [sym_name] = ACTIONS(1382), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1380), + [aux_sym_function_static_declaration_token1] = ACTIONS(1382), + [aux_sym_global_declaration_token1] = ACTIONS(1382), + [aux_sym_namespace_definition_token1] = ACTIONS(1382), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1382), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1382), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1382), + [anon_sym_BSLASH] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1380), + [aux_sym_trait_declaration_token1] = ACTIONS(1382), + [aux_sym_interface_declaration_token1] = ACTIONS(1382), + [aux_sym_enum_declaration_token1] = ACTIONS(1382), + [aux_sym_enum_case_token1] = ACTIONS(1382), + [aux_sym_class_declaration_token1] = ACTIONS(1382), + [aux_sym_final_modifier_token1] = ACTIONS(1382), + [aux_sym_abstract_modifier_token1] = ACTIONS(1382), + [aux_sym_readonly_modifier_token1] = ACTIONS(1382), + [sym_var_modifier] = ACTIONS(1382), + [aux_sym_visibility_modifier_token1] = ACTIONS(1382), + [aux_sym_visibility_modifier_token2] = ACTIONS(1382), + [aux_sym_visibility_modifier_token3] = ACTIONS(1382), + [aux_sym__arrow_function_header_token1] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1380), + [aux_sym_cast_type_token1] = ACTIONS(1382), + [aux_sym_echo_statement_token1] = ACTIONS(1382), + [aux_sym_exit_statement_token1] = ACTIONS(1382), + [anon_sym_unset] = ACTIONS(1382), + [aux_sym_declare_statement_token1] = ACTIONS(1382), + [aux_sym_declare_statement_token2] = ACTIONS(1382), + [sym_float] = ACTIONS(1382), + [aux_sym_try_statement_token1] = ACTIONS(1382), + [aux_sym_goto_statement_token1] = ACTIONS(1382), + [aux_sym_continue_statement_token1] = ACTIONS(1382), + [aux_sym_break_statement_token1] = ACTIONS(1382), + [sym_integer] = ACTIONS(1382), + [aux_sym_return_statement_token1] = ACTIONS(1382), + [aux_sym_throw_expression_token1] = ACTIONS(1382), + [aux_sym_while_statement_token1] = ACTIONS(1382), + [aux_sym_while_statement_token2] = ACTIONS(1382), + [aux_sym_do_statement_token1] = ACTIONS(1382), + [aux_sym_for_statement_token1] = ACTIONS(1382), + [aux_sym_for_statement_token2] = ACTIONS(1382), + [aux_sym_foreach_statement_token1] = ACTIONS(1382), + [aux_sym_foreach_statement_token2] = ACTIONS(1382), + [aux_sym_if_statement_token1] = ACTIONS(1382), + [aux_sym_if_statement_token2] = ACTIONS(1382), + [aux_sym_else_if_clause_token1] = ACTIONS(1382), + [aux_sym_else_clause_token1] = ACTIONS(1382), + [aux_sym_match_expression_token1] = ACTIONS(1382), + [aux_sym_match_default_expression_token1] = ACTIONS(1382), + [aux_sym_switch_statement_token1] = ACTIONS(1382), + [aux_sym_switch_block_token1] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_AT] = ACTIONS(1380), + [aux_sym_clone_expression_token1] = ACTIONS(1382), + [aux_sym_print_intrinsic_token1] = ACTIONS(1382), + [aux_sym_object_creation_expression_token1] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [aux_sym__list_destructing_token1] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_self] = ACTIONS(1382), + [anon_sym_parent] = ACTIONS(1382), + [aux_sym__argument_name_token1] = ACTIONS(1382), + [aux_sym__argument_name_token2] = ACTIONS(1382), + [anon_sym_POUND_LBRACK] = ACTIONS(1380), + [aux_sym_encapsed_string_token1] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [aux_sym_string_token1] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_LT_LT_LT] = ACTIONS(1380), + [anon_sym_BQUOTE] = ACTIONS(1380), + [anon_sym_DOLLAR] = ACTIONS(1380), + [aux_sym_yield_expression_token1] = ACTIONS(1382), + [aux_sym_include_expression_token1] = ACTIONS(1382), + [aux_sym_include_once_expression_token1] = ACTIONS(1382), + [aux_sym_require_expression_token1] = ACTIONS(1382), + [aux_sym_require_once_expression_token1] = ACTIONS(1382), [sym_comment] = ACTIONS(5), }, [525] = { [sym_text_interpolation] = STATE(525), - [ts_builtin_sym_end] = ACTIONS(1407), - [sym_name] = ACTIONS(1409), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1407), - [aux_sym_function_static_declaration_token1] = ACTIONS(1409), - [aux_sym_global_declaration_token1] = ACTIONS(1409), - [aux_sym_namespace_definition_token1] = ACTIONS(1409), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1409), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1409), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1409), - [anon_sym_BSLASH] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1407), - [aux_sym_trait_declaration_token1] = ACTIONS(1409), - [aux_sym_interface_declaration_token1] = ACTIONS(1409), - [aux_sym_enum_declaration_token1] = ACTIONS(1409), - [aux_sym_enum_case_token1] = ACTIONS(1409), - [aux_sym_class_declaration_token1] = ACTIONS(1409), - [aux_sym_final_modifier_token1] = ACTIONS(1409), - [aux_sym_abstract_modifier_token1] = ACTIONS(1409), - [aux_sym_readonly_modifier_token1] = ACTIONS(1409), - [aux_sym_visibility_modifier_token1] = ACTIONS(1409), - [aux_sym_visibility_modifier_token2] = ACTIONS(1409), - [aux_sym_visibility_modifier_token3] = ACTIONS(1409), - [aux_sym__arrow_function_header_token1] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1407), - [aux_sym_cast_type_token1] = ACTIONS(1409), - [aux_sym_echo_statement_token1] = ACTIONS(1409), - [aux_sym_exit_statement_token1] = ACTIONS(1409), - [anon_sym_unset] = ACTIONS(1409), - [aux_sym_declare_statement_token1] = ACTIONS(1409), - [aux_sym_declare_statement_token2] = ACTIONS(1409), - [sym_float] = ACTIONS(1409), - [aux_sym_try_statement_token1] = ACTIONS(1409), - [aux_sym_goto_statement_token1] = ACTIONS(1409), - [aux_sym_continue_statement_token1] = ACTIONS(1409), - [aux_sym_break_statement_token1] = ACTIONS(1409), - [sym_integer] = ACTIONS(1409), - [aux_sym_return_statement_token1] = ACTIONS(1409), - [aux_sym_throw_expression_token1] = ACTIONS(1409), - [aux_sym_while_statement_token1] = ACTIONS(1409), - [aux_sym_while_statement_token2] = ACTIONS(1409), - [aux_sym_do_statement_token1] = ACTIONS(1409), - [aux_sym_for_statement_token1] = ACTIONS(1409), - [aux_sym_for_statement_token2] = ACTIONS(1409), - [aux_sym_foreach_statement_token1] = ACTIONS(1409), - [aux_sym_foreach_statement_token2] = ACTIONS(1409), - [aux_sym_if_statement_token1] = ACTIONS(1409), - [aux_sym_if_statement_token2] = ACTIONS(1409), - [aux_sym_else_if_clause_token1] = ACTIONS(1409), - [aux_sym_else_clause_token1] = ACTIONS(1409), - [aux_sym_match_expression_token1] = ACTIONS(1409), - [aux_sym_match_default_expression_token1] = ACTIONS(1409), - [aux_sym_switch_statement_token1] = ACTIONS(1409), - [aux_sym_switch_block_token1] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_AT] = ACTIONS(1407), - [aux_sym_clone_expression_token1] = ACTIONS(1409), - [aux_sym_print_intrinsic_token1] = ACTIONS(1409), - [aux_sym_object_creation_expression_token1] = ACTIONS(1409), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [aux_sym__list_destructing_token1] = ACTIONS(1409), - [anon_sym_LBRACK] = ACTIONS(1407), - [anon_sym_self] = ACTIONS(1409), - [anon_sym_parent] = ACTIONS(1409), - [aux_sym__argument_name_token1] = ACTIONS(1409), - [aux_sym__argument_name_token2] = ACTIONS(1409), - [anon_sym_POUND_LBRACK] = ACTIONS(1407), - [aux_sym_encapsed_string_token1] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1407), - [aux_sym_string_token1] = ACTIONS(1407), - [anon_sym_SQUOTE] = ACTIONS(1407), - [anon_sym_LT_LT_LT] = ACTIONS(1407), - [anon_sym_BQUOTE] = ACTIONS(1407), - [anon_sym_DOLLAR] = ACTIONS(1407), - [aux_sym_yield_expression_token1] = ACTIONS(1409), - [aux_sym_include_expression_token1] = ACTIONS(1409), - [aux_sym_include_once_expression_token1] = ACTIONS(1409), - [aux_sym_require_expression_token1] = ACTIONS(1409), - [aux_sym_require_once_expression_token1] = ACTIONS(1409), + [ts_builtin_sym_end] = ACTIONS(1384), + [sym_name] = ACTIONS(1386), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1384), + [aux_sym_function_static_declaration_token1] = ACTIONS(1386), + [aux_sym_global_declaration_token1] = ACTIONS(1386), + [aux_sym_namespace_definition_token1] = ACTIONS(1386), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1386), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1386), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1386), + [anon_sym_BSLASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_RBRACE] = ACTIONS(1384), + [aux_sym_trait_declaration_token1] = ACTIONS(1386), + [aux_sym_interface_declaration_token1] = ACTIONS(1386), + [aux_sym_enum_declaration_token1] = ACTIONS(1386), + [aux_sym_enum_case_token1] = ACTIONS(1386), + [aux_sym_class_declaration_token1] = ACTIONS(1386), + [aux_sym_final_modifier_token1] = ACTIONS(1386), + [aux_sym_abstract_modifier_token1] = ACTIONS(1386), + [aux_sym_readonly_modifier_token1] = ACTIONS(1386), + [sym_var_modifier] = ACTIONS(1386), + [aux_sym_visibility_modifier_token1] = ACTIONS(1386), + [aux_sym_visibility_modifier_token2] = ACTIONS(1386), + [aux_sym_visibility_modifier_token3] = ACTIONS(1386), + [aux_sym__arrow_function_header_token1] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1384), + [aux_sym_cast_type_token1] = ACTIONS(1386), + [aux_sym_echo_statement_token1] = ACTIONS(1386), + [aux_sym_exit_statement_token1] = ACTIONS(1386), + [anon_sym_unset] = ACTIONS(1386), + [aux_sym_declare_statement_token1] = ACTIONS(1386), + [aux_sym_declare_statement_token2] = ACTIONS(1386), + [sym_float] = ACTIONS(1386), + [aux_sym_try_statement_token1] = ACTIONS(1386), + [aux_sym_goto_statement_token1] = ACTIONS(1386), + [aux_sym_continue_statement_token1] = ACTIONS(1386), + [aux_sym_break_statement_token1] = ACTIONS(1386), + [sym_integer] = ACTIONS(1386), + [aux_sym_return_statement_token1] = ACTIONS(1386), + [aux_sym_throw_expression_token1] = ACTIONS(1386), + [aux_sym_while_statement_token1] = ACTIONS(1386), + [aux_sym_while_statement_token2] = ACTIONS(1386), + [aux_sym_do_statement_token1] = ACTIONS(1386), + [aux_sym_for_statement_token1] = ACTIONS(1386), + [aux_sym_for_statement_token2] = ACTIONS(1386), + [aux_sym_foreach_statement_token1] = ACTIONS(1386), + [aux_sym_foreach_statement_token2] = ACTIONS(1386), + [aux_sym_if_statement_token1] = ACTIONS(1386), + [aux_sym_if_statement_token2] = ACTIONS(1386), + [aux_sym_else_if_clause_token1] = ACTIONS(1386), + [aux_sym_else_clause_token1] = ACTIONS(1386), + [aux_sym_match_expression_token1] = ACTIONS(1386), + [aux_sym_match_default_expression_token1] = ACTIONS(1386), + [aux_sym_switch_statement_token1] = ACTIONS(1386), + [aux_sym_switch_block_token1] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_AT] = ACTIONS(1384), + [aux_sym_clone_expression_token1] = ACTIONS(1386), + [aux_sym_print_intrinsic_token1] = ACTIONS(1386), + [aux_sym_object_creation_expression_token1] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [aux_sym__list_destructing_token1] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1384), + [anon_sym_self] = ACTIONS(1386), + [anon_sym_parent] = ACTIONS(1386), + [aux_sym__argument_name_token1] = ACTIONS(1386), + [aux_sym__argument_name_token2] = ACTIONS(1386), + [anon_sym_POUND_LBRACK] = ACTIONS(1384), + [aux_sym_encapsed_string_token1] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [aux_sym_string_token1] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_LT_LT_LT] = ACTIONS(1384), + [anon_sym_BQUOTE] = ACTIONS(1384), + [anon_sym_DOLLAR] = ACTIONS(1384), + [aux_sym_yield_expression_token1] = ACTIONS(1386), + [aux_sym_include_expression_token1] = ACTIONS(1386), + [aux_sym_include_once_expression_token1] = ACTIONS(1386), + [aux_sym_require_expression_token1] = ACTIONS(1386), + [aux_sym_require_once_expression_token1] = ACTIONS(1386), [sym_comment] = ACTIONS(5), }, [526] = { [sym_text_interpolation] = STATE(526), - [ts_builtin_sym_end] = ACTIONS(1411), - [sym_name] = ACTIONS(1413), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1411), - [aux_sym_function_static_declaration_token1] = ACTIONS(1413), - [aux_sym_global_declaration_token1] = ACTIONS(1413), - [aux_sym_namespace_definition_token1] = ACTIONS(1413), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1413), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1413), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1413), - [anon_sym_BSLASH] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [aux_sym_trait_declaration_token1] = ACTIONS(1413), - [aux_sym_interface_declaration_token1] = ACTIONS(1413), - [aux_sym_enum_declaration_token1] = ACTIONS(1413), - [aux_sym_enum_case_token1] = ACTIONS(1413), - [aux_sym_class_declaration_token1] = ACTIONS(1413), - [aux_sym_final_modifier_token1] = ACTIONS(1413), - [aux_sym_abstract_modifier_token1] = ACTIONS(1413), - [aux_sym_readonly_modifier_token1] = ACTIONS(1413), - [aux_sym_visibility_modifier_token1] = ACTIONS(1413), - [aux_sym_visibility_modifier_token2] = ACTIONS(1413), - [aux_sym_visibility_modifier_token3] = ACTIONS(1413), - [aux_sym__arrow_function_header_token1] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1411), - [aux_sym_cast_type_token1] = ACTIONS(1413), - [aux_sym_echo_statement_token1] = ACTIONS(1413), - [aux_sym_exit_statement_token1] = ACTIONS(1413), - [anon_sym_unset] = ACTIONS(1413), - [aux_sym_declare_statement_token1] = ACTIONS(1413), - [aux_sym_declare_statement_token2] = ACTIONS(1413), - [sym_float] = ACTIONS(1413), - [aux_sym_try_statement_token1] = ACTIONS(1413), - [aux_sym_goto_statement_token1] = ACTIONS(1413), - [aux_sym_continue_statement_token1] = ACTIONS(1413), - [aux_sym_break_statement_token1] = ACTIONS(1413), - [sym_integer] = ACTIONS(1413), - [aux_sym_return_statement_token1] = ACTIONS(1413), - [aux_sym_throw_expression_token1] = ACTIONS(1413), - [aux_sym_while_statement_token1] = ACTIONS(1413), - [aux_sym_while_statement_token2] = ACTIONS(1413), - [aux_sym_do_statement_token1] = ACTIONS(1413), - [aux_sym_for_statement_token1] = ACTIONS(1413), - [aux_sym_for_statement_token2] = ACTIONS(1413), - [aux_sym_foreach_statement_token1] = ACTIONS(1413), - [aux_sym_foreach_statement_token2] = ACTIONS(1413), - [aux_sym_if_statement_token1] = ACTIONS(1413), - [aux_sym_if_statement_token2] = ACTIONS(1413), - [aux_sym_else_if_clause_token1] = ACTIONS(1413), - [aux_sym_else_clause_token1] = ACTIONS(1413), - [aux_sym_match_expression_token1] = ACTIONS(1413), - [aux_sym_match_default_expression_token1] = ACTIONS(1413), - [aux_sym_switch_statement_token1] = ACTIONS(1413), - [aux_sym_switch_block_token1] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_AT] = ACTIONS(1411), - [aux_sym_clone_expression_token1] = ACTIONS(1413), - [aux_sym_print_intrinsic_token1] = ACTIONS(1413), - [aux_sym_object_creation_expression_token1] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [aux_sym__list_destructing_token1] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_self] = ACTIONS(1413), - [anon_sym_parent] = ACTIONS(1413), - [aux_sym__argument_name_token1] = ACTIONS(1413), - [aux_sym__argument_name_token2] = ACTIONS(1413), - [anon_sym_POUND_LBRACK] = ACTIONS(1411), - [aux_sym_encapsed_string_token1] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [aux_sym_string_token1] = ACTIONS(1411), - [anon_sym_SQUOTE] = ACTIONS(1411), - [anon_sym_LT_LT_LT] = ACTIONS(1411), - [anon_sym_BQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [aux_sym_yield_expression_token1] = ACTIONS(1413), - [aux_sym_include_expression_token1] = ACTIONS(1413), - [aux_sym_include_once_expression_token1] = ACTIONS(1413), - [aux_sym_require_expression_token1] = ACTIONS(1413), - [aux_sym_require_once_expression_token1] = ACTIONS(1413), + [ts_builtin_sym_end] = ACTIONS(1032), + [sym_name] = ACTIONS(1034), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1032), + [aux_sym_function_static_declaration_token1] = ACTIONS(1034), + [aux_sym_global_declaration_token1] = ACTIONS(1034), + [aux_sym_namespace_definition_token1] = ACTIONS(1034), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1034), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1034), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1034), + [anon_sym_BSLASH] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1032), + [anon_sym_RBRACE] = ACTIONS(1032), + [aux_sym_trait_declaration_token1] = ACTIONS(1034), + [aux_sym_interface_declaration_token1] = ACTIONS(1034), + [aux_sym_enum_declaration_token1] = ACTIONS(1034), + [aux_sym_enum_case_token1] = ACTIONS(1034), + [aux_sym_class_declaration_token1] = ACTIONS(1034), + [aux_sym_final_modifier_token1] = ACTIONS(1034), + [aux_sym_abstract_modifier_token1] = ACTIONS(1034), + [aux_sym_readonly_modifier_token1] = ACTIONS(1034), + [sym_var_modifier] = ACTIONS(1034), + [aux_sym_visibility_modifier_token1] = ACTIONS(1034), + [aux_sym_visibility_modifier_token2] = ACTIONS(1034), + [aux_sym_visibility_modifier_token3] = ACTIONS(1034), + [aux_sym__arrow_function_header_token1] = ACTIONS(1034), + [anon_sym_LPAREN] = ACTIONS(1032), + [aux_sym_cast_type_token1] = ACTIONS(1034), + [aux_sym_echo_statement_token1] = ACTIONS(1034), + [aux_sym_exit_statement_token1] = ACTIONS(1034), + [anon_sym_unset] = ACTIONS(1034), + [aux_sym_declare_statement_token1] = ACTIONS(1034), + [aux_sym_declare_statement_token2] = ACTIONS(1034), + [sym_float] = ACTIONS(1034), + [aux_sym_try_statement_token1] = ACTIONS(1034), + [aux_sym_goto_statement_token1] = ACTIONS(1034), + [aux_sym_continue_statement_token1] = ACTIONS(1034), + [aux_sym_break_statement_token1] = ACTIONS(1034), + [sym_integer] = ACTIONS(1034), + [aux_sym_return_statement_token1] = ACTIONS(1034), + [aux_sym_throw_expression_token1] = ACTIONS(1034), + [aux_sym_while_statement_token1] = ACTIONS(1034), + [aux_sym_while_statement_token2] = ACTIONS(1034), + [aux_sym_do_statement_token1] = ACTIONS(1034), + [aux_sym_for_statement_token1] = ACTIONS(1034), + [aux_sym_for_statement_token2] = ACTIONS(1034), + [aux_sym_foreach_statement_token1] = ACTIONS(1034), + [aux_sym_foreach_statement_token2] = ACTIONS(1034), + [aux_sym_if_statement_token1] = ACTIONS(1034), + [aux_sym_if_statement_token2] = ACTIONS(1034), + [aux_sym_else_if_clause_token1] = ACTIONS(1034), + [aux_sym_else_clause_token1] = ACTIONS(1034), + [aux_sym_match_expression_token1] = ACTIONS(1034), + [aux_sym_match_default_expression_token1] = ACTIONS(1034), + [aux_sym_switch_statement_token1] = ACTIONS(1034), + [aux_sym_switch_block_token1] = ACTIONS(1034), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(1032), + [aux_sym_clone_expression_token1] = ACTIONS(1034), + [aux_sym_print_intrinsic_token1] = ACTIONS(1034), + [aux_sym_object_creation_expression_token1] = ACTIONS(1034), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [aux_sym__list_destructing_token1] = ACTIONS(1034), + [anon_sym_LBRACK] = ACTIONS(1032), + [anon_sym_self] = ACTIONS(1034), + [anon_sym_parent] = ACTIONS(1034), + [aux_sym__argument_name_token1] = ACTIONS(1034), + [aux_sym__argument_name_token2] = ACTIONS(1034), + [anon_sym_POUND_LBRACK] = ACTIONS(1032), + [aux_sym_encapsed_string_token1] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [aux_sym_string_token1] = ACTIONS(1032), + [anon_sym_SQUOTE] = ACTIONS(1032), + [anon_sym_LT_LT_LT] = ACTIONS(1032), + [anon_sym_BQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1032), + [aux_sym_yield_expression_token1] = ACTIONS(1034), + [aux_sym_include_expression_token1] = ACTIONS(1034), + [aux_sym_include_once_expression_token1] = ACTIONS(1034), + [aux_sym_require_expression_token1] = ACTIONS(1034), + [aux_sym_require_once_expression_token1] = ACTIONS(1034), [sym_comment] = ACTIONS(5), }, [527] = { [sym_text_interpolation] = STATE(527), - [ts_builtin_sym_end] = ACTIONS(1415), - [sym_name] = ACTIONS(1417), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1415), - [aux_sym_function_static_declaration_token1] = ACTIONS(1417), - [aux_sym_global_declaration_token1] = ACTIONS(1417), - [aux_sym_namespace_definition_token1] = ACTIONS(1417), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1417), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1417), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1417), - [anon_sym_BSLASH] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_RBRACE] = ACTIONS(1415), - [aux_sym_trait_declaration_token1] = ACTIONS(1417), - [aux_sym_interface_declaration_token1] = ACTIONS(1417), - [aux_sym_enum_declaration_token1] = ACTIONS(1417), - [aux_sym_enum_case_token1] = ACTIONS(1417), - [aux_sym_class_declaration_token1] = ACTIONS(1417), - [aux_sym_final_modifier_token1] = ACTIONS(1417), - [aux_sym_abstract_modifier_token1] = ACTIONS(1417), - [aux_sym_readonly_modifier_token1] = ACTIONS(1417), - [aux_sym_visibility_modifier_token1] = ACTIONS(1417), - [aux_sym_visibility_modifier_token2] = ACTIONS(1417), - [aux_sym_visibility_modifier_token3] = ACTIONS(1417), - [aux_sym__arrow_function_header_token1] = ACTIONS(1417), - [anon_sym_LPAREN] = ACTIONS(1415), - [aux_sym_cast_type_token1] = ACTIONS(1417), - [aux_sym_echo_statement_token1] = ACTIONS(1417), - [aux_sym_exit_statement_token1] = ACTIONS(1417), - [anon_sym_unset] = ACTIONS(1417), - [aux_sym_declare_statement_token1] = ACTIONS(1417), - [aux_sym_declare_statement_token2] = ACTIONS(1417), - [sym_float] = ACTIONS(1417), - [aux_sym_try_statement_token1] = ACTIONS(1417), - [aux_sym_goto_statement_token1] = ACTIONS(1417), - [aux_sym_continue_statement_token1] = ACTIONS(1417), - [aux_sym_break_statement_token1] = ACTIONS(1417), - [sym_integer] = ACTIONS(1417), - [aux_sym_return_statement_token1] = ACTIONS(1417), - [aux_sym_throw_expression_token1] = ACTIONS(1417), - [aux_sym_while_statement_token1] = ACTIONS(1417), - [aux_sym_while_statement_token2] = ACTIONS(1417), - [aux_sym_do_statement_token1] = ACTIONS(1417), - [aux_sym_for_statement_token1] = ACTIONS(1417), - [aux_sym_for_statement_token2] = ACTIONS(1417), - [aux_sym_foreach_statement_token1] = ACTIONS(1417), - [aux_sym_foreach_statement_token2] = ACTIONS(1417), - [aux_sym_if_statement_token1] = ACTIONS(1417), - [aux_sym_if_statement_token2] = ACTIONS(1417), - [aux_sym_else_if_clause_token1] = ACTIONS(1417), - [aux_sym_else_clause_token1] = ACTIONS(1417), - [aux_sym_match_expression_token1] = ACTIONS(1417), - [aux_sym_match_default_expression_token1] = ACTIONS(1417), - [aux_sym_switch_statement_token1] = ACTIONS(1417), - [aux_sym_switch_block_token1] = ACTIONS(1417), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_AT] = ACTIONS(1415), - [aux_sym_clone_expression_token1] = ACTIONS(1417), - [aux_sym_print_intrinsic_token1] = ACTIONS(1417), - [aux_sym_object_creation_expression_token1] = ACTIONS(1417), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [aux_sym__list_destructing_token1] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_self] = ACTIONS(1417), - [anon_sym_parent] = ACTIONS(1417), - [aux_sym__argument_name_token1] = ACTIONS(1417), - [aux_sym__argument_name_token2] = ACTIONS(1417), - [anon_sym_POUND_LBRACK] = ACTIONS(1415), - [aux_sym_encapsed_string_token1] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1415), - [aux_sym_string_token1] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_LT_LT_LT] = ACTIONS(1415), - [anon_sym_BQUOTE] = ACTIONS(1415), - [anon_sym_DOLLAR] = ACTIONS(1415), - [aux_sym_yield_expression_token1] = ACTIONS(1417), - [aux_sym_include_expression_token1] = ACTIONS(1417), - [aux_sym_include_once_expression_token1] = ACTIONS(1417), - [aux_sym_require_expression_token1] = ACTIONS(1417), - [aux_sym_require_once_expression_token1] = ACTIONS(1417), + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_name] = ACTIONS(1390), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1388), + [aux_sym_function_static_declaration_token1] = ACTIONS(1390), + [aux_sym_global_declaration_token1] = ACTIONS(1390), + [aux_sym_namespace_definition_token1] = ACTIONS(1390), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1390), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1390), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1390), + [anon_sym_BSLASH] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [aux_sym_trait_declaration_token1] = ACTIONS(1390), + [aux_sym_interface_declaration_token1] = ACTIONS(1390), + [aux_sym_enum_declaration_token1] = ACTIONS(1390), + [aux_sym_enum_case_token1] = ACTIONS(1390), + [aux_sym_class_declaration_token1] = ACTIONS(1390), + [aux_sym_final_modifier_token1] = ACTIONS(1390), + [aux_sym_abstract_modifier_token1] = ACTIONS(1390), + [aux_sym_readonly_modifier_token1] = ACTIONS(1390), + [sym_var_modifier] = ACTIONS(1390), + [aux_sym_visibility_modifier_token1] = ACTIONS(1390), + [aux_sym_visibility_modifier_token2] = ACTIONS(1390), + [aux_sym_visibility_modifier_token3] = ACTIONS(1390), + [aux_sym__arrow_function_header_token1] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1388), + [aux_sym_cast_type_token1] = ACTIONS(1390), + [aux_sym_echo_statement_token1] = ACTIONS(1390), + [aux_sym_exit_statement_token1] = ACTIONS(1390), + [anon_sym_unset] = ACTIONS(1390), + [aux_sym_declare_statement_token1] = ACTIONS(1390), + [aux_sym_declare_statement_token2] = ACTIONS(1390), + [sym_float] = ACTIONS(1390), + [aux_sym_try_statement_token1] = ACTIONS(1390), + [aux_sym_goto_statement_token1] = ACTIONS(1390), + [aux_sym_continue_statement_token1] = ACTIONS(1390), + [aux_sym_break_statement_token1] = ACTIONS(1390), + [sym_integer] = ACTIONS(1390), + [aux_sym_return_statement_token1] = ACTIONS(1390), + [aux_sym_throw_expression_token1] = ACTIONS(1390), + [aux_sym_while_statement_token1] = ACTIONS(1390), + [aux_sym_while_statement_token2] = ACTIONS(1390), + [aux_sym_do_statement_token1] = ACTIONS(1390), + [aux_sym_for_statement_token1] = ACTIONS(1390), + [aux_sym_for_statement_token2] = ACTIONS(1390), + [aux_sym_foreach_statement_token1] = ACTIONS(1390), + [aux_sym_foreach_statement_token2] = ACTIONS(1390), + [aux_sym_if_statement_token1] = ACTIONS(1390), + [aux_sym_if_statement_token2] = ACTIONS(1390), + [aux_sym_else_if_clause_token1] = ACTIONS(1390), + [aux_sym_else_clause_token1] = ACTIONS(1390), + [aux_sym_match_expression_token1] = ACTIONS(1390), + [aux_sym_match_default_expression_token1] = ACTIONS(1390), + [aux_sym_switch_statement_token1] = ACTIONS(1390), + [aux_sym_switch_block_token1] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_AT] = ACTIONS(1388), + [aux_sym_clone_expression_token1] = ACTIONS(1390), + [aux_sym_print_intrinsic_token1] = ACTIONS(1390), + [aux_sym_object_creation_expression_token1] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [aux_sym__list_destructing_token1] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_self] = ACTIONS(1390), + [anon_sym_parent] = ACTIONS(1390), + [aux_sym__argument_name_token1] = ACTIONS(1390), + [aux_sym__argument_name_token2] = ACTIONS(1390), + [anon_sym_POUND_LBRACK] = ACTIONS(1388), + [aux_sym_encapsed_string_token1] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [aux_sym_string_token1] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_LT_LT_LT] = ACTIONS(1388), + [anon_sym_BQUOTE] = ACTIONS(1388), + [anon_sym_DOLLAR] = ACTIONS(1388), + [aux_sym_yield_expression_token1] = ACTIONS(1390), + [aux_sym_include_expression_token1] = ACTIONS(1390), + [aux_sym_include_once_expression_token1] = ACTIONS(1390), + [aux_sym_require_expression_token1] = ACTIONS(1390), + [aux_sym_require_once_expression_token1] = ACTIONS(1390), [sym_comment] = ACTIONS(5), }, [528] = { [sym_text_interpolation] = STATE(528), - [ts_builtin_sym_end] = ACTIONS(1419), - [sym_name] = ACTIONS(1421), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1419), - [aux_sym_function_static_declaration_token1] = ACTIONS(1421), - [aux_sym_global_declaration_token1] = ACTIONS(1421), - [aux_sym_namespace_definition_token1] = ACTIONS(1421), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1421), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1421), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1421), - [anon_sym_BSLASH] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1419), - [aux_sym_trait_declaration_token1] = ACTIONS(1421), - [aux_sym_interface_declaration_token1] = ACTIONS(1421), - [aux_sym_enum_declaration_token1] = ACTIONS(1421), - [aux_sym_enum_case_token1] = ACTIONS(1421), - [aux_sym_class_declaration_token1] = ACTIONS(1421), - [aux_sym_final_modifier_token1] = ACTIONS(1421), - [aux_sym_abstract_modifier_token1] = ACTIONS(1421), - [aux_sym_readonly_modifier_token1] = ACTIONS(1421), - [aux_sym_visibility_modifier_token1] = ACTIONS(1421), - [aux_sym_visibility_modifier_token2] = ACTIONS(1421), - [aux_sym_visibility_modifier_token3] = ACTIONS(1421), - [aux_sym__arrow_function_header_token1] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(1419), - [aux_sym_cast_type_token1] = ACTIONS(1421), - [aux_sym_echo_statement_token1] = ACTIONS(1421), - [aux_sym_exit_statement_token1] = ACTIONS(1421), - [anon_sym_unset] = ACTIONS(1421), - [aux_sym_declare_statement_token1] = ACTIONS(1421), - [aux_sym_declare_statement_token2] = ACTIONS(1421), - [sym_float] = ACTIONS(1421), - [aux_sym_try_statement_token1] = ACTIONS(1421), - [aux_sym_goto_statement_token1] = ACTIONS(1421), - [aux_sym_continue_statement_token1] = ACTIONS(1421), - [aux_sym_break_statement_token1] = ACTIONS(1421), - [sym_integer] = ACTIONS(1421), - [aux_sym_return_statement_token1] = ACTIONS(1421), - [aux_sym_throw_expression_token1] = ACTIONS(1421), - [aux_sym_while_statement_token1] = ACTIONS(1421), - [aux_sym_while_statement_token2] = ACTIONS(1421), - [aux_sym_do_statement_token1] = ACTIONS(1421), - [aux_sym_for_statement_token1] = ACTIONS(1421), - [aux_sym_for_statement_token2] = ACTIONS(1421), - [aux_sym_foreach_statement_token1] = ACTIONS(1421), - [aux_sym_foreach_statement_token2] = ACTIONS(1421), - [aux_sym_if_statement_token1] = ACTIONS(1421), - [aux_sym_if_statement_token2] = ACTIONS(1421), - [aux_sym_else_if_clause_token1] = ACTIONS(1421), - [aux_sym_else_clause_token1] = ACTIONS(1421), - [aux_sym_match_expression_token1] = ACTIONS(1421), - [aux_sym_match_default_expression_token1] = ACTIONS(1421), - [aux_sym_switch_statement_token1] = ACTIONS(1421), - [aux_sym_switch_block_token1] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_AT] = ACTIONS(1419), - [aux_sym_clone_expression_token1] = ACTIONS(1421), - [aux_sym_print_intrinsic_token1] = ACTIONS(1421), - [aux_sym_object_creation_expression_token1] = ACTIONS(1421), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [aux_sym__list_destructing_token1] = ACTIONS(1421), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_self] = ACTIONS(1421), - [anon_sym_parent] = ACTIONS(1421), - [aux_sym__argument_name_token1] = ACTIONS(1421), - [aux_sym__argument_name_token2] = ACTIONS(1421), - [anon_sym_POUND_LBRACK] = ACTIONS(1419), - [aux_sym_encapsed_string_token1] = ACTIONS(1419), - [anon_sym_DQUOTE] = ACTIONS(1419), - [aux_sym_string_token1] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(1419), - [anon_sym_LT_LT_LT] = ACTIONS(1419), - [anon_sym_BQUOTE] = ACTIONS(1419), - [anon_sym_DOLLAR] = ACTIONS(1419), - [aux_sym_yield_expression_token1] = ACTIONS(1421), - [aux_sym_include_expression_token1] = ACTIONS(1421), - [aux_sym_include_once_expression_token1] = ACTIONS(1421), - [aux_sym_require_expression_token1] = ACTIONS(1421), - [aux_sym_require_once_expression_token1] = ACTIONS(1421), + [ts_builtin_sym_end] = ACTIONS(1392), + [sym_name] = ACTIONS(1394), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1392), + [aux_sym_function_static_declaration_token1] = ACTIONS(1394), + [aux_sym_global_declaration_token1] = ACTIONS(1394), + [aux_sym_namespace_definition_token1] = ACTIONS(1394), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1394), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1394), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1394), + [anon_sym_BSLASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_RBRACE] = ACTIONS(1392), + [aux_sym_trait_declaration_token1] = ACTIONS(1394), + [aux_sym_interface_declaration_token1] = ACTIONS(1394), + [aux_sym_enum_declaration_token1] = ACTIONS(1394), + [aux_sym_enum_case_token1] = ACTIONS(1394), + [aux_sym_class_declaration_token1] = ACTIONS(1394), + [aux_sym_final_modifier_token1] = ACTIONS(1394), + [aux_sym_abstract_modifier_token1] = ACTIONS(1394), + [aux_sym_readonly_modifier_token1] = ACTIONS(1394), + [sym_var_modifier] = ACTIONS(1394), + [aux_sym_visibility_modifier_token1] = ACTIONS(1394), + [aux_sym_visibility_modifier_token2] = ACTIONS(1394), + [aux_sym_visibility_modifier_token3] = ACTIONS(1394), + [aux_sym__arrow_function_header_token1] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1392), + [aux_sym_cast_type_token1] = ACTIONS(1394), + [aux_sym_echo_statement_token1] = ACTIONS(1394), + [aux_sym_exit_statement_token1] = ACTIONS(1394), + [anon_sym_unset] = ACTIONS(1394), + [aux_sym_declare_statement_token1] = ACTIONS(1394), + [aux_sym_declare_statement_token2] = ACTIONS(1394), + [sym_float] = ACTIONS(1394), + [aux_sym_try_statement_token1] = ACTIONS(1394), + [aux_sym_goto_statement_token1] = ACTIONS(1394), + [aux_sym_continue_statement_token1] = ACTIONS(1394), + [aux_sym_break_statement_token1] = ACTIONS(1394), + [sym_integer] = ACTIONS(1394), + [aux_sym_return_statement_token1] = ACTIONS(1394), + [aux_sym_throw_expression_token1] = ACTIONS(1394), + [aux_sym_while_statement_token1] = ACTIONS(1394), + [aux_sym_while_statement_token2] = ACTIONS(1394), + [aux_sym_do_statement_token1] = ACTIONS(1394), + [aux_sym_for_statement_token1] = ACTIONS(1394), + [aux_sym_for_statement_token2] = ACTIONS(1394), + [aux_sym_foreach_statement_token1] = ACTIONS(1394), + [aux_sym_foreach_statement_token2] = ACTIONS(1394), + [aux_sym_if_statement_token1] = ACTIONS(1394), + [aux_sym_if_statement_token2] = ACTIONS(1394), + [aux_sym_else_if_clause_token1] = ACTIONS(1394), + [aux_sym_else_clause_token1] = ACTIONS(1394), + [aux_sym_match_expression_token1] = ACTIONS(1394), + [aux_sym_match_default_expression_token1] = ACTIONS(1394), + [aux_sym_switch_statement_token1] = ACTIONS(1394), + [aux_sym_switch_block_token1] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_AT] = ACTIONS(1392), + [aux_sym_clone_expression_token1] = ACTIONS(1394), + [aux_sym_print_intrinsic_token1] = ACTIONS(1394), + [aux_sym_object_creation_expression_token1] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [aux_sym__list_destructing_token1] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1392), + [anon_sym_self] = ACTIONS(1394), + [anon_sym_parent] = ACTIONS(1394), + [aux_sym__argument_name_token1] = ACTIONS(1394), + [aux_sym__argument_name_token2] = ACTIONS(1394), + [anon_sym_POUND_LBRACK] = ACTIONS(1392), + [aux_sym_encapsed_string_token1] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [aux_sym_string_token1] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_LT_LT_LT] = ACTIONS(1392), + [anon_sym_BQUOTE] = ACTIONS(1392), + [anon_sym_DOLLAR] = ACTIONS(1392), + [aux_sym_yield_expression_token1] = ACTIONS(1394), + [aux_sym_include_expression_token1] = ACTIONS(1394), + [aux_sym_include_once_expression_token1] = ACTIONS(1394), + [aux_sym_require_expression_token1] = ACTIONS(1394), + [aux_sym_require_once_expression_token1] = ACTIONS(1394), [sym_comment] = ACTIONS(5), }, [529] = { [sym_text_interpolation] = STATE(529), - [ts_builtin_sym_end] = ACTIONS(1423), - [sym_name] = ACTIONS(1425), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1423), - [aux_sym_function_static_declaration_token1] = ACTIONS(1425), - [aux_sym_global_declaration_token1] = ACTIONS(1425), - [aux_sym_namespace_definition_token1] = ACTIONS(1425), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1425), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1425), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1425), - [anon_sym_BSLASH] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_RBRACE] = ACTIONS(1423), - [aux_sym_trait_declaration_token1] = ACTIONS(1425), - [aux_sym_interface_declaration_token1] = ACTIONS(1425), - [aux_sym_enum_declaration_token1] = ACTIONS(1425), - [aux_sym_enum_case_token1] = ACTIONS(1425), - [aux_sym_class_declaration_token1] = ACTIONS(1425), - [aux_sym_final_modifier_token1] = ACTIONS(1425), - [aux_sym_abstract_modifier_token1] = ACTIONS(1425), - [aux_sym_readonly_modifier_token1] = ACTIONS(1425), - [aux_sym_visibility_modifier_token1] = ACTIONS(1425), - [aux_sym_visibility_modifier_token2] = ACTIONS(1425), - [aux_sym_visibility_modifier_token3] = ACTIONS(1425), - [aux_sym__arrow_function_header_token1] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1423), - [aux_sym_cast_type_token1] = ACTIONS(1425), - [aux_sym_echo_statement_token1] = ACTIONS(1425), - [aux_sym_exit_statement_token1] = ACTIONS(1425), - [anon_sym_unset] = ACTIONS(1425), - [aux_sym_declare_statement_token1] = ACTIONS(1425), - [aux_sym_declare_statement_token2] = ACTIONS(1425), - [sym_float] = ACTIONS(1425), - [aux_sym_try_statement_token1] = ACTIONS(1425), - [aux_sym_goto_statement_token1] = ACTIONS(1425), - [aux_sym_continue_statement_token1] = ACTIONS(1425), - [aux_sym_break_statement_token1] = ACTIONS(1425), - [sym_integer] = ACTIONS(1425), - [aux_sym_return_statement_token1] = ACTIONS(1425), - [aux_sym_throw_expression_token1] = ACTIONS(1425), - [aux_sym_while_statement_token1] = ACTIONS(1425), - [aux_sym_while_statement_token2] = ACTIONS(1425), - [aux_sym_do_statement_token1] = ACTIONS(1425), - [aux_sym_for_statement_token1] = ACTIONS(1425), - [aux_sym_for_statement_token2] = ACTIONS(1425), - [aux_sym_foreach_statement_token1] = ACTIONS(1425), - [aux_sym_foreach_statement_token2] = ACTIONS(1425), - [aux_sym_if_statement_token1] = ACTIONS(1425), - [aux_sym_if_statement_token2] = ACTIONS(1425), - [aux_sym_else_if_clause_token1] = ACTIONS(1425), - [aux_sym_else_clause_token1] = ACTIONS(1425), - [aux_sym_match_expression_token1] = ACTIONS(1425), - [aux_sym_match_default_expression_token1] = ACTIONS(1425), - [aux_sym_switch_statement_token1] = ACTIONS(1425), - [aux_sym_switch_block_token1] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_TILDE] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_AT] = ACTIONS(1423), - [aux_sym_clone_expression_token1] = ACTIONS(1425), - [aux_sym_print_intrinsic_token1] = ACTIONS(1425), - [aux_sym_object_creation_expression_token1] = ACTIONS(1425), - [anon_sym_DASH_DASH] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [aux_sym__list_destructing_token1] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(1423), - [anon_sym_self] = ACTIONS(1425), - [anon_sym_parent] = ACTIONS(1425), - [aux_sym__argument_name_token1] = ACTIONS(1425), - [aux_sym__argument_name_token2] = ACTIONS(1425), - [anon_sym_POUND_LBRACK] = ACTIONS(1423), - [aux_sym_encapsed_string_token1] = ACTIONS(1423), - [anon_sym_DQUOTE] = ACTIONS(1423), - [aux_sym_string_token1] = ACTIONS(1423), - [anon_sym_SQUOTE] = ACTIONS(1423), - [anon_sym_LT_LT_LT] = ACTIONS(1423), - [anon_sym_BQUOTE] = ACTIONS(1423), - [anon_sym_DOLLAR] = ACTIONS(1423), - [aux_sym_yield_expression_token1] = ACTIONS(1425), - [aux_sym_include_expression_token1] = ACTIONS(1425), - [aux_sym_include_once_expression_token1] = ACTIONS(1425), - [aux_sym_require_expression_token1] = ACTIONS(1425), - [aux_sym_require_once_expression_token1] = ACTIONS(1425), + [ts_builtin_sym_end] = ACTIONS(1396), + [sym_name] = ACTIONS(1398), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1396), + [aux_sym_function_static_declaration_token1] = ACTIONS(1398), + [aux_sym_global_declaration_token1] = ACTIONS(1398), + [aux_sym_namespace_definition_token1] = ACTIONS(1398), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1398), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1398), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1398), + [anon_sym_BSLASH] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(1396), + [aux_sym_trait_declaration_token1] = ACTIONS(1398), + [aux_sym_interface_declaration_token1] = ACTIONS(1398), + [aux_sym_enum_declaration_token1] = ACTIONS(1398), + [aux_sym_enum_case_token1] = ACTIONS(1398), + [aux_sym_class_declaration_token1] = ACTIONS(1398), + [aux_sym_final_modifier_token1] = ACTIONS(1398), + [aux_sym_abstract_modifier_token1] = ACTIONS(1398), + [aux_sym_readonly_modifier_token1] = ACTIONS(1398), + [sym_var_modifier] = ACTIONS(1398), + [aux_sym_visibility_modifier_token1] = ACTIONS(1398), + [aux_sym_visibility_modifier_token2] = ACTIONS(1398), + [aux_sym_visibility_modifier_token3] = ACTIONS(1398), + [aux_sym__arrow_function_header_token1] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1396), + [aux_sym_cast_type_token1] = ACTIONS(1398), + [aux_sym_echo_statement_token1] = ACTIONS(1398), + [aux_sym_exit_statement_token1] = ACTIONS(1398), + [anon_sym_unset] = ACTIONS(1398), + [aux_sym_declare_statement_token1] = ACTIONS(1398), + [aux_sym_declare_statement_token2] = ACTIONS(1398), + [sym_float] = ACTIONS(1398), + [aux_sym_try_statement_token1] = ACTIONS(1398), + [aux_sym_goto_statement_token1] = ACTIONS(1398), + [aux_sym_continue_statement_token1] = ACTIONS(1398), + [aux_sym_break_statement_token1] = ACTIONS(1398), + [sym_integer] = ACTIONS(1398), + [aux_sym_return_statement_token1] = ACTIONS(1398), + [aux_sym_throw_expression_token1] = ACTIONS(1398), + [aux_sym_while_statement_token1] = ACTIONS(1398), + [aux_sym_while_statement_token2] = ACTIONS(1398), + [aux_sym_do_statement_token1] = ACTIONS(1398), + [aux_sym_for_statement_token1] = ACTIONS(1398), + [aux_sym_for_statement_token2] = ACTIONS(1398), + [aux_sym_foreach_statement_token1] = ACTIONS(1398), + [aux_sym_foreach_statement_token2] = ACTIONS(1398), + [aux_sym_if_statement_token1] = ACTIONS(1398), + [aux_sym_if_statement_token2] = ACTIONS(1398), + [aux_sym_else_if_clause_token1] = ACTIONS(1398), + [aux_sym_else_clause_token1] = ACTIONS(1398), + [aux_sym_match_expression_token1] = ACTIONS(1398), + [aux_sym_match_default_expression_token1] = ACTIONS(1398), + [aux_sym_switch_statement_token1] = ACTIONS(1398), + [aux_sym_switch_block_token1] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_AT] = ACTIONS(1396), + [aux_sym_clone_expression_token1] = ACTIONS(1398), + [aux_sym_print_intrinsic_token1] = ACTIONS(1398), + [aux_sym_object_creation_expression_token1] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [aux_sym__list_destructing_token1] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(1396), + [anon_sym_self] = ACTIONS(1398), + [anon_sym_parent] = ACTIONS(1398), + [aux_sym__argument_name_token1] = ACTIONS(1398), + [aux_sym__argument_name_token2] = ACTIONS(1398), + [anon_sym_POUND_LBRACK] = ACTIONS(1396), + [aux_sym_encapsed_string_token1] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [aux_sym_string_token1] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_LT_LT_LT] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1396), + [aux_sym_yield_expression_token1] = ACTIONS(1398), + [aux_sym_include_expression_token1] = ACTIONS(1398), + [aux_sym_include_once_expression_token1] = ACTIONS(1398), + [aux_sym_require_expression_token1] = ACTIONS(1398), + [aux_sym_require_once_expression_token1] = ACTIONS(1398), [sym_comment] = ACTIONS(5), }, [530] = { [sym_text_interpolation] = STATE(530), - [ts_builtin_sym_end] = ACTIONS(1427), - [sym_name] = ACTIONS(1429), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1427), - [aux_sym_function_static_declaration_token1] = ACTIONS(1429), - [aux_sym_global_declaration_token1] = ACTIONS(1429), - [aux_sym_namespace_definition_token1] = ACTIONS(1429), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1429), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1429), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1429), - [anon_sym_BSLASH] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1427), - [aux_sym_trait_declaration_token1] = ACTIONS(1429), - [aux_sym_interface_declaration_token1] = ACTIONS(1429), - [aux_sym_enum_declaration_token1] = ACTIONS(1429), - [aux_sym_enum_case_token1] = ACTIONS(1429), - [aux_sym_class_declaration_token1] = ACTIONS(1429), - [aux_sym_final_modifier_token1] = ACTIONS(1429), - [aux_sym_abstract_modifier_token1] = ACTIONS(1429), - [aux_sym_readonly_modifier_token1] = ACTIONS(1429), - [aux_sym_visibility_modifier_token1] = ACTIONS(1429), - [aux_sym_visibility_modifier_token2] = ACTIONS(1429), - [aux_sym_visibility_modifier_token3] = ACTIONS(1429), - [aux_sym__arrow_function_header_token1] = ACTIONS(1429), - [anon_sym_LPAREN] = ACTIONS(1427), - [aux_sym_cast_type_token1] = ACTIONS(1429), - [aux_sym_echo_statement_token1] = ACTIONS(1429), - [aux_sym_exit_statement_token1] = ACTIONS(1429), - [anon_sym_unset] = ACTIONS(1429), - [aux_sym_declare_statement_token1] = ACTIONS(1429), - [aux_sym_declare_statement_token2] = ACTIONS(1429), - [sym_float] = ACTIONS(1429), - [aux_sym_try_statement_token1] = ACTIONS(1429), - [aux_sym_goto_statement_token1] = ACTIONS(1429), - [aux_sym_continue_statement_token1] = ACTIONS(1429), - [aux_sym_break_statement_token1] = ACTIONS(1429), - [sym_integer] = ACTIONS(1429), - [aux_sym_return_statement_token1] = ACTIONS(1429), - [aux_sym_throw_expression_token1] = ACTIONS(1429), - [aux_sym_while_statement_token1] = ACTIONS(1429), - [aux_sym_while_statement_token2] = ACTIONS(1429), - [aux_sym_do_statement_token1] = ACTIONS(1429), - [aux_sym_for_statement_token1] = ACTIONS(1429), - [aux_sym_for_statement_token2] = ACTIONS(1429), - [aux_sym_foreach_statement_token1] = ACTIONS(1429), - [aux_sym_foreach_statement_token2] = ACTIONS(1429), - [aux_sym_if_statement_token1] = ACTIONS(1429), - [aux_sym_if_statement_token2] = ACTIONS(1429), - [aux_sym_else_if_clause_token1] = ACTIONS(1429), - [aux_sym_else_clause_token1] = ACTIONS(1429), - [aux_sym_match_expression_token1] = ACTIONS(1429), - [aux_sym_match_default_expression_token1] = ACTIONS(1429), - [aux_sym_switch_statement_token1] = ACTIONS(1429), - [aux_sym_switch_block_token1] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_TILDE] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_AT] = ACTIONS(1427), - [aux_sym_clone_expression_token1] = ACTIONS(1429), - [aux_sym_print_intrinsic_token1] = ACTIONS(1429), - [aux_sym_object_creation_expression_token1] = ACTIONS(1429), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [aux_sym__list_destructing_token1] = ACTIONS(1429), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_self] = ACTIONS(1429), - [anon_sym_parent] = ACTIONS(1429), - [aux_sym__argument_name_token1] = ACTIONS(1429), - [aux_sym__argument_name_token2] = ACTIONS(1429), - [anon_sym_POUND_LBRACK] = ACTIONS(1427), - [aux_sym_encapsed_string_token1] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1427), - [aux_sym_string_token1] = ACTIONS(1427), - [anon_sym_SQUOTE] = ACTIONS(1427), - [anon_sym_LT_LT_LT] = ACTIONS(1427), - [anon_sym_BQUOTE] = ACTIONS(1427), - [anon_sym_DOLLAR] = ACTIONS(1427), - [aux_sym_yield_expression_token1] = ACTIONS(1429), - [aux_sym_include_expression_token1] = ACTIONS(1429), - [aux_sym_include_once_expression_token1] = ACTIONS(1429), - [aux_sym_require_expression_token1] = ACTIONS(1429), - [aux_sym_require_once_expression_token1] = ACTIONS(1429), + [ts_builtin_sym_end] = ACTIONS(1400), + [sym_name] = ACTIONS(1402), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1400), + [aux_sym_function_static_declaration_token1] = ACTIONS(1402), + [aux_sym_global_declaration_token1] = ACTIONS(1402), + [aux_sym_namespace_definition_token1] = ACTIONS(1402), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1402), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1402), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1402), + [anon_sym_BSLASH] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [aux_sym_trait_declaration_token1] = ACTIONS(1402), + [aux_sym_interface_declaration_token1] = ACTIONS(1402), + [aux_sym_enum_declaration_token1] = ACTIONS(1402), + [aux_sym_enum_case_token1] = ACTIONS(1402), + [aux_sym_class_declaration_token1] = ACTIONS(1402), + [aux_sym_final_modifier_token1] = ACTIONS(1402), + [aux_sym_abstract_modifier_token1] = ACTIONS(1402), + [aux_sym_readonly_modifier_token1] = ACTIONS(1402), + [sym_var_modifier] = ACTIONS(1402), + [aux_sym_visibility_modifier_token1] = ACTIONS(1402), + [aux_sym_visibility_modifier_token2] = ACTIONS(1402), + [aux_sym_visibility_modifier_token3] = ACTIONS(1402), + [aux_sym__arrow_function_header_token1] = ACTIONS(1402), + [anon_sym_LPAREN] = ACTIONS(1400), + [aux_sym_cast_type_token1] = ACTIONS(1402), + [aux_sym_echo_statement_token1] = ACTIONS(1402), + [aux_sym_exit_statement_token1] = ACTIONS(1402), + [anon_sym_unset] = ACTIONS(1402), + [aux_sym_declare_statement_token1] = ACTIONS(1402), + [aux_sym_declare_statement_token2] = ACTIONS(1402), + [sym_float] = ACTIONS(1402), + [aux_sym_try_statement_token1] = ACTIONS(1402), + [aux_sym_goto_statement_token1] = ACTIONS(1402), + [aux_sym_continue_statement_token1] = ACTIONS(1402), + [aux_sym_break_statement_token1] = ACTIONS(1402), + [sym_integer] = ACTIONS(1402), + [aux_sym_return_statement_token1] = ACTIONS(1402), + [aux_sym_throw_expression_token1] = ACTIONS(1402), + [aux_sym_while_statement_token1] = ACTIONS(1402), + [aux_sym_while_statement_token2] = ACTIONS(1402), + [aux_sym_do_statement_token1] = ACTIONS(1402), + [aux_sym_for_statement_token1] = ACTIONS(1402), + [aux_sym_for_statement_token2] = ACTIONS(1402), + [aux_sym_foreach_statement_token1] = ACTIONS(1402), + [aux_sym_foreach_statement_token2] = ACTIONS(1402), + [aux_sym_if_statement_token1] = ACTIONS(1402), + [aux_sym_if_statement_token2] = ACTIONS(1402), + [aux_sym_else_if_clause_token1] = ACTIONS(1402), + [aux_sym_else_clause_token1] = ACTIONS(1402), + [aux_sym_match_expression_token1] = ACTIONS(1402), + [aux_sym_match_default_expression_token1] = ACTIONS(1402), + [aux_sym_switch_statement_token1] = ACTIONS(1402), + [aux_sym_switch_block_token1] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_AT] = ACTIONS(1400), + [aux_sym_clone_expression_token1] = ACTIONS(1402), + [aux_sym_print_intrinsic_token1] = ACTIONS(1402), + [aux_sym_object_creation_expression_token1] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [aux_sym__list_destructing_token1] = ACTIONS(1402), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_self] = ACTIONS(1402), + [anon_sym_parent] = ACTIONS(1402), + [aux_sym__argument_name_token1] = ACTIONS(1402), + [aux_sym__argument_name_token2] = ACTIONS(1402), + [anon_sym_POUND_LBRACK] = ACTIONS(1400), + [aux_sym_encapsed_string_token1] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [aux_sym_string_token1] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_LT_LT_LT] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [aux_sym_yield_expression_token1] = ACTIONS(1402), + [aux_sym_include_expression_token1] = ACTIONS(1402), + [aux_sym_include_once_expression_token1] = ACTIONS(1402), + [aux_sym_require_expression_token1] = ACTIONS(1402), + [aux_sym_require_once_expression_token1] = ACTIONS(1402), [sym_comment] = ACTIONS(5), }, [531] = { [sym_text_interpolation] = STATE(531), - [ts_builtin_sym_end] = ACTIONS(1431), - [sym_name] = ACTIONS(1433), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1431), - [aux_sym_function_static_declaration_token1] = ACTIONS(1433), - [aux_sym_global_declaration_token1] = ACTIONS(1433), - [aux_sym_namespace_definition_token1] = ACTIONS(1433), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1433), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1433), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1433), - [anon_sym_BSLASH] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1431), - [aux_sym_trait_declaration_token1] = ACTIONS(1433), - [aux_sym_interface_declaration_token1] = ACTIONS(1433), - [aux_sym_enum_declaration_token1] = ACTIONS(1433), - [aux_sym_enum_case_token1] = ACTIONS(1433), - [aux_sym_class_declaration_token1] = ACTIONS(1433), - [aux_sym_final_modifier_token1] = ACTIONS(1433), - [aux_sym_abstract_modifier_token1] = ACTIONS(1433), - [aux_sym_readonly_modifier_token1] = ACTIONS(1433), - [aux_sym_visibility_modifier_token1] = ACTIONS(1433), - [aux_sym_visibility_modifier_token2] = ACTIONS(1433), - [aux_sym_visibility_modifier_token3] = ACTIONS(1433), - [aux_sym__arrow_function_header_token1] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1431), - [aux_sym_cast_type_token1] = ACTIONS(1433), - [aux_sym_echo_statement_token1] = ACTIONS(1433), - [aux_sym_exit_statement_token1] = ACTIONS(1433), - [anon_sym_unset] = ACTIONS(1433), - [aux_sym_declare_statement_token1] = ACTIONS(1433), - [aux_sym_declare_statement_token2] = ACTIONS(1433), - [sym_float] = ACTIONS(1433), - [aux_sym_try_statement_token1] = ACTIONS(1433), - [aux_sym_goto_statement_token1] = ACTIONS(1433), - [aux_sym_continue_statement_token1] = ACTIONS(1433), - [aux_sym_break_statement_token1] = ACTIONS(1433), - [sym_integer] = ACTIONS(1433), - [aux_sym_return_statement_token1] = ACTIONS(1433), - [aux_sym_throw_expression_token1] = ACTIONS(1433), - [aux_sym_while_statement_token1] = ACTIONS(1433), - [aux_sym_while_statement_token2] = ACTIONS(1433), - [aux_sym_do_statement_token1] = ACTIONS(1433), - [aux_sym_for_statement_token1] = ACTIONS(1433), - [aux_sym_for_statement_token2] = ACTIONS(1433), - [aux_sym_foreach_statement_token1] = ACTIONS(1433), - [aux_sym_foreach_statement_token2] = ACTIONS(1433), - [aux_sym_if_statement_token1] = ACTIONS(1433), - [aux_sym_if_statement_token2] = ACTIONS(1433), - [aux_sym_else_if_clause_token1] = ACTIONS(1433), - [aux_sym_else_clause_token1] = ACTIONS(1433), - [aux_sym_match_expression_token1] = ACTIONS(1433), - [aux_sym_match_default_expression_token1] = ACTIONS(1433), - [aux_sym_switch_statement_token1] = ACTIONS(1433), - [aux_sym_switch_block_token1] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_TILDE] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1431), - [aux_sym_clone_expression_token1] = ACTIONS(1433), - [aux_sym_print_intrinsic_token1] = ACTIONS(1433), - [aux_sym_object_creation_expression_token1] = ACTIONS(1433), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [aux_sym__list_destructing_token1] = ACTIONS(1433), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_self] = ACTIONS(1433), - [anon_sym_parent] = ACTIONS(1433), - [aux_sym__argument_name_token1] = ACTIONS(1433), - [aux_sym__argument_name_token2] = ACTIONS(1433), - [anon_sym_POUND_LBRACK] = ACTIONS(1431), - [aux_sym_encapsed_string_token1] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(1431), - [aux_sym_string_token1] = ACTIONS(1431), - [anon_sym_SQUOTE] = ACTIONS(1431), - [anon_sym_LT_LT_LT] = ACTIONS(1431), - [anon_sym_BQUOTE] = ACTIONS(1431), - [anon_sym_DOLLAR] = ACTIONS(1431), - [aux_sym_yield_expression_token1] = ACTIONS(1433), - [aux_sym_include_expression_token1] = ACTIONS(1433), - [aux_sym_include_once_expression_token1] = ACTIONS(1433), - [aux_sym_require_expression_token1] = ACTIONS(1433), - [aux_sym_require_once_expression_token1] = ACTIONS(1433), + [ts_builtin_sym_end] = ACTIONS(1404), + [sym_name] = ACTIONS(1406), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1404), + [aux_sym_function_static_declaration_token1] = ACTIONS(1406), + [aux_sym_global_declaration_token1] = ACTIONS(1406), + [aux_sym_namespace_definition_token1] = ACTIONS(1406), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1406), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1406), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1406), + [anon_sym_BSLASH] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_RBRACE] = ACTIONS(1404), + [aux_sym_trait_declaration_token1] = ACTIONS(1406), + [aux_sym_interface_declaration_token1] = ACTIONS(1406), + [aux_sym_enum_declaration_token1] = ACTIONS(1406), + [aux_sym_enum_case_token1] = ACTIONS(1406), + [aux_sym_class_declaration_token1] = ACTIONS(1406), + [aux_sym_final_modifier_token1] = ACTIONS(1406), + [aux_sym_abstract_modifier_token1] = ACTIONS(1406), + [aux_sym_readonly_modifier_token1] = ACTIONS(1406), + [sym_var_modifier] = ACTIONS(1406), + [aux_sym_visibility_modifier_token1] = ACTIONS(1406), + [aux_sym_visibility_modifier_token2] = ACTIONS(1406), + [aux_sym_visibility_modifier_token3] = ACTIONS(1406), + [aux_sym__arrow_function_header_token1] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1404), + [aux_sym_cast_type_token1] = ACTIONS(1406), + [aux_sym_echo_statement_token1] = ACTIONS(1406), + [aux_sym_exit_statement_token1] = ACTIONS(1406), + [anon_sym_unset] = ACTIONS(1406), + [aux_sym_declare_statement_token1] = ACTIONS(1406), + [aux_sym_declare_statement_token2] = ACTIONS(1406), + [sym_float] = ACTIONS(1406), + [aux_sym_try_statement_token1] = ACTIONS(1406), + [aux_sym_goto_statement_token1] = ACTIONS(1406), + [aux_sym_continue_statement_token1] = ACTIONS(1406), + [aux_sym_break_statement_token1] = ACTIONS(1406), + [sym_integer] = ACTIONS(1406), + [aux_sym_return_statement_token1] = ACTIONS(1406), + [aux_sym_throw_expression_token1] = ACTIONS(1406), + [aux_sym_while_statement_token1] = ACTIONS(1406), + [aux_sym_while_statement_token2] = ACTIONS(1406), + [aux_sym_do_statement_token1] = ACTIONS(1406), + [aux_sym_for_statement_token1] = ACTIONS(1406), + [aux_sym_for_statement_token2] = ACTIONS(1406), + [aux_sym_foreach_statement_token1] = ACTIONS(1406), + [aux_sym_foreach_statement_token2] = ACTIONS(1406), + [aux_sym_if_statement_token1] = ACTIONS(1406), + [aux_sym_if_statement_token2] = ACTIONS(1406), + [aux_sym_else_if_clause_token1] = ACTIONS(1406), + [aux_sym_else_clause_token1] = ACTIONS(1406), + [aux_sym_match_expression_token1] = ACTIONS(1406), + [aux_sym_match_default_expression_token1] = ACTIONS(1406), + [aux_sym_switch_statement_token1] = ACTIONS(1406), + [aux_sym_switch_block_token1] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_AT] = ACTIONS(1404), + [aux_sym_clone_expression_token1] = ACTIONS(1406), + [aux_sym_print_intrinsic_token1] = ACTIONS(1406), + [aux_sym_object_creation_expression_token1] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [aux_sym__list_destructing_token1] = ACTIONS(1406), + [anon_sym_LBRACK] = ACTIONS(1404), + [anon_sym_self] = ACTIONS(1406), + [anon_sym_parent] = ACTIONS(1406), + [aux_sym__argument_name_token1] = ACTIONS(1406), + [aux_sym__argument_name_token2] = ACTIONS(1406), + [anon_sym_POUND_LBRACK] = ACTIONS(1404), + [aux_sym_encapsed_string_token1] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [aux_sym_string_token1] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_LT_LT_LT] = ACTIONS(1404), + [anon_sym_BQUOTE] = ACTIONS(1404), + [anon_sym_DOLLAR] = ACTIONS(1404), + [aux_sym_yield_expression_token1] = ACTIONS(1406), + [aux_sym_include_expression_token1] = ACTIONS(1406), + [aux_sym_include_once_expression_token1] = ACTIONS(1406), + [aux_sym_require_expression_token1] = ACTIONS(1406), + [aux_sym_require_once_expression_token1] = ACTIONS(1406), [sym_comment] = ACTIONS(5), }, [532] = { [sym_text_interpolation] = STATE(532), - [ts_builtin_sym_end] = ACTIONS(1435), - [sym_name] = ACTIONS(1437), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1435), - [aux_sym_function_static_declaration_token1] = ACTIONS(1437), - [aux_sym_global_declaration_token1] = ACTIONS(1437), - [aux_sym_namespace_definition_token1] = ACTIONS(1437), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1437), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1437), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1437), - [anon_sym_BSLASH] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [aux_sym_trait_declaration_token1] = ACTIONS(1437), - [aux_sym_interface_declaration_token1] = ACTIONS(1437), - [aux_sym_enum_declaration_token1] = ACTIONS(1437), - [aux_sym_enum_case_token1] = ACTIONS(1437), - [aux_sym_class_declaration_token1] = ACTIONS(1437), - [aux_sym_final_modifier_token1] = ACTIONS(1437), - [aux_sym_abstract_modifier_token1] = ACTIONS(1437), - [aux_sym_readonly_modifier_token1] = ACTIONS(1437), - [aux_sym_visibility_modifier_token1] = ACTIONS(1437), - [aux_sym_visibility_modifier_token2] = ACTIONS(1437), - [aux_sym_visibility_modifier_token3] = ACTIONS(1437), - [aux_sym__arrow_function_header_token1] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1435), - [aux_sym_cast_type_token1] = ACTIONS(1437), - [aux_sym_echo_statement_token1] = ACTIONS(1437), - [aux_sym_exit_statement_token1] = ACTIONS(1437), - [anon_sym_unset] = ACTIONS(1437), - [aux_sym_declare_statement_token1] = ACTIONS(1437), - [aux_sym_declare_statement_token2] = ACTIONS(1437), - [sym_float] = ACTIONS(1437), - [aux_sym_try_statement_token1] = ACTIONS(1437), - [aux_sym_goto_statement_token1] = ACTIONS(1437), - [aux_sym_continue_statement_token1] = ACTIONS(1437), - [aux_sym_break_statement_token1] = ACTIONS(1437), - [sym_integer] = ACTIONS(1437), - [aux_sym_return_statement_token1] = ACTIONS(1437), - [aux_sym_throw_expression_token1] = ACTIONS(1437), - [aux_sym_while_statement_token1] = ACTIONS(1437), - [aux_sym_while_statement_token2] = ACTIONS(1437), - [aux_sym_do_statement_token1] = ACTIONS(1437), - [aux_sym_for_statement_token1] = ACTIONS(1437), - [aux_sym_for_statement_token2] = ACTIONS(1437), - [aux_sym_foreach_statement_token1] = ACTIONS(1437), - [aux_sym_foreach_statement_token2] = ACTIONS(1437), - [aux_sym_if_statement_token1] = ACTIONS(1437), - [aux_sym_if_statement_token2] = ACTIONS(1437), - [aux_sym_else_if_clause_token1] = ACTIONS(1437), - [aux_sym_else_clause_token1] = ACTIONS(1437), - [aux_sym_match_expression_token1] = ACTIONS(1437), - [aux_sym_match_default_expression_token1] = ACTIONS(1437), - [aux_sym_switch_statement_token1] = ACTIONS(1437), - [aux_sym_switch_block_token1] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_AT] = ACTIONS(1435), - [aux_sym_clone_expression_token1] = ACTIONS(1437), - [aux_sym_print_intrinsic_token1] = ACTIONS(1437), - [aux_sym_object_creation_expression_token1] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [aux_sym__list_destructing_token1] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1435), - [anon_sym_self] = ACTIONS(1437), - [anon_sym_parent] = ACTIONS(1437), - [aux_sym__argument_name_token1] = ACTIONS(1437), - [aux_sym__argument_name_token2] = ACTIONS(1437), - [anon_sym_POUND_LBRACK] = ACTIONS(1435), - [aux_sym_encapsed_string_token1] = ACTIONS(1435), - [anon_sym_DQUOTE] = ACTIONS(1435), - [aux_sym_string_token1] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1435), - [anon_sym_LT_LT_LT] = ACTIONS(1435), - [anon_sym_BQUOTE] = ACTIONS(1435), - [anon_sym_DOLLAR] = ACTIONS(1435), - [aux_sym_yield_expression_token1] = ACTIONS(1437), - [aux_sym_include_expression_token1] = ACTIONS(1437), - [aux_sym_include_once_expression_token1] = ACTIONS(1437), - [aux_sym_require_expression_token1] = ACTIONS(1437), - [aux_sym_require_once_expression_token1] = ACTIONS(1437), + [ts_builtin_sym_end] = ACTIONS(1408), + [sym_name] = ACTIONS(1410), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1408), + [aux_sym_function_static_declaration_token1] = ACTIONS(1410), + [aux_sym_global_declaration_token1] = ACTIONS(1410), + [aux_sym_namespace_definition_token1] = ACTIONS(1410), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1410), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1410), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1410), + [anon_sym_BSLASH] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [aux_sym_trait_declaration_token1] = ACTIONS(1410), + [aux_sym_interface_declaration_token1] = ACTIONS(1410), + [aux_sym_enum_declaration_token1] = ACTIONS(1410), + [aux_sym_enum_case_token1] = ACTIONS(1410), + [aux_sym_class_declaration_token1] = ACTIONS(1410), + [aux_sym_final_modifier_token1] = ACTIONS(1410), + [aux_sym_abstract_modifier_token1] = ACTIONS(1410), + [aux_sym_readonly_modifier_token1] = ACTIONS(1410), + [sym_var_modifier] = ACTIONS(1410), + [aux_sym_visibility_modifier_token1] = ACTIONS(1410), + [aux_sym_visibility_modifier_token2] = ACTIONS(1410), + [aux_sym_visibility_modifier_token3] = ACTIONS(1410), + [aux_sym__arrow_function_header_token1] = ACTIONS(1410), + [anon_sym_LPAREN] = ACTIONS(1408), + [aux_sym_cast_type_token1] = ACTIONS(1410), + [aux_sym_echo_statement_token1] = ACTIONS(1410), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [anon_sym_unset] = ACTIONS(1410), + [aux_sym_declare_statement_token1] = ACTIONS(1410), + [aux_sym_declare_statement_token2] = ACTIONS(1410), + [sym_float] = ACTIONS(1410), + [aux_sym_try_statement_token1] = ACTIONS(1410), + [aux_sym_goto_statement_token1] = ACTIONS(1410), + [aux_sym_continue_statement_token1] = ACTIONS(1410), + [aux_sym_break_statement_token1] = ACTIONS(1410), + [sym_integer] = ACTIONS(1410), + [aux_sym_return_statement_token1] = ACTIONS(1410), + [aux_sym_throw_expression_token1] = ACTIONS(1410), + [aux_sym_while_statement_token1] = ACTIONS(1410), + [aux_sym_while_statement_token2] = ACTIONS(1410), + [aux_sym_do_statement_token1] = ACTIONS(1410), + [aux_sym_for_statement_token1] = ACTIONS(1410), + [aux_sym_for_statement_token2] = ACTIONS(1410), + [aux_sym_foreach_statement_token1] = ACTIONS(1410), + [aux_sym_foreach_statement_token2] = ACTIONS(1410), + [aux_sym_if_statement_token1] = ACTIONS(1410), + [aux_sym_if_statement_token2] = ACTIONS(1410), + [aux_sym_else_if_clause_token1] = ACTIONS(1410), + [aux_sym_else_clause_token1] = ACTIONS(1410), + [aux_sym_match_expression_token1] = ACTIONS(1410), + [aux_sym_match_default_expression_token1] = ACTIONS(1410), + [aux_sym_switch_statement_token1] = ACTIONS(1410), + [aux_sym_switch_block_token1] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_AT] = ACTIONS(1408), + [aux_sym_clone_expression_token1] = ACTIONS(1410), + [aux_sym_print_intrinsic_token1] = ACTIONS(1410), + [aux_sym_object_creation_expression_token1] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [aux_sym__list_destructing_token1] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1408), + [anon_sym_self] = ACTIONS(1410), + [anon_sym_parent] = ACTIONS(1410), + [aux_sym__argument_name_token1] = ACTIONS(1410), + [aux_sym__argument_name_token2] = ACTIONS(1410), + [anon_sym_POUND_LBRACK] = ACTIONS(1408), + [aux_sym_encapsed_string_token1] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [aux_sym_string_token1] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_LT_LT_LT] = ACTIONS(1408), + [anon_sym_BQUOTE] = ACTIONS(1408), + [anon_sym_DOLLAR] = ACTIONS(1408), + [aux_sym_yield_expression_token1] = ACTIONS(1410), + [aux_sym_include_expression_token1] = ACTIONS(1410), + [aux_sym_include_once_expression_token1] = ACTIONS(1410), + [aux_sym_require_expression_token1] = ACTIONS(1410), + [aux_sym_require_once_expression_token1] = ACTIONS(1410), [sym_comment] = ACTIONS(5), }, [533] = { [sym_text_interpolation] = STATE(533), - [ts_builtin_sym_end] = ACTIONS(1439), - [sym_name] = ACTIONS(1441), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1439), - [aux_sym_function_static_declaration_token1] = ACTIONS(1441), - [aux_sym_global_declaration_token1] = ACTIONS(1441), - [aux_sym_namespace_definition_token1] = ACTIONS(1441), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1441), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1441), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1441), - [anon_sym_BSLASH] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_RBRACE] = ACTIONS(1439), - [aux_sym_trait_declaration_token1] = ACTIONS(1441), - [aux_sym_interface_declaration_token1] = ACTIONS(1441), - [aux_sym_enum_declaration_token1] = ACTIONS(1441), - [aux_sym_enum_case_token1] = ACTIONS(1441), - [aux_sym_class_declaration_token1] = ACTIONS(1441), - [aux_sym_final_modifier_token1] = ACTIONS(1441), - [aux_sym_abstract_modifier_token1] = ACTIONS(1441), - [aux_sym_readonly_modifier_token1] = ACTIONS(1441), - [aux_sym_visibility_modifier_token1] = ACTIONS(1441), - [aux_sym_visibility_modifier_token2] = ACTIONS(1441), - [aux_sym_visibility_modifier_token3] = ACTIONS(1441), - [aux_sym__arrow_function_header_token1] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1439), - [aux_sym_cast_type_token1] = ACTIONS(1441), - [aux_sym_echo_statement_token1] = ACTIONS(1441), - [aux_sym_exit_statement_token1] = ACTIONS(1441), - [anon_sym_unset] = ACTIONS(1441), - [aux_sym_declare_statement_token1] = ACTIONS(1441), - [aux_sym_declare_statement_token2] = ACTIONS(1441), - [sym_float] = ACTIONS(1441), - [aux_sym_try_statement_token1] = ACTIONS(1441), - [aux_sym_goto_statement_token1] = ACTIONS(1441), - [aux_sym_continue_statement_token1] = ACTIONS(1441), - [aux_sym_break_statement_token1] = ACTIONS(1441), - [sym_integer] = ACTIONS(1441), - [aux_sym_return_statement_token1] = ACTIONS(1441), - [aux_sym_throw_expression_token1] = ACTIONS(1441), - [aux_sym_while_statement_token1] = ACTIONS(1441), - [aux_sym_while_statement_token2] = ACTIONS(1441), - [aux_sym_do_statement_token1] = ACTIONS(1441), - [aux_sym_for_statement_token1] = ACTIONS(1441), - [aux_sym_for_statement_token2] = ACTIONS(1441), - [aux_sym_foreach_statement_token1] = ACTIONS(1441), - [aux_sym_foreach_statement_token2] = ACTIONS(1441), - [aux_sym_if_statement_token1] = ACTIONS(1441), - [aux_sym_if_statement_token2] = ACTIONS(1441), - [aux_sym_else_if_clause_token1] = ACTIONS(1441), - [aux_sym_else_clause_token1] = ACTIONS(1441), - [aux_sym_match_expression_token1] = ACTIONS(1441), - [aux_sym_match_default_expression_token1] = ACTIONS(1441), - [aux_sym_switch_statement_token1] = ACTIONS(1441), - [aux_sym_switch_block_token1] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1439), - [anon_sym_AT] = ACTIONS(1439), - [aux_sym_clone_expression_token1] = ACTIONS(1441), - [aux_sym_print_intrinsic_token1] = ACTIONS(1441), - [aux_sym_object_creation_expression_token1] = ACTIONS(1441), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [aux_sym__list_destructing_token1] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1439), - [anon_sym_self] = ACTIONS(1441), - [anon_sym_parent] = ACTIONS(1441), - [aux_sym__argument_name_token1] = ACTIONS(1441), - [aux_sym__argument_name_token2] = ACTIONS(1441), - [anon_sym_POUND_LBRACK] = ACTIONS(1439), - [aux_sym_encapsed_string_token1] = ACTIONS(1439), - [anon_sym_DQUOTE] = ACTIONS(1439), - [aux_sym_string_token1] = ACTIONS(1439), - [anon_sym_SQUOTE] = ACTIONS(1439), - [anon_sym_LT_LT_LT] = ACTIONS(1439), - [anon_sym_BQUOTE] = ACTIONS(1439), - [anon_sym_DOLLAR] = ACTIONS(1439), - [aux_sym_yield_expression_token1] = ACTIONS(1441), - [aux_sym_include_expression_token1] = ACTIONS(1441), - [aux_sym_include_once_expression_token1] = ACTIONS(1441), - [aux_sym_require_expression_token1] = ACTIONS(1441), - [aux_sym_require_once_expression_token1] = ACTIONS(1441), + [ts_builtin_sym_end] = ACTIONS(1412), + [sym_name] = ACTIONS(1414), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1412), + [aux_sym_function_static_declaration_token1] = ACTIONS(1414), + [aux_sym_global_declaration_token1] = ACTIONS(1414), + [aux_sym_namespace_definition_token1] = ACTIONS(1414), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1414), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1414), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1414), + [anon_sym_BSLASH] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [aux_sym_trait_declaration_token1] = ACTIONS(1414), + [aux_sym_interface_declaration_token1] = ACTIONS(1414), + [aux_sym_enum_declaration_token1] = ACTIONS(1414), + [aux_sym_enum_case_token1] = ACTIONS(1414), + [aux_sym_class_declaration_token1] = ACTIONS(1414), + [aux_sym_final_modifier_token1] = ACTIONS(1414), + [aux_sym_abstract_modifier_token1] = ACTIONS(1414), + [aux_sym_readonly_modifier_token1] = ACTIONS(1414), + [sym_var_modifier] = ACTIONS(1414), + [aux_sym_visibility_modifier_token1] = ACTIONS(1414), + [aux_sym_visibility_modifier_token2] = ACTIONS(1414), + [aux_sym_visibility_modifier_token3] = ACTIONS(1414), + [aux_sym__arrow_function_header_token1] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1412), + [aux_sym_cast_type_token1] = ACTIONS(1414), + [aux_sym_echo_statement_token1] = ACTIONS(1414), + [aux_sym_exit_statement_token1] = ACTIONS(1414), + [anon_sym_unset] = ACTIONS(1414), + [aux_sym_declare_statement_token1] = ACTIONS(1414), + [aux_sym_declare_statement_token2] = ACTIONS(1414), + [sym_float] = ACTIONS(1414), + [aux_sym_try_statement_token1] = ACTIONS(1414), + [aux_sym_goto_statement_token1] = ACTIONS(1414), + [aux_sym_continue_statement_token1] = ACTIONS(1414), + [aux_sym_break_statement_token1] = ACTIONS(1414), + [sym_integer] = ACTIONS(1414), + [aux_sym_return_statement_token1] = ACTIONS(1414), + [aux_sym_throw_expression_token1] = ACTIONS(1414), + [aux_sym_while_statement_token1] = ACTIONS(1414), + [aux_sym_while_statement_token2] = ACTIONS(1414), + [aux_sym_do_statement_token1] = ACTIONS(1414), + [aux_sym_for_statement_token1] = ACTIONS(1414), + [aux_sym_for_statement_token2] = ACTIONS(1414), + [aux_sym_foreach_statement_token1] = ACTIONS(1414), + [aux_sym_foreach_statement_token2] = ACTIONS(1414), + [aux_sym_if_statement_token1] = ACTIONS(1414), + [aux_sym_if_statement_token2] = ACTIONS(1414), + [aux_sym_else_if_clause_token1] = ACTIONS(1414), + [aux_sym_else_clause_token1] = ACTIONS(1414), + [aux_sym_match_expression_token1] = ACTIONS(1414), + [aux_sym_match_default_expression_token1] = ACTIONS(1414), + [aux_sym_switch_statement_token1] = ACTIONS(1414), + [aux_sym_switch_block_token1] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1412), + [aux_sym_clone_expression_token1] = ACTIONS(1414), + [aux_sym_print_intrinsic_token1] = ACTIONS(1414), + [aux_sym_object_creation_expression_token1] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [aux_sym__list_destructing_token1] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1412), + [anon_sym_self] = ACTIONS(1414), + [anon_sym_parent] = ACTIONS(1414), + [aux_sym__argument_name_token1] = ACTIONS(1414), + [aux_sym__argument_name_token2] = ACTIONS(1414), + [anon_sym_POUND_LBRACK] = ACTIONS(1412), + [aux_sym_encapsed_string_token1] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [aux_sym_string_token1] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_LT_LT_LT] = ACTIONS(1412), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR] = ACTIONS(1412), + [aux_sym_yield_expression_token1] = ACTIONS(1414), + [aux_sym_include_expression_token1] = ACTIONS(1414), + [aux_sym_include_once_expression_token1] = ACTIONS(1414), + [aux_sym_require_expression_token1] = ACTIONS(1414), + [aux_sym_require_once_expression_token1] = ACTIONS(1414), [sym_comment] = ACTIONS(5), }, [534] = { [sym_text_interpolation] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1443), - [sym_name] = ACTIONS(1445), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1443), - [aux_sym_function_static_declaration_token1] = ACTIONS(1445), - [aux_sym_global_declaration_token1] = ACTIONS(1445), - [aux_sym_namespace_definition_token1] = ACTIONS(1445), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1445), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1445), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1445), - [anon_sym_BSLASH] = ACTIONS(1443), - [anon_sym_LBRACE] = ACTIONS(1443), - [anon_sym_RBRACE] = ACTIONS(1443), - [aux_sym_trait_declaration_token1] = ACTIONS(1445), - [aux_sym_interface_declaration_token1] = ACTIONS(1445), - [aux_sym_enum_declaration_token1] = ACTIONS(1445), - [aux_sym_enum_case_token1] = ACTIONS(1445), - [aux_sym_class_declaration_token1] = ACTIONS(1445), - [aux_sym_final_modifier_token1] = ACTIONS(1445), - [aux_sym_abstract_modifier_token1] = ACTIONS(1445), - [aux_sym_readonly_modifier_token1] = ACTIONS(1445), - [aux_sym_visibility_modifier_token1] = ACTIONS(1445), - [aux_sym_visibility_modifier_token2] = ACTIONS(1445), - [aux_sym_visibility_modifier_token3] = ACTIONS(1445), - [aux_sym__arrow_function_header_token1] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1443), - [aux_sym_cast_type_token1] = ACTIONS(1445), - [aux_sym_echo_statement_token1] = ACTIONS(1445), - [aux_sym_exit_statement_token1] = ACTIONS(1445), - [anon_sym_unset] = ACTIONS(1445), - [aux_sym_declare_statement_token1] = ACTIONS(1445), - [aux_sym_declare_statement_token2] = ACTIONS(1445), - [sym_float] = ACTIONS(1445), - [aux_sym_try_statement_token1] = ACTIONS(1445), - [aux_sym_goto_statement_token1] = ACTIONS(1445), - [aux_sym_continue_statement_token1] = ACTIONS(1445), - [aux_sym_break_statement_token1] = ACTIONS(1445), - [sym_integer] = ACTIONS(1445), - [aux_sym_return_statement_token1] = ACTIONS(1445), - [aux_sym_throw_expression_token1] = ACTIONS(1445), - [aux_sym_while_statement_token1] = ACTIONS(1445), - [aux_sym_while_statement_token2] = ACTIONS(1445), - [aux_sym_do_statement_token1] = ACTIONS(1445), - [aux_sym_for_statement_token1] = ACTIONS(1445), - [aux_sym_for_statement_token2] = ACTIONS(1445), - [aux_sym_foreach_statement_token1] = ACTIONS(1445), - [aux_sym_foreach_statement_token2] = ACTIONS(1445), - [aux_sym_if_statement_token1] = ACTIONS(1445), - [aux_sym_if_statement_token2] = ACTIONS(1445), - [aux_sym_else_if_clause_token1] = ACTIONS(1445), - [aux_sym_else_clause_token1] = ACTIONS(1445), - [aux_sym_match_expression_token1] = ACTIONS(1445), - [aux_sym_match_default_expression_token1] = ACTIONS(1445), - [aux_sym_switch_statement_token1] = ACTIONS(1445), - [aux_sym_switch_block_token1] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_TILDE] = ACTIONS(1443), - [anon_sym_BANG] = ACTIONS(1443), - [anon_sym_AT] = ACTIONS(1443), - [aux_sym_clone_expression_token1] = ACTIONS(1445), - [aux_sym_print_intrinsic_token1] = ACTIONS(1445), - [aux_sym_object_creation_expression_token1] = ACTIONS(1445), - [anon_sym_DASH_DASH] = ACTIONS(1443), - [anon_sym_PLUS_PLUS] = ACTIONS(1443), - [aux_sym__list_destructing_token1] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_self] = ACTIONS(1445), - [anon_sym_parent] = ACTIONS(1445), - [aux_sym__argument_name_token1] = ACTIONS(1445), - [aux_sym__argument_name_token2] = ACTIONS(1445), - [anon_sym_POUND_LBRACK] = ACTIONS(1443), - [aux_sym_encapsed_string_token1] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [aux_sym_string_token1] = ACTIONS(1443), - [anon_sym_SQUOTE] = ACTIONS(1443), - [anon_sym_LT_LT_LT] = ACTIONS(1443), - [anon_sym_BQUOTE] = ACTIONS(1443), - [anon_sym_DOLLAR] = ACTIONS(1443), - [aux_sym_yield_expression_token1] = ACTIONS(1445), - [aux_sym_include_expression_token1] = ACTIONS(1445), - [aux_sym_include_once_expression_token1] = ACTIONS(1445), - [aux_sym_require_expression_token1] = ACTIONS(1445), - [aux_sym_require_once_expression_token1] = ACTIONS(1445), + [ts_builtin_sym_end] = ACTIONS(1416), + [sym_name] = ACTIONS(1418), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1416), + [aux_sym_function_static_declaration_token1] = ACTIONS(1418), + [aux_sym_global_declaration_token1] = ACTIONS(1418), + [aux_sym_namespace_definition_token1] = ACTIONS(1418), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1418), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1418), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1418), + [anon_sym_BSLASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_RBRACE] = ACTIONS(1416), + [aux_sym_trait_declaration_token1] = ACTIONS(1418), + [aux_sym_interface_declaration_token1] = ACTIONS(1418), + [aux_sym_enum_declaration_token1] = ACTIONS(1418), + [aux_sym_enum_case_token1] = ACTIONS(1418), + [aux_sym_class_declaration_token1] = ACTIONS(1418), + [aux_sym_final_modifier_token1] = ACTIONS(1418), + [aux_sym_abstract_modifier_token1] = ACTIONS(1418), + [aux_sym_readonly_modifier_token1] = ACTIONS(1418), + [sym_var_modifier] = ACTIONS(1418), + [aux_sym_visibility_modifier_token1] = ACTIONS(1418), + [aux_sym_visibility_modifier_token2] = ACTIONS(1418), + [aux_sym_visibility_modifier_token3] = ACTIONS(1418), + [aux_sym__arrow_function_header_token1] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1416), + [aux_sym_cast_type_token1] = ACTIONS(1418), + [aux_sym_echo_statement_token1] = ACTIONS(1418), + [aux_sym_exit_statement_token1] = ACTIONS(1418), + [anon_sym_unset] = ACTIONS(1418), + [aux_sym_declare_statement_token1] = ACTIONS(1418), + [aux_sym_declare_statement_token2] = ACTIONS(1418), + [sym_float] = ACTIONS(1418), + [aux_sym_try_statement_token1] = ACTIONS(1418), + [aux_sym_goto_statement_token1] = ACTIONS(1418), + [aux_sym_continue_statement_token1] = ACTIONS(1418), + [aux_sym_break_statement_token1] = ACTIONS(1418), + [sym_integer] = ACTIONS(1418), + [aux_sym_return_statement_token1] = ACTIONS(1418), + [aux_sym_throw_expression_token1] = ACTIONS(1418), + [aux_sym_while_statement_token1] = ACTIONS(1418), + [aux_sym_while_statement_token2] = ACTIONS(1418), + [aux_sym_do_statement_token1] = ACTIONS(1418), + [aux_sym_for_statement_token1] = ACTIONS(1418), + [aux_sym_for_statement_token2] = ACTIONS(1418), + [aux_sym_foreach_statement_token1] = ACTIONS(1418), + [aux_sym_foreach_statement_token2] = ACTIONS(1418), + [aux_sym_if_statement_token1] = ACTIONS(1418), + [aux_sym_if_statement_token2] = ACTIONS(1418), + [aux_sym_else_if_clause_token1] = ACTIONS(1418), + [aux_sym_else_clause_token1] = ACTIONS(1418), + [aux_sym_match_expression_token1] = ACTIONS(1418), + [aux_sym_match_default_expression_token1] = ACTIONS(1418), + [aux_sym_switch_statement_token1] = ACTIONS(1418), + [aux_sym_switch_block_token1] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_AT] = ACTIONS(1416), + [aux_sym_clone_expression_token1] = ACTIONS(1418), + [aux_sym_print_intrinsic_token1] = ACTIONS(1418), + [aux_sym_object_creation_expression_token1] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [aux_sym__list_destructing_token1] = ACTIONS(1418), + [anon_sym_LBRACK] = ACTIONS(1416), + [anon_sym_self] = ACTIONS(1418), + [anon_sym_parent] = ACTIONS(1418), + [aux_sym__argument_name_token1] = ACTIONS(1418), + [aux_sym__argument_name_token2] = ACTIONS(1418), + [anon_sym_POUND_LBRACK] = ACTIONS(1416), + [aux_sym_encapsed_string_token1] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [aux_sym_string_token1] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_LT_LT_LT] = ACTIONS(1416), + [anon_sym_BQUOTE] = ACTIONS(1416), + [anon_sym_DOLLAR] = ACTIONS(1416), + [aux_sym_yield_expression_token1] = ACTIONS(1418), + [aux_sym_include_expression_token1] = ACTIONS(1418), + [aux_sym_include_once_expression_token1] = ACTIONS(1418), + [aux_sym_require_expression_token1] = ACTIONS(1418), + [aux_sym_require_once_expression_token1] = ACTIONS(1418), [sym_comment] = ACTIONS(5), }, [535] = { [sym_text_interpolation] = STATE(535), - [ts_builtin_sym_end] = ACTIONS(1447), - [sym_name] = ACTIONS(1449), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1447), - [aux_sym_function_static_declaration_token1] = ACTIONS(1449), - [aux_sym_global_declaration_token1] = ACTIONS(1449), - [aux_sym_namespace_definition_token1] = ACTIONS(1449), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1449), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1449), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1449), - [anon_sym_BSLASH] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1447), - [anon_sym_RBRACE] = ACTIONS(1447), - [aux_sym_trait_declaration_token1] = ACTIONS(1449), - [aux_sym_interface_declaration_token1] = ACTIONS(1449), - [aux_sym_enum_declaration_token1] = ACTIONS(1449), - [aux_sym_enum_case_token1] = ACTIONS(1449), - [aux_sym_class_declaration_token1] = ACTIONS(1449), - [aux_sym_final_modifier_token1] = ACTIONS(1449), - [aux_sym_abstract_modifier_token1] = ACTIONS(1449), - [aux_sym_readonly_modifier_token1] = ACTIONS(1449), - [aux_sym_visibility_modifier_token1] = ACTIONS(1449), - [aux_sym_visibility_modifier_token2] = ACTIONS(1449), - [aux_sym_visibility_modifier_token3] = ACTIONS(1449), - [aux_sym__arrow_function_header_token1] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1447), - [aux_sym_cast_type_token1] = ACTIONS(1449), - [aux_sym_echo_statement_token1] = ACTIONS(1449), - [aux_sym_exit_statement_token1] = ACTIONS(1449), - [anon_sym_unset] = ACTIONS(1449), - [aux_sym_declare_statement_token1] = ACTIONS(1449), - [aux_sym_declare_statement_token2] = ACTIONS(1449), - [sym_float] = ACTIONS(1449), - [aux_sym_try_statement_token1] = ACTIONS(1449), - [aux_sym_goto_statement_token1] = ACTIONS(1449), - [aux_sym_continue_statement_token1] = ACTIONS(1449), - [aux_sym_break_statement_token1] = ACTIONS(1449), - [sym_integer] = ACTIONS(1449), - [aux_sym_return_statement_token1] = ACTIONS(1449), - [aux_sym_throw_expression_token1] = ACTIONS(1449), - [aux_sym_while_statement_token1] = ACTIONS(1449), - [aux_sym_while_statement_token2] = ACTIONS(1449), - [aux_sym_do_statement_token1] = ACTIONS(1449), - [aux_sym_for_statement_token1] = ACTIONS(1449), - [aux_sym_for_statement_token2] = ACTIONS(1449), - [aux_sym_foreach_statement_token1] = ACTIONS(1449), - [aux_sym_foreach_statement_token2] = ACTIONS(1449), - [aux_sym_if_statement_token1] = ACTIONS(1449), - [aux_sym_if_statement_token2] = ACTIONS(1449), - [aux_sym_else_if_clause_token1] = ACTIONS(1449), - [aux_sym_else_clause_token1] = ACTIONS(1449), - [aux_sym_match_expression_token1] = ACTIONS(1449), - [aux_sym_match_default_expression_token1] = ACTIONS(1449), - [aux_sym_switch_statement_token1] = ACTIONS(1449), - [aux_sym_switch_block_token1] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_AT] = ACTIONS(1447), - [aux_sym_clone_expression_token1] = ACTIONS(1449), - [aux_sym_print_intrinsic_token1] = ACTIONS(1449), - [aux_sym_object_creation_expression_token1] = ACTIONS(1449), - [anon_sym_DASH_DASH] = ACTIONS(1447), - [anon_sym_PLUS_PLUS] = ACTIONS(1447), - [aux_sym__list_destructing_token1] = ACTIONS(1449), - [anon_sym_LBRACK] = ACTIONS(1447), - [anon_sym_self] = ACTIONS(1449), - [anon_sym_parent] = ACTIONS(1449), - [aux_sym__argument_name_token1] = ACTIONS(1449), - [aux_sym__argument_name_token2] = ACTIONS(1449), - [anon_sym_POUND_LBRACK] = ACTIONS(1447), - [aux_sym_encapsed_string_token1] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [aux_sym_string_token1] = ACTIONS(1447), - [anon_sym_SQUOTE] = ACTIONS(1447), - [anon_sym_LT_LT_LT] = ACTIONS(1447), - [anon_sym_BQUOTE] = ACTIONS(1447), - [anon_sym_DOLLAR] = ACTIONS(1447), - [aux_sym_yield_expression_token1] = ACTIONS(1449), - [aux_sym_include_expression_token1] = ACTIONS(1449), - [aux_sym_include_once_expression_token1] = ACTIONS(1449), - [aux_sym_require_expression_token1] = ACTIONS(1449), - [aux_sym_require_once_expression_token1] = ACTIONS(1449), + [ts_builtin_sym_end] = ACTIONS(1420), + [sym_name] = ACTIONS(1422), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1420), + [aux_sym_function_static_declaration_token1] = ACTIONS(1422), + [aux_sym_global_declaration_token1] = ACTIONS(1422), + [aux_sym_namespace_definition_token1] = ACTIONS(1422), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1422), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1422), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1422), + [anon_sym_BSLASH] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [aux_sym_trait_declaration_token1] = ACTIONS(1422), + [aux_sym_interface_declaration_token1] = ACTIONS(1422), + [aux_sym_enum_declaration_token1] = ACTIONS(1422), + [aux_sym_enum_case_token1] = ACTIONS(1422), + [aux_sym_class_declaration_token1] = ACTIONS(1422), + [aux_sym_final_modifier_token1] = ACTIONS(1422), + [aux_sym_abstract_modifier_token1] = ACTIONS(1422), + [aux_sym_readonly_modifier_token1] = ACTIONS(1422), + [sym_var_modifier] = ACTIONS(1422), + [aux_sym_visibility_modifier_token1] = ACTIONS(1422), + [aux_sym_visibility_modifier_token2] = ACTIONS(1422), + [aux_sym_visibility_modifier_token3] = ACTIONS(1422), + [aux_sym__arrow_function_header_token1] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1420), + [aux_sym_cast_type_token1] = ACTIONS(1422), + [aux_sym_echo_statement_token1] = ACTIONS(1422), + [aux_sym_exit_statement_token1] = ACTIONS(1422), + [anon_sym_unset] = ACTIONS(1422), + [aux_sym_declare_statement_token1] = ACTIONS(1422), + [aux_sym_declare_statement_token2] = ACTIONS(1422), + [sym_float] = ACTIONS(1422), + [aux_sym_try_statement_token1] = ACTIONS(1422), + [aux_sym_goto_statement_token1] = ACTIONS(1422), + [aux_sym_continue_statement_token1] = ACTIONS(1422), + [aux_sym_break_statement_token1] = ACTIONS(1422), + [sym_integer] = ACTIONS(1422), + [aux_sym_return_statement_token1] = ACTIONS(1422), + [aux_sym_throw_expression_token1] = ACTIONS(1422), + [aux_sym_while_statement_token1] = ACTIONS(1422), + [aux_sym_while_statement_token2] = ACTIONS(1422), + [aux_sym_do_statement_token1] = ACTIONS(1422), + [aux_sym_for_statement_token1] = ACTIONS(1422), + [aux_sym_for_statement_token2] = ACTIONS(1422), + [aux_sym_foreach_statement_token1] = ACTIONS(1422), + [aux_sym_foreach_statement_token2] = ACTIONS(1422), + [aux_sym_if_statement_token1] = ACTIONS(1422), + [aux_sym_if_statement_token2] = ACTIONS(1422), + [aux_sym_else_if_clause_token1] = ACTIONS(1422), + [aux_sym_else_clause_token1] = ACTIONS(1422), + [aux_sym_match_expression_token1] = ACTIONS(1422), + [aux_sym_match_default_expression_token1] = ACTIONS(1422), + [aux_sym_switch_statement_token1] = ACTIONS(1422), + [aux_sym_switch_block_token1] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_AT] = ACTIONS(1420), + [aux_sym_clone_expression_token1] = ACTIONS(1422), + [aux_sym_print_intrinsic_token1] = ACTIONS(1422), + [aux_sym_object_creation_expression_token1] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [aux_sym__list_destructing_token1] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1420), + [anon_sym_self] = ACTIONS(1422), + [anon_sym_parent] = ACTIONS(1422), + [aux_sym__argument_name_token1] = ACTIONS(1422), + [aux_sym__argument_name_token2] = ACTIONS(1422), + [anon_sym_POUND_LBRACK] = ACTIONS(1420), + [aux_sym_encapsed_string_token1] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [aux_sym_string_token1] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_LT_LT_LT] = ACTIONS(1420), + [anon_sym_BQUOTE] = ACTIONS(1420), + [anon_sym_DOLLAR] = ACTIONS(1420), + [aux_sym_yield_expression_token1] = ACTIONS(1422), + [aux_sym_include_expression_token1] = ACTIONS(1422), + [aux_sym_include_once_expression_token1] = ACTIONS(1422), + [aux_sym_require_expression_token1] = ACTIONS(1422), + [aux_sym_require_once_expression_token1] = ACTIONS(1422), [sym_comment] = ACTIONS(5), }, [536] = { [sym_text_interpolation] = STATE(536), - [ts_builtin_sym_end] = ACTIONS(1451), - [sym_name] = ACTIONS(1453), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1451), - [aux_sym_function_static_declaration_token1] = ACTIONS(1453), - [aux_sym_global_declaration_token1] = ACTIONS(1453), - [aux_sym_namespace_definition_token1] = ACTIONS(1453), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1453), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1453), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1453), - [anon_sym_BSLASH] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1451), - [anon_sym_RBRACE] = ACTIONS(1451), - [aux_sym_trait_declaration_token1] = ACTIONS(1453), - [aux_sym_interface_declaration_token1] = ACTIONS(1453), - [aux_sym_enum_declaration_token1] = ACTIONS(1453), - [aux_sym_enum_case_token1] = ACTIONS(1453), - [aux_sym_class_declaration_token1] = ACTIONS(1453), - [aux_sym_final_modifier_token1] = ACTIONS(1453), - [aux_sym_abstract_modifier_token1] = ACTIONS(1453), - [aux_sym_readonly_modifier_token1] = ACTIONS(1453), - [aux_sym_visibility_modifier_token1] = ACTIONS(1453), - [aux_sym_visibility_modifier_token2] = ACTIONS(1453), - [aux_sym_visibility_modifier_token3] = ACTIONS(1453), - [aux_sym__arrow_function_header_token1] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1451), - [aux_sym_cast_type_token1] = ACTIONS(1453), - [aux_sym_echo_statement_token1] = ACTIONS(1453), - [aux_sym_exit_statement_token1] = ACTIONS(1453), - [anon_sym_unset] = ACTIONS(1453), - [aux_sym_declare_statement_token1] = ACTIONS(1453), - [aux_sym_declare_statement_token2] = ACTIONS(1453), - [sym_float] = ACTIONS(1453), - [aux_sym_try_statement_token1] = ACTIONS(1453), - [aux_sym_goto_statement_token1] = ACTIONS(1453), - [aux_sym_continue_statement_token1] = ACTIONS(1453), - [aux_sym_break_statement_token1] = ACTIONS(1453), - [sym_integer] = ACTIONS(1453), - [aux_sym_return_statement_token1] = ACTIONS(1453), - [aux_sym_throw_expression_token1] = ACTIONS(1453), - [aux_sym_while_statement_token1] = ACTIONS(1453), - [aux_sym_while_statement_token2] = ACTIONS(1453), - [aux_sym_do_statement_token1] = ACTIONS(1453), - [aux_sym_for_statement_token1] = ACTIONS(1453), - [aux_sym_for_statement_token2] = ACTIONS(1453), - [aux_sym_foreach_statement_token1] = ACTIONS(1453), - [aux_sym_foreach_statement_token2] = ACTIONS(1453), - [aux_sym_if_statement_token1] = ACTIONS(1453), - [aux_sym_if_statement_token2] = ACTIONS(1453), - [aux_sym_else_if_clause_token1] = ACTIONS(1453), - [aux_sym_else_clause_token1] = ACTIONS(1453), - [aux_sym_match_expression_token1] = ACTIONS(1453), - [aux_sym_match_default_expression_token1] = ACTIONS(1453), - [aux_sym_switch_statement_token1] = ACTIONS(1453), - [aux_sym_switch_block_token1] = ACTIONS(1453), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1451), - [aux_sym_clone_expression_token1] = ACTIONS(1453), - [aux_sym_print_intrinsic_token1] = ACTIONS(1453), - [aux_sym_object_creation_expression_token1] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [aux_sym__list_destructing_token1] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1451), - [anon_sym_self] = ACTIONS(1453), - [anon_sym_parent] = ACTIONS(1453), - [aux_sym__argument_name_token1] = ACTIONS(1453), - [aux_sym__argument_name_token2] = ACTIONS(1453), - [anon_sym_POUND_LBRACK] = ACTIONS(1451), - [aux_sym_encapsed_string_token1] = ACTIONS(1451), - [anon_sym_DQUOTE] = ACTIONS(1451), - [aux_sym_string_token1] = ACTIONS(1451), - [anon_sym_SQUOTE] = ACTIONS(1451), - [anon_sym_LT_LT_LT] = ACTIONS(1451), - [anon_sym_BQUOTE] = ACTIONS(1451), - [anon_sym_DOLLAR] = ACTIONS(1451), - [aux_sym_yield_expression_token1] = ACTIONS(1453), - [aux_sym_include_expression_token1] = ACTIONS(1453), - [aux_sym_include_once_expression_token1] = ACTIONS(1453), - [aux_sym_require_expression_token1] = ACTIONS(1453), - [aux_sym_require_once_expression_token1] = ACTIONS(1453), + [ts_builtin_sym_end] = ACTIONS(1424), + [sym_name] = ACTIONS(1426), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1424), + [aux_sym_function_static_declaration_token1] = ACTIONS(1426), + [aux_sym_global_declaration_token1] = ACTIONS(1426), + [aux_sym_namespace_definition_token1] = ACTIONS(1426), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1426), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1426), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1426), + [anon_sym_BSLASH] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [aux_sym_trait_declaration_token1] = ACTIONS(1426), + [aux_sym_interface_declaration_token1] = ACTIONS(1426), + [aux_sym_enum_declaration_token1] = ACTIONS(1426), + [aux_sym_enum_case_token1] = ACTIONS(1426), + [aux_sym_class_declaration_token1] = ACTIONS(1426), + [aux_sym_final_modifier_token1] = ACTIONS(1426), + [aux_sym_abstract_modifier_token1] = ACTIONS(1426), + [aux_sym_readonly_modifier_token1] = ACTIONS(1426), + [sym_var_modifier] = ACTIONS(1426), + [aux_sym_visibility_modifier_token1] = ACTIONS(1426), + [aux_sym_visibility_modifier_token2] = ACTIONS(1426), + [aux_sym_visibility_modifier_token3] = ACTIONS(1426), + [aux_sym__arrow_function_header_token1] = ACTIONS(1426), + [anon_sym_LPAREN] = ACTIONS(1424), + [aux_sym_cast_type_token1] = ACTIONS(1426), + [aux_sym_echo_statement_token1] = ACTIONS(1426), + [aux_sym_exit_statement_token1] = ACTIONS(1426), + [anon_sym_unset] = ACTIONS(1426), + [aux_sym_declare_statement_token1] = ACTIONS(1426), + [aux_sym_declare_statement_token2] = ACTIONS(1426), + [sym_float] = ACTIONS(1426), + [aux_sym_try_statement_token1] = ACTIONS(1426), + [aux_sym_goto_statement_token1] = ACTIONS(1426), + [aux_sym_continue_statement_token1] = ACTIONS(1426), + [aux_sym_break_statement_token1] = ACTIONS(1426), + [sym_integer] = ACTIONS(1426), + [aux_sym_return_statement_token1] = ACTIONS(1426), + [aux_sym_throw_expression_token1] = ACTIONS(1426), + [aux_sym_while_statement_token1] = ACTIONS(1426), + [aux_sym_while_statement_token2] = ACTIONS(1426), + [aux_sym_do_statement_token1] = ACTIONS(1426), + [aux_sym_for_statement_token1] = ACTIONS(1426), + [aux_sym_for_statement_token2] = ACTIONS(1426), + [aux_sym_foreach_statement_token1] = ACTIONS(1426), + [aux_sym_foreach_statement_token2] = ACTIONS(1426), + [aux_sym_if_statement_token1] = ACTIONS(1426), + [aux_sym_if_statement_token2] = ACTIONS(1426), + [aux_sym_else_if_clause_token1] = ACTIONS(1426), + [aux_sym_else_clause_token1] = ACTIONS(1426), + [aux_sym_match_expression_token1] = ACTIONS(1426), + [aux_sym_match_default_expression_token1] = ACTIONS(1426), + [aux_sym_switch_statement_token1] = ACTIONS(1426), + [aux_sym_switch_block_token1] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_AT] = ACTIONS(1424), + [aux_sym_clone_expression_token1] = ACTIONS(1426), + [aux_sym_print_intrinsic_token1] = ACTIONS(1426), + [aux_sym_object_creation_expression_token1] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [aux_sym__list_destructing_token1] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_self] = ACTIONS(1426), + [anon_sym_parent] = ACTIONS(1426), + [aux_sym__argument_name_token1] = ACTIONS(1426), + [aux_sym__argument_name_token2] = ACTIONS(1426), + [anon_sym_POUND_LBRACK] = ACTIONS(1424), + [aux_sym_encapsed_string_token1] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [aux_sym_string_token1] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_LT_LT_LT] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1424), + [anon_sym_DOLLAR] = ACTIONS(1424), + [aux_sym_yield_expression_token1] = ACTIONS(1426), + [aux_sym_include_expression_token1] = ACTIONS(1426), + [aux_sym_include_once_expression_token1] = ACTIONS(1426), + [aux_sym_require_expression_token1] = ACTIONS(1426), + [aux_sym_require_once_expression_token1] = ACTIONS(1426), [sym_comment] = ACTIONS(5), }, [537] = { [sym_text_interpolation] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(1455), - [sym_name] = ACTIONS(1457), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1455), - [aux_sym_function_static_declaration_token1] = ACTIONS(1457), - [aux_sym_global_declaration_token1] = ACTIONS(1457), - [aux_sym_namespace_definition_token1] = ACTIONS(1457), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1457), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1457), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1457), - [anon_sym_BSLASH] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_RBRACE] = ACTIONS(1455), - [aux_sym_trait_declaration_token1] = ACTIONS(1457), - [aux_sym_interface_declaration_token1] = ACTIONS(1457), - [aux_sym_enum_declaration_token1] = ACTIONS(1457), - [aux_sym_enum_case_token1] = ACTIONS(1457), - [aux_sym_class_declaration_token1] = ACTIONS(1457), - [aux_sym_final_modifier_token1] = ACTIONS(1457), - [aux_sym_abstract_modifier_token1] = ACTIONS(1457), - [aux_sym_readonly_modifier_token1] = ACTIONS(1457), - [aux_sym_visibility_modifier_token1] = ACTIONS(1457), - [aux_sym_visibility_modifier_token2] = ACTIONS(1457), - [aux_sym_visibility_modifier_token3] = ACTIONS(1457), - [aux_sym__arrow_function_header_token1] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1455), - [aux_sym_cast_type_token1] = ACTIONS(1457), - [aux_sym_echo_statement_token1] = ACTIONS(1457), - [aux_sym_exit_statement_token1] = ACTIONS(1457), - [anon_sym_unset] = ACTIONS(1457), - [aux_sym_declare_statement_token1] = ACTIONS(1457), - [aux_sym_declare_statement_token2] = ACTIONS(1457), - [sym_float] = ACTIONS(1457), - [aux_sym_try_statement_token1] = ACTIONS(1457), - [aux_sym_goto_statement_token1] = ACTIONS(1457), - [aux_sym_continue_statement_token1] = ACTIONS(1457), - [aux_sym_break_statement_token1] = ACTIONS(1457), - [sym_integer] = ACTIONS(1457), - [aux_sym_return_statement_token1] = ACTIONS(1457), - [aux_sym_throw_expression_token1] = ACTIONS(1457), - [aux_sym_while_statement_token1] = ACTIONS(1457), - [aux_sym_while_statement_token2] = ACTIONS(1457), - [aux_sym_do_statement_token1] = ACTIONS(1457), - [aux_sym_for_statement_token1] = ACTIONS(1457), - [aux_sym_for_statement_token2] = ACTIONS(1457), - [aux_sym_foreach_statement_token1] = ACTIONS(1457), - [aux_sym_foreach_statement_token2] = ACTIONS(1457), - [aux_sym_if_statement_token1] = ACTIONS(1457), - [aux_sym_if_statement_token2] = ACTIONS(1457), - [aux_sym_else_if_clause_token1] = ACTIONS(1457), - [aux_sym_else_clause_token1] = ACTIONS(1457), - [aux_sym_match_expression_token1] = ACTIONS(1457), - [aux_sym_match_default_expression_token1] = ACTIONS(1457), - [aux_sym_switch_statement_token1] = ACTIONS(1457), - [aux_sym_switch_block_token1] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1457), - [anon_sym_DASH] = ACTIONS(1457), - [anon_sym_TILDE] = ACTIONS(1455), - [anon_sym_BANG] = ACTIONS(1455), - [anon_sym_AT] = ACTIONS(1455), - [aux_sym_clone_expression_token1] = ACTIONS(1457), - [aux_sym_print_intrinsic_token1] = ACTIONS(1457), - [aux_sym_object_creation_expression_token1] = ACTIONS(1457), - [anon_sym_DASH_DASH] = ACTIONS(1455), - [anon_sym_PLUS_PLUS] = ACTIONS(1455), - [aux_sym__list_destructing_token1] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_self] = ACTIONS(1457), - [anon_sym_parent] = ACTIONS(1457), - [aux_sym__argument_name_token1] = ACTIONS(1457), - [aux_sym__argument_name_token2] = ACTIONS(1457), - [anon_sym_POUND_LBRACK] = ACTIONS(1455), - [aux_sym_encapsed_string_token1] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [aux_sym_string_token1] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1455), - [anon_sym_LT_LT_LT] = ACTIONS(1455), - [anon_sym_BQUOTE] = ACTIONS(1455), - [anon_sym_DOLLAR] = ACTIONS(1455), - [aux_sym_yield_expression_token1] = ACTIONS(1457), - [aux_sym_include_expression_token1] = ACTIONS(1457), - [aux_sym_include_once_expression_token1] = ACTIONS(1457), - [aux_sym_require_expression_token1] = ACTIONS(1457), - [aux_sym_require_once_expression_token1] = ACTIONS(1457), + [ts_builtin_sym_end] = ACTIONS(1428), + [sym_name] = ACTIONS(1430), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1428), + [aux_sym_function_static_declaration_token1] = ACTIONS(1430), + [aux_sym_global_declaration_token1] = ACTIONS(1430), + [aux_sym_namespace_definition_token1] = ACTIONS(1430), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1430), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1430), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1430), + [anon_sym_BSLASH] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [aux_sym_trait_declaration_token1] = ACTIONS(1430), + [aux_sym_interface_declaration_token1] = ACTIONS(1430), + [aux_sym_enum_declaration_token1] = ACTIONS(1430), + [aux_sym_enum_case_token1] = ACTIONS(1430), + [aux_sym_class_declaration_token1] = ACTIONS(1430), + [aux_sym_final_modifier_token1] = ACTIONS(1430), + [aux_sym_abstract_modifier_token1] = ACTIONS(1430), + [aux_sym_readonly_modifier_token1] = ACTIONS(1430), + [sym_var_modifier] = ACTIONS(1430), + [aux_sym_visibility_modifier_token1] = ACTIONS(1430), + [aux_sym_visibility_modifier_token2] = ACTIONS(1430), + [aux_sym_visibility_modifier_token3] = ACTIONS(1430), + [aux_sym__arrow_function_header_token1] = ACTIONS(1430), + [anon_sym_LPAREN] = ACTIONS(1428), + [aux_sym_cast_type_token1] = ACTIONS(1430), + [aux_sym_echo_statement_token1] = ACTIONS(1430), + [aux_sym_exit_statement_token1] = ACTIONS(1430), + [anon_sym_unset] = ACTIONS(1430), + [aux_sym_declare_statement_token1] = ACTIONS(1430), + [aux_sym_declare_statement_token2] = ACTIONS(1430), + [sym_float] = ACTIONS(1430), + [aux_sym_try_statement_token1] = ACTIONS(1430), + [aux_sym_goto_statement_token1] = ACTIONS(1430), + [aux_sym_continue_statement_token1] = ACTIONS(1430), + [aux_sym_break_statement_token1] = ACTIONS(1430), + [sym_integer] = ACTIONS(1430), + [aux_sym_return_statement_token1] = ACTIONS(1430), + [aux_sym_throw_expression_token1] = ACTIONS(1430), + [aux_sym_while_statement_token1] = ACTIONS(1430), + [aux_sym_while_statement_token2] = ACTIONS(1430), + [aux_sym_do_statement_token1] = ACTIONS(1430), + [aux_sym_for_statement_token1] = ACTIONS(1430), + [aux_sym_for_statement_token2] = ACTIONS(1430), + [aux_sym_foreach_statement_token1] = ACTIONS(1430), + [aux_sym_foreach_statement_token2] = ACTIONS(1430), + [aux_sym_if_statement_token1] = ACTIONS(1430), + [aux_sym_if_statement_token2] = ACTIONS(1430), + [aux_sym_else_if_clause_token1] = ACTIONS(1430), + [aux_sym_else_clause_token1] = ACTIONS(1430), + [aux_sym_match_expression_token1] = ACTIONS(1430), + [aux_sym_match_default_expression_token1] = ACTIONS(1430), + [aux_sym_switch_statement_token1] = ACTIONS(1430), + [aux_sym_switch_block_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(1428), + [aux_sym_clone_expression_token1] = ACTIONS(1430), + [aux_sym_print_intrinsic_token1] = ACTIONS(1430), + [aux_sym_object_creation_expression_token1] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [aux_sym__list_destructing_token1] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_self] = ACTIONS(1430), + [anon_sym_parent] = ACTIONS(1430), + [aux_sym__argument_name_token1] = ACTIONS(1430), + [aux_sym__argument_name_token2] = ACTIONS(1430), + [anon_sym_POUND_LBRACK] = ACTIONS(1428), + [aux_sym_encapsed_string_token1] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [aux_sym_string_token1] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_LT_LT_LT] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [aux_sym_yield_expression_token1] = ACTIONS(1430), + [aux_sym_include_expression_token1] = ACTIONS(1430), + [aux_sym_include_once_expression_token1] = ACTIONS(1430), + [aux_sym_require_expression_token1] = ACTIONS(1430), + [aux_sym_require_once_expression_token1] = ACTIONS(1430), [sym_comment] = ACTIONS(5), }, [538] = { [sym_text_interpolation] = STATE(538), - [ts_builtin_sym_end] = ACTIONS(1459), - [sym_name] = ACTIONS(1461), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1459), - [aux_sym_function_static_declaration_token1] = ACTIONS(1461), - [aux_sym_global_declaration_token1] = ACTIONS(1461), - [aux_sym_namespace_definition_token1] = ACTIONS(1461), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1461), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1461), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1461), - [anon_sym_BSLASH] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_RBRACE] = ACTIONS(1459), - [aux_sym_trait_declaration_token1] = ACTIONS(1461), - [aux_sym_interface_declaration_token1] = ACTIONS(1461), - [aux_sym_enum_declaration_token1] = ACTIONS(1461), - [aux_sym_enum_case_token1] = ACTIONS(1461), - [aux_sym_class_declaration_token1] = ACTIONS(1461), - [aux_sym_final_modifier_token1] = ACTIONS(1461), - [aux_sym_abstract_modifier_token1] = ACTIONS(1461), - [aux_sym_readonly_modifier_token1] = ACTIONS(1461), - [aux_sym_visibility_modifier_token1] = ACTIONS(1461), - [aux_sym_visibility_modifier_token2] = ACTIONS(1461), - [aux_sym_visibility_modifier_token3] = ACTIONS(1461), - [aux_sym__arrow_function_header_token1] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_cast_type_token1] = ACTIONS(1461), - [aux_sym_echo_statement_token1] = ACTIONS(1461), - [aux_sym_exit_statement_token1] = ACTIONS(1461), - [anon_sym_unset] = ACTIONS(1461), - [aux_sym_declare_statement_token1] = ACTIONS(1461), - [aux_sym_declare_statement_token2] = ACTIONS(1461), - [sym_float] = ACTIONS(1461), - [aux_sym_try_statement_token1] = ACTIONS(1461), - [aux_sym_goto_statement_token1] = ACTIONS(1461), - [aux_sym_continue_statement_token1] = ACTIONS(1461), - [aux_sym_break_statement_token1] = ACTIONS(1461), - [sym_integer] = ACTIONS(1461), - [aux_sym_return_statement_token1] = ACTIONS(1461), - [aux_sym_throw_expression_token1] = ACTIONS(1461), - [aux_sym_while_statement_token1] = ACTIONS(1461), - [aux_sym_while_statement_token2] = ACTIONS(1461), - [aux_sym_do_statement_token1] = ACTIONS(1461), - [aux_sym_for_statement_token1] = ACTIONS(1461), - [aux_sym_for_statement_token2] = ACTIONS(1461), - [aux_sym_foreach_statement_token1] = ACTIONS(1461), - [aux_sym_foreach_statement_token2] = ACTIONS(1461), - [aux_sym_if_statement_token1] = ACTIONS(1461), - [aux_sym_if_statement_token2] = ACTIONS(1461), - [aux_sym_else_if_clause_token1] = ACTIONS(1461), - [aux_sym_else_clause_token1] = ACTIONS(1461), - [aux_sym_match_expression_token1] = ACTIONS(1461), - [aux_sym_match_default_expression_token1] = ACTIONS(1461), - [aux_sym_switch_statement_token1] = ACTIONS(1461), - [aux_sym_switch_block_token1] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1461), - [anon_sym_DASH] = ACTIONS(1461), - [anon_sym_TILDE] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1459), - [anon_sym_AT] = ACTIONS(1459), - [aux_sym_clone_expression_token1] = ACTIONS(1461), - [aux_sym_print_intrinsic_token1] = ACTIONS(1461), - [aux_sym_object_creation_expression_token1] = ACTIONS(1461), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [aux_sym__list_destructing_token1] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(1459), - [anon_sym_self] = ACTIONS(1461), - [anon_sym_parent] = ACTIONS(1461), - [aux_sym__argument_name_token1] = ACTIONS(1461), - [aux_sym__argument_name_token2] = ACTIONS(1461), - [anon_sym_POUND_LBRACK] = ACTIONS(1459), - [aux_sym_encapsed_string_token1] = ACTIONS(1459), - [anon_sym_DQUOTE] = ACTIONS(1459), - [aux_sym_string_token1] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1459), - [anon_sym_LT_LT_LT] = ACTIONS(1459), - [anon_sym_BQUOTE] = ACTIONS(1459), - [anon_sym_DOLLAR] = ACTIONS(1459), - [aux_sym_yield_expression_token1] = ACTIONS(1461), - [aux_sym_include_expression_token1] = ACTIONS(1461), - [aux_sym_include_once_expression_token1] = ACTIONS(1461), - [aux_sym_require_expression_token1] = ACTIONS(1461), - [aux_sym_require_once_expression_token1] = ACTIONS(1461), + [ts_builtin_sym_end] = ACTIONS(1432), + [sym_name] = ACTIONS(1434), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1432), + [aux_sym_function_static_declaration_token1] = ACTIONS(1434), + [aux_sym_global_declaration_token1] = ACTIONS(1434), + [aux_sym_namespace_definition_token1] = ACTIONS(1434), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1434), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1434), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1434), + [anon_sym_BSLASH] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1432), + [aux_sym_trait_declaration_token1] = ACTIONS(1434), + [aux_sym_interface_declaration_token1] = ACTIONS(1434), + [aux_sym_enum_declaration_token1] = ACTIONS(1434), + [aux_sym_enum_case_token1] = ACTIONS(1434), + [aux_sym_class_declaration_token1] = ACTIONS(1434), + [aux_sym_final_modifier_token1] = ACTIONS(1434), + [aux_sym_abstract_modifier_token1] = ACTIONS(1434), + [aux_sym_readonly_modifier_token1] = ACTIONS(1434), + [sym_var_modifier] = ACTIONS(1434), + [aux_sym_visibility_modifier_token1] = ACTIONS(1434), + [aux_sym_visibility_modifier_token2] = ACTIONS(1434), + [aux_sym_visibility_modifier_token3] = ACTIONS(1434), + [aux_sym__arrow_function_header_token1] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1432), + [aux_sym_cast_type_token1] = ACTIONS(1434), + [aux_sym_echo_statement_token1] = ACTIONS(1434), + [aux_sym_exit_statement_token1] = ACTIONS(1434), + [anon_sym_unset] = ACTIONS(1434), + [aux_sym_declare_statement_token1] = ACTIONS(1434), + [aux_sym_declare_statement_token2] = ACTIONS(1434), + [sym_float] = ACTIONS(1434), + [aux_sym_try_statement_token1] = ACTIONS(1434), + [aux_sym_goto_statement_token1] = ACTIONS(1434), + [aux_sym_continue_statement_token1] = ACTIONS(1434), + [aux_sym_break_statement_token1] = ACTIONS(1434), + [sym_integer] = ACTIONS(1434), + [aux_sym_return_statement_token1] = ACTIONS(1434), + [aux_sym_throw_expression_token1] = ACTIONS(1434), + [aux_sym_while_statement_token1] = ACTIONS(1434), + [aux_sym_while_statement_token2] = ACTIONS(1434), + [aux_sym_do_statement_token1] = ACTIONS(1434), + [aux_sym_for_statement_token1] = ACTIONS(1434), + [aux_sym_for_statement_token2] = ACTIONS(1434), + [aux_sym_foreach_statement_token1] = ACTIONS(1434), + [aux_sym_foreach_statement_token2] = ACTIONS(1434), + [aux_sym_if_statement_token1] = ACTIONS(1434), + [aux_sym_if_statement_token2] = ACTIONS(1434), + [aux_sym_else_if_clause_token1] = ACTIONS(1434), + [aux_sym_else_clause_token1] = ACTIONS(1434), + [aux_sym_match_expression_token1] = ACTIONS(1434), + [aux_sym_match_default_expression_token1] = ACTIONS(1434), + [aux_sym_switch_statement_token1] = ACTIONS(1434), + [aux_sym_switch_block_token1] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_AT] = ACTIONS(1432), + [aux_sym_clone_expression_token1] = ACTIONS(1434), + [aux_sym_print_intrinsic_token1] = ACTIONS(1434), + [aux_sym_object_creation_expression_token1] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [aux_sym__list_destructing_token1] = ACTIONS(1434), + [anon_sym_LBRACK] = ACTIONS(1432), + [anon_sym_self] = ACTIONS(1434), + [anon_sym_parent] = ACTIONS(1434), + [aux_sym__argument_name_token1] = ACTIONS(1434), + [aux_sym__argument_name_token2] = ACTIONS(1434), + [anon_sym_POUND_LBRACK] = ACTIONS(1432), + [aux_sym_encapsed_string_token1] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [aux_sym_string_token1] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_LT_LT_LT] = ACTIONS(1432), + [anon_sym_BQUOTE] = ACTIONS(1432), + [anon_sym_DOLLAR] = ACTIONS(1432), + [aux_sym_yield_expression_token1] = ACTIONS(1434), + [aux_sym_include_expression_token1] = ACTIONS(1434), + [aux_sym_include_once_expression_token1] = ACTIONS(1434), + [aux_sym_require_expression_token1] = ACTIONS(1434), + [aux_sym_require_once_expression_token1] = ACTIONS(1434), [sym_comment] = ACTIONS(5), }, [539] = { [sym_text_interpolation] = STATE(539), - [ts_builtin_sym_end] = ACTIONS(1463), - [sym_name] = ACTIONS(1465), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1463), - [aux_sym_function_static_declaration_token1] = ACTIONS(1465), - [aux_sym_global_declaration_token1] = ACTIONS(1465), - [aux_sym_namespace_definition_token1] = ACTIONS(1465), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1465), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1465), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1465), - [anon_sym_BSLASH] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1463), - [aux_sym_trait_declaration_token1] = ACTIONS(1465), - [aux_sym_interface_declaration_token1] = ACTIONS(1465), - [aux_sym_enum_declaration_token1] = ACTIONS(1465), - [aux_sym_enum_case_token1] = ACTIONS(1465), - [aux_sym_class_declaration_token1] = ACTIONS(1465), - [aux_sym_final_modifier_token1] = ACTIONS(1465), - [aux_sym_abstract_modifier_token1] = ACTIONS(1465), - [aux_sym_readonly_modifier_token1] = ACTIONS(1465), - [aux_sym_visibility_modifier_token1] = ACTIONS(1465), - [aux_sym_visibility_modifier_token2] = ACTIONS(1465), - [aux_sym_visibility_modifier_token3] = ACTIONS(1465), - [aux_sym__arrow_function_header_token1] = ACTIONS(1465), - [anon_sym_LPAREN] = ACTIONS(1463), - [aux_sym_cast_type_token1] = ACTIONS(1465), - [aux_sym_echo_statement_token1] = ACTIONS(1465), - [aux_sym_exit_statement_token1] = ACTIONS(1465), - [anon_sym_unset] = ACTIONS(1465), - [aux_sym_declare_statement_token1] = ACTIONS(1465), - [aux_sym_declare_statement_token2] = ACTIONS(1465), - [sym_float] = ACTIONS(1465), - [aux_sym_try_statement_token1] = ACTIONS(1465), - [aux_sym_goto_statement_token1] = ACTIONS(1465), - [aux_sym_continue_statement_token1] = ACTIONS(1465), - [aux_sym_break_statement_token1] = ACTIONS(1465), - [sym_integer] = ACTIONS(1465), - [aux_sym_return_statement_token1] = ACTIONS(1465), - [aux_sym_throw_expression_token1] = ACTIONS(1465), - [aux_sym_while_statement_token1] = ACTIONS(1465), - [aux_sym_while_statement_token2] = ACTIONS(1465), - [aux_sym_do_statement_token1] = ACTIONS(1465), - [aux_sym_for_statement_token1] = ACTIONS(1465), - [aux_sym_for_statement_token2] = ACTIONS(1465), - [aux_sym_foreach_statement_token1] = ACTIONS(1465), - [aux_sym_foreach_statement_token2] = ACTIONS(1465), - [aux_sym_if_statement_token1] = ACTIONS(1465), - [aux_sym_if_statement_token2] = ACTIONS(1465), - [aux_sym_else_if_clause_token1] = ACTIONS(1465), - [aux_sym_else_clause_token1] = ACTIONS(1465), - [aux_sym_match_expression_token1] = ACTIONS(1465), - [aux_sym_match_default_expression_token1] = ACTIONS(1465), - [aux_sym_switch_statement_token1] = ACTIONS(1465), - [aux_sym_switch_block_token1] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1463), - [anon_sym_AT] = ACTIONS(1463), - [aux_sym_clone_expression_token1] = ACTIONS(1465), - [aux_sym_print_intrinsic_token1] = ACTIONS(1465), - [aux_sym_object_creation_expression_token1] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1463), - [anon_sym_PLUS_PLUS] = ACTIONS(1463), - [aux_sym__list_destructing_token1] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(1463), - [anon_sym_self] = ACTIONS(1465), - [anon_sym_parent] = ACTIONS(1465), - [aux_sym__argument_name_token1] = ACTIONS(1465), - [aux_sym__argument_name_token2] = ACTIONS(1465), - [anon_sym_POUND_LBRACK] = ACTIONS(1463), - [aux_sym_encapsed_string_token1] = ACTIONS(1463), - [anon_sym_DQUOTE] = ACTIONS(1463), - [aux_sym_string_token1] = ACTIONS(1463), - [anon_sym_SQUOTE] = ACTIONS(1463), - [anon_sym_LT_LT_LT] = ACTIONS(1463), - [anon_sym_BQUOTE] = ACTIONS(1463), - [anon_sym_DOLLAR] = ACTIONS(1463), - [aux_sym_yield_expression_token1] = ACTIONS(1465), - [aux_sym_include_expression_token1] = ACTIONS(1465), - [aux_sym_include_once_expression_token1] = ACTIONS(1465), - [aux_sym_require_expression_token1] = ACTIONS(1465), - [aux_sym_require_once_expression_token1] = ACTIONS(1465), + [ts_builtin_sym_end] = ACTIONS(1436), + [sym_name] = ACTIONS(1438), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1436), + [aux_sym_function_static_declaration_token1] = ACTIONS(1438), + [aux_sym_global_declaration_token1] = ACTIONS(1438), + [aux_sym_namespace_definition_token1] = ACTIONS(1438), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1438), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1438), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1438), + [anon_sym_BSLASH] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [aux_sym_trait_declaration_token1] = ACTIONS(1438), + [aux_sym_interface_declaration_token1] = ACTIONS(1438), + [aux_sym_enum_declaration_token1] = ACTIONS(1438), + [aux_sym_enum_case_token1] = ACTIONS(1438), + [aux_sym_class_declaration_token1] = ACTIONS(1438), + [aux_sym_final_modifier_token1] = ACTIONS(1438), + [aux_sym_abstract_modifier_token1] = ACTIONS(1438), + [aux_sym_readonly_modifier_token1] = ACTIONS(1438), + [sym_var_modifier] = ACTIONS(1438), + [aux_sym_visibility_modifier_token1] = ACTIONS(1438), + [aux_sym_visibility_modifier_token2] = ACTIONS(1438), + [aux_sym_visibility_modifier_token3] = ACTIONS(1438), + [aux_sym__arrow_function_header_token1] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1436), + [aux_sym_cast_type_token1] = ACTIONS(1438), + [aux_sym_echo_statement_token1] = ACTIONS(1438), + [aux_sym_exit_statement_token1] = ACTIONS(1438), + [anon_sym_unset] = ACTIONS(1438), + [aux_sym_declare_statement_token1] = ACTIONS(1438), + [aux_sym_declare_statement_token2] = ACTIONS(1438), + [sym_float] = ACTIONS(1438), + [aux_sym_try_statement_token1] = ACTIONS(1438), + [aux_sym_goto_statement_token1] = ACTIONS(1438), + [aux_sym_continue_statement_token1] = ACTIONS(1438), + [aux_sym_break_statement_token1] = ACTIONS(1438), + [sym_integer] = ACTIONS(1438), + [aux_sym_return_statement_token1] = ACTIONS(1438), + [aux_sym_throw_expression_token1] = ACTIONS(1438), + [aux_sym_while_statement_token1] = ACTIONS(1438), + [aux_sym_while_statement_token2] = ACTIONS(1438), + [aux_sym_do_statement_token1] = ACTIONS(1438), + [aux_sym_for_statement_token1] = ACTIONS(1438), + [aux_sym_for_statement_token2] = ACTIONS(1438), + [aux_sym_foreach_statement_token1] = ACTIONS(1438), + [aux_sym_foreach_statement_token2] = ACTIONS(1438), + [aux_sym_if_statement_token1] = ACTIONS(1438), + [aux_sym_if_statement_token2] = ACTIONS(1438), + [aux_sym_else_if_clause_token1] = ACTIONS(1438), + [aux_sym_else_clause_token1] = ACTIONS(1438), + [aux_sym_match_expression_token1] = ACTIONS(1438), + [aux_sym_match_default_expression_token1] = ACTIONS(1438), + [aux_sym_switch_statement_token1] = ACTIONS(1438), + [aux_sym_switch_block_token1] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_AT] = ACTIONS(1436), + [aux_sym_clone_expression_token1] = ACTIONS(1438), + [aux_sym_print_intrinsic_token1] = ACTIONS(1438), + [aux_sym_object_creation_expression_token1] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [aux_sym__list_destructing_token1] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1436), + [anon_sym_self] = ACTIONS(1438), + [anon_sym_parent] = ACTIONS(1438), + [aux_sym__argument_name_token1] = ACTIONS(1438), + [aux_sym__argument_name_token2] = ACTIONS(1438), + [anon_sym_POUND_LBRACK] = ACTIONS(1436), + [aux_sym_encapsed_string_token1] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [aux_sym_string_token1] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_LT_LT_LT] = ACTIONS(1436), + [anon_sym_BQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR] = ACTIONS(1436), + [aux_sym_yield_expression_token1] = ACTIONS(1438), + [aux_sym_include_expression_token1] = ACTIONS(1438), + [aux_sym_include_once_expression_token1] = ACTIONS(1438), + [aux_sym_require_expression_token1] = ACTIONS(1438), + [aux_sym_require_once_expression_token1] = ACTIONS(1438), [sym_comment] = ACTIONS(5), }, [540] = { [sym_text_interpolation] = STATE(540), - [ts_builtin_sym_end] = ACTIONS(1467), - [sym_name] = ACTIONS(1469), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1467), - [aux_sym_function_static_declaration_token1] = ACTIONS(1469), - [aux_sym_global_declaration_token1] = ACTIONS(1469), - [aux_sym_namespace_definition_token1] = ACTIONS(1469), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1469), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1469), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1469), - [anon_sym_BSLASH] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), - [aux_sym_trait_declaration_token1] = ACTIONS(1469), - [aux_sym_interface_declaration_token1] = ACTIONS(1469), - [aux_sym_enum_declaration_token1] = ACTIONS(1469), - [aux_sym_enum_case_token1] = ACTIONS(1469), - [aux_sym_class_declaration_token1] = ACTIONS(1469), - [aux_sym_final_modifier_token1] = ACTIONS(1469), - [aux_sym_abstract_modifier_token1] = ACTIONS(1469), - [aux_sym_readonly_modifier_token1] = ACTIONS(1469), - [aux_sym_visibility_modifier_token1] = ACTIONS(1469), - [aux_sym_visibility_modifier_token2] = ACTIONS(1469), - [aux_sym_visibility_modifier_token3] = ACTIONS(1469), - [aux_sym__arrow_function_header_token1] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1467), - [aux_sym_cast_type_token1] = ACTIONS(1469), - [aux_sym_echo_statement_token1] = ACTIONS(1469), - [aux_sym_exit_statement_token1] = ACTIONS(1469), - [anon_sym_unset] = ACTIONS(1469), - [aux_sym_declare_statement_token1] = ACTIONS(1469), - [aux_sym_declare_statement_token2] = ACTIONS(1469), - [sym_float] = ACTIONS(1469), - [aux_sym_try_statement_token1] = ACTIONS(1469), - [aux_sym_goto_statement_token1] = ACTIONS(1469), - [aux_sym_continue_statement_token1] = ACTIONS(1469), - [aux_sym_break_statement_token1] = ACTIONS(1469), - [sym_integer] = ACTIONS(1469), - [aux_sym_return_statement_token1] = ACTIONS(1469), - [aux_sym_throw_expression_token1] = ACTIONS(1469), - [aux_sym_while_statement_token1] = ACTIONS(1469), - [aux_sym_while_statement_token2] = ACTIONS(1469), - [aux_sym_do_statement_token1] = ACTIONS(1469), - [aux_sym_for_statement_token1] = ACTIONS(1469), - [aux_sym_for_statement_token2] = ACTIONS(1469), - [aux_sym_foreach_statement_token1] = ACTIONS(1469), - [aux_sym_foreach_statement_token2] = ACTIONS(1469), - [aux_sym_if_statement_token1] = ACTIONS(1469), - [aux_sym_if_statement_token2] = ACTIONS(1469), - [aux_sym_else_if_clause_token1] = ACTIONS(1469), - [aux_sym_else_clause_token1] = ACTIONS(1469), - [aux_sym_match_expression_token1] = ACTIONS(1469), - [aux_sym_match_default_expression_token1] = ACTIONS(1469), - [aux_sym_switch_statement_token1] = ACTIONS(1469), - [aux_sym_switch_block_token1] = ACTIONS(1469), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_AT] = ACTIONS(1467), - [aux_sym_clone_expression_token1] = ACTIONS(1469), - [aux_sym_print_intrinsic_token1] = ACTIONS(1469), - [aux_sym_object_creation_expression_token1] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [aux_sym__list_destructing_token1] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_self] = ACTIONS(1469), - [anon_sym_parent] = ACTIONS(1469), - [aux_sym__argument_name_token1] = ACTIONS(1469), - [aux_sym__argument_name_token2] = ACTIONS(1469), - [anon_sym_POUND_LBRACK] = ACTIONS(1467), - [aux_sym_encapsed_string_token1] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [aux_sym_string_token1] = ACTIONS(1467), - [anon_sym_SQUOTE] = ACTIONS(1467), - [anon_sym_LT_LT_LT] = ACTIONS(1467), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_DOLLAR] = ACTIONS(1467), - [aux_sym_yield_expression_token1] = ACTIONS(1469), - [aux_sym_include_expression_token1] = ACTIONS(1469), - [aux_sym_include_once_expression_token1] = ACTIONS(1469), - [aux_sym_require_expression_token1] = ACTIONS(1469), - [aux_sym_require_once_expression_token1] = ACTIONS(1469), + [ts_builtin_sym_end] = ACTIONS(1440), + [sym_name] = ACTIONS(1442), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1440), + [aux_sym_function_static_declaration_token1] = ACTIONS(1442), + [aux_sym_global_declaration_token1] = ACTIONS(1442), + [aux_sym_namespace_definition_token1] = ACTIONS(1442), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1442), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1442), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1442), + [anon_sym_BSLASH] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1440), + [aux_sym_trait_declaration_token1] = ACTIONS(1442), + [aux_sym_interface_declaration_token1] = ACTIONS(1442), + [aux_sym_enum_declaration_token1] = ACTIONS(1442), + [aux_sym_enum_case_token1] = ACTIONS(1442), + [aux_sym_class_declaration_token1] = ACTIONS(1442), + [aux_sym_final_modifier_token1] = ACTIONS(1442), + [aux_sym_abstract_modifier_token1] = ACTIONS(1442), + [aux_sym_readonly_modifier_token1] = ACTIONS(1442), + [sym_var_modifier] = ACTIONS(1442), + [aux_sym_visibility_modifier_token1] = ACTIONS(1442), + [aux_sym_visibility_modifier_token2] = ACTIONS(1442), + [aux_sym_visibility_modifier_token3] = ACTIONS(1442), + [aux_sym__arrow_function_header_token1] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1440), + [aux_sym_cast_type_token1] = ACTIONS(1442), + [aux_sym_echo_statement_token1] = ACTIONS(1442), + [aux_sym_exit_statement_token1] = ACTIONS(1442), + [anon_sym_unset] = ACTIONS(1442), + [aux_sym_declare_statement_token1] = ACTIONS(1442), + [aux_sym_declare_statement_token2] = ACTIONS(1442), + [sym_float] = ACTIONS(1442), + [aux_sym_try_statement_token1] = ACTIONS(1442), + [aux_sym_goto_statement_token1] = ACTIONS(1442), + [aux_sym_continue_statement_token1] = ACTIONS(1442), + [aux_sym_break_statement_token1] = ACTIONS(1442), + [sym_integer] = ACTIONS(1442), + [aux_sym_return_statement_token1] = ACTIONS(1442), + [aux_sym_throw_expression_token1] = ACTIONS(1442), + [aux_sym_while_statement_token1] = ACTIONS(1442), + [aux_sym_while_statement_token2] = ACTIONS(1442), + [aux_sym_do_statement_token1] = ACTIONS(1442), + [aux_sym_for_statement_token1] = ACTIONS(1442), + [aux_sym_for_statement_token2] = ACTIONS(1442), + [aux_sym_foreach_statement_token1] = ACTIONS(1442), + [aux_sym_foreach_statement_token2] = ACTIONS(1442), + [aux_sym_if_statement_token1] = ACTIONS(1442), + [aux_sym_if_statement_token2] = ACTIONS(1442), + [aux_sym_else_if_clause_token1] = ACTIONS(1442), + [aux_sym_else_clause_token1] = ACTIONS(1442), + [aux_sym_match_expression_token1] = ACTIONS(1442), + [aux_sym_match_default_expression_token1] = ACTIONS(1442), + [aux_sym_switch_statement_token1] = ACTIONS(1442), + [aux_sym_switch_block_token1] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_AT] = ACTIONS(1440), + [aux_sym_clone_expression_token1] = ACTIONS(1442), + [aux_sym_print_intrinsic_token1] = ACTIONS(1442), + [aux_sym_object_creation_expression_token1] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [aux_sym__list_destructing_token1] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_self] = ACTIONS(1442), + [anon_sym_parent] = ACTIONS(1442), + [aux_sym__argument_name_token1] = ACTIONS(1442), + [aux_sym__argument_name_token2] = ACTIONS(1442), + [anon_sym_POUND_LBRACK] = ACTIONS(1440), + [aux_sym_encapsed_string_token1] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [aux_sym_string_token1] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_LT_LT_LT] = ACTIONS(1440), + [anon_sym_BQUOTE] = ACTIONS(1440), + [anon_sym_DOLLAR] = ACTIONS(1440), + [aux_sym_yield_expression_token1] = ACTIONS(1442), + [aux_sym_include_expression_token1] = ACTIONS(1442), + [aux_sym_include_once_expression_token1] = ACTIONS(1442), + [aux_sym_require_expression_token1] = ACTIONS(1442), + [aux_sym_require_once_expression_token1] = ACTIONS(1442), [sym_comment] = ACTIONS(5), }, [541] = { [sym_text_interpolation] = STATE(541), - [ts_builtin_sym_end] = ACTIONS(1471), - [sym_name] = ACTIONS(1473), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1471), - [aux_sym_function_static_declaration_token1] = ACTIONS(1473), - [aux_sym_global_declaration_token1] = ACTIONS(1473), - [aux_sym_namespace_definition_token1] = ACTIONS(1473), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1473), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1473), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1473), - [anon_sym_BSLASH] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_RBRACE] = ACTIONS(1471), - [aux_sym_trait_declaration_token1] = ACTIONS(1473), - [aux_sym_interface_declaration_token1] = ACTIONS(1473), - [aux_sym_enum_declaration_token1] = ACTIONS(1473), - [aux_sym_enum_case_token1] = ACTIONS(1473), - [aux_sym_class_declaration_token1] = ACTIONS(1473), - [aux_sym_final_modifier_token1] = ACTIONS(1473), - [aux_sym_abstract_modifier_token1] = ACTIONS(1473), - [aux_sym_readonly_modifier_token1] = ACTIONS(1473), - [aux_sym_visibility_modifier_token1] = ACTIONS(1473), - [aux_sym_visibility_modifier_token2] = ACTIONS(1473), - [aux_sym_visibility_modifier_token3] = ACTIONS(1473), - [aux_sym__arrow_function_header_token1] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1471), - [aux_sym_cast_type_token1] = ACTIONS(1473), - [aux_sym_echo_statement_token1] = ACTIONS(1473), - [aux_sym_exit_statement_token1] = ACTIONS(1473), - [anon_sym_unset] = ACTIONS(1473), - [aux_sym_declare_statement_token1] = ACTIONS(1473), - [aux_sym_declare_statement_token2] = ACTIONS(1473), - [sym_float] = ACTIONS(1473), - [aux_sym_try_statement_token1] = ACTIONS(1473), - [aux_sym_goto_statement_token1] = ACTIONS(1473), - [aux_sym_continue_statement_token1] = ACTIONS(1473), - [aux_sym_break_statement_token1] = ACTIONS(1473), - [sym_integer] = ACTIONS(1473), - [aux_sym_return_statement_token1] = ACTIONS(1473), - [aux_sym_throw_expression_token1] = ACTIONS(1473), - [aux_sym_while_statement_token1] = ACTIONS(1473), - [aux_sym_while_statement_token2] = ACTIONS(1473), - [aux_sym_do_statement_token1] = ACTIONS(1473), - [aux_sym_for_statement_token1] = ACTIONS(1473), - [aux_sym_for_statement_token2] = ACTIONS(1473), - [aux_sym_foreach_statement_token1] = ACTIONS(1473), - [aux_sym_foreach_statement_token2] = ACTIONS(1473), - [aux_sym_if_statement_token1] = ACTIONS(1473), - [aux_sym_if_statement_token2] = ACTIONS(1473), - [aux_sym_else_if_clause_token1] = ACTIONS(1473), - [aux_sym_else_clause_token1] = ACTIONS(1473), - [aux_sym_match_expression_token1] = ACTIONS(1473), - [aux_sym_match_default_expression_token1] = ACTIONS(1473), - [aux_sym_switch_statement_token1] = ACTIONS(1473), - [aux_sym_switch_block_token1] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_AT] = ACTIONS(1471), - [aux_sym_clone_expression_token1] = ACTIONS(1473), - [aux_sym_print_intrinsic_token1] = ACTIONS(1473), - [aux_sym_object_creation_expression_token1] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [aux_sym__list_destructing_token1] = ACTIONS(1473), - [anon_sym_LBRACK] = ACTIONS(1471), - [anon_sym_self] = ACTIONS(1473), - [anon_sym_parent] = ACTIONS(1473), - [aux_sym__argument_name_token1] = ACTIONS(1473), - [aux_sym__argument_name_token2] = ACTIONS(1473), - [anon_sym_POUND_LBRACK] = ACTIONS(1471), - [aux_sym_encapsed_string_token1] = ACTIONS(1471), - [anon_sym_DQUOTE] = ACTIONS(1471), - [aux_sym_string_token1] = ACTIONS(1471), - [anon_sym_SQUOTE] = ACTIONS(1471), - [anon_sym_LT_LT_LT] = ACTIONS(1471), - [anon_sym_BQUOTE] = ACTIONS(1471), - [anon_sym_DOLLAR] = ACTIONS(1471), - [aux_sym_yield_expression_token1] = ACTIONS(1473), - [aux_sym_include_expression_token1] = ACTIONS(1473), - [aux_sym_include_once_expression_token1] = ACTIONS(1473), - [aux_sym_require_expression_token1] = ACTIONS(1473), - [aux_sym_require_once_expression_token1] = ACTIONS(1473), + [ts_builtin_sym_end] = ACTIONS(1444), + [sym_name] = ACTIONS(1446), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1444), + [aux_sym_function_static_declaration_token1] = ACTIONS(1446), + [aux_sym_global_declaration_token1] = ACTIONS(1446), + [aux_sym_namespace_definition_token1] = ACTIONS(1446), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1446), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1446), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1446), + [anon_sym_BSLASH] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [aux_sym_trait_declaration_token1] = ACTIONS(1446), + [aux_sym_interface_declaration_token1] = ACTIONS(1446), + [aux_sym_enum_declaration_token1] = ACTIONS(1446), + [aux_sym_enum_case_token1] = ACTIONS(1446), + [aux_sym_class_declaration_token1] = ACTIONS(1446), + [aux_sym_final_modifier_token1] = ACTIONS(1446), + [aux_sym_abstract_modifier_token1] = ACTIONS(1446), + [aux_sym_readonly_modifier_token1] = ACTIONS(1446), + [sym_var_modifier] = ACTIONS(1446), + [aux_sym_visibility_modifier_token1] = ACTIONS(1446), + [aux_sym_visibility_modifier_token2] = ACTIONS(1446), + [aux_sym_visibility_modifier_token3] = ACTIONS(1446), + [aux_sym__arrow_function_header_token1] = ACTIONS(1446), + [anon_sym_LPAREN] = ACTIONS(1444), + [aux_sym_cast_type_token1] = ACTIONS(1446), + [aux_sym_echo_statement_token1] = ACTIONS(1446), + [aux_sym_exit_statement_token1] = ACTIONS(1446), + [anon_sym_unset] = ACTIONS(1446), + [aux_sym_declare_statement_token1] = ACTIONS(1446), + [aux_sym_declare_statement_token2] = ACTIONS(1446), + [sym_float] = ACTIONS(1446), + [aux_sym_try_statement_token1] = ACTIONS(1446), + [aux_sym_goto_statement_token1] = ACTIONS(1446), + [aux_sym_continue_statement_token1] = ACTIONS(1446), + [aux_sym_break_statement_token1] = ACTIONS(1446), + [sym_integer] = ACTIONS(1446), + [aux_sym_return_statement_token1] = ACTIONS(1446), + [aux_sym_throw_expression_token1] = ACTIONS(1446), + [aux_sym_while_statement_token1] = ACTIONS(1446), + [aux_sym_while_statement_token2] = ACTIONS(1446), + [aux_sym_do_statement_token1] = ACTIONS(1446), + [aux_sym_for_statement_token1] = ACTIONS(1446), + [aux_sym_for_statement_token2] = ACTIONS(1446), + [aux_sym_foreach_statement_token1] = ACTIONS(1446), + [aux_sym_foreach_statement_token2] = ACTIONS(1446), + [aux_sym_if_statement_token1] = ACTIONS(1446), + [aux_sym_if_statement_token2] = ACTIONS(1446), + [aux_sym_else_if_clause_token1] = ACTIONS(1446), + [aux_sym_else_clause_token1] = ACTIONS(1446), + [aux_sym_match_expression_token1] = ACTIONS(1446), + [aux_sym_match_default_expression_token1] = ACTIONS(1446), + [aux_sym_switch_statement_token1] = ACTIONS(1446), + [aux_sym_switch_block_token1] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_AT] = ACTIONS(1444), + [aux_sym_clone_expression_token1] = ACTIONS(1446), + [aux_sym_print_intrinsic_token1] = ACTIONS(1446), + [aux_sym_object_creation_expression_token1] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [aux_sym__list_destructing_token1] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_self] = ACTIONS(1446), + [anon_sym_parent] = ACTIONS(1446), + [aux_sym__argument_name_token1] = ACTIONS(1446), + [aux_sym__argument_name_token2] = ACTIONS(1446), + [anon_sym_POUND_LBRACK] = ACTIONS(1444), + [aux_sym_encapsed_string_token1] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [aux_sym_string_token1] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_LT_LT_LT] = ACTIONS(1444), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1444), + [aux_sym_yield_expression_token1] = ACTIONS(1446), + [aux_sym_include_expression_token1] = ACTIONS(1446), + [aux_sym_include_once_expression_token1] = ACTIONS(1446), + [aux_sym_require_expression_token1] = ACTIONS(1446), + [aux_sym_require_once_expression_token1] = ACTIONS(1446), [sym_comment] = ACTIONS(5), }, [542] = { [sym_text_interpolation] = STATE(542), - [ts_builtin_sym_end] = ACTIONS(1475), - [sym_name] = ACTIONS(1477), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1475), - [aux_sym_function_static_declaration_token1] = ACTIONS(1477), - [aux_sym_global_declaration_token1] = ACTIONS(1477), - [aux_sym_namespace_definition_token1] = ACTIONS(1477), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1477), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1477), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1477), - [anon_sym_BSLASH] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [aux_sym_trait_declaration_token1] = ACTIONS(1477), - [aux_sym_interface_declaration_token1] = ACTIONS(1477), - [aux_sym_enum_declaration_token1] = ACTIONS(1477), - [aux_sym_enum_case_token1] = ACTIONS(1477), - [aux_sym_class_declaration_token1] = ACTIONS(1477), - [aux_sym_final_modifier_token1] = ACTIONS(1477), - [aux_sym_abstract_modifier_token1] = ACTIONS(1477), - [aux_sym_readonly_modifier_token1] = ACTIONS(1477), - [aux_sym_visibility_modifier_token1] = ACTIONS(1477), - [aux_sym_visibility_modifier_token2] = ACTIONS(1477), - [aux_sym_visibility_modifier_token3] = ACTIONS(1477), - [aux_sym__arrow_function_header_token1] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1475), - [aux_sym_cast_type_token1] = ACTIONS(1477), - [aux_sym_echo_statement_token1] = ACTIONS(1477), - [aux_sym_exit_statement_token1] = ACTIONS(1477), - [anon_sym_unset] = ACTIONS(1477), - [aux_sym_declare_statement_token1] = ACTIONS(1477), - [aux_sym_declare_statement_token2] = ACTIONS(1477), - [sym_float] = ACTIONS(1477), - [aux_sym_try_statement_token1] = ACTIONS(1477), - [aux_sym_goto_statement_token1] = ACTIONS(1477), - [aux_sym_continue_statement_token1] = ACTIONS(1477), - [aux_sym_break_statement_token1] = ACTIONS(1477), - [sym_integer] = ACTIONS(1477), - [aux_sym_return_statement_token1] = ACTIONS(1477), - [aux_sym_throw_expression_token1] = ACTIONS(1477), - [aux_sym_while_statement_token1] = ACTIONS(1477), - [aux_sym_while_statement_token2] = ACTIONS(1477), - [aux_sym_do_statement_token1] = ACTIONS(1477), - [aux_sym_for_statement_token1] = ACTIONS(1477), - [aux_sym_for_statement_token2] = ACTIONS(1477), - [aux_sym_foreach_statement_token1] = ACTIONS(1477), - [aux_sym_foreach_statement_token2] = ACTIONS(1477), - [aux_sym_if_statement_token1] = ACTIONS(1477), - [aux_sym_if_statement_token2] = ACTIONS(1477), - [aux_sym_else_if_clause_token1] = ACTIONS(1477), - [aux_sym_else_clause_token1] = ACTIONS(1477), - [aux_sym_match_expression_token1] = ACTIONS(1477), - [aux_sym_match_default_expression_token1] = ACTIONS(1477), - [aux_sym_switch_statement_token1] = ACTIONS(1477), - [aux_sym_switch_block_token1] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1475), - [aux_sym_clone_expression_token1] = ACTIONS(1477), - [aux_sym_print_intrinsic_token1] = ACTIONS(1477), - [aux_sym_object_creation_expression_token1] = ACTIONS(1477), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [aux_sym__list_destructing_token1] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_self] = ACTIONS(1477), - [anon_sym_parent] = ACTIONS(1477), - [aux_sym__argument_name_token1] = ACTIONS(1477), - [aux_sym__argument_name_token2] = ACTIONS(1477), - [anon_sym_POUND_LBRACK] = ACTIONS(1475), - [aux_sym_encapsed_string_token1] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [aux_sym_string_token1] = ACTIONS(1475), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_LT_LT_LT] = ACTIONS(1475), - [anon_sym_BQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1475), - [aux_sym_yield_expression_token1] = ACTIONS(1477), - [aux_sym_include_expression_token1] = ACTIONS(1477), - [aux_sym_include_once_expression_token1] = ACTIONS(1477), - [aux_sym_require_expression_token1] = ACTIONS(1477), - [aux_sym_require_once_expression_token1] = ACTIONS(1477), + [ts_builtin_sym_end] = ACTIONS(1448), + [sym_name] = ACTIONS(1450), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1448), + [aux_sym_function_static_declaration_token1] = ACTIONS(1450), + [aux_sym_global_declaration_token1] = ACTIONS(1450), + [aux_sym_namespace_definition_token1] = ACTIONS(1450), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1450), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1450), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1450), + [anon_sym_BSLASH] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [aux_sym_trait_declaration_token1] = ACTIONS(1450), + [aux_sym_interface_declaration_token1] = ACTIONS(1450), + [aux_sym_enum_declaration_token1] = ACTIONS(1450), + [aux_sym_enum_case_token1] = ACTIONS(1450), + [aux_sym_class_declaration_token1] = ACTIONS(1450), + [aux_sym_final_modifier_token1] = ACTIONS(1450), + [aux_sym_abstract_modifier_token1] = ACTIONS(1450), + [aux_sym_readonly_modifier_token1] = ACTIONS(1450), + [sym_var_modifier] = ACTIONS(1450), + [aux_sym_visibility_modifier_token1] = ACTIONS(1450), + [aux_sym_visibility_modifier_token2] = ACTIONS(1450), + [aux_sym_visibility_modifier_token3] = ACTIONS(1450), + [aux_sym__arrow_function_header_token1] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1448), + [aux_sym_cast_type_token1] = ACTIONS(1450), + [aux_sym_echo_statement_token1] = ACTIONS(1450), + [aux_sym_exit_statement_token1] = ACTIONS(1450), + [anon_sym_unset] = ACTIONS(1450), + [aux_sym_declare_statement_token1] = ACTIONS(1450), + [aux_sym_declare_statement_token2] = ACTIONS(1450), + [sym_float] = ACTIONS(1450), + [aux_sym_try_statement_token1] = ACTIONS(1450), + [aux_sym_goto_statement_token1] = ACTIONS(1450), + [aux_sym_continue_statement_token1] = ACTIONS(1450), + [aux_sym_break_statement_token1] = ACTIONS(1450), + [sym_integer] = ACTIONS(1450), + [aux_sym_return_statement_token1] = ACTIONS(1450), + [aux_sym_throw_expression_token1] = ACTIONS(1450), + [aux_sym_while_statement_token1] = ACTIONS(1450), + [aux_sym_while_statement_token2] = ACTIONS(1450), + [aux_sym_do_statement_token1] = ACTIONS(1450), + [aux_sym_for_statement_token1] = ACTIONS(1450), + [aux_sym_for_statement_token2] = ACTIONS(1450), + [aux_sym_foreach_statement_token1] = ACTIONS(1450), + [aux_sym_foreach_statement_token2] = ACTIONS(1450), + [aux_sym_if_statement_token1] = ACTIONS(1450), + [aux_sym_if_statement_token2] = ACTIONS(1450), + [aux_sym_else_if_clause_token1] = ACTIONS(1450), + [aux_sym_else_clause_token1] = ACTIONS(1450), + [aux_sym_match_expression_token1] = ACTIONS(1450), + [aux_sym_match_default_expression_token1] = ACTIONS(1450), + [aux_sym_switch_statement_token1] = ACTIONS(1450), + [aux_sym_switch_block_token1] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_AT] = ACTIONS(1448), + [aux_sym_clone_expression_token1] = ACTIONS(1450), + [aux_sym_print_intrinsic_token1] = ACTIONS(1450), + [aux_sym_object_creation_expression_token1] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [aux_sym__list_destructing_token1] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_self] = ACTIONS(1450), + [anon_sym_parent] = ACTIONS(1450), + [aux_sym__argument_name_token1] = ACTIONS(1450), + [aux_sym__argument_name_token2] = ACTIONS(1450), + [anon_sym_POUND_LBRACK] = ACTIONS(1448), + [aux_sym_encapsed_string_token1] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [aux_sym_string_token1] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_LT_LT_LT] = ACTIONS(1448), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR] = ACTIONS(1448), + [aux_sym_yield_expression_token1] = ACTIONS(1450), + [aux_sym_include_expression_token1] = ACTIONS(1450), + [aux_sym_include_once_expression_token1] = ACTIONS(1450), + [aux_sym_require_expression_token1] = ACTIONS(1450), + [aux_sym_require_once_expression_token1] = ACTIONS(1450), [sym_comment] = ACTIONS(5), }, [543] = { [sym_text_interpolation] = STATE(543), - [ts_builtin_sym_end] = ACTIONS(1075), - [sym_name] = ACTIONS(1077), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1075), - [aux_sym_function_static_declaration_token1] = ACTIONS(1077), - [aux_sym_global_declaration_token1] = ACTIONS(1077), - [aux_sym_namespace_definition_token1] = ACTIONS(1077), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1077), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1077), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1077), - [anon_sym_BSLASH] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1075), - [aux_sym_trait_declaration_token1] = ACTIONS(1077), - [aux_sym_interface_declaration_token1] = ACTIONS(1077), - [aux_sym_enum_declaration_token1] = ACTIONS(1077), - [aux_sym_enum_case_token1] = ACTIONS(1077), - [aux_sym_class_declaration_token1] = ACTIONS(1077), - [aux_sym_final_modifier_token1] = ACTIONS(1077), - [aux_sym_abstract_modifier_token1] = ACTIONS(1077), - [aux_sym_readonly_modifier_token1] = ACTIONS(1077), - [aux_sym_visibility_modifier_token1] = ACTIONS(1077), - [aux_sym_visibility_modifier_token2] = ACTIONS(1077), - [aux_sym_visibility_modifier_token3] = ACTIONS(1077), - [aux_sym__arrow_function_header_token1] = ACTIONS(1077), - [anon_sym_LPAREN] = ACTIONS(1075), - [aux_sym_cast_type_token1] = ACTIONS(1077), - [aux_sym_echo_statement_token1] = ACTIONS(1077), - [aux_sym_exit_statement_token1] = ACTIONS(1077), - [anon_sym_unset] = ACTIONS(1077), - [aux_sym_declare_statement_token1] = ACTIONS(1077), - [aux_sym_declare_statement_token2] = ACTIONS(1077), - [sym_float] = ACTIONS(1077), - [aux_sym_try_statement_token1] = ACTIONS(1077), - [aux_sym_goto_statement_token1] = ACTIONS(1077), - [aux_sym_continue_statement_token1] = ACTIONS(1077), - [aux_sym_break_statement_token1] = ACTIONS(1077), - [sym_integer] = ACTIONS(1077), - [aux_sym_return_statement_token1] = ACTIONS(1077), - [aux_sym_throw_expression_token1] = ACTIONS(1077), - [aux_sym_while_statement_token1] = ACTIONS(1077), - [aux_sym_while_statement_token2] = ACTIONS(1077), - [aux_sym_do_statement_token1] = ACTIONS(1077), - [aux_sym_for_statement_token1] = ACTIONS(1077), - [aux_sym_for_statement_token2] = ACTIONS(1077), - [aux_sym_foreach_statement_token1] = ACTIONS(1077), - [aux_sym_foreach_statement_token2] = ACTIONS(1077), - [aux_sym_if_statement_token1] = ACTIONS(1077), - [aux_sym_if_statement_token2] = ACTIONS(1077), - [aux_sym_else_if_clause_token1] = ACTIONS(1077), - [aux_sym_else_clause_token1] = ACTIONS(1077), - [aux_sym_match_expression_token1] = ACTIONS(1077), - [aux_sym_match_default_expression_token1] = ACTIONS(1077), - [aux_sym_switch_statement_token1] = ACTIONS(1077), - [aux_sym_switch_block_token1] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_AT] = ACTIONS(1075), - [aux_sym_clone_expression_token1] = ACTIONS(1077), - [aux_sym_print_intrinsic_token1] = ACTIONS(1077), - [aux_sym_object_creation_expression_token1] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [aux_sym__list_destructing_token1] = ACTIONS(1077), - [anon_sym_LBRACK] = ACTIONS(1075), - [anon_sym_self] = ACTIONS(1077), - [anon_sym_parent] = ACTIONS(1077), - [aux_sym__argument_name_token1] = ACTIONS(1077), - [aux_sym__argument_name_token2] = ACTIONS(1077), - [anon_sym_POUND_LBRACK] = ACTIONS(1075), - [aux_sym_encapsed_string_token1] = ACTIONS(1075), - [anon_sym_DQUOTE] = ACTIONS(1075), - [aux_sym_string_token1] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1075), - [anon_sym_LT_LT_LT] = ACTIONS(1075), - [anon_sym_BQUOTE] = ACTIONS(1075), - [anon_sym_DOLLAR] = ACTIONS(1075), - [aux_sym_yield_expression_token1] = ACTIONS(1077), - [aux_sym_include_expression_token1] = ACTIONS(1077), - [aux_sym_include_once_expression_token1] = ACTIONS(1077), - [aux_sym_require_expression_token1] = ACTIONS(1077), - [aux_sym_require_once_expression_token1] = ACTIONS(1077), + [ts_builtin_sym_end] = ACTIONS(1452), + [sym_name] = ACTIONS(1454), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1452), + [aux_sym_function_static_declaration_token1] = ACTIONS(1454), + [aux_sym_global_declaration_token1] = ACTIONS(1454), + [aux_sym_namespace_definition_token1] = ACTIONS(1454), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1454), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1454), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1454), + [anon_sym_BSLASH] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [aux_sym_trait_declaration_token1] = ACTIONS(1454), + [aux_sym_interface_declaration_token1] = ACTIONS(1454), + [aux_sym_enum_declaration_token1] = ACTIONS(1454), + [aux_sym_enum_case_token1] = ACTIONS(1454), + [aux_sym_class_declaration_token1] = ACTIONS(1454), + [aux_sym_final_modifier_token1] = ACTIONS(1454), + [aux_sym_abstract_modifier_token1] = ACTIONS(1454), + [aux_sym_readonly_modifier_token1] = ACTIONS(1454), + [sym_var_modifier] = ACTIONS(1454), + [aux_sym_visibility_modifier_token1] = ACTIONS(1454), + [aux_sym_visibility_modifier_token2] = ACTIONS(1454), + [aux_sym_visibility_modifier_token3] = ACTIONS(1454), + [aux_sym__arrow_function_header_token1] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1452), + [aux_sym_cast_type_token1] = ACTIONS(1454), + [aux_sym_echo_statement_token1] = ACTIONS(1454), + [aux_sym_exit_statement_token1] = ACTIONS(1454), + [anon_sym_unset] = ACTIONS(1454), + [aux_sym_declare_statement_token1] = ACTIONS(1454), + [aux_sym_declare_statement_token2] = ACTIONS(1454), + [sym_float] = ACTIONS(1454), + [aux_sym_try_statement_token1] = ACTIONS(1454), + [aux_sym_goto_statement_token1] = ACTIONS(1454), + [aux_sym_continue_statement_token1] = ACTIONS(1454), + [aux_sym_break_statement_token1] = ACTIONS(1454), + [sym_integer] = ACTIONS(1454), + [aux_sym_return_statement_token1] = ACTIONS(1454), + [aux_sym_throw_expression_token1] = ACTIONS(1454), + [aux_sym_while_statement_token1] = ACTIONS(1454), + [aux_sym_while_statement_token2] = ACTIONS(1454), + [aux_sym_do_statement_token1] = ACTIONS(1454), + [aux_sym_for_statement_token1] = ACTIONS(1454), + [aux_sym_for_statement_token2] = ACTIONS(1454), + [aux_sym_foreach_statement_token1] = ACTIONS(1454), + [aux_sym_foreach_statement_token2] = ACTIONS(1454), + [aux_sym_if_statement_token1] = ACTIONS(1454), + [aux_sym_if_statement_token2] = ACTIONS(1454), + [aux_sym_else_if_clause_token1] = ACTIONS(1454), + [aux_sym_else_clause_token1] = ACTIONS(1454), + [aux_sym_match_expression_token1] = ACTIONS(1454), + [aux_sym_match_default_expression_token1] = ACTIONS(1454), + [aux_sym_switch_statement_token1] = ACTIONS(1454), + [aux_sym_switch_block_token1] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(1452), + [aux_sym_clone_expression_token1] = ACTIONS(1454), + [aux_sym_print_intrinsic_token1] = ACTIONS(1454), + [aux_sym_object_creation_expression_token1] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [aux_sym__list_destructing_token1] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1452), + [anon_sym_self] = ACTIONS(1454), + [anon_sym_parent] = ACTIONS(1454), + [aux_sym__argument_name_token1] = ACTIONS(1454), + [aux_sym__argument_name_token2] = ACTIONS(1454), + [anon_sym_POUND_LBRACK] = ACTIONS(1452), + [aux_sym_encapsed_string_token1] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [aux_sym_string_token1] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_LT_LT_LT] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(1452), + [anon_sym_DOLLAR] = ACTIONS(1452), + [aux_sym_yield_expression_token1] = ACTIONS(1454), + [aux_sym_include_expression_token1] = ACTIONS(1454), + [aux_sym_include_once_expression_token1] = ACTIONS(1454), + [aux_sym_require_expression_token1] = ACTIONS(1454), + [aux_sym_require_once_expression_token1] = ACTIONS(1454), [sym_comment] = ACTIONS(5), }, [544] = { [sym_text_interpolation] = STATE(544), - [ts_builtin_sym_end] = ACTIONS(1479), - [sym_name] = ACTIONS(1481), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1479), - [aux_sym_function_static_declaration_token1] = ACTIONS(1481), - [aux_sym_global_declaration_token1] = ACTIONS(1481), - [aux_sym_namespace_definition_token1] = ACTIONS(1481), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1481), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1481), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1481), - [anon_sym_BSLASH] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1479), - [aux_sym_trait_declaration_token1] = ACTIONS(1481), - [aux_sym_interface_declaration_token1] = ACTIONS(1481), - [aux_sym_enum_declaration_token1] = ACTIONS(1481), - [aux_sym_enum_case_token1] = ACTIONS(1481), - [aux_sym_class_declaration_token1] = ACTIONS(1481), - [aux_sym_final_modifier_token1] = ACTIONS(1481), - [aux_sym_abstract_modifier_token1] = ACTIONS(1481), - [aux_sym_readonly_modifier_token1] = ACTIONS(1481), - [aux_sym_visibility_modifier_token1] = ACTIONS(1481), - [aux_sym_visibility_modifier_token2] = ACTIONS(1481), - [aux_sym_visibility_modifier_token3] = ACTIONS(1481), - [aux_sym__arrow_function_header_token1] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_cast_type_token1] = ACTIONS(1481), - [aux_sym_echo_statement_token1] = ACTIONS(1481), - [aux_sym_exit_statement_token1] = ACTIONS(1481), - [anon_sym_unset] = ACTIONS(1481), - [aux_sym_declare_statement_token1] = ACTIONS(1481), - [aux_sym_declare_statement_token2] = ACTIONS(1481), - [sym_float] = ACTIONS(1481), - [aux_sym_try_statement_token1] = ACTIONS(1481), - [aux_sym_goto_statement_token1] = ACTIONS(1481), - [aux_sym_continue_statement_token1] = ACTIONS(1481), - [aux_sym_break_statement_token1] = ACTIONS(1481), - [sym_integer] = ACTIONS(1481), - [aux_sym_return_statement_token1] = ACTIONS(1481), - [aux_sym_throw_expression_token1] = ACTIONS(1481), - [aux_sym_while_statement_token1] = ACTIONS(1481), - [aux_sym_while_statement_token2] = ACTIONS(1481), - [aux_sym_do_statement_token1] = ACTIONS(1481), - [aux_sym_for_statement_token1] = ACTIONS(1481), - [aux_sym_for_statement_token2] = ACTIONS(1481), - [aux_sym_foreach_statement_token1] = ACTIONS(1481), - [aux_sym_foreach_statement_token2] = ACTIONS(1481), - [aux_sym_if_statement_token1] = ACTIONS(1481), - [aux_sym_if_statement_token2] = ACTIONS(1481), - [aux_sym_else_if_clause_token1] = ACTIONS(1481), - [aux_sym_else_clause_token1] = ACTIONS(1481), - [aux_sym_match_expression_token1] = ACTIONS(1481), - [aux_sym_match_default_expression_token1] = ACTIONS(1481), - [aux_sym_switch_statement_token1] = ACTIONS(1481), - [aux_sym_switch_block_token1] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1479), - [anon_sym_AT] = ACTIONS(1479), - [aux_sym_clone_expression_token1] = ACTIONS(1481), - [aux_sym_print_intrinsic_token1] = ACTIONS(1481), - [aux_sym_object_creation_expression_token1] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1479), - [anon_sym_PLUS_PLUS] = ACTIONS(1479), - [aux_sym__list_destructing_token1] = ACTIONS(1481), - [anon_sym_LBRACK] = ACTIONS(1479), - [anon_sym_self] = ACTIONS(1481), - [anon_sym_parent] = ACTIONS(1481), - [aux_sym__argument_name_token1] = ACTIONS(1481), - [aux_sym__argument_name_token2] = ACTIONS(1481), - [anon_sym_POUND_LBRACK] = ACTIONS(1479), - [aux_sym_encapsed_string_token1] = ACTIONS(1479), - [anon_sym_DQUOTE] = ACTIONS(1479), - [aux_sym_string_token1] = ACTIONS(1479), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_LT_LT_LT] = ACTIONS(1479), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [aux_sym_yield_expression_token1] = ACTIONS(1481), - [aux_sym_include_expression_token1] = ACTIONS(1481), - [aux_sym_include_once_expression_token1] = ACTIONS(1481), - [aux_sym_require_expression_token1] = ACTIONS(1481), - [aux_sym_require_once_expression_token1] = ACTIONS(1481), + [ts_builtin_sym_end] = ACTIONS(1456), + [sym_name] = ACTIONS(1458), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1456), + [aux_sym_function_static_declaration_token1] = ACTIONS(1458), + [aux_sym_global_declaration_token1] = ACTIONS(1458), + [aux_sym_namespace_definition_token1] = ACTIONS(1458), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1458), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1458), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1458), + [anon_sym_BSLASH] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [aux_sym_trait_declaration_token1] = ACTIONS(1458), + [aux_sym_interface_declaration_token1] = ACTIONS(1458), + [aux_sym_enum_declaration_token1] = ACTIONS(1458), + [aux_sym_enum_case_token1] = ACTIONS(1458), + [aux_sym_class_declaration_token1] = ACTIONS(1458), + [aux_sym_final_modifier_token1] = ACTIONS(1458), + [aux_sym_abstract_modifier_token1] = ACTIONS(1458), + [aux_sym_readonly_modifier_token1] = ACTIONS(1458), + [sym_var_modifier] = ACTIONS(1458), + [aux_sym_visibility_modifier_token1] = ACTIONS(1458), + [aux_sym_visibility_modifier_token2] = ACTIONS(1458), + [aux_sym_visibility_modifier_token3] = ACTIONS(1458), + [aux_sym__arrow_function_header_token1] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1456), + [aux_sym_cast_type_token1] = ACTIONS(1458), + [aux_sym_echo_statement_token1] = ACTIONS(1458), + [aux_sym_exit_statement_token1] = ACTIONS(1458), + [anon_sym_unset] = ACTIONS(1458), + [aux_sym_declare_statement_token1] = ACTIONS(1458), + [aux_sym_declare_statement_token2] = ACTIONS(1458), + [sym_float] = ACTIONS(1458), + [aux_sym_try_statement_token1] = ACTIONS(1458), + [aux_sym_goto_statement_token1] = ACTIONS(1458), + [aux_sym_continue_statement_token1] = ACTIONS(1458), + [aux_sym_break_statement_token1] = ACTIONS(1458), + [sym_integer] = ACTIONS(1458), + [aux_sym_return_statement_token1] = ACTIONS(1458), + [aux_sym_throw_expression_token1] = ACTIONS(1458), + [aux_sym_while_statement_token1] = ACTIONS(1458), + [aux_sym_while_statement_token2] = ACTIONS(1458), + [aux_sym_do_statement_token1] = ACTIONS(1458), + [aux_sym_for_statement_token1] = ACTIONS(1458), + [aux_sym_for_statement_token2] = ACTIONS(1458), + [aux_sym_foreach_statement_token1] = ACTIONS(1458), + [aux_sym_foreach_statement_token2] = ACTIONS(1458), + [aux_sym_if_statement_token1] = ACTIONS(1458), + [aux_sym_if_statement_token2] = ACTIONS(1458), + [aux_sym_else_if_clause_token1] = ACTIONS(1458), + [aux_sym_else_clause_token1] = ACTIONS(1458), + [aux_sym_match_expression_token1] = ACTIONS(1458), + [aux_sym_match_default_expression_token1] = ACTIONS(1458), + [aux_sym_switch_statement_token1] = ACTIONS(1458), + [aux_sym_switch_block_token1] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_AT] = ACTIONS(1456), + [aux_sym_clone_expression_token1] = ACTIONS(1458), + [aux_sym_print_intrinsic_token1] = ACTIONS(1458), + [aux_sym_object_creation_expression_token1] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [aux_sym__list_destructing_token1] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_self] = ACTIONS(1458), + [anon_sym_parent] = ACTIONS(1458), + [aux_sym__argument_name_token1] = ACTIONS(1458), + [aux_sym__argument_name_token2] = ACTIONS(1458), + [anon_sym_POUND_LBRACK] = ACTIONS(1456), + [aux_sym_encapsed_string_token1] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [aux_sym_string_token1] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_LT_LT_LT] = ACTIONS(1456), + [anon_sym_BQUOTE] = ACTIONS(1456), + [anon_sym_DOLLAR] = ACTIONS(1456), + [aux_sym_yield_expression_token1] = ACTIONS(1458), + [aux_sym_include_expression_token1] = ACTIONS(1458), + [aux_sym_include_once_expression_token1] = ACTIONS(1458), + [aux_sym_require_expression_token1] = ACTIONS(1458), + [aux_sym_require_once_expression_token1] = ACTIONS(1458), [sym_comment] = ACTIONS(5), }, [545] = { [sym_text_interpolation] = STATE(545), - [ts_builtin_sym_end] = ACTIONS(1483), - [sym_name] = ACTIONS(1485), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1483), - [aux_sym_function_static_declaration_token1] = ACTIONS(1485), - [aux_sym_global_declaration_token1] = ACTIONS(1485), - [aux_sym_namespace_definition_token1] = ACTIONS(1485), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1485), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1485), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1485), - [anon_sym_BSLASH] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [aux_sym_trait_declaration_token1] = ACTIONS(1485), - [aux_sym_interface_declaration_token1] = ACTIONS(1485), - [aux_sym_enum_declaration_token1] = ACTIONS(1485), - [aux_sym_enum_case_token1] = ACTIONS(1485), - [aux_sym_class_declaration_token1] = ACTIONS(1485), - [aux_sym_final_modifier_token1] = ACTIONS(1485), - [aux_sym_abstract_modifier_token1] = ACTIONS(1485), - [aux_sym_readonly_modifier_token1] = ACTIONS(1485), - [aux_sym_visibility_modifier_token1] = ACTIONS(1485), - [aux_sym_visibility_modifier_token2] = ACTIONS(1485), - [aux_sym_visibility_modifier_token3] = ACTIONS(1485), - [aux_sym__arrow_function_header_token1] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1483), - [aux_sym_cast_type_token1] = ACTIONS(1485), - [aux_sym_echo_statement_token1] = ACTIONS(1485), - [aux_sym_exit_statement_token1] = ACTIONS(1485), - [anon_sym_unset] = ACTIONS(1485), - [aux_sym_declare_statement_token1] = ACTIONS(1485), - [aux_sym_declare_statement_token2] = ACTIONS(1485), - [sym_float] = ACTIONS(1485), - [aux_sym_try_statement_token1] = ACTIONS(1485), - [aux_sym_goto_statement_token1] = ACTIONS(1485), - [aux_sym_continue_statement_token1] = ACTIONS(1485), - [aux_sym_break_statement_token1] = ACTIONS(1485), - [sym_integer] = ACTIONS(1485), - [aux_sym_return_statement_token1] = ACTIONS(1485), - [aux_sym_throw_expression_token1] = ACTIONS(1485), - [aux_sym_while_statement_token1] = ACTIONS(1485), - [aux_sym_while_statement_token2] = ACTIONS(1485), - [aux_sym_do_statement_token1] = ACTIONS(1485), - [aux_sym_for_statement_token1] = ACTIONS(1485), - [aux_sym_for_statement_token2] = ACTIONS(1485), - [aux_sym_foreach_statement_token1] = ACTIONS(1485), - [aux_sym_foreach_statement_token2] = ACTIONS(1485), - [aux_sym_if_statement_token1] = ACTIONS(1485), - [aux_sym_if_statement_token2] = ACTIONS(1485), - [aux_sym_else_if_clause_token1] = ACTIONS(1485), - [aux_sym_else_clause_token1] = ACTIONS(1485), - [aux_sym_match_expression_token1] = ACTIONS(1485), - [aux_sym_match_default_expression_token1] = ACTIONS(1485), - [aux_sym_switch_statement_token1] = ACTIONS(1485), - [aux_sym_switch_block_token1] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_AT] = ACTIONS(1483), - [aux_sym_clone_expression_token1] = ACTIONS(1485), - [aux_sym_print_intrinsic_token1] = ACTIONS(1485), - [aux_sym_object_creation_expression_token1] = ACTIONS(1485), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [aux_sym__list_destructing_token1] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_self] = ACTIONS(1485), - [anon_sym_parent] = ACTIONS(1485), - [aux_sym__argument_name_token1] = ACTIONS(1485), - [aux_sym__argument_name_token2] = ACTIONS(1485), - [anon_sym_POUND_LBRACK] = ACTIONS(1483), - [aux_sym_encapsed_string_token1] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1483), - [aux_sym_string_token1] = ACTIONS(1483), - [anon_sym_SQUOTE] = ACTIONS(1483), - [anon_sym_LT_LT_LT] = ACTIONS(1483), - [anon_sym_BQUOTE] = ACTIONS(1483), - [anon_sym_DOLLAR] = ACTIONS(1483), - [aux_sym_yield_expression_token1] = ACTIONS(1485), - [aux_sym_include_expression_token1] = ACTIONS(1485), - [aux_sym_include_once_expression_token1] = ACTIONS(1485), - [aux_sym_require_expression_token1] = ACTIONS(1485), - [aux_sym_require_once_expression_token1] = ACTIONS(1485), + [ts_builtin_sym_end] = ACTIONS(1460), + [sym_name] = ACTIONS(1462), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1460), + [aux_sym_function_static_declaration_token1] = ACTIONS(1462), + [aux_sym_global_declaration_token1] = ACTIONS(1462), + [aux_sym_namespace_definition_token1] = ACTIONS(1462), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1462), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1462), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1462), + [anon_sym_BSLASH] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1460), + [aux_sym_trait_declaration_token1] = ACTIONS(1462), + [aux_sym_interface_declaration_token1] = ACTIONS(1462), + [aux_sym_enum_declaration_token1] = ACTIONS(1462), + [aux_sym_enum_case_token1] = ACTIONS(1462), + [aux_sym_class_declaration_token1] = ACTIONS(1462), + [aux_sym_final_modifier_token1] = ACTIONS(1462), + [aux_sym_abstract_modifier_token1] = ACTIONS(1462), + [aux_sym_readonly_modifier_token1] = ACTIONS(1462), + [sym_var_modifier] = ACTIONS(1462), + [aux_sym_visibility_modifier_token1] = ACTIONS(1462), + [aux_sym_visibility_modifier_token2] = ACTIONS(1462), + [aux_sym_visibility_modifier_token3] = ACTIONS(1462), + [aux_sym__arrow_function_header_token1] = ACTIONS(1462), + [anon_sym_LPAREN] = ACTIONS(1460), + [aux_sym_cast_type_token1] = ACTIONS(1462), + [aux_sym_echo_statement_token1] = ACTIONS(1462), + [aux_sym_exit_statement_token1] = ACTIONS(1462), + [anon_sym_unset] = ACTIONS(1462), + [aux_sym_declare_statement_token1] = ACTIONS(1462), + [aux_sym_declare_statement_token2] = ACTIONS(1462), + [sym_float] = ACTIONS(1462), + [aux_sym_try_statement_token1] = ACTIONS(1462), + [aux_sym_goto_statement_token1] = ACTIONS(1462), + [aux_sym_continue_statement_token1] = ACTIONS(1462), + [aux_sym_break_statement_token1] = ACTIONS(1462), + [sym_integer] = ACTIONS(1462), + [aux_sym_return_statement_token1] = ACTIONS(1462), + [aux_sym_throw_expression_token1] = ACTIONS(1462), + [aux_sym_while_statement_token1] = ACTIONS(1462), + [aux_sym_while_statement_token2] = ACTIONS(1462), + [aux_sym_do_statement_token1] = ACTIONS(1462), + [aux_sym_for_statement_token1] = ACTIONS(1462), + [aux_sym_for_statement_token2] = ACTIONS(1462), + [aux_sym_foreach_statement_token1] = ACTIONS(1462), + [aux_sym_foreach_statement_token2] = ACTIONS(1462), + [aux_sym_if_statement_token1] = ACTIONS(1462), + [aux_sym_if_statement_token2] = ACTIONS(1462), + [aux_sym_else_if_clause_token1] = ACTIONS(1462), + [aux_sym_else_clause_token1] = ACTIONS(1462), + [aux_sym_match_expression_token1] = ACTIONS(1462), + [aux_sym_match_default_expression_token1] = ACTIONS(1462), + [aux_sym_switch_statement_token1] = ACTIONS(1462), + [aux_sym_switch_block_token1] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_AT] = ACTIONS(1460), + [aux_sym_clone_expression_token1] = ACTIONS(1462), + [aux_sym_print_intrinsic_token1] = ACTIONS(1462), + [aux_sym_object_creation_expression_token1] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [aux_sym__list_destructing_token1] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1460), + [anon_sym_self] = ACTIONS(1462), + [anon_sym_parent] = ACTIONS(1462), + [aux_sym__argument_name_token1] = ACTIONS(1462), + [aux_sym__argument_name_token2] = ACTIONS(1462), + [anon_sym_POUND_LBRACK] = ACTIONS(1460), + [aux_sym_encapsed_string_token1] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [aux_sym_string_token1] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_LT_LT_LT] = ACTIONS(1460), + [anon_sym_BQUOTE] = ACTIONS(1460), + [anon_sym_DOLLAR] = ACTIONS(1460), + [aux_sym_yield_expression_token1] = ACTIONS(1462), + [aux_sym_include_expression_token1] = ACTIONS(1462), + [aux_sym_include_once_expression_token1] = ACTIONS(1462), + [aux_sym_require_expression_token1] = ACTIONS(1462), + [aux_sym_require_once_expression_token1] = ACTIONS(1462), [sym_comment] = ACTIONS(5), }, [546] = { [sym_text_interpolation] = STATE(546), - [ts_builtin_sym_end] = ACTIONS(1487), - [sym_name] = ACTIONS(1489), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1487), - [aux_sym_function_static_declaration_token1] = ACTIONS(1489), - [aux_sym_global_declaration_token1] = ACTIONS(1489), - [aux_sym_namespace_definition_token1] = ACTIONS(1489), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1489), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1489), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1489), - [anon_sym_BSLASH] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(1487), - [aux_sym_trait_declaration_token1] = ACTIONS(1489), - [aux_sym_interface_declaration_token1] = ACTIONS(1489), - [aux_sym_enum_declaration_token1] = ACTIONS(1489), - [aux_sym_enum_case_token1] = ACTIONS(1489), - [aux_sym_class_declaration_token1] = ACTIONS(1489), - [aux_sym_final_modifier_token1] = ACTIONS(1489), - [aux_sym_abstract_modifier_token1] = ACTIONS(1489), - [aux_sym_readonly_modifier_token1] = ACTIONS(1489), - [aux_sym_visibility_modifier_token1] = ACTIONS(1489), - [aux_sym_visibility_modifier_token2] = ACTIONS(1489), - [aux_sym_visibility_modifier_token3] = ACTIONS(1489), - [aux_sym__arrow_function_header_token1] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1487), - [aux_sym_cast_type_token1] = ACTIONS(1489), - [aux_sym_echo_statement_token1] = ACTIONS(1489), - [aux_sym_exit_statement_token1] = ACTIONS(1489), - [anon_sym_unset] = ACTIONS(1489), - [aux_sym_declare_statement_token1] = ACTIONS(1489), - [aux_sym_declare_statement_token2] = ACTIONS(1489), - [sym_float] = ACTIONS(1489), - [aux_sym_try_statement_token1] = ACTIONS(1489), - [aux_sym_goto_statement_token1] = ACTIONS(1489), - [aux_sym_continue_statement_token1] = ACTIONS(1489), - [aux_sym_break_statement_token1] = ACTIONS(1489), - [sym_integer] = ACTIONS(1489), - [aux_sym_return_statement_token1] = ACTIONS(1489), - [aux_sym_throw_expression_token1] = ACTIONS(1489), - [aux_sym_while_statement_token1] = ACTIONS(1489), - [aux_sym_while_statement_token2] = ACTIONS(1489), - [aux_sym_do_statement_token1] = ACTIONS(1489), - [aux_sym_for_statement_token1] = ACTIONS(1489), - [aux_sym_for_statement_token2] = ACTIONS(1489), - [aux_sym_foreach_statement_token1] = ACTIONS(1489), - [aux_sym_foreach_statement_token2] = ACTIONS(1489), - [aux_sym_if_statement_token1] = ACTIONS(1489), - [aux_sym_if_statement_token2] = ACTIONS(1489), - [aux_sym_else_if_clause_token1] = ACTIONS(1489), - [aux_sym_else_clause_token1] = ACTIONS(1489), - [aux_sym_match_expression_token1] = ACTIONS(1489), - [aux_sym_match_default_expression_token1] = ACTIONS(1489), - [aux_sym_switch_statement_token1] = ACTIONS(1489), - [aux_sym_switch_block_token1] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(1487), - [aux_sym_clone_expression_token1] = ACTIONS(1489), - [aux_sym_print_intrinsic_token1] = ACTIONS(1489), - [aux_sym_object_creation_expression_token1] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1487), - [aux_sym__list_destructing_token1] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1487), - [anon_sym_self] = ACTIONS(1489), - [anon_sym_parent] = ACTIONS(1489), - [aux_sym__argument_name_token1] = ACTIONS(1489), - [aux_sym__argument_name_token2] = ACTIONS(1489), - [anon_sym_POUND_LBRACK] = ACTIONS(1487), - [aux_sym_encapsed_string_token1] = ACTIONS(1487), - [anon_sym_DQUOTE] = ACTIONS(1487), - [aux_sym_string_token1] = ACTIONS(1487), - [anon_sym_SQUOTE] = ACTIONS(1487), - [anon_sym_LT_LT_LT] = ACTIONS(1487), - [anon_sym_BQUOTE] = ACTIONS(1487), - [anon_sym_DOLLAR] = ACTIONS(1487), - [aux_sym_yield_expression_token1] = ACTIONS(1489), - [aux_sym_include_expression_token1] = ACTIONS(1489), - [aux_sym_include_once_expression_token1] = ACTIONS(1489), - [aux_sym_require_expression_token1] = ACTIONS(1489), - [aux_sym_require_once_expression_token1] = ACTIONS(1489), + [ts_builtin_sym_end] = ACTIONS(1464), + [sym_name] = ACTIONS(1466), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1464), + [aux_sym_function_static_declaration_token1] = ACTIONS(1466), + [aux_sym_global_declaration_token1] = ACTIONS(1466), + [aux_sym_namespace_definition_token1] = ACTIONS(1466), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1466), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1466), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1466), + [anon_sym_BSLASH] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [aux_sym_trait_declaration_token1] = ACTIONS(1466), + [aux_sym_interface_declaration_token1] = ACTIONS(1466), + [aux_sym_enum_declaration_token1] = ACTIONS(1466), + [aux_sym_enum_case_token1] = ACTIONS(1466), + [aux_sym_class_declaration_token1] = ACTIONS(1466), + [aux_sym_final_modifier_token1] = ACTIONS(1466), + [aux_sym_abstract_modifier_token1] = ACTIONS(1466), + [aux_sym_readonly_modifier_token1] = ACTIONS(1466), + [sym_var_modifier] = ACTIONS(1466), + [aux_sym_visibility_modifier_token1] = ACTIONS(1466), + [aux_sym_visibility_modifier_token2] = ACTIONS(1466), + [aux_sym_visibility_modifier_token3] = ACTIONS(1466), + [aux_sym__arrow_function_header_token1] = ACTIONS(1466), + [anon_sym_LPAREN] = ACTIONS(1464), + [aux_sym_cast_type_token1] = ACTIONS(1466), + [aux_sym_echo_statement_token1] = ACTIONS(1466), + [aux_sym_exit_statement_token1] = ACTIONS(1466), + [anon_sym_unset] = ACTIONS(1466), + [aux_sym_declare_statement_token1] = ACTIONS(1466), + [aux_sym_declare_statement_token2] = ACTIONS(1466), + [sym_float] = ACTIONS(1466), + [aux_sym_try_statement_token1] = ACTIONS(1466), + [aux_sym_goto_statement_token1] = ACTIONS(1466), + [aux_sym_continue_statement_token1] = ACTIONS(1466), + [aux_sym_break_statement_token1] = ACTIONS(1466), + [sym_integer] = ACTIONS(1466), + [aux_sym_return_statement_token1] = ACTIONS(1466), + [aux_sym_throw_expression_token1] = ACTIONS(1466), + [aux_sym_while_statement_token1] = ACTIONS(1466), + [aux_sym_while_statement_token2] = ACTIONS(1466), + [aux_sym_do_statement_token1] = ACTIONS(1466), + [aux_sym_for_statement_token1] = ACTIONS(1466), + [aux_sym_for_statement_token2] = ACTIONS(1466), + [aux_sym_foreach_statement_token1] = ACTIONS(1466), + [aux_sym_foreach_statement_token2] = ACTIONS(1466), + [aux_sym_if_statement_token1] = ACTIONS(1466), + [aux_sym_if_statement_token2] = ACTIONS(1466), + [aux_sym_else_if_clause_token1] = ACTIONS(1466), + [aux_sym_else_clause_token1] = ACTIONS(1466), + [aux_sym_match_expression_token1] = ACTIONS(1466), + [aux_sym_match_default_expression_token1] = ACTIONS(1466), + [aux_sym_switch_statement_token1] = ACTIONS(1466), + [aux_sym_switch_block_token1] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_AT] = ACTIONS(1464), + [aux_sym_clone_expression_token1] = ACTIONS(1466), + [aux_sym_print_intrinsic_token1] = ACTIONS(1466), + [aux_sym_object_creation_expression_token1] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [aux_sym__list_destructing_token1] = ACTIONS(1466), + [anon_sym_LBRACK] = ACTIONS(1464), + [anon_sym_self] = ACTIONS(1466), + [anon_sym_parent] = ACTIONS(1466), + [aux_sym__argument_name_token1] = ACTIONS(1466), + [aux_sym__argument_name_token2] = ACTIONS(1466), + [anon_sym_POUND_LBRACK] = ACTIONS(1464), + [aux_sym_encapsed_string_token1] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_LT_LT_LT] = ACTIONS(1464), + [anon_sym_BQUOTE] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1464), + [aux_sym_yield_expression_token1] = ACTIONS(1466), + [aux_sym_include_expression_token1] = ACTIONS(1466), + [aux_sym_include_once_expression_token1] = ACTIONS(1466), + [aux_sym_require_expression_token1] = ACTIONS(1466), + [aux_sym_require_once_expression_token1] = ACTIONS(1466), [sym_comment] = ACTIONS(5), }, [547] = { [sym_text_interpolation] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(1491), - [sym_name] = ACTIONS(1493), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1491), - [aux_sym_function_static_declaration_token1] = ACTIONS(1493), - [aux_sym_global_declaration_token1] = ACTIONS(1493), - [aux_sym_namespace_definition_token1] = ACTIONS(1493), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1493), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1493), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1493), - [anon_sym_BSLASH] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1491), - [aux_sym_trait_declaration_token1] = ACTIONS(1493), - [aux_sym_interface_declaration_token1] = ACTIONS(1493), - [aux_sym_enum_declaration_token1] = ACTIONS(1493), - [aux_sym_enum_case_token1] = ACTIONS(1493), - [aux_sym_class_declaration_token1] = ACTIONS(1493), - [aux_sym_final_modifier_token1] = ACTIONS(1493), - [aux_sym_abstract_modifier_token1] = ACTIONS(1493), - [aux_sym_readonly_modifier_token1] = ACTIONS(1493), - [aux_sym_visibility_modifier_token1] = ACTIONS(1493), - [aux_sym_visibility_modifier_token2] = ACTIONS(1493), - [aux_sym_visibility_modifier_token3] = ACTIONS(1493), - [aux_sym__arrow_function_header_token1] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1491), - [aux_sym_cast_type_token1] = ACTIONS(1493), - [aux_sym_echo_statement_token1] = ACTIONS(1493), - [aux_sym_exit_statement_token1] = ACTIONS(1493), - [anon_sym_unset] = ACTIONS(1493), - [aux_sym_declare_statement_token1] = ACTIONS(1493), - [aux_sym_declare_statement_token2] = ACTIONS(1493), - [sym_float] = ACTIONS(1493), - [aux_sym_try_statement_token1] = ACTIONS(1493), - [aux_sym_goto_statement_token1] = ACTIONS(1493), - [aux_sym_continue_statement_token1] = ACTIONS(1493), - [aux_sym_break_statement_token1] = ACTIONS(1493), - [sym_integer] = ACTIONS(1493), - [aux_sym_return_statement_token1] = ACTIONS(1493), - [aux_sym_throw_expression_token1] = ACTIONS(1493), - [aux_sym_while_statement_token1] = ACTIONS(1493), - [aux_sym_while_statement_token2] = ACTIONS(1493), - [aux_sym_do_statement_token1] = ACTIONS(1493), - [aux_sym_for_statement_token1] = ACTIONS(1493), - [aux_sym_for_statement_token2] = ACTIONS(1493), - [aux_sym_foreach_statement_token1] = ACTIONS(1493), - [aux_sym_foreach_statement_token2] = ACTIONS(1493), - [aux_sym_if_statement_token1] = ACTIONS(1493), - [aux_sym_if_statement_token2] = ACTIONS(1493), - [aux_sym_else_if_clause_token1] = ACTIONS(1493), - [aux_sym_else_clause_token1] = ACTIONS(1493), - [aux_sym_match_expression_token1] = ACTIONS(1493), - [aux_sym_match_default_expression_token1] = ACTIONS(1493), - [aux_sym_switch_statement_token1] = ACTIONS(1493), - [aux_sym_switch_block_token1] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_AT] = ACTIONS(1491), - [aux_sym_clone_expression_token1] = ACTIONS(1493), - [aux_sym_print_intrinsic_token1] = ACTIONS(1493), - [aux_sym_object_creation_expression_token1] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [aux_sym__list_destructing_token1] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_self] = ACTIONS(1493), - [anon_sym_parent] = ACTIONS(1493), - [aux_sym__argument_name_token1] = ACTIONS(1493), - [aux_sym__argument_name_token2] = ACTIONS(1493), - [anon_sym_POUND_LBRACK] = ACTIONS(1491), - [aux_sym_encapsed_string_token1] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1491), - [aux_sym_string_token1] = ACTIONS(1491), - [anon_sym_SQUOTE] = ACTIONS(1491), - [anon_sym_LT_LT_LT] = ACTIONS(1491), - [anon_sym_BQUOTE] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1491), - [aux_sym_yield_expression_token1] = ACTIONS(1493), - [aux_sym_include_expression_token1] = ACTIONS(1493), - [aux_sym_include_once_expression_token1] = ACTIONS(1493), - [aux_sym_require_expression_token1] = ACTIONS(1493), - [aux_sym_require_once_expression_token1] = ACTIONS(1493), + [ts_builtin_sym_end] = ACTIONS(1468), + [sym_name] = ACTIONS(1470), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1468), + [aux_sym_function_static_declaration_token1] = ACTIONS(1470), + [aux_sym_global_declaration_token1] = ACTIONS(1470), + [aux_sym_namespace_definition_token1] = ACTIONS(1470), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1470), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1470), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1470), + [anon_sym_BSLASH] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [aux_sym_trait_declaration_token1] = ACTIONS(1470), + [aux_sym_interface_declaration_token1] = ACTIONS(1470), + [aux_sym_enum_declaration_token1] = ACTIONS(1470), + [aux_sym_enum_case_token1] = ACTIONS(1470), + [aux_sym_class_declaration_token1] = ACTIONS(1470), + [aux_sym_final_modifier_token1] = ACTIONS(1470), + [aux_sym_abstract_modifier_token1] = ACTIONS(1470), + [aux_sym_readonly_modifier_token1] = ACTIONS(1470), + [sym_var_modifier] = ACTIONS(1470), + [aux_sym_visibility_modifier_token1] = ACTIONS(1470), + [aux_sym_visibility_modifier_token2] = ACTIONS(1470), + [aux_sym_visibility_modifier_token3] = ACTIONS(1470), + [aux_sym__arrow_function_header_token1] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [aux_sym_cast_type_token1] = ACTIONS(1470), + [aux_sym_echo_statement_token1] = ACTIONS(1470), + [aux_sym_exit_statement_token1] = ACTIONS(1470), + [anon_sym_unset] = ACTIONS(1470), + [aux_sym_declare_statement_token1] = ACTIONS(1470), + [aux_sym_declare_statement_token2] = ACTIONS(1470), + [sym_float] = ACTIONS(1470), + [aux_sym_try_statement_token1] = ACTIONS(1470), + [aux_sym_goto_statement_token1] = ACTIONS(1470), + [aux_sym_continue_statement_token1] = ACTIONS(1470), + [aux_sym_break_statement_token1] = ACTIONS(1470), + [sym_integer] = ACTIONS(1470), + [aux_sym_return_statement_token1] = ACTIONS(1470), + [aux_sym_throw_expression_token1] = ACTIONS(1470), + [aux_sym_while_statement_token1] = ACTIONS(1470), + [aux_sym_while_statement_token2] = ACTIONS(1470), + [aux_sym_do_statement_token1] = ACTIONS(1470), + [aux_sym_for_statement_token1] = ACTIONS(1470), + [aux_sym_for_statement_token2] = ACTIONS(1470), + [aux_sym_foreach_statement_token1] = ACTIONS(1470), + [aux_sym_foreach_statement_token2] = ACTIONS(1470), + [aux_sym_if_statement_token1] = ACTIONS(1470), + [aux_sym_if_statement_token2] = ACTIONS(1470), + [aux_sym_else_if_clause_token1] = ACTIONS(1470), + [aux_sym_else_clause_token1] = ACTIONS(1470), + [aux_sym_match_expression_token1] = ACTIONS(1470), + [aux_sym_match_default_expression_token1] = ACTIONS(1470), + [aux_sym_switch_statement_token1] = ACTIONS(1470), + [aux_sym_switch_block_token1] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(1468), + [aux_sym_clone_expression_token1] = ACTIONS(1470), + [aux_sym_print_intrinsic_token1] = ACTIONS(1470), + [aux_sym_object_creation_expression_token1] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [aux_sym__list_destructing_token1] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_self] = ACTIONS(1470), + [anon_sym_parent] = ACTIONS(1470), + [aux_sym__argument_name_token1] = ACTIONS(1470), + [aux_sym__argument_name_token2] = ACTIONS(1470), + [anon_sym_POUND_LBRACK] = ACTIONS(1468), + [aux_sym_encapsed_string_token1] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [aux_sym_string_token1] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_LT_LT_LT] = ACTIONS(1468), + [anon_sym_BQUOTE] = ACTIONS(1468), + [anon_sym_DOLLAR] = ACTIONS(1468), + [aux_sym_yield_expression_token1] = ACTIONS(1470), + [aux_sym_include_expression_token1] = ACTIONS(1470), + [aux_sym_include_once_expression_token1] = ACTIONS(1470), + [aux_sym_require_expression_token1] = ACTIONS(1470), + [aux_sym_require_once_expression_token1] = ACTIONS(1470), [sym_comment] = ACTIONS(5), }, [548] = { [sym_text_interpolation] = STATE(548), - [ts_builtin_sym_end] = ACTIONS(1495), - [sym_name] = ACTIONS(1497), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1495), - [aux_sym_function_static_declaration_token1] = ACTIONS(1497), - [aux_sym_global_declaration_token1] = ACTIONS(1497), - [aux_sym_namespace_definition_token1] = ACTIONS(1497), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1497), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1497), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1497), - [anon_sym_BSLASH] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1495), - [aux_sym_trait_declaration_token1] = ACTIONS(1497), - [aux_sym_interface_declaration_token1] = ACTIONS(1497), - [aux_sym_enum_declaration_token1] = ACTIONS(1497), - [aux_sym_enum_case_token1] = ACTIONS(1497), - [aux_sym_class_declaration_token1] = ACTIONS(1497), - [aux_sym_final_modifier_token1] = ACTIONS(1497), - [aux_sym_abstract_modifier_token1] = ACTIONS(1497), - [aux_sym_readonly_modifier_token1] = ACTIONS(1497), - [aux_sym_visibility_modifier_token1] = ACTIONS(1497), - [aux_sym_visibility_modifier_token2] = ACTIONS(1497), - [aux_sym_visibility_modifier_token3] = ACTIONS(1497), - [aux_sym__arrow_function_header_token1] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1495), - [aux_sym_cast_type_token1] = ACTIONS(1497), - [aux_sym_echo_statement_token1] = ACTIONS(1497), - [aux_sym_exit_statement_token1] = ACTIONS(1497), - [anon_sym_unset] = ACTIONS(1497), - [aux_sym_declare_statement_token1] = ACTIONS(1497), - [aux_sym_declare_statement_token2] = ACTIONS(1497), - [sym_float] = ACTIONS(1497), - [aux_sym_try_statement_token1] = ACTIONS(1497), - [aux_sym_goto_statement_token1] = ACTIONS(1497), - [aux_sym_continue_statement_token1] = ACTIONS(1497), - [aux_sym_break_statement_token1] = ACTIONS(1497), - [sym_integer] = ACTIONS(1497), - [aux_sym_return_statement_token1] = ACTIONS(1497), - [aux_sym_throw_expression_token1] = ACTIONS(1497), - [aux_sym_while_statement_token1] = ACTIONS(1497), - [aux_sym_while_statement_token2] = ACTIONS(1497), - [aux_sym_do_statement_token1] = ACTIONS(1497), - [aux_sym_for_statement_token1] = ACTIONS(1497), - [aux_sym_for_statement_token2] = ACTIONS(1497), - [aux_sym_foreach_statement_token1] = ACTIONS(1497), - [aux_sym_foreach_statement_token2] = ACTIONS(1497), - [aux_sym_if_statement_token1] = ACTIONS(1497), - [aux_sym_if_statement_token2] = ACTIONS(1497), - [aux_sym_else_if_clause_token1] = ACTIONS(1497), - [aux_sym_else_clause_token1] = ACTIONS(1497), - [aux_sym_match_expression_token1] = ACTIONS(1497), - [aux_sym_match_default_expression_token1] = ACTIONS(1497), - [aux_sym_switch_statement_token1] = ACTIONS(1497), - [aux_sym_switch_block_token1] = ACTIONS(1497), - [anon_sym_PLUS] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(1495), - [aux_sym_clone_expression_token1] = ACTIONS(1497), - [aux_sym_print_intrinsic_token1] = ACTIONS(1497), - [aux_sym_object_creation_expression_token1] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [aux_sym__list_destructing_token1] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_self] = ACTIONS(1497), - [anon_sym_parent] = ACTIONS(1497), - [aux_sym__argument_name_token1] = ACTIONS(1497), - [aux_sym__argument_name_token2] = ACTIONS(1497), - [anon_sym_POUND_LBRACK] = ACTIONS(1495), - [aux_sym_encapsed_string_token1] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [aux_sym_string_token1] = ACTIONS(1495), - [anon_sym_SQUOTE] = ACTIONS(1495), - [anon_sym_LT_LT_LT] = ACTIONS(1495), - [anon_sym_BQUOTE] = ACTIONS(1495), - [anon_sym_DOLLAR] = ACTIONS(1495), - [aux_sym_yield_expression_token1] = ACTIONS(1497), - [aux_sym_include_expression_token1] = ACTIONS(1497), - [aux_sym_include_once_expression_token1] = ACTIONS(1497), - [aux_sym_require_expression_token1] = ACTIONS(1497), - [aux_sym_require_once_expression_token1] = ACTIONS(1497), + [ts_builtin_sym_end] = ACTIONS(1472), + [sym_name] = ACTIONS(1474), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1472), + [aux_sym_function_static_declaration_token1] = ACTIONS(1474), + [aux_sym_global_declaration_token1] = ACTIONS(1474), + [aux_sym_namespace_definition_token1] = ACTIONS(1474), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1474), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1474), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1474), + [anon_sym_BSLASH] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [aux_sym_trait_declaration_token1] = ACTIONS(1474), + [aux_sym_interface_declaration_token1] = ACTIONS(1474), + [aux_sym_enum_declaration_token1] = ACTIONS(1474), + [aux_sym_enum_case_token1] = ACTIONS(1474), + [aux_sym_class_declaration_token1] = ACTIONS(1474), + [aux_sym_final_modifier_token1] = ACTIONS(1474), + [aux_sym_abstract_modifier_token1] = ACTIONS(1474), + [aux_sym_readonly_modifier_token1] = ACTIONS(1474), + [sym_var_modifier] = ACTIONS(1474), + [aux_sym_visibility_modifier_token1] = ACTIONS(1474), + [aux_sym_visibility_modifier_token2] = ACTIONS(1474), + [aux_sym_visibility_modifier_token3] = ACTIONS(1474), + [aux_sym__arrow_function_header_token1] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1472), + [aux_sym_cast_type_token1] = ACTIONS(1474), + [aux_sym_echo_statement_token1] = ACTIONS(1474), + [aux_sym_exit_statement_token1] = ACTIONS(1474), + [anon_sym_unset] = ACTIONS(1474), + [aux_sym_declare_statement_token1] = ACTIONS(1474), + [aux_sym_declare_statement_token2] = ACTIONS(1474), + [sym_float] = ACTIONS(1474), + [aux_sym_try_statement_token1] = ACTIONS(1474), + [aux_sym_goto_statement_token1] = ACTIONS(1474), + [aux_sym_continue_statement_token1] = ACTIONS(1474), + [aux_sym_break_statement_token1] = ACTIONS(1474), + [sym_integer] = ACTIONS(1474), + [aux_sym_return_statement_token1] = ACTIONS(1474), + [aux_sym_throw_expression_token1] = ACTIONS(1474), + [aux_sym_while_statement_token1] = ACTIONS(1474), + [aux_sym_while_statement_token2] = ACTIONS(1474), + [aux_sym_do_statement_token1] = ACTIONS(1474), + [aux_sym_for_statement_token1] = ACTIONS(1474), + [aux_sym_for_statement_token2] = ACTIONS(1474), + [aux_sym_foreach_statement_token1] = ACTIONS(1474), + [aux_sym_foreach_statement_token2] = ACTIONS(1474), + [aux_sym_if_statement_token1] = ACTIONS(1474), + [aux_sym_if_statement_token2] = ACTIONS(1474), + [aux_sym_else_if_clause_token1] = ACTIONS(1474), + [aux_sym_else_clause_token1] = ACTIONS(1474), + [aux_sym_match_expression_token1] = ACTIONS(1474), + [aux_sym_match_default_expression_token1] = ACTIONS(1474), + [aux_sym_switch_statement_token1] = ACTIONS(1474), + [aux_sym_switch_block_token1] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(1472), + [aux_sym_clone_expression_token1] = ACTIONS(1474), + [aux_sym_print_intrinsic_token1] = ACTIONS(1474), + [aux_sym_object_creation_expression_token1] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [aux_sym__list_destructing_token1] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_self] = ACTIONS(1474), + [anon_sym_parent] = ACTIONS(1474), + [aux_sym__argument_name_token1] = ACTIONS(1474), + [aux_sym__argument_name_token2] = ACTIONS(1474), + [anon_sym_POUND_LBRACK] = ACTIONS(1472), + [aux_sym_encapsed_string_token1] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [aux_sym_string_token1] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_LT_LT_LT] = ACTIONS(1472), + [anon_sym_BQUOTE] = ACTIONS(1472), + [anon_sym_DOLLAR] = ACTIONS(1472), + [aux_sym_yield_expression_token1] = ACTIONS(1474), + [aux_sym_include_expression_token1] = ACTIONS(1474), + [aux_sym_include_once_expression_token1] = ACTIONS(1474), + [aux_sym_require_expression_token1] = ACTIONS(1474), + [aux_sym_require_once_expression_token1] = ACTIONS(1474), [sym_comment] = ACTIONS(5), }, [549] = { [sym_text_interpolation] = STATE(549), - [ts_builtin_sym_end] = ACTIONS(1479), - [sym_name] = ACTIONS(1481), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1479), - [aux_sym_function_static_declaration_token1] = ACTIONS(1481), - [aux_sym_global_declaration_token1] = ACTIONS(1481), - [aux_sym_namespace_definition_token1] = ACTIONS(1481), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1481), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1481), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1481), - [anon_sym_BSLASH] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1479), - [aux_sym_trait_declaration_token1] = ACTIONS(1481), - [aux_sym_interface_declaration_token1] = ACTIONS(1481), - [aux_sym_enum_declaration_token1] = ACTIONS(1481), - [aux_sym_enum_case_token1] = ACTIONS(1481), - [aux_sym_class_declaration_token1] = ACTIONS(1481), - [aux_sym_final_modifier_token1] = ACTIONS(1481), - [aux_sym_abstract_modifier_token1] = ACTIONS(1481), - [aux_sym_readonly_modifier_token1] = ACTIONS(1481), - [aux_sym_visibility_modifier_token1] = ACTIONS(1481), - [aux_sym_visibility_modifier_token2] = ACTIONS(1481), - [aux_sym_visibility_modifier_token3] = ACTIONS(1481), - [aux_sym__arrow_function_header_token1] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_cast_type_token1] = ACTIONS(1481), - [aux_sym_echo_statement_token1] = ACTIONS(1481), - [aux_sym_exit_statement_token1] = ACTIONS(1481), - [anon_sym_unset] = ACTIONS(1481), - [aux_sym_declare_statement_token1] = ACTIONS(1481), - [aux_sym_declare_statement_token2] = ACTIONS(1481), - [sym_float] = ACTIONS(1481), - [aux_sym_try_statement_token1] = ACTIONS(1481), - [aux_sym_goto_statement_token1] = ACTIONS(1481), - [aux_sym_continue_statement_token1] = ACTIONS(1481), - [aux_sym_break_statement_token1] = ACTIONS(1481), - [sym_integer] = ACTIONS(1481), - [aux_sym_return_statement_token1] = ACTIONS(1481), - [aux_sym_throw_expression_token1] = ACTIONS(1481), - [aux_sym_while_statement_token1] = ACTIONS(1481), - [aux_sym_while_statement_token2] = ACTIONS(1481), - [aux_sym_do_statement_token1] = ACTIONS(1481), - [aux_sym_for_statement_token1] = ACTIONS(1481), - [aux_sym_for_statement_token2] = ACTIONS(1481), - [aux_sym_foreach_statement_token1] = ACTIONS(1481), - [aux_sym_foreach_statement_token2] = ACTIONS(1481), - [aux_sym_if_statement_token1] = ACTIONS(1481), - [aux_sym_if_statement_token2] = ACTIONS(1481), - [aux_sym_else_if_clause_token1] = ACTIONS(1481), - [aux_sym_else_clause_token1] = ACTIONS(1481), - [aux_sym_match_expression_token1] = ACTIONS(1481), - [aux_sym_match_default_expression_token1] = ACTIONS(1481), - [aux_sym_switch_statement_token1] = ACTIONS(1481), - [aux_sym_switch_block_token1] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1479), - [anon_sym_AT] = ACTIONS(1479), - [aux_sym_clone_expression_token1] = ACTIONS(1481), - [aux_sym_print_intrinsic_token1] = ACTIONS(1481), - [aux_sym_object_creation_expression_token1] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1479), - [anon_sym_PLUS_PLUS] = ACTIONS(1479), - [aux_sym__list_destructing_token1] = ACTIONS(1481), - [anon_sym_LBRACK] = ACTIONS(1479), - [anon_sym_self] = ACTIONS(1481), - [anon_sym_parent] = ACTIONS(1481), - [aux_sym__argument_name_token1] = ACTIONS(1481), - [aux_sym__argument_name_token2] = ACTIONS(1481), - [anon_sym_POUND_LBRACK] = ACTIONS(1479), - [aux_sym_encapsed_string_token1] = ACTIONS(1479), - [anon_sym_DQUOTE] = ACTIONS(1479), - [aux_sym_string_token1] = ACTIONS(1479), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_LT_LT_LT] = ACTIONS(1479), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [aux_sym_yield_expression_token1] = ACTIONS(1481), - [aux_sym_include_expression_token1] = ACTIONS(1481), - [aux_sym_include_once_expression_token1] = ACTIONS(1481), - [aux_sym_require_expression_token1] = ACTIONS(1481), - [aux_sym_require_once_expression_token1] = ACTIONS(1481), + [ts_builtin_sym_end] = ACTIONS(1064), + [sym_name] = ACTIONS(1066), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1064), + [aux_sym_function_static_declaration_token1] = ACTIONS(1066), + [aux_sym_global_declaration_token1] = ACTIONS(1066), + [aux_sym_namespace_definition_token1] = ACTIONS(1066), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1066), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1066), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1066), + [anon_sym_BSLASH] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1064), + [aux_sym_trait_declaration_token1] = ACTIONS(1066), + [aux_sym_interface_declaration_token1] = ACTIONS(1066), + [aux_sym_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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1064), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1064), + [anon_sym_PLUS_PLUS] = ACTIONS(1064), + [aux_sym__list_destructing_token1] = ACTIONS(1066), + [anon_sym_LBRACK] = ACTIONS(1064), + [anon_sym_self] = ACTIONS(1066), + [anon_sym_parent] = ACTIONS(1066), + [aux_sym__argument_name_token1] = ACTIONS(1066), + [aux_sym__argument_name_token2] = ACTIONS(1066), + [anon_sym_POUND_LBRACK] = ACTIONS(1064), + [aux_sym_encapsed_string_token1] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [aux_sym_string_token1] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1064), + [anon_sym_LT_LT_LT] = ACTIONS(1064), + [anon_sym_BQUOTE] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1064), + [aux_sym_yield_expression_token1] = ACTIONS(1066), + [aux_sym_include_expression_token1] = ACTIONS(1066), + [aux_sym_include_once_expression_token1] = ACTIONS(1066), + [aux_sym_require_expression_token1] = ACTIONS(1066), + [aux_sym_require_once_expression_token1] = ACTIONS(1066), [sym_comment] = ACTIONS(5), }, [550] = { [sym_text_interpolation] = STATE(550), - [ts_builtin_sym_end] = ACTIONS(1499), - [sym_name] = ACTIONS(1501), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1499), - [aux_sym_function_static_declaration_token1] = ACTIONS(1501), - [aux_sym_global_declaration_token1] = ACTIONS(1501), - [aux_sym_namespace_definition_token1] = ACTIONS(1501), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1501), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1501), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1501), - [anon_sym_BSLASH] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [aux_sym_trait_declaration_token1] = ACTIONS(1501), - [aux_sym_interface_declaration_token1] = ACTIONS(1501), - [aux_sym_enum_declaration_token1] = ACTIONS(1501), - [aux_sym_enum_case_token1] = ACTIONS(1501), - [aux_sym_class_declaration_token1] = ACTIONS(1501), - [aux_sym_final_modifier_token1] = ACTIONS(1501), - [aux_sym_abstract_modifier_token1] = ACTIONS(1501), - [aux_sym_readonly_modifier_token1] = ACTIONS(1501), - [aux_sym_visibility_modifier_token1] = ACTIONS(1501), - [aux_sym_visibility_modifier_token2] = ACTIONS(1501), - [aux_sym_visibility_modifier_token3] = ACTIONS(1501), - [aux_sym__arrow_function_header_token1] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1499), - [aux_sym_cast_type_token1] = ACTIONS(1501), - [aux_sym_echo_statement_token1] = ACTIONS(1501), - [aux_sym_exit_statement_token1] = ACTIONS(1501), - [anon_sym_unset] = ACTIONS(1501), - [aux_sym_declare_statement_token1] = ACTIONS(1501), - [aux_sym_declare_statement_token2] = ACTIONS(1501), - [sym_float] = ACTIONS(1501), - [aux_sym_try_statement_token1] = ACTIONS(1501), - [aux_sym_goto_statement_token1] = ACTIONS(1501), - [aux_sym_continue_statement_token1] = ACTIONS(1501), - [aux_sym_break_statement_token1] = ACTIONS(1501), - [sym_integer] = ACTIONS(1501), - [aux_sym_return_statement_token1] = ACTIONS(1501), - [aux_sym_throw_expression_token1] = ACTIONS(1501), - [aux_sym_while_statement_token1] = ACTIONS(1501), - [aux_sym_while_statement_token2] = ACTIONS(1501), - [aux_sym_do_statement_token1] = ACTIONS(1501), - [aux_sym_for_statement_token1] = ACTIONS(1501), - [aux_sym_for_statement_token2] = ACTIONS(1501), - [aux_sym_foreach_statement_token1] = ACTIONS(1501), - [aux_sym_foreach_statement_token2] = ACTIONS(1501), - [aux_sym_if_statement_token1] = ACTIONS(1501), - [aux_sym_if_statement_token2] = ACTIONS(1501), - [aux_sym_else_if_clause_token1] = ACTIONS(1501), - [aux_sym_else_clause_token1] = ACTIONS(1501), - [aux_sym_match_expression_token1] = ACTIONS(1501), - [aux_sym_match_default_expression_token1] = ACTIONS(1501), - [aux_sym_switch_statement_token1] = ACTIONS(1501), - [aux_sym_switch_block_token1] = ACTIONS(1501), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_AT] = ACTIONS(1499), - [aux_sym_clone_expression_token1] = ACTIONS(1501), - [aux_sym_print_intrinsic_token1] = ACTIONS(1501), - [aux_sym_object_creation_expression_token1] = ACTIONS(1501), - [anon_sym_DASH_DASH] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1499), - [aux_sym__list_destructing_token1] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_self] = ACTIONS(1501), - [anon_sym_parent] = ACTIONS(1501), - [aux_sym__argument_name_token1] = ACTIONS(1501), - [aux_sym__argument_name_token2] = ACTIONS(1501), - [anon_sym_POUND_LBRACK] = ACTIONS(1499), - [aux_sym_encapsed_string_token1] = ACTIONS(1499), - [anon_sym_DQUOTE] = ACTIONS(1499), - [aux_sym_string_token1] = ACTIONS(1499), - [anon_sym_SQUOTE] = ACTIONS(1499), - [anon_sym_LT_LT_LT] = ACTIONS(1499), - [anon_sym_BQUOTE] = ACTIONS(1499), - [anon_sym_DOLLAR] = ACTIONS(1499), - [aux_sym_yield_expression_token1] = ACTIONS(1501), - [aux_sym_include_expression_token1] = ACTIONS(1501), - [aux_sym_include_once_expression_token1] = ACTIONS(1501), - [aux_sym_require_expression_token1] = ACTIONS(1501), - [aux_sym_require_once_expression_token1] = ACTIONS(1501), + [ts_builtin_sym_end] = ACTIONS(1476), + [sym_name] = ACTIONS(1478), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1476), + [aux_sym_function_static_declaration_token1] = ACTIONS(1478), + [aux_sym_global_declaration_token1] = ACTIONS(1478), + [aux_sym_namespace_definition_token1] = ACTIONS(1478), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1478), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1478), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1478), + [anon_sym_BSLASH] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [aux_sym_trait_declaration_token1] = ACTIONS(1478), + [aux_sym_interface_declaration_token1] = ACTIONS(1478), + [aux_sym_enum_declaration_token1] = ACTIONS(1478), + [aux_sym_enum_case_token1] = ACTIONS(1478), + [aux_sym_class_declaration_token1] = ACTIONS(1478), + [aux_sym_final_modifier_token1] = ACTIONS(1478), + [aux_sym_abstract_modifier_token1] = ACTIONS(1478), + [aux_sym_readonly_modifier_token1] = ACTIONS(1478), + [sym_var_modifier] = ACTIONS(1478), + [aux_sym_visibility_modifier_token1] = ACTIONS(1478), + [aux_sym_visibility_modifier_token2] = ACTIONS(1478), + [aux_sym_visibility_modifier_token3] = ACTIONS(1478), + [aux_sym__arrow_function_header_token1] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1476), + [aux_sym_cast_type_token1] = ACTIONS(1478), + [aux_sym_echo_statement_token1] = ACTIONS(1478), + [aux_sym_exit_statement_token1] = ACTIONS(1478), + [anon_sym_unset] = ACTIONS(1478), + [aux_sym_declare_statement_token1] = ACTIONS(1478), + [aux_sym_declare_statement_token2] = ACTIONS(1478), + [sym_float] = ACTIONS(1478), + [aux_sym_try_statement_token1] = ACTIONS(1478), + [aux_sym_goto_statement_token1] = ACTIONS(1478), + [aux_sym_continue_statement_token1] = ACTIONS(1478), + [aux_sym_break_statement_token1] = ACTIONS(1478), + [sym_integer] = ACTIONS(1478), + [aux_sym_return_statement_token1] = ACTIONS(1478), + [aux_sym_throw_expression_token1] = ACTIONS(1478), + [aux_sym_while_statement_token1] = ACTIONS(1478), + [aux_sym_while_statement_token2] = ACTIONS(1478), + [aux_sym_do_statement_token1] = ACTIONS(1478), + [aux_sym_for_statement_token1] = ACTIONS(1478), + [aux_sym_for_statement_token2] = ACTIONS(1478), + [aux_sym_foreach_statement_token1] = ACTIONS(1478), + [aux_sym_foreach_statement_token2] = ACTIONS(1478), + [aux_sym_if_statement_token1] = ACTIONS(1478), + [aux_sym_if_statement_token2] = ACTIONS(1478), + [aux_sym_else_if_clause_token1] = ACTIONS(1478), + [aux_sym_else_clause_token1] = ACTIONS(1478), + [aux_sym_match_expression_token1] = ACTIONS(1478), + [aux_sym_match_default_expression_token1] = ACTIONS(1478), + [aux_sym_switch_statement_token1] = ACTIONS(1478), + [aux_sym_switch_block_token1] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1476), + [aux_sym_clone_expression_token1] = ACTIONS(1478), + [aux_sym_print_intrinsic_token1] = ACTIONS(1478), + [aux_sym_object_creation_expression_token1] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [aux_sym__list_destructing_token1] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_self] = ACTIONS(1478), + [anon_sym_parent] = ACTIONS(1478), + [aux_sym__argument_name_token1] = ACTIONS(1478), + [aux_sym__argument_name_token2] = ACTIONS(1478), + [anon_sym_POUND_LBRACK] = ACTIONS(1476), + [aux_sym_encapsed_string_token1] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [aux_sym_string_token1] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_LT_LT_LT] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [aux_sym_yield_expression_token1] = ACTIONS(1478), + [aux_sym_include_expression_token1] = ACTIONS(1478), + [aux_sym_include_once_expression_token1] = ACTIONS(1478), + [aux_sym_require_expression_token1] = ACTIONS(1478), + [aux_sym_require_once_expression_token1] = ACTIONS(1478), [sym_comment] = ACTIONS(5), }, [551] = { [sym_text_interpolation] = STATE(551), - [ts_builtin_sym_end] = ACTIONS(1503), - [sym_name] = ACTIONS(1505), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1503), - [aux_sym_function_static_declaration_token1] = ACTIONS(1505), - [aux_sym_global_declaration_token1] = ACTIONS(1505), - [aux_sym_namespace_definition_token1] = ACTIONS(1505), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1505), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1505), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1505), - [anon_sym_BSLASH] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1503), - [aux_sym_trait_declaration_token1] = ACTIONS(1505), - [aux_sym_interface_declaration_token1] = ACTIONS(1505), - [aux_sym_enum_declaration_token1] = ACTIONS(1505), - [aux_sym_enum_case_token1] = ACTIONS(1505), - [aux_sym_class_declaration_token1] = ACTIONS(1505), - [aux_sym_final_modifier_token1] = ACTIONS(1505), - [aux_sym_abstract_modifier_token1] = ACTIONS(1505), - [aux_sym_readonly_modifier_token1] = ACTIONS(1505), - [aux_sym_visibility_modifier_token1] = ACTIONS(1505), - [aux_sym_visibility_modifier_token2] = ACTIONS(1505), - [aux_sym_visibility_modifier_token3] = ACTIONS(1505), - [aux_sym__arrow_function_header_token1] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1503), - [aux_sym_cast_type_token1] = ACTIONS(1505), - [aux_sym_echo_statement_token1] = ACTIONS(1505), - [aux_sym_exit_statement_token1] = ACTIONS(1505), - [anon_sym_unset] = ACTIONS(1505), - [aux_sym_declare_statement_token1] = ACTIONS(1505), - [aux_sym_declare_statement_token2] = ACTIONS(1505), - [sym_float] = ACTIONS(1505), - [aux_sym_try_statement_token1] = ACTIONS(1505), - [aux_sym_goto_statement_token1] = ACTIONS(1505), - [aux_sym_continue_statement_token1] = ACTIONS(1505), - [aux_sym_break_statement_token1] = ACTIONS(1505), - [sym_integer] = ACTIONS(1505), - [aux_sym_return_statement_token1] = ACTIONS(1505), - [aux_sym_throw_expression_token1] = ACTIONS(1505), - [aux_sym_while_statement_token1] = ACTIONS(1505), - [aux_sym_while_statement_token2] = ACTIONS(1505), - [aux_sym_do_statement_token1] = ACTIONS(1505), - [aux_sym_for_statement_token1] = ACTIONS(1505), - [aux_sym_for_statement_token2] = ACTIONS(1505), - [aux_sym_foreach_statement_token1] = ACTIONS(1505), - [aux_sym_foreach_statement_token2] = ACTIONS(1505), - [aux_sym_if_statement_token1] = ACTIONS(1505), - [aux_sym_if_statement_token2] = ACTIONS(1505), - [aux_sym_else_if_clause_token1] = ACTIONS(1505), - [aux_sym_else_clause_token1] = ACTIONS(1505), - [aux_sym_match_expression_token1] = ACTIONS(1505), - [aux_sym_match_default_expression_token1] = ACTIONS(1505), - [aux_sym_switch_statement_token1] = ACTIONS(1505), - [aux_sym_switch_block_token1] = ACTIONS(1505), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(1503), - [aux_sym_clone_expression_token1] = ACTIONS(1505), - [aux_sym_print_intrinsic_token1] = ACTIONS(1505), - [aux_sym_object_creation_expression_token1] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [aux_sym__list_destructing_token1] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_self] = ACTIONS(1505), - [anon_sym_parent] = ACTIONS(1505), - [aux_sym__argument_name_token1] = ACTIONS(1505), - [aux_sym__argument_name_token2] = ACTIONS(1505), - [anon_sym_POUND_LBRACK] = ACTIONS(1503), - [aux_sym_encapsed_string_token1] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1503), - [aux_sym_string_token1] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1503), - [anon_sym_LT_LT_LT] = ACTIONS(1503), - [anon_sym_BQUOTE] = ACTIONS(1503), - [anon_sym_DOLLAR] = ACTIONS(1503), - [aux_sym_yield_expression_token1] = ACTIONS(1505), - [aux_sym_include_expression_token1] = ACTIONS(1505), - [aux_sym_include_once_expression_token1] = ACTIONS(1505), - [aux_sym_require_expression_token1] = ACTIONS(1505), - [aux_sym_require_once_expression_token1] = ACTIONS(1505), + [ts_builtin_sym_end] = ACTIONS(1480), + [sym_name] = ACTIONS(1482), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1480), + [aux_sym_function_static_declaration_token1] = ACTIONS(1482), + [aux_sym_global_declaration_token1] = ACTIONS(1482), + [aux_sym_namespace_definition_token1] = ACTIONS(1482), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1482), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1482), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1482), + [anon_sym_BSLASH] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [aux_sym_trait_declaration_token1] = ACTIONS(1482), + [aux_sym_interface_declaration_token1] = ACTIONS(1482), + [aux_sym_enum_declaration_token1] = ACTIONS(1482), + [aux_sym_enum_case_token1] = ACTIONS(1482), + [aux_sym_class_declaration_token1] = ACTIONS(1482), + [aux_sym_final_modifier_token1] = ACTIONS(1482), + [aux_sym_abstract_modifier_token1] = ACTIONS(1482), + [aux_sym_readonly_modifier_token1] = ACTIONS(1482), + [sym_var_modifier] = ACTIONS(1482), + [aux_sym_visibility_modifier_token1] = ACTIONS(1482), + [aux_sym_visibility_modifier_token2] = ACTIONS(1482), + [aux_sym_visibility_modifier_token3] = ACTIONS(1482), + [aux_sym__arrow_function_header_token1] = ACTIONS(1482), + [anon_sym_LPAREN] = ACTIONS(1480), + [aux_sym_cast_type_token1] = ACTIONS(1482), + [aux_sym_echo_statement_token1] = ACTIONS(1482), + [aux_sym_exit_statement_token1] = ACTIONS(1482), + [anon_sym_unset] = ACTIONS(1482), + [aux_sym_declare_statement_token1] = ACTIONS(1482), + [aux_sym_declare_statement_token2] = ACTIONS(1482), + [sym_float] = ACTIONS(1482), + [aux_sym_try_statement_token1] = ACTIONS(1482), + [aux_sym_goto_statement_token1] = ACTIONS(1482), + [aux_sym_continue_statement_token1] = ACTIONS(1482), + [aux_sym_break_statement_token1] = ACTIONS(1482), + [sym_integer] = ACTIONS(1482), + [aux_sym_return_statement_token1] = ACTIONS(1482), + [aux_sym_throw_expression_token1] = ACTIONS(1482), + [aux_sym_while_statement_token1] = ACTIONS(1482), + [aux_sym_while_statement_token2] = ACTIONS(1482), + [aux_sym_do_statement_token1] = ACTIONS(1482), + [aux_sym_for_statement_token1] = ACTIONS(1482), + [aux_sym_for_statement_token2] = ACTIONS(1482), + [aux_sym_foreach_statement_token1] = ACTIONS(1482), + [aux_sym_foreach_statement_token2] = ACTIONS(1482), + [aux_sym_if_statement_token1] = ACTIONS(1482), + [aux_sym_if_statement_token2] = ACTIONS(1482), + [aux_sym_else_if_clause_token1] = ACTIONS(1482), + [aux_sym_else_clause_token1] = ACTIONS(1482), + [aux_sym_match_expression_token1] = ACTIONS(1482), + [aux_sym_match_default_expression_token1] = ACTIONS(1482), + [aux_sym_switch_statement_token1] = ACTIONS(1482), + [aux_sym_switch_block_token1] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(1480), + [aux_sym_clone_expression_token1] = ACTIONS(1482), + [aux_sym_print_intrinsic_token1] = ACTIONS(1482), + [aux_sym_object_creation_expression_token1] = ACTIONS(1482), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [aux_sym__list_destructing_token1] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_self] = ACTIONS(1482), + [anon_sym_parent] = ACTIONS(1482), + [aux_sym__argument_name_token1] = ACTIONS(1482), + [aux_sym__argument_name_token2] = ACTIONS(1482), + [anon_sym_POUND_LBRACK] = ACTIONS(1480), + [aux_sym_encapsed_string_token1] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [aux_sym_string_token1] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_LT_LT_LT] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [aux_sym_yield_expression_token1] = ACTIONS(1482), + [aux_sym_include_expression_token1] = ACTIONS(1482), + [aux_sym_include_once_expression_token1] = ACTIONS(1482), + [aux_sym_require_expression_token1] = ACTIONS(1482), + [aux_sym_require_once_expression_token1] = ACTIONS(1482), [sym_comment] = ACTIONS(5), }, [552] = { [sym_text_interpolation] = STATE(552), - [ts_builtin_sym_end] = ACTIONS(1507), - [sym_name] = ACTIONS(1509), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1507), - [aux_sym_function_static_declaration_token1] = ACTIONS(1509), - [aux_sym_global_declaration_token1] = ACTIONS(1509), - [aux_sym_namespace_definition_token1] = ACTIONS(1509), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1509), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1509), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1509), - [anon_sym_BSLASH] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [aux_sym_trait_declaration_token1] = ACTIONS(1509), - [aux_sym_interface_declaration_token1] = ACTIONS(1509), - [aux_sym_enum_declaration_token1] = ACTIONS(1509), - [aux_sym_enum_case_token1] = ACTIONS(1509), - [aux_sym_class_declaration_token1] = ACTIONS(1509), - [aux_sym_final_modifier_token1] = ACTIONS(1509), - [aux_sym_abstract_modifier_token1] = ACTIONS(1509), - [aux_sym_readonly_modifier_token1] = ACTIONS(1509), - [aux_sym_visibility_modifier_token1] = ACTIONS(1509), - [aux_sym_visibility_modifier_token2] = ACTIONS(1509), - [aux_sym_visibility_modifier_token3] = ACTIONS(1509), - [aux_sym__arrow_function_header_token1] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(1507), - [aux_sym_cast_type_token1] = ACTIONS(1509), - [aux_sym_echo_statement_token1] = ACTIONS(1509), - [aux_sym_exit_statement_token1] = ACTIONS(1509), - [anon_sym_unset] = ACTIONS(1509), - [aux_sym_declare_statement_token1] = ACTIONS(1509), - [aux_sym_declare_statement_token2] = ACTIONS(1509), - [sym_float] = ACTIONS(1509), - [aux_sym_try_statement_token1] = ACTIONS(1509), - [aux_sym_goto_statement_token1] = ACTIONS(1509), - [aux_sym_continue_statement_token1] = ACTIONS(1509), - [aux_sym_break_statement_token1] = ACTIONS(1509), - [sym_integer] = ACTIONS(1509), - [aux_sym_return_statement_token1] = ACTIONS(1509), - [aux_sym_throw_expression_token1] = ACTIONS(1509), - [aux_sym_while_statement_token1] = ACTIONS(1509), - [aux_sym_while_statement_token2] = ACTIONS(1509), - [aux_sym_do_statement_token1] = ACTIONS(1509), - [aux_sym_for_statement_token1] = ACTIONS(1509), - [aux_sym_for_statement_token2] = ACTIONS(1509), - [aux_sym_foreach_statement_token1] = ACTIONS(1509), - [aux_sym_foreach_statement_token2] = ACTIONS(1509), - [aux_sym_if_statement_token1] = ACTIONS(1509), - [aux_sym_if_statement_token2] = ACTIONS(1509), - [aux_sym_else_if_clause_token1] = ACTIONS(1509), - [aux_sym_else_clause_token1] = ACTIONS(1509), - [aux_sym_match_expression_token1] = ACTIONS(1509), - [aux_sym_match_default_expression_token1] = ACTIONS(1509), - [aux_sym_switch_statement_token1] = ACTIONS(1509), - [aux_sym_switch_block_token1] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_AT] = ACTIONS(1507), - [aux_sym_clone_expression_token1] = ACTIONS(1509), - [aux_sym_print_intrinsic_token1] = ACTIONS(1509), - [aux_sym_object_creation_expression_token1] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [aux_sym__list_destructing_token1] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_self] = ACTIONS(1509), - [anon_sym_parent] = ACTIONS(1509), - [aux_sym__argument_name_token1] = ACTIONS(1509), - [aux_sym__argument_name_token2] = ACTIONS(1509), - [anon_sym_POUND_LBRACK] = ACTIONS(1507), - [aux_sym_encapsed_string_token1] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1507), - [aux_sym_string_token1] = ACTIONS(1507), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_LT_LT_LT] = ACTIONS(1507), - [anon_sym_BQUOTE] = ACTIONS(1507), - [anon_sym_DOLLAR] = ACTIONS(1507), - [aux_sym_yield_expression_token1] = ACTIONS(1509), - [aux_sym_include_expression_token1] = ACTIONS(1509), - [aux_sym_include_once_expression_token1] = ACTIONS(1509), - [aux_sym_require_expression_token1] = ACTIONS(1509), - [aux_sym_require_once_expression_token1] = ACTIONS(1509), + [ts_builtin_sym_end] = ACTIONS(1484), + [sym_name] = ACTIONS(1486), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1484), + [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(1484), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [aux_sym_trait_declaration_token1] = ACTIONS(1486), + [aux_sym_interface_declaration_token1] = ACTIONS(1486), + [aux_sym_enum_declaration_token1] = ACTIONS(1486), + [aux_sym_enum_case_token1] = ACTIONS(1486), + [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), + [sym_var_modifier] = 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(1484), + [aux_sym_cast_type_token1] = ACTIONS(1486), + [aux_sym_echo_statement_token1] = ACTIONS(1486), + [aux_sym_exit_statement_token1] = ACTIONS(1486), + [anon_sym_unset] = ACTIONS(1486), + [aux_sym_declare_statement_token1] = ACTIONS(1486), + [aux_sym_declare_statement_token2] = 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_while_statement_token2] = ACTIONS(1486), + [aux_sym_do_statement_token1] = ACTIONS(1486), + [aux_sym_for_statement_token1] = ACTIONS(1486), + [aux_sym_for_statement_token2] = ACTIONS(1486), + [aux_sym_foreach_statement_token1] = ACTIONS(1486), + [aux_sym_foreach_statement_token2] = ACTIONS(1486), + [aux_sym_if_statement_token1] = ACTIONS(1486), + [aux_sym_if_statement_token2] = ACTIONS(1486), + [aux_sym_else_if_clause_token1] = ACTIONS(1486), + [aux_sym_else_clause_token1] = ACTIONS(1486), + [aux_sym_match_expression_token1] = ACTIONS(1486), + [aux_sym_match_default_expression_token1] = ACTIONS(1486), + [aux_sym_switch_statement_token1] = ACTIONS(1486), + [aux_sym_switch_block_token1] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(1484), + [aux_sym_clone_expression_token1] = ACTIONS(1486), + [aux_sym_print_intrinsic_token1] = ACTIONS(1486), + [aux_sym_object_creation_expression_token1] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1484), + [anon_sym_PLUS_PLUS] = ACTIONS(1484), + [aux_sym__list_destructing_token1] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1484), + [anon_sym_self] = ACTIONS(1486), + [anon_sym_parent] = ACTIONS(1486), + [aux_sym__argument_name_token1] = ACTIONS(1486), + [aux_sym__argument_name_token2] = ACTIONS(1486), + [anon_sym_POUND_LBRACK] = ACTIONS(1484), + [aux_sym_encapsed_string_token1] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [aux_sym_string_token1] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_LT_LT_LT] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [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(5), }, [553] = { [sym_text_interpolation] = STATE(553), - [ts_builtin_sym_end] = ACTIONS(1511), - [sym_name] = ACTIONS(1513), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1511), - [aux_sym_function_static_declaration_token1] = ACTIONS(1513), - [aux_sym_global_declaration_token1] = ACTIONS(1513), - [aux_sym_namespace_definition_token1] = ACTIONS(1513), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1513), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1513), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1513), - [anon_sym_BSLASH] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_RBRACE] = ACTIONS(1511), - [aux_sym_trait_declaration_token1] = ACTIONS(1513), - [aux_sym_interface_declaration_token1] = ACTIONS(1513), - [aux_sym_enum_declaration_token1] = ACTIONS(1513), - [aux_sym_enum_case_token1] = ACTIONS(1513), - [aux_sym_class_declaration_token1] = ACTIONS(1513), - [aux_sym_final_modifier_token1] = ACTIONS(1513), - [aux_sym_abstract_modifier_token1] = ACTIONS(1513), - [aux_sym_readonly_modifier_token1] = ACTIONS(1513), - [aux_sym_visibility_modifier_token1] = ACTIONS(1513), - [aux_sym_visibility_modifier_token2] = ACTIONS(1513), - [aux_sym_visibility_modifier_token3] = ACTIONS(1513), - [aux_sym__arrow_function_header_token1] = ACTIONS(1513), - [anon_sym_LPAREN] = ACTIONS(1511), - [aux_sym_cast_type_token1] = ACTIONS(1513), - [aux_sym_echo_statement_token1] = ACTIONS(1513), - [aux_sym_exit_statement_token1] = ACTIONS(1513), - [anon_sym_unset] = ACTIONS(1513), - [aux_sym_declare_statement_token1] = ACTIONS(1513), - [aux_sym_declare_statement_token2] = ACTIONS(1513), - [sym_float] = ACTIONS(1513), - [aux_sym_try_statement_token1] = ACTIONS(1513), - [aux_sym_goto_statement_token1] = ACTIONS(1513), - [aux_sym_continue_statement_token1] = ACTIONS(1513), - [aux_sym_break_statement_token1] = ACTIONS(1513), - [sym_integer] = ACTIONS(1513), - [aux_sym_return_statement_token1] = ACTIONS(1513), - [aux_sym_throw_expression_token1] = ACTIONS(1513), - [aux_sym_while_statement_token1] = ACTIONS(1513), - [aux_sym_while_statement_token2] = ACTIONS(1513), - [aux_sym_do_statement_token1] = ACTIONS(1513), - [aux_sym_for_statement_token1] = ACTIONS(1513), - [aux_sym_for_statement_token2] = ACTIONS(1513), - [aux_sym_foreach_statement_token1] = ACTIONS(1513), - [aux_sym_foreach_statement_token2] = ACTIONS(1513), - [aux_sym_if_statement_token1] = ACTIONS(1513), - [aux_sym_if_statement_token2] = ACTIONS(1513), - [aux_sym_else_if_clause_token1] = ACTIONS(1513), - [aux_sym_else_clause_token1] = ACTIONS(1513), - [aux_sym_match_expression_token1] = ACTIONS(1513), - [aux_sym_match_default_expression_token1] = ACTIONS(1513), - [aux_sym_switch_statement_token1] = ACTIONS(1513), - [aux_sym_switch_block_token1] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1511), - [aux_sym_clone_expression_token1] = ACTIONS(1513), - [aux_sym_print_intrinsic_token1] = ACTIONS(1513), - [aux_sym_object_creation_expression_token1] = ACTIONS(1513), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [aux_sym__list_destructing_token1] = ACTIONS(1513), - [anon_sym_LBRACK] = ACTIONS(1511), - [anon_sym_self] = ACTIONS(1513), - [anon_sym_parent] = ACTIONS(1513), - [aux_sym__argument_name_token1] = ACTIONS(1513), - [aux_sym__argument_name_token2] = ACTIONS(1513), - [anon_sym_POUND_LBRACK] = ACTIONS(1511), - [aux_sym_encapsed_string_token1] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(1511), - [aux_sym_string_token1] = ACTIONS(1511), - [anon_sym_SQUOTE] = ACTIONS(1511), - [anon_sym_LT_LT_LT] = ACTIONS(1511), - [anon_sym_BQUOTE] = ACTIONS(1511), - [anon_sym_DOLLAR] = ACTIONS(1511), - [aux_sym_yield_expression_token1] = ACTIONS(1513), - [aux_sym_include_expression_token1] = ACTIONS(1513), - [aux_sym_include_once_expression_token1] = ACTIONS(1513), - [aux_sym_require_expression_token1] = ACTIONS(1513), - [aux_sym_require_once_expression_token1] = ACTIONS(1513), + [ts_builtin_sym_end] = ACTIONS(1488), + [sym_name] = ACTIONS(1490), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1488), + [aux_sym_function_static_declaration_token1] = ACTIONS(1490), + [aux_sym_global_declaration_token1] = ACTIONS(1490), + [aux_sym_namespace_definition_token1] = ACTIONS(1490), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1490), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1490), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1490), + [anon_sym_BSLASH] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1488), + [aux_sym_trait_declaration_token1] = ACTIONS(1490), + [aux_sym_interface_declaration_token1] = ACTIONS(1490), + [aux_sym_enum_declaration_token1] = ACTIONS(1490), + [aux_sym_enum_case_token1] = ACTIONS(1490), + [aux_sym_class_declaration_token1] = ACTIONS(1490), + [aux_sym_final_modifier_token1] = ACTIONS(1490), + [aux_sym_abstract_modifier_token1] = ACTIONS(1490), + [aux_sym_readonly_modifier_token1] = ACTIONS(1490), + [sym_var_modifier] = ACTIONS(1490), + [aux_sym_visibility_modifier_token1] = ACTIONS(1490), + [aux_sym_visibility_modifier_token2] = ACTIONS(1490), + [aux_sym_visibility_modifier_token3] = ACTIONS(1490), + [aux_sym__arrow_function_header_token1] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1488), + [aux_sym_cast_type_token1] = ACTIONS(1490), + [aux_sym_echo_statement_token1] = ACTIONS(1490), + [aux_sym_exit_statement_token1] = ACTIONS(1490), + [anon_sym_unset] = ACTIONS(1490), + [aux_sym_declare_statement_token1] = ACTIONS(1490), + [aux_sym_declare_statement_token2] = ACTIONS(1490), + [sym_float] = ACTIONS(1490), + [aux_sym_try_statement_token1] = ACTIONS(1490), + [aux_sym_goto_statement_token1] = ACTIONS(1490), + [aux_sym_continue_statement_token1] = ACTIONS(1490), + [aux_sym_break_statement_token1] = ACTIONS(1490), + [sym_integer] = ACTIONS(1490), + [aux_sym_return_statement_token1] = ACTIONS(1490), + [aux_sym_throw_expression_token1] = ACTIONS(1490), + [aux_sym_while_statement_token1] = ACTIONS(1490), + [aux_sym_while_statement_token2] = ACTIONS(1490), + [aux_sym_do_statement_token1] = ACTIONS(1490), + [aux_sym_for_statement_token1] = ACTIONS(1490), + [aux_sym_for_statement_token2] = ACTIONS(1490), + [aux_sym_foreach_statement_token1] = ACTIONS(1490), + [aux_sym_foreach_statement_token2] = ACTIONS(1490), + [aux_sym_if_statement_token1] = ACTIONS(1490), + [aux_sym_if_statement_token2] = ACTIONS(1490), + [aux_sym_else_if_clause_token1] = ACTIONS(1490), + [aux_sym_else_clause_token1] = ACTIONS(1490), + [aux_sym_match_expression_token1] = ACTIONS(1490), + [aux_sym_match_default_expression_token1] = ACTIONS(1490), + [aux_sym_switch_statement_token1] = ACTIONS(1490), + [aux_sym_switch_block_token1] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(1488), + [aux_sym_clone_expression_token1] = ACTIONS(1490), + [aux_sym_print_intrinsic_token1] = ACTIONS(1490), + [aux_sym_object_creation_expression_token1] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [aux_sym__list_destructing_token1] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1488), + [anon_sym_self] = ACTIONS(1490), + [anon_sym_parent] = ACTIONS(1490), + [aux_sym__argument_name_token1] = ACTIONS(1490), + [aux_sym__argument_name_token2] = ACTIONS(1490), + [anon_sym_POUND_LBRACK] = ACTIONS(1488), + [aux_sym_encapsed_string_token1] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [aux_sym_string_token1] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_LT_LT_LT] = ACTIONS(1488), + [anon_sym_BQUOTE] = ACTIONS(1488), + [anon_sym_DOLLAR] = ACTIONS(1488), + [aux_sym_yield_expression_token1] = ACTIONS(1490), + [aux_sym_include_expression_token1] = ACTIONS(1490), + [aux_sym_include_once_expression_token1] = ACTIONS(1490), + [aux_sym_require_expression_token1] = ACTIONS(1490), + [aux_sym_require_once_expression_token1] = ACTIONS(1490), [sym_comment] = ACTIONS(5), }, [554] = { [sym_text_interpolation] = STATE(554), - [ts_builtin_sym_end] = ACTIONS(1515), - [sym_name] = ACTIONS(1517), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1515), - [aux_sym_function_static_declaration_token1] = ACTIONS(1517), - [aux_sym_global_declaration_token1] = ACTIONS(1517), - [aux_sym_namespace_definition_token1] = ACTIONS(1517), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1517), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1517), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1517), - [anon_sym_BSLASH] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1515), - [aux_sym_trait_declaration_token1] = ACTIONS(1517), - [aux_sym_interface_declaration_token1] = ACTIONS(1517), - [aux_sym_enum_declaration_token1] = ACTIONS(1517), - [aux_sym_enum_case_token1] = ACTIONS(1517), - [aux_sym_class_declaration_token1] = ACTIONS(1517), - [aux_sym_final_modifier_token1] = ACTIONS(1517), - [aux_sym_abstract_modifier_token1] = ACTIONS(1517), - [aux_sym_readonly_modifier_token1] = ACTIONS(1517), - [aux_sym_visibility_modifier_token1] = ACTIONS(1517), - [aux_sym_visibility_modifier_token2] = ACTIONS(1517), - [aux_sym_visibility_modifier_token3] = ACTIONS(1517), - [aux_sym__arrow_function_header_token1] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1515), - [aux_sym_cast_type_token1] = ACTIONS(1517), - [aux_sym_echo_statement_token1] = ACTIONS(1517), - [aux_sym_exit_statement_token1] = ACTIONS(1517), - [anon_sym_unset] = ACTIONS(1517), - [aux_sym_declare_statement_token1] = ACTIONS(1517), - [aux_sym_declare_statement_token2] = ACTIONS(1517), - [sym_float] = ACTIONS(1517), - [aux_sym_try_statement_token1] = ACTIONS(1517), - [aux_sym_goto_statement_token1] = ACTIONS(1517), - [aux_sym_continue_statement_token1] = ACTIONS(1517), - [aux_sym_break_statement_token1] = ACTIONS(1517), - [sym_integer] = ACTIONS(1517), - [aux_sym_return_statement_token1] = ACTIONS(1517), - [aux_sym_throw_expression_token1] = ACTIONS(1517), - [aux_sym_while_statement_token1] = ACTIONS(1517), - [aux_sym_while_statement_token2] = ACTIONS(1517), - [aux_sym_do_statement_token1] = ACTIONS(1517), - [aux_sym_for_statement_token1] = ACTIONS(1517), - [aux_sym_for_statement_token2] = ACTIONS(1517), - [aux_sym_foreach_statement_token1] = ACTIONS(1517), - [aux_sym_foreach_statement_token2] = ACTIONS(1517), - [aux_sym_if_statement_token1] = ACTIONS(1517), - [aux_sym_if_statement_token2] = ACTIONS(1517), - [aux_sym_else_if_clause_token1] = ACTIONS(1517), - [aux_sym_else_clause_token1] = ACTIONS(1517), - [aux_sym_match_expression_token1] = ACTIONS(1517), - [aux_sym_match_default_expression_token1] = ACTIONS(1517), - [aux_sym_switch_statement_token1] = ACTIONS(1517), - [aux_sym_switch_block_token1] = ACTIONS(1517), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_AT] = ACTIONS(1515), - [aux_sym_clone_expression_token1] = ACTIONS(1517), - [aux_sym_print_intrinsic_token1] = ACTIONS(1517), - [aux_sym_object_creation_expression_token1] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [aux_sym__list_destructing_token1] = ACTIONS(1517), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_self] = ACTIONS(1517), - [anon_sym_parent] = ACTIONS(1517), - [aux_sym__argument_name_token1] = ACTIONS(1517), - [aux_sym__argument_name_token2] = ACTIONS(1517), - [anon_sym_POUND_LBRACK] = ACTIONS(1515), - [aux_sym_encapsed_string_token1] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), - [aux_sym_string_token1] = ACTIONS(1515), - [anon_sym_SQUOTE] = ACTIONS(1515), - [anon_sym_LT_LT_LT] = ACTIONS(1515), - [anon_sym_BQUOTE] = ACTIONS(1515), - [anon_sym_DOLLAR] = ACTIONS(1515), - [aux_sym_yield_expression_token1] = ACTIONS(1517), - [aux_sym_include_expression_token1] = ACTIONS(1517), - [aux_sym_include_once_expression_token1] = ACTIONS(1517), - [aux_sym_require_expression_token1] = ACTIONS(1517), - [aux_sym_require_once_expression_token1] = ACTIONS(1517), + [ts_builtin_sym_end] = ACTIONS(1492), + [sym_name] = ACTIONS(1494), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1492), + [aux_sym_function_static_declaration_token1] = ACTIONS(1494), + [aux_sym_global_declaration_token1] = ACTIONS(1494), + [aux_sym_namespace_definition_token1] = ACTIONS(1494), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1494), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1494), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1494), + [anon_sym_BSLASH] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [aux_sym_trait_declaration_token1] = ACTIONS(1494), + [aux_sym_interface_declaration_token1] = ACTIONS(1494), + [aux_sym_enum_declaration_token1] = ACTIONS(1494), + [aux_sym_enum_case_token1] = ACTIONS(1494), + [aux_sym_class_declaration_token1] = ACTIONS(1494), + [aux_sym_final_modifier_token1] = ACTIONS(1494), + [aux_sym_abstract_modifier_token1] = ACTIONS(1494), + [aux_sym_readonly_modifier_token1] = ACTIONS(1494), + [sym_var_modifier] = ACTIONS(1494), + [aux_sym_visibility_modifier_token1] = ACTIONS(1494), + [aux_sym_visibility_modifier_token2] = ACTIONS(1494), + [aux_sym_visibility_modifier_token3] = ACTIONS(1494), + [aux_sym__arrow_function_header_token1] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1492), + [aux_sym_cast_type_token1] = ACTIONS(1494), + [aux_sym_echo_statement_token1] = ACTIONS(1494), + [aux_sym_exit_statement_token1] = ACTIONS(1494), + [anon_sym_unset] = ACTIONS(1494), + [aux_sym_declare_statement_token1] = ACTIONS(1494), + [aux_sym_declare_statement_token2] = ACTIONS(1494), + [sym_float] = ACTIONS(1494), + [aux_sym_try_statement_token1] = ACTIONS(1494), + [aux_sym_goto_statement_token1] = ACTIONS(1494), + [aux_sym_continue_statement_token1] = ACTIONS(1494), + [aux_sym_break_statement_token1] = ACTIONS(1494), + [sym_integer] = ACTIONS(1494), + [aux_sym_return_statement_token1] = ACTIONS(1494), + [aux_sym_throw_expression_token1] = ACTIONS(1494), + [aux_sym_while_statement_token1] = ACTIONS(1494), + [aux_sym_while_statement_token2] = ACTIONS(1494), + [aux_sym_do_statement_token1] = ACTIONS(1494), + [aux_sym_for_statement_token1] = ACTIONS(1494), + [aux_sym_for_statement_token2] = ACTIONS(1494), + [aux_sym_foreach_statement_token1] = ACTIONS(1494), + [aux_sym_foreach_statement_token2] = ACTIONS(1494), + [aux_sym_if_statement_token1] = ACTIONS(1494), + [aux_sym_if_statement_token2] = ACTIONS(1494), + [aux_sym_else_if_clause_token1] = ACTIONS(1494), + [aux_sym_else_clause_token1] = ACTIONS(1494), + [aux_sym_match_expression_token1] = ACTIONS(1494), + [aux_sym_match_default_expression_token1] = ACTIONS(1494), + [aux_sym_switch_statement_token1] = ACTIONS(1494), + [aux_sym_switch_block_token1] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(1492), + [aux_sym_clone_expression_token1] = ACTIONS(1494), + [aux_sym_print_intrinsic_token1] = ACTIONS(1494), + [aux_sym_object_creation_expression_token1] = ACTIONS(1494), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1492), + [aux_sym__list_destructing_token1] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_self] = ACTIONS(1494), + [anon_sym_parent] = ACTIONS(1494), + [aux_sym__argument_name_token1] = ACTIONS(1494), + [aux_sym__argument_name_token2] = ACTIONS(1494), + [anon_sym_POUND_LBRACK] = ACTIONS(1492), + [aux_sym_encapsed_string_token1] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [aux_sym_string_token1] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_LT_LT_LT] = ACTIONS(1492), + [anon_sym_BQUOTE] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1492), + [aux_sym_yield_expression_token1] = ACTIONS(1494), + [aux_sym_include_expression_token1] = ACTIONS(1494), + [aux_sym_include_once_expression_token1] = ACTIONS(1494), + [aux_sym_require_expression_token1] = ACTIONS(1494), + [aux_sym_require_once_expression_token1] = ACTIONS(1494), [sym_comment] = ACTIONS(5), }, [555] = { [sym_text_interpolation] = STATE(555), - [ts_builtin_sym_end] = ACTIONS(1519), - [sym_name] = ACTIONS(1521), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1519), - [aux_sym_function_static_declaration_token1] = ACTIONS(1521), - [aux_sym_global_declaration_token1] = ACTIONS(1521), - [aux_sym_namespace_definition_token1] = ACTIONS(1521), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1521), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1521), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1521), - [anon_sym_BSLASH] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [aux_sym_trait_declaration_token1] = ACTIONS(1521), - [aux_sym_interface_declaration_token1] = ACTIONS(1521), - [aux_sym_enum_declaration_token1] = ACTIONS(1521), - [aux_sym_enum_case_token1] = ACTIONS(1521), - [aux_sym_class_declaration_token1] = ACTIONS(1521), - [aux_sym_final_modifier_token1] = ACTIONS(1521), - [aux_sym_abstract_modifier_token1] = ACTIONS(1521), - [aux_sym_readonly_modifier_token1] = ACTIONS(1521), - [aux_sym_visibility_modifier_token1] = ACTIONS(1521), - [aux_sym_visibility_modifier_token2] = ACTIONS(1521), - [aux_sym_visibility_modifier_token3] = ACTIONS(1521), - [aux_sym__arrow_function_header_token1] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1519), - [aux_sym_cast_type_token1] = ACTIONS(1521), - [aux_sym_echo_statement_token1] = ACTIONS(1521), - [aux_sym_exit_statement_token1] = ACTIONS(1521), - [anon_sym_unset] = ACTIONS(1521), - [aux_sym_declare_statement_token1] = ACTIONS(1521), - [aux_sym_declare_statement_token2] = ACTIONS(1521), - [sym_float] = ACTIONS(1521), - [aux_sym_try_statement_token1] = ACTIONS(1521), - [aux_sym_goto_statement_token1] = ACTIONS(1521), - [aux_sym_continue_statement_token1] = ACTIONS(1521), - [aux_sym_break_statement_token1] = ACTIONS(1521), - [sym_integer] = ACTIONS(1521), - [aux_sym_return_statement_token1] = ACTIONS(1521), - [aux_sym_throw_expression_token1] = ACTIONS(1521), - [aux_sym_while_statement_token1] = ACTIONS(1521), - [aux_sym_while_statement_token2] = ACTIONS(1521), - [aux_sym_do_statement_token1] = ACTIONS(1521), - [aux_sym_for_statement_token1] = ACTIONS(1521), - [aux_sym_for_statement_token2] = ACTIONS(1521), - [aux_sym_foreach_statement_token1] = ACTIONS(1521), - [aux_sym_foreach_statement_token2] = ACTIONS(1521), - [aux_sym_if_statement_token1] = ACTIONS(1521), - [aux_sym_if_statement_token2] = ACTIONS(1521), - [aux_sym_else_if_clause_token1] = ACTIONS(1521), - [aux_sym_else_clause_token1] = ACTIONS(1521), - [aux_sym_match_expression_token1] = ACTIONS(1521), - [aux_sym_match_default_expression_token1] = ACTIONS(1521), - [aux_sym_switch_statement_token1] = ACTIONS(1521), - [aux_sym_switch_block_token1] = ACTIONS(1521), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_TILDE] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(1519), - [aux_sym_clone_expression_token1] = ACTIONS(1521), - [aux_sym_print_intrinsic_token1] = ACTIONS(1521), - [aux_sym_object_creation_expression_token1] = ACTIONS(1521), - [anon_sym_DASH_DASH] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1519), - [aux_sym__list_destructing_token1] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_self] = ACTIONS(1521), - [anon_sym_parent] = ACTIONS(1521), - [aux_sym__argument_name_token1] = ACTIONS(1521), - [aux_sym__argument_name_token2] = ACTIONS(1521), - [anon_sym_POUND_LBRACK] = ACTIONS(1519), - [aux_sym_encapsed_string_token1] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [aux_sym_string_token1] = ACTIONS(1519), - [anon_sym_SQUOTE] = ACTIONS(1519), - [anon_sym_LT_LT_LT] = ACTIONS(1519), - [anon_sym_BQUOTE] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(1519), - [aux_sym_yield_expression_token1] = ACTIONS(1521), - [aux_sym_include_expression_token1] = ACTIONS(1521), - [aux_sym_include_once_expression_token1] = ACTIONS(1521), - [aux_sym_require_expression_token1] = ACTIONS(1521), - [aux_sym_require_once_expression_token1] = ACTIONS(1521), + [ts_builtin_sym_end] = ACTIONS(1496), + [sym_name] = ACTIONS(1498), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1496), + [aux_sym_function_static_declaration_token1] = ACTIONS(1498), + [aux_sym_global_declaration_token1] = ACTIONS(1498), + [aux_sym_namespace_definition_token1] = ACTIONS(1498), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1498), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1498), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1498), + [anon_sym_BSLASH] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [aux_sym_trait_declaration_token1] = ACTIONS(1498), + [aux_sym_interface_declaration_token1] = ACTIONS(1498), + [aux_sym_enum_declaration_token1] = ACTIONS(1498), + [aux_sym_enum_case_token1] = ACTIONS(1498), + [aux_sym_class_declaration_token1] = ACTIONS(1498), + [aux_sym_final_modifier_token1] = ACTIONS(1498), + [aux_sym_abstract_modifier_token1] = ACTIONS(1498), + [aux_sym_readonly_modifier_token1] = ACTIONS(1498), + [sym_var_modifier] = ACTIONS(1498), + [aux_sym_visibility_modifier_token1] = ACTIONS(1498), + [aux_sym_visibility_modifier_token2] = ACTIONS(1498), + [aux_sym_visibility_modifier_token3] = ACTIONS(1498), + [aux_sym__arrow_function_header_token1] = ACTIONS(1498), + [anon_sym_LPAREN] = ACTIONS(1496), + [aux_sym_cast_type_token1] = ACTIONS(1498), + [aux_sym_echo_statement_token1] = ACTIONS(1498), + [aux_sym_exit_statement_token1] = ACTIONS(1498), + [anon_sym_unset] = ACTIONS(1498), + [aux_sym_declare_statement_token1] = ACTIONS(1498), + [aux_sym_declare_statement_token2] = ACTIONS(1498), + [sym_float] = ACTIONS(1498), + [aux_sym_try_statement_token1] = ACTIONS(1498), + [aux_sym_goto_statement_token1] = ACTIONS(1498), + [aux_sym_continue_statement_token1] = ACTIONS(1498), + [aux_sym_break_statement_token1] = ACTIONS(1498), + [sym_integer] = ACTIONS(1498), + [aux_sym_return_statement_token1] = ACTIONS(1498), + [aux_sym_throw_expression_token1] = ACTIONS(1498), + [aux_sym_while_statement_token1] = ACTIONS(1498), + [aux_sym_while_statement_token2] = ACTIONS(1498), + [aux_sym_do_statement_token1] = ACTIONS(1498), + [aux_sym_for_statement_token1] = ACTIONS(1498), + [aux_sym_for_statement_token2] = ACTIONS(1498), + [aux_sym_foreach_statement_token1] = ACTIONS(1498), + [aux_sym_foreach_statement_token2] = ACTIONS(1498), + [aux_sym_if_statement_token1] = ACTIONS(1498), + [aux_sym_if_statement_token2] = ACTIONS(1498), + [aux_sym_else_if_clause_token1] = ACTIONS(1498), + [aux_sym_else_clause_token1] = ACTIONS(1498), + [aux_sym_match_expression_token1] = ACTIONS(1498), + [aux_sym_match_default_expression_token1] = ACTIONS(1498), + [aux_sym_switch_statement_token1] = ACTIONS(1498), + [aux_sym_switch_block_token1] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(1496), + [aux_sym_clone_expression_token1] = ACTIONS(1498), + [aux_sym_print_intrinsic_token1] = ACTIONS(1498), + [aux_sym_object_creation_expression_token1] = ACTIONS(1498), + [anon_sym_DASH_DASH] = ACTIONS(1496), + [anon_sym_PLUS_PLUS] = ACTIONS(1496), + [aux_sym__list_destructing_token1] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(1496), + [anon_sym_self] = ACTIONS(1498), + [anon_sym_parent] = ACTIONS(1498), + [aux_sym__argument_name_token1] = ACTIONS(1498), + [aux_sym__argument_name_token2] = ACTIONS(1498), + [anon_sym_POUND_LBRACK] = ACTIONS(1496), + [aux_sym_encapsed_string_token1] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [aux_sym_string_token1] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_LT_LT_LT] = ACTIONS(1496), + [anon_sym_BQUOTE] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1496), + [aux_sym_yield_expression_token1] = ACTIONS(1498), + [aux_sym_include_expression_token1] = ACTIONS(1498), + [aux_sym_include_once_expression_token1] = ACTIONS(1498), + [aux_sym_require_expression_token1] = ACTIONS(1498), + [aux_sym_require_once_expression_token1] = ACTIONS(1498), [sym_comment] = ACTIONS(5), }, [556] = { [sym_text_interpolation] = STATE(556), - [ts_builtin_sym_end] = ACTIONS(1523), - [sym_name] = ACTIONS(1525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1523), - [aux_sym_function_static_declaration_token1] = ACTIONS(1525), - [aux_sym_global_declaration_token1] = ACTIONS(1525), - [aux_sym_namespace_definition_token1] = ACTIONS(1525), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1525), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1525), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1525), - [anon_sym_BSLASH] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_RBRACE] = ACTIONS(1523), - [aux_sym_trait_declaration_token1] = ACTIONS(1525), - [aux_sym_interface_declaration_token1] = ACTIONS(1525), - [aux_sym_enum_declaration_token1] = ACTIONS(1525), - [aux_sym_enum_case_token1] = ACTIONS(1525), - [aux_sym_class_declaration_token1] = ACTIONS(1525), - [aux_sym_final_modifier_token1] = ACTIONS(1525), - [aux_sym_abstract_modifier_token1] = ACTIONS(1525), - [aux_sym_readonly_modifier_token1] = ACTIONS(1525), - [aux_sym_visibility_modifier_token1] = ACTIONS(1525), - [aux_sym_visibility_modifier_token2] = ACTIONS(1525), - [aux_sym_visibility_modifier_token3] = ACTIONS(1525), - [aux_sym__arrow_function_header_token1] = ACTIONS(1525), - [anon_sym_LPAREN] = ACTIONS(1523), - [aux_sym_cast_type_token1] = ACTIONS(1525), - [aux_sym_echo_statement_token1] = ACTIONS(1525), - [aux_sym_exit_statement_token1] = ACTIONS(1525), - [anon_sym_unset] = ACTIONS(1525), - [aux_sym_declare_statement_token1] = ACTIONS(1525), - [aux_sym_declare_statement_token2] = ACTIONS(1525), - [sym_float] = ACTIONS(1525), - [aux_sym_try_statement_token1] = ACTIONS(1525), - [aux_sym_goto_statement_token1] = ACTIONS(1525), - [aux_sym_continue_statement_token1] = ACTIONS(1525), - [aux_sym_break_statement_token1] = ACTIONS(1525), - [sym_integer] = ACTIONS(1525), - [aux_sym_return_statement_token1] = ACTIONS(1525), - [aux_sym_throw_expression_token1] = ACTIONS(1525), - [aux_sym_while_statement_token1] = ACTIONS(1525), - [aux_sym_while_statement_token2] = ACTIONS(1525), - [aux_sym_do_statement_token1] = ACTIONS(1525), - [aux_sym_for_statement_token1] = ACTIONS(1525), - [aux_sym_for_statement_token2] = ACTIONS(1525), - [aux_sym_foreach_statement_token1] = ACTIONS(1525), - [aux_sym_foreach_statement_token2] = ACTIONS(1525), - [aux_sym_if_statement_token1] = ACTIONS(1525), - [aux_sym_if_statement_token2] = ACTIONS(1525), - [aux_sym_else_if_clause_token1] = ACTIONS(1525), - [aux_sym_else_clause_token1] = ACTIONS(1525), - [aux_sym_match_expression_token1] = ACTIONS(1525), - [aux_sym_match_default_expression_token1] = ACTIONS(1525), - [aux_sym_switch_statement_token1] = ACTIONS(1525), - [aux_sym_switch_block_token1] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_TILDE] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_AT] = ACTIONS(1523), - [aux_sym_clone_expression_token1] = ACTIONS(1525), - [aux_sym_print_intrinsic_token1] = ACTIONS(1525), - [aux_sym_object_creation_expression_token1] = ACTIONS(1525), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [aux_sym__list_destructing_token1] = ACTIONS(1525), - [anon_sym_LBRACK] = ACTIONS(1523), - [anon_sym_self] = ACTIONS(1525), - [anon_sym_parent] = ACTIONS(1525), - [aux_sym__argument_name_token1] = ACTIONS(1525), - [aux_sym__argument_name_token2] = ACTIONS(1525), - [anon_sym_POUND_LBRACK] = ACTIONS(1523), - [aux_sym_encapsed_string_token1] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1523), - [aux_sym_string_token1] = ACTIONS(1523), - [anon_sym_SQUOTE] = ACTIONS(1523), - [anon_sym_LT_LT_LT] = ACTIONS(1523), - [anon_sym_BQUOTE] = ACTIONS(1523), - [anon_sym_DOLLAR] = ACTIONS(1523), - [aux_sym_yield_expression_token1] = ACTIONS(1525), - [aux_sym_include_expression_token1] = ACTIONS(1525), - [aux_sym_include_once_expression_token1] = ACTIONS(1525), - [aux_sym_require_expression_token1] = ACTIONS(1525), - [aux_sym_require_once_expression_token1] = ACTIONS(1525), + [ts_builtin_sym_end] = ACTIONS(1082), + [sym_name] = ACTIONS(1084), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1082), + [aux_sym_function_static_declaration_token1] = ACTIONS(1084), + [aux_sym_global_declaration_token1] = ACTIONS(1084), + [aux_sym_namespace_definition_token1] = ACTIONS(1084), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1084), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1084), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1084), + [anon_sym_BSLASH] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [aux_sym_trait_declaration_token1] = ACTIONS(1084), + [aux_sym_interface_declaration_token1] = ACTIONS(1084), + [aux_sym_enum_declaration_token1] = ACTIONS(1084), + [aux_sym_enum_case_token1] = ACTIONS(1084), + [aux_sym_class_declaration_token1] = ACTIONS(1084), + [aux_sym_final_modifier_token1] = ACTIONS(1084), + [aux_sym_abstract_modifier_token1] = ACTIONS(1084), + [aux_sym_readonly_modifier_token1] = ACTIONS(1084), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [aux_sym__list_destructing_token1] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_self] = ACTIONS(1084), + [anon_sym_parent] = ACTIONS(1084), + [aux_sym__argument_name_token1] = ACTIONS(1084), + [aux_sym__argument_name_token2] = ACTIONS(1084), + [anon_sym_POUND_LBRACK] = ACTIONS(1082), + [aux_sym_encapsed_string_token1] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [aux_sym_string_token1] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [anon_sym_LT_LT_LT] = ACTIONS(1082), + [anon_sym_BQUOTE] = ACTIONS(1082), + [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(5), }, [557] = { [sym_text_interpolation] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(1527), - [sym_name] = ACTIONS(1529), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1527), - [aux_sym_function_static_declaration_token1] = ACTIONS(1529), - [aux_sym_global_declaration_token1] = ACTIONS(1529), - [aux_sym_namespace_definition_token1] = ACTIONS(1529), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1529), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1529), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1529), - [anon_sym_BSLASH] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(1527), - [aux_sym_trait_declaration_token1] = ACTIONS(1529), - [aux_sym_interface_declaration_token1] = ACTIONS(1529), - [aux_sym_enum_declaration_token1] = ACTIONS(1529), - [aux_sym_enum_case_token1] = ACTIONS(1529), - [aux_sym_class_declaration_token1] = ACTIONS(1529), - [aux_sym_final_modifier_token1] = ACTIONS(1529), - [aux_sym_abstract_modifier_token1] = ACTIONS(1529), - [aux_sym_readonly_modifier_token1] = ACTIONS(1529), - [aux_sym_visibility_modifier_token1] = ACTIONS(1529), - [aux_sym_visibility_modifier_token2] = ACTIONS(1529), - [aux_sym_visibility_modifier_token3] = ACTIONS(1529), - [aux_sym__arrow_function_header_token1] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1527), - [aux_sym_cast_type_token1] = ACTIONS(1529), - [aux_sym_echo_statement_token1] = ACTIONS(1529), - [aux_sym_exit_statement_token1] = ACTIONS(1529), - [anon_sym_unset] = ACTIONS(1529), - [aux_sym_declare_statement_token1] = ACTIONS(1529), - [aux_sym_declare_statement_token2] = ACTIONS(1529), - [sym_float] = ACTIONS(1529), - [aux_sym_try_statement_token1] = ACTIONS(1529), - [aux_sym_goto_statement_token1] = ACTIONS(1529), - [aux_sym_continue_statement_token1] = ACTIONS(1529), - [aux_sym_break_statement_token1] = ACTIONS(1529), - [sym_integer] = ACTIONS(1529), - [aux_sym_return_statement_token1] = ACTIONS(1529), - [aux_sym_throw_expression_token1] = ACTIONS(1529), - [aux_sym_while_statement_token1] = ACTIONS(1529), - [aux_sym_while_statement_token2] = ACTIONS(1529), - [aux_sym_do_statement_token1] = ACTIONS(1529), - [aux_sym_for_statement_token1] = ACTIONS(1529), - [aux_sym_for_statement_token2] = ACTIONS(1529), - [aux_sym_foreach_statement_token1] = ACTIONS(1529), - [aux_sym_foreach_statement_token2] = ACTIONS(1529), - [aux_sym_if_statement_token1] = ACTIONS(1529), - [aux_sym_if_statement_token2] = ACTIONS(1529), - [aux_sym_else_if_clause_token1] = ACTIONS(1529), - [aux_sym_else_clause_token1] = ACTIONS(1529), - [aux_sym_match_expression_token1] = ACTIONS(1529), - [aux_sym_match_default_expression_token1] = ACTIONS(1529), - [aux_sym_switch_statement_token1] = ACTIONS(1529), - [aux_sym_switch_block_token1] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(1527), - [aux_sym_clone_expression_token1] = ACTIONS(1529), - [aux_sym_print_intrinsic_token1] = ACTIONS(1529), - [aux_sym_object_creation_expression_token1] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [aux_sym__list_destructing_token1] = ACTIONS(1529), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_self] = ACTIONS(1529), - [anon_sym_parent] = ACTIONS(1529), - [aux_sym__argument_name_token1] = ACTIONS(1529), - [aux_sym__argument_name_token2] = ACTIONS(1529), - [anon_sym_POUND_LBRACK] = ACTIONS(1527), - [aux_sym_encapsed_string_token1] = ACTIONS(1527), - [anon_sym_DQUOTE] = ACTIONS(1527), - [aux_sym_string_token1] = ACTIONS(1527), - [anon_sym_SQUOTE] = ACTIONS(1527), - [anon_sym_LT_LT_LT] = ACTIONS(1527), - [anon_sym_BQUOTE] = ACTIONS(1527), - [anon_sym_DOLLAR] = ACTIONS(1527), - [aux_sym_yield_expression_token1] = ACTIONS(1529), - [aux_sym_include_expression_token1] = ACTIONS(1529), - [aux_sym_include_once_expression_token1] = ACTIONS(1529), - [aux_sym_require_expression_token1] = ACTIONS(1529), - [aux_sym_require_once_expression_token1] = ACTIONS(1529), + [ts_builtin_sym_end] = ACTIONS(1500), + [sym_name] = ACTIONS(1502), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1500), + [aux_sym_function_static_declaration_token1] = ACTIONS(1502), + [aux_sym_global_declaration_token1] = ACTIONS(1502), + [aux_sym_namespace_definition_token1] = ACTIONS(1502), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1502), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1502), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1502), + [anon_sym_BSLASH] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [aux_sym_trait_declaration_token1] = ACTIONS(1502), + [aux_sym_interface_declaration_token1] = ACTIONS(1502), + [aux_sym_enum_declaration_token1] = ACTIONS(1502), + [aux_sym_enum_case_token1] = ACTIONS(1502), + [aux_sym_class_declaration_token1] = ACTIONS(1502), + [aux_sym_final_modifier_token1] = ACTIONS(1502), + [aux_sym_abstract_modifier_token1] = ACTIONS(1502), + [aux_sym_readonly_modifier_token1] = ACTIONS(1502), + [sym_var_modifier] = ACTIONS(1502), + [aux_sym_visibility_modifier_token1] = ACTIONS(1502), + [aux_sym_visibility_modifier_token2] = ACTIONS(1502), + [aux_sym_visibility_modifier_token3] = ACTIONS(1502), + [aux_sym__arrow_function_header_token1] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1500), + [aux_sym_cast_type_token1] = ACTIONS(1502), + [aux_sym_echo_statement_token1] = ACTIONS(1502), + [aux_sym_exit_statement_token1] = ACTIONS(1502), + [anon_sym_unset] = ACTIONS(1502), + [aux_sym_declare_statement_token1] = ACTIONS(1502), + [aux_sym_declare_statement_token2] = ACTIONS(1502), + [sym_float] = ACTIONS(1502), + [aux_sym_try_statement_token1] = ACTIONS(1502), + [aux_sym_goto_statement_token1] = ACTIONS(1502), + [aux_sym_continue_statement_token1] = ACTIONS(1502), + [aux_sym_break_statement_token1] = ACTIONS(1502), + [sym_integer] = ACTIONS(1502), + [aux_sym_return_statement_token1] = ACTIONS(1502), + [aux_sym_throw_expression_token1] = ACTIONS(1502), + [aux_sym_while_statement_token1] = ACTIONS(1502), + [aux_sym_while_statement_token2] = ACTIONS(1502), + [aux_sym_do_statement_token1] = ACTIONS(1502), + [aux_sym_for_statement_token1] = ACTIONS(1502), + [aux_sym_for_statement_token2] = ACTIONS(1502), + [aux_sym_foreach_statement_token1] = ACTIONS(1502), + [aux_sym_foreach_statement_token2] = ACTIONS(1502), + [aux_sym_if_statement_token1] = ACTIONS(1502), + [aux_sym_if_statement_token2] = ACTIONS(1502), + [aux_sym_else_if_clause_token1] = ACTIONS(1502), + [aux_sym_else_clause_token1] = ACTIONS(1502), + [aux_sym_match_expression_token1] = ACTIONS(1502), + [aux_sym_match_default_expression_token1] = ACTIONS(1502), + [aux_sym_switch_statement_token1] = ACTIONS(1502), + [aux_sym_switch_block_token1] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_AT] = ACTIONS(1500), + [aux_sym_clone_expression_token1] = ACTIONS(1502), + [aux_sym_print_intrinsic_token1] = ACTIONS(1502), + [aux_sym_object_creation_expression_token1] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [aux_sym__list_destructing_token1] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1500), + [anon_sym_self] = ACTIONS(1502), + [anon_sym_parent] = ACTIONS(1502), + [aux_sym__argument_name_token1] = ACTIONS(1502), + [aux_sym__argument_name_token2] = ACTIONS(1502), + [anon_sym_POUND_LBRACK] = ACTIONS(1500), + [aux_sym_encapsed_string_token1] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1500), + [aux_sym_string_token1] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_LT_LT_LT] = ACTIONS(1500), + [anon_sym_BQUOTE] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1500), + [aux_sym_yield_expression_token1] = ACTIONS(1502), + [aux_sym_include_expression_token1] = ACTIONS(1502), + [aux_sym_include_once_expression_token1] = ACTIONS(1502), + [aux_sym_require_expression_token1] = ACTIONS(1502), + [aux_sym_require_once_expression_token1] = ACTIONS(1502), [sym_comment] = ACTIONS(5), }, [558] = { [sym_text_interpolation] = STATE(558), - [ts_builtin_sym_end] = ACTIONS(1531), - [sym_name] = ACTIONS(1533), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1531), - [aux_sym_function_static_declaration_token1] = ACTIONS(1533), - [aux_sym_global_declaration_token1] = ACTIONS(1533), - [aux_sym_namespace_definition_token1] = ACTIONS(1533), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1533), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1533), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1533), - [anon_sym_BSLASH] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), - [aux_sym_trait_declaration_token1] = ACTIONS(1533), - [aux_sym_interface_declaration_token1] = ACTIONS(1533), - [aux_sym_enum_declaration_token1] = ACTIONS(1533), - [aux_sym_enum_case_token1] = ACTIONS(1533), - [aux_sym_class_declaration_token1] = ACTIONS(1533), - [aux_sym_final_modifier_token1] = ACTIONS(1533), - [aux_sym_abstract_modifier_token1] = ACTIONS(1533), - [aux_sym_readonly_modifier_token1] = ACTIONS(1533), - [aux_sym_visibility_modifier_token1] = ACTIONS(1533), - [aux_sym_visibility_modifier_token2] = ACTIONS(1533), - [aux_sym_visibility_modifier_token3] = ACTIONS(1533), - [aux_sym__arrow_function_header_token1] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1531), - [aux_sym_cast_type_token1] = ACTIONS(1533), - [aux_sym_echo_statement_token1] = ACTIONS(1533), - [aux_sym_exit_statement_token1] = ACTIONS(1533), - [anon_sym_unset] = ACTIONS(1533), - [aux_sym_declare_statement_token1] = ACTIONS(1533), - [aux_sym_declare_statement_token2] = ACTIONS(1533), - [sym_float] = ACTIONS(1533), - [aux_sym_try_statement_token1] = ACTIONS(1533), - [aux_sym_goto_statement_token1] = ACTIONS(1533), - [aux_sym_continue_statement_token1] = ACTIONS(1533), - [aux_sym_break_statement_token1] = ACTIONS(1533), - [sym_integer] = ACTIONS(1533), - [aux_sym_return_statement_token1] = ACTIONS(1533), - [aux_sym_throw_expression_token1] = ACTIONS(1533), - [aux_sym_while_statement_token1] = ACTIONS(1533), - [aux_sym_while_statement_token2] = ACTIONS(1533), - [aux_sym_do_statement_token1] = ACTIONS(1533), - [aux_sym_for_statement_token1] = ACTIONS(1533), - [aux_sym_for_statement_token2] = ACTIONS(1533), - [aux_sym_foreach_statement_token1] = ACTIONS(1533), - [aux_sym_foreach_statement_token2] = ACTIONS(1533), - [aux_sym_if_statement_token1] = ACTIONS(1533), - [aux_sym_if_statement_token2] = ACTIONS(1533), - [aux_sym_else_if_clause_token1] = ACTIONS(1533), - [aux_sym_else_clause_token1] = ACTIONS(1533), - [aux_sym_match_expression_token1] = ACTIONS(1533), - [aux_sym_match_default_expression_token1] = ACTIONS(1533), - [aux_sym_switch_statement_token1] = ACTIONS(1533), - [aux_sym_switch_block_token1] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_AT] = ACTIONS(1531), - [aux_sym_clone_expression_token1] = ACTIONS(1533), - [aux_sym_print_intrinsic_token1] = ACTIONS(1533), - [aux_sym_object_creation_expression_token1] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1531), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [aux_sym__list_destructing_token1] = ACTIONS(1533), - [anon_sym_LBRACK] = ACTIONS(1531), - [anon_sym_self] = ACTIONS(1533), - [anon_sym_parent] = ACTIONS(1533), - [aux_sym__argument_name_token1] = ACTIONS(1533), - [aux_sym__argument_name_token2] = ACTIONS(1533), - [anon_sym_POUND_LBRACK] = ACTIONS(1531), - [aux_sym_encapsed_string_token1] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [aux_sym_string_token1] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_LT_LT_LT] = ACTIONS(1531), - [anon_sym_BQUOTE] = ACTIONS(1531), - [anon_sym_DOLLAR] = ACTIONS(1531), - [aux_sym_yield_expression_token1] = ACTIONS(1533), - [aux_sym_include_expression_token1] = ACTIONS(1533), - [aux_sym_include_once_expression_token1] = ACTIONS(1533), - [aux_sym_require_expression_token1] = ACTIONS(1533), - [aux_sym_require_once_expression_token1] = ACTIONS(1533), + [ts_builtin_sym_end] = ACTIONS(1504), + [sym_name] = ACTIONS(1506), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1504), + [aux_sym_function_static_declaration_token1] = ACTIONS(1506), + [aux_sym_global_declaration_token1] = ACTIONS(1506), + [aux_sym_namespace_definition_token1] = ACTIONS(1506), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1506), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1506), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1506), + [anon_sym_BSLASH] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [aux_sym_trait_declaration_token1] = ACTIONS(1506), + [aux_sym_interface_declaration_token1] = ACTIONS(1506), + [aux_sym_enum_declaration_token1] = ACTIONS(1506), + [aux_sym_enum_case_token1] = ACTIONS(1506), + [aux_sym_class_declaration_token1] = ACTIONS(1506), + [aux_sym_final_modifier_token1] = ACTIONS(1506), + [aux_sym_abstract_modifier_token1] = ACTIONS(1506), + [aux_sym_readonly_modifier_token1] = ACTIONS(1506), + [sym_var_modifier] = ACTIONS(1506), + [aux_sym_visibility_modifier_token1] = ACTIONS(1506), + [aux_sym_visibility_modifier_token2] = ACTIONS(1506), + [aux_sym_visibility_modifier_token3] = ACTIONS(1506), + [aux_sym__arrow_function_header_token1] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1504), + [aux_sym_cast_type_token1] = ACTIONS(1506), + [aux_sym_echo_statement_token1] = ACTIONS(1506), + [aux_sym_exit_statement_token1] = ACTIONS(1506), + [anon_sym_unset] = ACTIONS(1506), + [aux_sym_declare_statement_token1] = ACTIONS(1506), + [aux_sym_declare_statement_token2] = ACTIONS(1506), + [sym_float] = ACTIONS(1506), + [aux_sym_try_statement_token1] = ACTIONS(1506), + [aux_sym_goto_statement_token1] = ACTIONS(1506), + [aux_sym_continue_statement_token1] = ACTIONS(1506), + [aux_sym_break_statement_token1] = ACTIONS(1506), + [sym_integer] = ACTIONS(1506), + [aux_sym_return_statement_token1] = ACTIONS(1506), + [aux_sym_throw_expression_token1] = ACTIONS(1506), + [aux_sym_while_statement_token1] = ACTIONS(1506), + [aux_sym_while_statement_token2] = ACTIONS(1506), + [aux_sym_do_statement_token1] = ACTIONS(1506), + [aux_sym_for_statement_token1] = ACTIONS(1506), + [aux_sym_for_statement_token2] = ACTIONS(1506), + [aux_sym_foreach_statement_token1] = ACTIONS(1506), + [aux_sym_foreach_statement_token2] = ACTIONS(1506), + [aux_sym_if_statement_token1] = ACTIONS(1506), + [aux_sym_if_statement_token2] = ACTIONS(1506), + [aux_sym_else_if_clause_token1] = ACTIONS(1506), + [aux_sym_else_clause_token1] = ACTIONS(1506), + [aux_sym_match_expression_token1] = ACTIONS(1506), + [aux_sym_match_default_expression_token1] = ACTIONS(1506), + [aux_sym_switch_statement_token1] = ACTIONS(1506), + [aux_sym_switch_block_token1] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(1504), + [aux_sym_clone_expression_token1] = ACTIONS(1506), + [aux_sym_print_intrinsic_token1] = ACTIONS(1506), + [aux_sym_object_creation_expression_token1] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1504), + [aux_sym__list_destructing_token1] = ACTIONS(1506), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_self] = ACTIONS(1506), + [anon_sym_parent] = ACTIONS(1506), + [aux_sym__argument_name_token1] = ACTIONS(1506), + [aux_sym__argument_name_token2] = ACTIONS(1506), + [anon_sym_POUND_LBRACK] = ACTIONS(1504), + [aux_sym_encapsed_string_token1] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1504), + [aux_sym_string_token1] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_LT_LT_LT] = ACTIONS(1504), + [anon_sym_BQUOTE] = ACTIONS(1504), + [anon_sym_DOLLAR] = ACTIONS(1504), + [aux_sym_yield_expression_token1] = ACTIONS(1506), + [aux_sym_include_expression_token1] = ACTIONS(1506), + [aux_sym_include_once_expression_token1] = ACTIONS(1506), + [aux_sym_require_expression_token1] = ACTIONS(1506), + [aux_sym_require_once_expression_token1] = ACTIONS(1506), [sym_comment] = ACTIONS(5), }, [559] = { [sym_text_interpolation] = STATE(559), - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_name] = ACTIONS(1537), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1535), - [aux_sym_function_static_declaration_token1] = ACTIONS(1537), - [aux_sym_global_declaration_token1] = ACTIONS(1537), - [aux_sym_namespace_definition_token1] = ACTIONS(1537), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1537), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1537), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1537), - [anon_sym_BSLASH] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [aux_sym_trait_declaration_token1] = ACTIONS(1537), - [aux_sym_interface_declaration_token1] = ACTIONS(1537), - [aux_sym_enum_declaration_token1] = ACTIONS(1537), - [aux_sym_enum_case_token1] = ACTIONS(1537), - [aux_sym_class_declaration_token1] = ACTIONS(1537), - [aux_sym_final_modifier_token1] = ACTIONS(1537), - [aux_sym_abstract_modifier_token1] = ACTIONS(1537), - [aux_sym_readonly_modifier_token1] = ACTIONS(1537), - [aux_sym_visibility_modifier_token1] = ACTIONS(1537), - [aux_sym_visibility_modifier_token2] = ACTIONS(1537), - [aux_sym_visibility_modifier_token3] = ACTIONS(1537), - [aux_sym__arrow_function_header_token1] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1535), - [aux_sym_cast_type_token1] = ACTIONS(1537), - [aux_sym_echo_statement_token1] = ACTIONS(1537), - [aux_sym_exit_statement_token1] = ACTIONS(1537), - [anon_sym_unset] = ACTIONS(1537), - [aux_sym_declare_statement_token1] = ACTIONS(1537), - [aux_sym_declare_statement_token2] = ACTIONS(1537), - [sym_float] = ACTIONS(1537), - [aux_sym_try_statement_token1] = ACTIONS(1537), - [aux_sym_goto_statement_token1] = ACTIONS(1537), - [aux_sym_continue_statement_token1] = ACTIONS(1537), - [aux_sym_break_statement_token1] = ACTIONS(1537), - [sym_integer] = ACTIONS(1537), - [aux_sym_return_statement_token1] = ACTIONS(1537), - [aux_sym_throw_expression_token1] = ACTIONS(1537), - [aux_sym_while_statement_token1] = ACTIONS(1537), - [aux_sym_while_statement_token2] = ACTIONS(1537), - [aux_sym_do_statement_token1] = ACTIONS(1537), - [aux_sym_for_statement_token1] = ACTIONS(1537), - [aux_sym_for_statement_token2] = ACTIONS(1537), - [aux_sym_foreach_statement_token1] = ACTIONS(1537), - [aux_sym_foreach_statement_token2] = ACTIONS(1537), - [aux_sym_if_statement_token1] = ACTIONS(1537), - [aux_sym_if_statement_token2] = ACTIONS(1537), - [aux_sym_else_if_clause_token1] = ACTIONS(1537), - [aux_sym_else_clause_token1] = ACTIONS(1537), - [aux_sym_match_expression_token1] = ACTIONS(1537), - [aux_sym_match_default_expression_token1] = ACTIONS(1537), - [aux_sym_switch_statement_token1] = ACTIONS(1537), - [aux_sym_switch_block_token1] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(1535), - [aux_sym_clone_expression_token1] = ACTIONS(1537), - [aux_sym_print_intrinsic_token1] = ACTIONS(1537), - [aux_sym_object_creation_expression_token1] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [aux_sym__list_destructing_token1] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1535), - [anon_sym_self] = ACTIONS(1537), - [anon_sym_parent] = ACTIONS(1537), - [aux_sym__argument_name_token1] = ACTIONS(1537), - [aux_sym__argument_name_token2] = ACTIONS(1537), - [anon_sym_POUND_LBRACK] = ACTIONS(1535), - [aux_sym_encapsed_string_token1] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [aux_sym_string_token1] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_LT_LT_LT] = ACTIONS(1535), - [anon_sym_BQUOTE] = ACTIONS(1535), - [anon_sym_DOLLAR] = ACTIONS(1535), - [aux_sym_yield_expression_token1] = ACTIONS(1537), - [aux_sym_include_expression_token1] = ACTIONS(1537), - [aux_sym_include_once_expression_token1] = ACTIONS(1537), - [aux_sym_require_expression_token1] = ACTIONS(1537), - [aux_sym_require_once_expression_token1] = ACTIONS(1537), + [ts_builtin_sym_end] = ACTIONS(1508), + [sym_name] = ACTIONS(1510), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1508), + [aux_sym_function_static_declaration_token1] = ACTIONS(1510), + [aux_sym_global_declaration_token1] = ACTIONS(1510), + [aux_sym_namespace_definition_token1] = ACTIONS(1510), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1510), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1510), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1510), + [anon_sym_BSLASH] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = ACTIONS(1508), + [aux_sym_trait_declaration_token1] = ACTIONS(1510), + [aux_sym_interface_declaration_token1] = ACTIONS(1510), + [aux_sym_enum_declaration_token1] = ACTIONS(1510), + [aux_sym_enum_case_token1] = ACTIONS(1510), + [aux_sym_class_declaration_token1] = ACTIONS(1510), + [aux_sym_final_modifier_token1] = ACTIONS(1510), + [aux_sym_abstract_modifier_token1] = ACTIONS(1510), + [aux_sym_readonly_modifier_token1] = ACTIONS(1510), + [sym_var_modifier] = ACTIONS(1510), + [aux_sym_visibility_modifier_token1] = ACTIONS(1510), + [aux_sym_visibility_modifier_token2] = ACTIONS(1510), + [aux_sym_visibility_modifier_token3] = ACTIONS(1510), + [aux_sym__arrow_function_header_token1] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1508), + [aux_sym_cast_type_token1] = ACTIONS(1510), + [aux_sym_echo_statement_token1] = ACTIONS(1510), + [aux_sym_exit_statement_token1] = ACTIONS(1510), + [anon_sym_unset] = ACTIONS(1510), + [aux_sym_declare_statement_token1] = ACTIONS(1510), + [aux_sym_declare_statement_token2] = ACTIONS(1510), + [sym_float] = ACTIONS(1510), + [aux_sym_try_statement_token1] = ACTIONS(1510), + [aux_sym_goto_statement_token1] = ACTIONS(1510), + [aux_sym_continue_statement_token1] = ACTIONS(1510), + [aux_sym_break_statement_token1] = ACTIONS(1510), + [sym_integer] = ACTIONS(1510), + [aux_sym_return_statement_token1] = ACTIONS(1510), + [aux_sym_throw_expression_token1] = ACTIONS(1510), + [aux_sym_while_statement_token1] = ACTIONS(1510), + [aux_sym_while_statement_token2] = ACTIONS(1510), + [aux_sym_do_statement_token1] = ACTIONS(1510), + [aux_sym_for_statement_token1] = ACTIONS(1510), + [aux_sym_for_statement_token2] = ACTIONS(1510), + [aux_sym_foreach_statement_token1] = ACTIONS(1510), + [aux_sym_foreach_statement_token2] = ACTIONS(1510), + [aux_sym_if_statement_token1] = ACTIONS(1510), + [aux_sym_if_statement_token2] = ACTIONS(1510), + [aux_sym_else_if_clause_token1] = ACTIONS(1510), + [aux_sym_else_clause_token1] = ACTIONS(1510), + [aux_sym_match_expression_token1] = ACTIONS(1510), + [aux_sym_match_default_expression_token1] = ACTIONS(1510), + [aux_sym_switch_statement_token1] = ACTIONS(1510), + [aux_sym_switch_block_token1] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_AT] = ACTIONS(1508), + [aux_sym_clone_expression_token1] = ACTIONS(1510), + [aux_sym_print_intrinsic_token1] = ACTIONS(1510), + [aux_sym_object_creation_expression_token1] = ACTIONS(1510), + [anon_sym_DASH_DASH] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [aux_sym__list_destructing_token1] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1508), + [anon_sym_self] = ACTIONS(1510), + [anon_sym_parent] = ACTIONS(1510), + [aux_sym__argument_name_token1] = ACTIONS(1510), + [aux_sym__argument_name_token2] = ACTIONS(1510), + [anon_sym_POUND_LBRACK] = ACTIONS(1508), + [aux_sym_encapsed_string_token1] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [aux_sym_string_token1] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_LT_LT_LT] = ACTIONS(1508), + [anon_sym_BQUOTE] = ACTIONS(1508), + [anon_sym_DOLLAR] = ACTIONS(1508), + [aux_sym_yield_expression_token1] = ACTIONS(1510), + [aux_sym_include_expression_token1] = ACTIONS(1510), + [aux_sym_include_once_expression_token1] = ACTIONS(1510), + [aux_sym_require_expression_token1] = ACTIONS(1510), + [aux_sym_require_once_expression_token1] = ACTIONS(1510), [sym_comment] = ACTIONS(5), }, [560] = { [sym_text_interpolation] = STATE(560), - [ts_builtin_sym_end] = ACTIONS(1539), - [sym_name] = ACTIONS(1541), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1539), - [aux_sym_function_static_declaration_token1] = ACTIONS(1541), - [aux_sym_global_declaration_token1] = ACTIONS(1541), - [aux_sym_namespace_definition_token1] = ACTIONS(1541), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1541), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1541), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1541), - [anon_sym_BSLASH] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [aux_sym_trait_declaration_token1] = ACTIONS(1541), - [aux_sym_interface_declaration_token1] = ACTIONS(1541), - [aux_sym_enum_declaration_token1] = ACTIONS(1541), - [aux_sym_enum_case_token1] = ACTIONS(1541), - [aux_sym_class_declaration_token1] = ACTIONS(1541), - [aux_sym_final_modifier_token1] = ACTIONS(1541), - [aux_sym_abstract_modifier_token1] = ACTIONS(1541), - [aux_sym_readonly_modifier_token1] = ACTIONS(1541), - [aux_sym_visibility_modifier_token1] = ACTIONS(1541), - [aux_sym_visibility_modifier_token2] = ACTIONS(1541), - [aux_sym_visibility_modifier_token3] = ACTIONS(1541), - [aux_sym__arrow_function_header_token1] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1539), - [aux_sym_cast_type_token1] = ACTIONS(1541), - [aux_sym_echo_statement_token1] = ACTIONS(1541), - [aux_sym_exit_statement_token1] = ACTIONS(1541), - [anon_sym_unset] = ACTIONS(1541), - [aux_sym_declare_statement_token1] = ACTIONS(1541), - [aux_sym_declare_statement_token2] = ACTIONS(1541), - [sym_float] = ACTIONS(1541), - [aux_sym_try_statement_token1] = ACTIONS(1541), - [aux_sym_goto_statement_token1] = ACTIONS(1541), - [aux_sym_continue_statement_token1] = ACTIONS(1541), - [aux_sym_break_statement_token1] = ACTIONS(1541), - [sym_integer] = ACTIONS(1541), - [aux_sym_return_statement_token1] = ACTIONS(1541), - [aux_sym_throw_expression_token1] = ACTIONS(1541), - [aux_sym_while_statement_token1] = ACTIONS(1541), - [aux_sym_while_statement_token2] = ACTIONS(1541), - [aux_sym_do_statement_token1] = ACTIONS(1541), - [aux_sym_for_statement_token1] = ACTIONS(1541), - [aux_sym_for_statement_token2] = ACTIONS(1541), - [aux_sym_foreach_statement_token1] = ACTIONS(1541), - [aux_sym_foreach_statement_token2] = ACTIONS(1541), - [aux_sym_if_statement_token1] = ACTIONS(1541), - [aux_sym_if_statement_token2] = ACTIONS(1541), - [aux_sym_else_if_clause_token1] = ACTIONS(1541), - [aux_sym_else_clause_token1] = ACTIONS(1541), - [aux_sym_match_expression_token1] = ACTIONS(1541), - [aux_sym_match_default_expression_token1] = ACTIONS(1541), - [aux_sym_switch_statement_token1] = ACTIONS(1541), - [aux_sym_switch_block_token1] = ACTIONS(1541), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_TILDE] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_AT] = ACTIONS(1539), - [aux_sym_clone_expression_token1] = ACTIONS(1541), - [aux_sym_print_intrinsic_token1] = ACTIONS(1541), - [aux_sym_object_creation_expression_token1] = ACTIONS(1541), - [anon_sym_DASH_DASH] = ACTIONS(1539), - [anon_sym_PLUS_PLUS] = ACTIONS(1539), - [aux_sym__list_destructing_token1] = ACTIONS(1541), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_self] = ACTIONS(1541), - [anon_sym_parent] = ACTIONS(1541), - [aux_sym__argument_name_token1] = ACTIONS(1541), - [aux_sym__argument_name_token2] = ACTIONS(1541), - [anon_sym_POUND_LBRACK] = ACTIONS(1539), - [aux_sym_encapsed_string_token1] = ACTIONS(1539), - [anon_sym_DQUOTE] = ACTIONS(1539), - [aux_sym_string_token1] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1539), - [anon_sym_LT_LT_LT] = ACTIONS(1539), - [anon_sym_BQUOTE] = ACTIONS(1539), - [anon_sym_DOLLAR] = ACTIONS(1539), - [aux_sym_yield_expression_token1] = ACTIONS(1541), - [aux_sym_include_expression_token1] = ACTIONS(1541), - [aux_sym_include_once_expression_token1] = ACTIONS(1541), - [aux_sym_require_expression_token1] = ACTIONS(1541), - [aux_sym_require_once_expression_token1] = ACTIONS(1541), + [ts_builtin_sym_end] = ACTIONS(1512), + [sym_name] = ACTIONS(1514), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1512), + [aux_sym_function_static_declaration_token1] = ACTIONS(1514), + [aux_sym_global_declaration_token1] = ACTIONS(1514), + [aux_sym_namespace_definition_token1] = ACTIONS(1514), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1514), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1514), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1514), + [anon_sym_BSLASH] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [aux_sym_trait_declaration_token1] = ACTIONS(1514), + [aux_sym_interface_declaration_token1] = ACTIONS(1514), + [aux_sym_enum_declaration_token1] = ACTIONS(1514), + [aux_sym_enum_case_token1] = ACTIONS(1514), + [aux_sym_class_declaration_token1] = ACTIONS(1514), + [aux_sym_final_modifier_token1] = ACTIONS(1514), + [aux_sym_abstract_modifier_token1] = ACTIONS(1514), + [aux_sym_readonly_modifier_token1] = ACTIONS(1514), + [sym_var_modifier] = ACTIONS(1514), + [aux_sym_visibility_modifier_token1] = ACTIONS(1514), + [aux_sym_visibility_modifier_token2] = ACTIONS(1514), + [aux_sym_visibility_modifier_token3] = ACTIONS(1514), + [aux_sym__arrow_function_header_token1] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1512), + [aux_sym_cast_type_token1] = ACTIONS(1514), + [aux_sym_echo_statement_token1] = ACTIONS(1514), + [aux_sym_exit_statement_token1] = ACTIONS(1514), + [anon_sym_unset] = ACTIONS(1514), + [aux_sym_declare_statement_token1] = ACTIONS(1514), + [aux_sym_declare_statement_token2] = ACTIONS(1514), + [sym_float] = ACTIONS(1514), + [aux_sym_try_statement_token1] = ACTIONS(1514), + [aux_sym_goto_statement_token1] = ACTIONS(1514), + [aux_sym_continue_statement_token1] = ACTIONS(1514), + [aux_sym_break_statement_token1] = ACTIONS(1514), + [sym_integer] = ACTIONS(1514), + [aux_sym_return_statement_token1] = ACTIONS(1514), + [aux_sym_throw_expression_token1] = ACTIONS(1514), + [aux_sym_while_statement_token1] = ACTIONS(1514), + [aux_sym_while_statement_token2] = ACTIONS(1514), + [aux_sym_do_statement_token1] = ACTIONS(1514), + [aux_sym_for_statement_token1] = ACTIONS(1514), + [aux_sym_for_statement_token2] = ACTIONS(1514), + [aux_sym_foreach_statement_token1] = ACTIONS(1514), + [aux_sym_foreach_statement_token2] = ACTIONS(1514), + [aux_sym_if_statement_token1] = ACTIONS(1514), + [aux_sym_if_statement_token2] = ACTIONS(1514), + [aux_sym_else_if_clause_token1] = ACTIONS(1514), + [aux_sym_else_clause_token1] = ACTIONS(1514), + [aux_sym_match_expression_token1] = ACTIONS(1514), + [aux_sym_match_default_expression_token1] = ACTIONS(1514), + [aux_sym_switch_statement_token1] = ACTIONS(1514), + [aux_sym_switch_block_token1] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [aux_sym_clone_expression_token1] = ACTIONS(1514), + [aux_sym_print_intrinsic_token1] = ACTIONS(1514), + [aux_sym_object_creation_expression_token1] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_PLUS_PLUS] = ACTIONS(1512), + [aux_sym__list_destructing_token1] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_self] = ACTIONS(1514), + [anon_sym_parent] = ACTIONS(1514), + [aux_sym__argument_name_token1] = ACTIONS(1514), + [aux_sym__argument_name_token2] = ACTIONS(1514), + [anon_sym_POUND_LBRACK] = ACTIONS(1512), + [aux_sym_encapsed_string_token1] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [aux_sym_string_token1] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_LT_LT_LT] = ACTIONS(1512), + [anon_sym_BQUOTE] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1512), + [aux_sym_yield_expression_token1] = ACTIONS(1514), + [aux_sym_include_expression_token1] = ACTIONS(1514), + [aux_sym_include_once_expression_token1] = ACTIONS(1514), + [aux_sym_require_expression_token1] = ACTIONS(1514), + [aux_sym_require_once_expression_token1] = ACTIONS(1514), [sym_comment] = ACTIONS(5), }, [561] = { [sym_text_interpolation] = STATE(561), - [ts_builtin_sym_end] = ACTIONS(1195), - [sym_name] = ACTIONS(1197), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1195), - [aux_sym_function_static_declaration_token1] = ACTIONS(1197), - [aux_sym_global_declaration_token1] = ACTIONS(1197), - [aux_sym_namespace_definition_token1] = ACTIONS(1197), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1197), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1197), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1197), - [anon_sym_BSLASH] = ACTIONS(1195), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_RBRACE] = ACTIONS(1195), - [aux_sym_trait_declaration_token1] = ACTIONS(1197), - [aux_sym_interface_declaration_token1] = ACTIONS(1197), - [aux_sym_enum_declaration_token1] = ACTIONS(1197), - [aux_sym_enum_case_token1] = ACTIONS(1197), - [aux_sym_class_declaration_token1] = ACTIONS(1197), - [aux_sym_final_modifier_token1] = ACTIONS(1197), - [aux_sym_abstract_modifier_token1] = ACTIONS(1197), - [aux_sym_readonly_modifier_token1] = ACTIONS(1197), - [aux_sym_visibility_modifier_token1] = ACTIONS(1197), - [aux_sym_visibility_modifier_token2] = ACTIONS(1197), - [aux_sym_visibility_modifier_token3] = ACTIONS(1197), - [aux_sym__arrow_function_header_token1] = ACTIONS(1197), - [anon_sym_LPAREN] = ACTIONS(1195), - [aux_sym_cast_type_token1] = ACTIONS(1197), - [aux_sym_echo_statement_token1] = ACTIONS(1197), - [aux_sym_exit_statement_token1] = ACTIONS(1197), - [anon_sym_unset] = ACTIONS(1197), - [aux_sym_declare_statement_token1] = ACTIONS(1197), - [aux_sym_declare_statement_token2] = ACTIONS(1197), - [sym_float] = ACTIONS(1197), - [aux_sym_try_statement_token1] = ACTIONS(1197), - [aux_sym_goto_statement_token1] = ACTIONS(1197), - [aux_sym_continue_statement_token1] = ACTIONS(1197), - [aux_sym_break_statement_token1] = ACTIONS(1197), - [sym_integer] = ACTIONS(1197), - [aux_sym_return_statement_token1] = ACTIONS(1197), - [aux_sym_throw_expression_token1] = ACTIONS(1197), - [aux_sym_while_statement_token1] = ACTIONS(1197), - [aux_sym_while_statement_token2] = ACTIONS(1197), - [aux_sym_do_statement_token1] = ACTIONS(1197), - [aux_sym_for_statement_token1] = ACTIONS(1197), - [aux_sym_for_statement_token2] = ACTIONS(1197), - [aux_sym_foreach_statement_token1] = ACTIONS(1197), - [aux_sym_foreach_statement_token2] = ACTIONS(1197), - [aux_sym_if_statement_token1] = ACTIONS(1197), - [aux_sym_if_statement_token2] = ACTIONS(1197), - [aux_sym_else_if_clause_token1] = ACTIONS(1197), - [aux_sym_else_clause_token1] = ACTIONS(1197), - [aux_sym_match_expression_token1] = ACTIONS(1197), - [aux_sym_match_default_expression_token1] = ACTIONS(1197), - [aux_sym_switch_statement_token1] = ACTIONS(1197), - [aux_sym_switch_block_token1] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_AT] = ACTIONS(1195), - [aux_sym_clone_expression_token1] = ACTIONS(1197), - [aux_sym_print_intrinsic_token1] = ACTIONS(1197), - [aux_sym_object_creation_expression_token1] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [aux_sym__list_destructing_token1] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1195), - [anon_sym_self] = ACTIONS(1197), - [anon_sym_parent] = ACTIONS(1197), - [aux_sym__argument_name_token1] = ACTIONS(1197), - [aux_sym__argument_name_token2] = ACTIONS(1197), - [anon_sym_POUND_LBRACK] = ACTIONS(1195), - [aux_sym_encapsed_string_token1] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [aux_sym_string_token1] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_LT_LT_LT] = ACTIONS(1195), - [anon_sym_BQUOTE] = ACTIONS(1195), - [anon_sym_DOLLAR] = ACTIONS(1195), - [aux_sym_yield_expression_token1] = ACTIONS(1197), - [aux_sym_include_expression_token1] = ACTIONS(1197), - [aux_sym_include_once_expression_token1] = ACTIONS(1197), - [aux_sym_require_expression_token1] = ACTIONS(1197), - [aux_sym_require_once_expression_token1] = ACTIONS(1197), + [ts_builtin_sym_end] = ACTIONS(1516), + [sym_name] = ACTIONS(1518), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1516), + [aux_sym_function_static_declaration_token1] = ACTIONS(1518), + [aux_sym_global_declaration_token1] = ACTIONS(1518), + [aux_sym_namespace_definition_token1] = ACTIONS(1518), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1518), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1518), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1518), + [anon_sym_BSLASH] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [aux_sym_trait_declaration_token1] = ACTIONS(1518), + [aux_sym_interface_declaration_token1] = ACTIONS(1518), + [aux_sym_enum_declaration_token1] = ACTIONS(1518), + [aux_sym_enum_case_token1] = ACTIONS(1518), + [aux_sym_class_declaration_token1] = ACTIONS(1518), + [aux_sym_final_modifier_token1] = ACTIONS(1518), + [aux_sym_abstract_modifier_token1] = ACTIONS(1518), + [aux_sym_readonly_modifier_token1] = ACTIONS(1518), + [sym_var_modifier] = ACTIONS(1518), + [aux_sym_visibility_modifier_token1] = ACTIONS(1518), + [aux_sym_visibility_modifier_token2] = ACTIONS(1518), + [aux_sym_visibility_modifier_token3] = ACTIONS(1518), + [aux_sym__arrow_function_header_token1] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1516), + [aux_sym_cast_type_token1] = ACTIONS(1518), + [aux_sym_echo_statement_token1] = ACTIONS(1518), + [aux_sym_exit_statement_token1] = ACTIONS(1518), + [anon_sym_unset] = ACTIONS(1518), + [aux_sym_declare_statement_token1] = ACTIONS(1518), + [aux_sym_declare_statement_token2] = ACTIONS(1518), + [sym_float] = ACTIONS(1518), + [aux_sym_try_statement_token1] = ACTIONS(1518), + [aux_sym_goto_statement_token1] = ACTIONS(1518), + [aux_sym_continue_statement_token1] = ACTIONS(1518), + [aux_sym_break_statement_token1] = ACTIONS(1518), + [sym_integer] = ACTIONS(1518), + [aux_sym_return_statement_token1] = ACTIONS(1518), + [aux_sym_throw_expression_token1] = ACTIONS(1518), + [aux_sym_while_statement_token1] = ACTIONS(1518), + [aux_sym_while_statement_token2] = ACTIONS(1518), + [aux_sym_do_statement_token1] = ACTIONS(1518), + [aux_sym_for_statement_token1] = ACTIONS(1518), + [aux_sym_for_statement_token2] = ACTIONS(1518), + [aux_sym_foreach_statement_token1] = ACTIONS(1518), + [aux_sym_foreach_statement_token2] = ACTIONS(1518), + [aux_sym_if_statement_token1] = ACTIONS(1518), + [aux_sym_if_statement_token2] = ACTIONS(1518), + [aux_sym_else_if_clause_token1] = ACTIONS(1518), + [aux_sym_else_clause_token1] = ACTIONS(1518), + [aux_sym_match_expression_token1] = ACTIONS(1518), + [aux_sym_match_default_expression_token1] = ACTIONS(1518), + [aux_sym_switch_statement_token1] = ACTIONS(1518), + [aux_sym_switch_block_token1] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_AT] = ACTIONS(1516), + [aux_sym_clone_expression_token1] = ACTIONS(1518), + [aux_sym_print_intrinsic_token1] = ACTIONS(1518), + [aux_sym_object_creation_expression_token1] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [aux_sym__list_destructing_token1] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_self] = ACTIONS(1518), + [anon_sym_parent] = ACTIONS(1518), + [aux_sym__argument_name_token1] = ACTIONS(1518), + [aux_sym__argument_name_token2] = ACTIONS(1518), + [anon_sym_POUND_LBRACK] = ACTIONS(1516), + [aux_sym_encapsed_string_token1] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [aux_sym_string_token1] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_LT_LT_LT] = ACTIONS(1516), + [anon_sym_BQUOTE] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1516), + [aux_sym_yield_expression_token1] = ACTIONS(1518), + [aux_sym_include_expression_token1] = ACTIONS(1518), + [aux_sym_include_once_expression_token1] = ACTIONS(1518), + [aux_sym_require_expression_token1] = ACTIONS(1518), + [aux_sym_require_once_expression_token1] = ACTIONS(1518), [sym_comment] = ACTIONS(5), }, [562] = { [sym_text_interpolation] = STATE(562), - [ts_builtin_sym_end] = ACTIONS(1543), - [sym_name] = ACTIONS(1545), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1543), - [aux_sym_function_static_declaration_token1] = ACTIONS(1545), - [aux_sym_global_declaration_token1] = ACTIONS(1545), - [aux_sym_namespace_definition_token1] = ACTIONS(1545), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1545), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1545), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1545), - [anon_sym_BSLASH] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1543), - [aux_sym_trait_declaration_token1] = ACTIONS(1545), - [aux_sym_interface_declaration_token1] = ACTIONS(1545), - [aux_sym_enum_declaration_token1] = ACTIONS(1545), - [aux_sym_enum_case_token1] = ACTIONS(1545), - [aux_sym_class_declaration_token1] = ACTIONS(1545), - [aux_sym_final_modifier_token1] = ACTIONS(1545), - [aux_sym_abstract_modifier_token1] = ACTIONS(1545), - [aux_sym_readonly_modifier_token1] = ACTIONS(1545), - [aux_sym_visibility_modifier_token1] = ACTIONS(1545), - [aux_sym_visibility_modifier_token2] = ACTIONS(1545), - [aux_sym_visibility_modifier_token3] = ACTIONS(1545), - [aux_sym__arrow_function_header_token1] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1543), - [aux_sym_cast_type_token1] = ACTIONS(1545), - [aux_sym_echo_statement_token1] = ACTIONS(1545), - [aux_sym_exit_statement_token1] = ACTIONS(1545), - [anon_sym_unset] = ACTIONS(1545), - [aux_sym_declare_statement_token1] = ACTIONS(1545), - [aux_sym_declare_statement_token2] = ACTIONS(1545), - [sym_float] = ACTIONS(1545), - [aux_sym_try_statement_token1] = ACTIONS(1545), - [aux_sym_goto_statement_token1] = ACTIONS(1545), - [aux_sym_continue_statement_token1] = ACTIONS(1545), - [aux_sym_break_statement_token1] = ACTIONS(1545), - [sym_integer] = ACTIONS(1545), - [aux_sym_return_statement_token1] = ACTIONS(1545), - [aux_sym_throw_expression_token1] = ACTIONS(1545), - [aux_sym_while_statement_token1] = ACTIONS(1545), - [aux_sym_while_statement_token2] = ACTIONS(1545), - [aux_sym_do_statement_token1] = ACTIONS(1545), - [aux_sym_for_statement_token1] = ACTIONS(1545), - [aux_sym_for_statement_token2] = ACTIONS(1545), - [aux_sym_foreach_statement_token1] = ACTIONS(1545), - [aux_sym_foreach_statement_token2] = ACTIONS(1545), - [aux_sym_if_statement_token1] = ACTIONS(1545), - [aux_sym_if_statement_token2] = ACTIONS(1545), - [aux_sym_else_if_clause_token1] = ACTIONS(1545), - [aux_sym_else_clause_token1] = ACTIONS(1545), - [aux_sym_match_expression_token1] = ACTIONS(1545), - [aux_sym_match_default_expression_token1] = ACTIONS(1545), - [aux_sym_switch_statement_token1] = ACTIONS(1545), - [aux_sym_switch_block_token1] = ACTIONS(1545), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_AT] = ACTIONS(1543), - [aux_sym_clone_expression_token1] = ACTIONS(1545), - [aux_sym_print_intrinsic_token1] = ACTIONS(1545), - [aux_sym_object_creation_expression_token1] = ACTIONS(1545), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [aux_sym__list_destructing_token1] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_self] = ACTIONS(1545), - [anon_sym_parent] = ACTIONS(1545), - [aux_sym__argument_name_token1] = ACTIONS(1545), - [aux_sym__argument_name_token2] = ACTIONS(1545), - [anon_sym_POUND_LBRACK] = ACTIONS(1543), - [aux_sym_encapsed_string_token1] = ACTIONS(1543), - [anon_sym_DQUOTE] = ACTIONS(1543), - [aux_sym_string_token1] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_LT_LT_LT] = ACTIONS(1543), - [anon_sym_BQUOTE] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1543), - [aux_sym_yield_expression_token1] = ACTIONS(1545), - [aux_sym_include_expression_token1] = ACTIONS(1545), - [aux_sym_include_once_expression_token1] = ACTIONS(1545), - [aux_sym_require_expression_token1] = ACTIONS(1545), - [aux_sym_require_once_expression_token1] = ACTIONS(1545), + [ts_builtin_sym_end] = ACTIONS(1516), + [sym_name] = ACTIONS(1518), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1516), + [aux_sym_function_static_declaration_token1] = ACTIONS(1518), + [aux_sym_global_declaration_token1] = ACTIONS(1518), + [aux_sym_namespace_definition_token1] = ACTIONS(1518), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1518), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1518), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1518), + [anon_sym_BSLASH] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [aux_sym_trait_declaration_token1] = ACTIONS(1518), + [aux_sym_interface_declaration_token1] = ACTIONS(1518), + [aux_sym_enum_declaration_token1] = ACTIONS(1518), + [aux_sym_enum_case_token1] = ACTIONS(1518), + [aux_sym_class_declaration_token1] = ACTIONS(1518), + [aux_sym_final_modifier_token1] = ACTIONS(1518), + [aux_sym_abstract_modifier_token1] = ACTIONS(1518), + [aux_sym_readonly_modifier_token1] = ACTIONS(1518), + [sym_var_modifier] = ACTIONS(1518), + [aux_sym_visibility_modifier_token1] = ACTIONS(1518), + [aux_sym_visibility_modifier_token2] = ACTIONS(1518), + [aux_sym_visibility_modifier_token3] = ACTIONS(1518), + [aux_sym__arrow_function_header_token1] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1516), + [aux_sym_cast_type_token1] = ACTIONS(1518), + [aux_sym_echo_statement_token1] = ACTIONS(1518), + [aux_sym_exit_statement_token1] = ACTIONS(1518), + [anon_sym_unset] = ACTIONS(1518), + [aux_sym_declare_statement_token1] = ACTIONS(1518), + [aux_sym_declare_statement_token2] = ACTIONS(1518), + [sym_float] = ACTIONS(1518), + [aux_sym_try_statement_token1] = ACTIONS(1518), + [aux_sym_goto_statement_token1] = ACTIONS(1518), + [aux_sym_continue_statement_token1] = ACTIONS(1518), + [aux_sym_break_statement_token1] = ACTIONS(1518), + [sym_integer] = ACTIONS(1518), + [aux_sym_return_statement_token1] = ACTIONS(1518), + [aux_sym_throw_expression_token1] = ACTIONS(1518), + [aux_sym_while_statement_token1] = ACTIONS(1518), + [aux_sym_while_statement_token2] = ACTIONS(1518), + [aux_sym_do_statement_token1] = ACTIONS(1518), + [aux_sym_for_statement_token1] = ACTIONS(1518), + [aux_sym_for_statement_token2] = ACTIONS(1518), + [aux_sym_foreach_statement_token1] = ACTIONS(1518), + [aux_sym_foreach_statement_token2] = ACTIONS(1518), + [aux_sym_if_statement_token1] = ACTIONS(1518), + [aux_sym_if_statement_token2] = ACTIONS(1518), + [aux_sym_else_if_clause_token1] = ACTIONS(1518), + [aux_sym_else_clause_token1] = ACTIONS(1518), + [aux_sym_match_expression_token1] = ACTIONS(1518), + [aux_sym_match_default_expression_token1] = ACTIONS(1518), + [aux_sym_switch_statement_token1] = ACTIONS(1518), + [aux_sym_switch_block_token1] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_AT] = ACTIONS(1516), + [aux_sym_clone_expression_token1] = ACTIONS(1518), + [aux_sym_print_intrinsic_token1] = ACTIONS(1518), + [aux_sym_object_creation_expression_token1] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [aux_sym__list_destructing_token1] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_self] = ACTIONS(1518), + [anon_sym_parent] = ACTIONS(1518), + [aux_sym__argument_name_token1] = ACTIONS(1518), + [aux_sym__argument_name_token2] = ACTIONS(1518), + [anon_sym_POUND_LBRACK] = ACTIONS(1516), + [aux_sym_encapsed_string_token1] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [aux_sym_string_token1] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_LT_LT_LT] = ACTIONS(1516), + [anon_sym_BQUOTE] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1516), + [aux_sym_yield_expression_token1] = ACTIONS(1518), + [aux_sym_include_expression_token1] = ACTIONS(1518), + [aux_sym_include_once_expression_token1] = ACTIONS(1518), + [aux_sym_require_expression_token1] = ACTIONS(1518), + [aux_sym_require_once_expression_token1] = ACTIONS(1518), [sym_comment] = ACTIONS(5), }, [563] = { [sym_text_interpolation] = STATE(563), - [ts_builtin_sym_end] = ACTIONS(1547), - [sym_name] = ACTIONS(1549), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1547), - [aux_sym_function_static_declaration_token1] = ACTIONS(1549), - [aux_sym_global_declaration_token1] = ACTIONS(1549), - [aux_sym_namespace_definition_token1] = ACTIONS(1549), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1549), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1549), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1549), - [anon_sym_BSLASH] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1547), - [anon_sym_RBRACE] = ACTIONS(1547), - [aux_sym_trait_declaration_token1] = ACTIONS(1549), - [aux_sym_interface_declaration_token1] = ACTIONS(1549), - [aux_sym_enum_declaration_token1] = ACTIONS(1549), - [aux_sym_enum_case_token1] = ACTIONS(1549), - [aux_sym_class_declaration_token1] = ACTIONS(1549), - [aux_sym_final_modifier_token1] = ACTIONS(1549), - [aux_sym_abstract_modifier_token1] = ACTIONS(1549), - [aux_sym_readonly_modifier_token1] = ACTIONS(1549), - [aux_sym_visibility_modifier_token1] = ACTIONS(1549), - [aux_sym_visibility_modifier_token2] = ACTIONS(1549), - [aux_sym_visibility_modifier_token3] = ACTIONS(1549), - [aux_sym__arrow_function_header_token1] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1547), - [aux_sym_cast_type_token1] = ACTIONS(1549), - [aux_sym_echo_statement_token1] = ACTIONS(1549), - [aux_sym_exit_statement_token1] = ACTIONS(1549), - [anon_sym_unset] = ACTIONS(1549), - [aux_sym_declare_statement_token1] = ACTIONS(1549), - [aux_sym_declare_statement_token2] = ACTIONS(1549), - [sym_float] = ACTIONS(1549), - [aux_sym_try_statement_token1] = ACTIONS(1549), - [aux_sym_goto_statement_token1] = ACTIONS(1549), - [aux_sym_continue_statement_token1] = ACTIONS(1549), - [aux_sym_break_statement_token1] = ACTIONS(1549), - [sym_integer] = ACTIONS(1549), - [aux_sym_return_statement_token1] = ACTIONS(1549), - [aux_sym_throw_expression_token1] = ACTIONS(1549), - [aux_sym_while_statement_token1] = ACTIONS(1549), - [aux_sym_while_statement_token2] = ACTIONS(1549), - [aux_sym_do_statement_token1] = ACTIONS(1549), - [aux_sym_for_statement_token1] = ACTIONS(1549), - [aux_sym_for_statement_token2] = ACTIONS(1549), - [aux_sym_foreach_statement_token1] = ACTIONS(1549), - [aux_sym_foreach_statement_token2] = ACTIONS(1549), - [aux_sym_if_statement_token1] = ACTIONS(1549), - [aux_sym_if_statement_token2] = ACTIONS(1549), - [aux_sym_else_if_clause_token1] = ACTIONS(1549), - [aux_sym_else_clause_token1] = ACTIONS(1549), - [aux_sym_match_expression_token1] = ACTIONS(1549), - [aux_sym_match_default_expression_token1] = ACTIONS(1549), - [aux_sym_switch_statement_token1] = ACTIONS(1549), - [aux_sym_switch_block_token1] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1547), - [anon_sym_AT] = ACTIONS(1547), - [aux_sym_clone_expression_token1] = ACTIONS(1549), - [aux_sym_print_intrinsic_token1] = ACTIONS(1549), - [aux_sym_object_creation_expression_token1] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1547), - [anon_sym_PLUS_PLUS] = ACTIONS(1547), - [aux_sym__list_destructing_token1] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1547), - [anon_sym_self] = ACTIONS(1549), - [anon_sym_parent] = ACTIONS(1549), - [aux_sym__argument_name_token1] = ACTIONS(1549), - [aux_sym__argument_name_token2] = ACTIONS(1549), - [anon_sym_POUND_LBRACK] = ACTIONS(1547), - [aux_sym_encapsed_string_token1] = ACTIONS(1547), - [anon_sym_DQUOTE] = ACTIONS(1547), - [aux_sym_string_token1] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1547), - [anon_sym_LT_LT_LT] = ACTIONS(1547), - [anon_sym_BQUOTE] = ACTIONS(1547), - [anon_sym_DOLLAR] = ACTIONS(1547), - [aux_sym_yield_expression_token1] = ACTIONS(1549), - [aux_sym_include_expression_token1] = ACTIONS(1549), - [aux_sym_include_once_expression_token1] = ACTIONS(1549), - [aux_sym_require_expression_token1] = ACTIONS(1549), - [aux_sym_require_once_expression_token1] = ACTIONS(1549), + [sym_name] = ACTIONS(1520), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1522), + [aux_sym_function_static_declaration_token1] = ACTIONS(1520), + [aux_sym_global_declaration_token1] = ACTIONS(1520), + [aux_sym_namespace_definition_token1] = ACTIONS(1520), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1520), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1520), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1520), + [anon_sym_BSLASH] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1522), + [aux_sym_trait_declaration_token1] = ACTIONS(1520), + [aux_sym_interface_declaration_token1] = ACTIONS(1520), + [aux_sym_enum_declaration_token1] = ACTIONS(1520), + [anon_sym_COLON] = ACTIONS(1522), + [aux_sym_class_declaration_token1] = ACTIONS(1520), + [aux_sym_final_modifier_token1] = ACTIONS(1520), + [aux_sym_abstract_modifier_token1] = ACTIONS(1520), + [aux_sym_readonly_modifier_token1] = ACTIONS(1520), + [sym_var_modifier] = ACTIONS(1520), + [aux_sym_visibility_modifier_token1] = ACTIONS(1520), + [aux_sym_visibility_modifier_token2] = ACTIONS(1520), + [aux_sym_visibility_modifier_token3] = ACTIONS(1520), + [aux_sym__arrow_function_header_token1] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1522), + [aux_sym_cast_type_token1] = ACTIONS(1520), + [aux_sym_echo_statement_token1] = ACTIONS(1520), + [aux_sym_exit_statement_token1] = ACTIONS(1520), + [anon_sym_unset] = ACTIONS(1520), + [aux_sym_declare_statement_token1] = ACTIONS(1520), + [sym_float] = ACTIONS(1520), + [aux_sym_try_statement_token1] = ACTIONS(1520), + [aux_sym_goto_statement_token1] = ACTIONS(1520), + [aux_sym_continue_statement_token1] = ACTIONS(1520), + [aux_sym_break_statement_token1] = ACTIONS(1520), + [sym_integer] = ACTIONS(1520), + [aux_sym_return_statement_token1] = ACTIONS(1520), + [aux_sym_throw_expression_token1] = ACTIONS(1520), + [aux_sym_while_statement_token1] = ACTIONS(1520), + [aux_sym_do_statement_token1] = ACTIONS(1520), + [aux_sym_for_statement_token1] = ACTIONS(1520), + [aux_sym_foreach_statement_token1] = ACTIONS(1520), + [aux_sym_if_statement_token1] = ACTIONS(1520), + [aux_sym_match_expression_token1] = ACTIONS(1520), + [aux_sym_switch_statement_token1] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_AT] = ACTIONS(1522), + [aux_sym_clone_expression_token1] = ACTIONS(1520), + [aux_sym_print_intrinsic_token1] = ACTIONS(1520), + [aux_sym_object_creation_expression_token1] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [aux_sym__list_destructing_token1] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_self] = ACTIONS(1520), + [anon_sym_parent] = ACTIONS(1520), + [aux_sym__argument_name_token1] = ACTIONS(1520), + [aux_sym__argument_name_token2] = ACTIONS(1520), + [anon_sym_POUND_LBRACK] = ACTIONS(1522), + [aux_sym_encapsed_string_token1] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [aux_sym_string_token1] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_LT_LT_LT] = ACTIONS(1522), + [anon_sym_BQUOTE] = ACTIONS(1522), + [anon_sym_DOLLAR] = ACTIONS(1522), + [aux_sym_yield_expression_token1] = ACTIONS(1520), + [aux_sym_include_expression_token1] = ACTIONS(1520), + [aux_sym_include_once_expression_token1] = ACTIONS(1520), + [aux_sym_require_expression_token1] = ACTIONS(1520), + [aux_sym_require_once_expression_token1] = ACTIONS(1520), [sym_comment] = ACTIONS(5), }, [564] = { [sym_text_interpolation] = STATE(564), - [ts_builtin_sym_end] = ACTIONS(1551), - [sym_name] = ACTIONS(1553), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1551), - [aux_sym_function_static_declaration_token1] = ACTIONS(1553), - [aux_sym_global_declaration_token1] = ACTIONS(1553), - [aux_sym_namespace_definition_token1] = ACTIONS(1553), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1553), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1553), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1553), - [anon_sym_BSLASH] = ACTIONS(1551), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_RBRACE] = ACTIONS(1551), - [aux_sym_trait_declaration_token1] = ACTIONS(1553), - [aux_sym_interface_declaration_token1] = ACTIONS(1553), - [aux_sym_enum_declaration_token1] = ACTIONS(1553), - [aux_sym_enum_case_token1] = ACTIONS(1553), - [aux_sym_class_declaration_token1] = ACTIONS(1553), - [aux_sym_final_modifier_token1] = ACTIONS(1553), - [aux_sym_abstract_modifier_token1] = ACTIONS(1553), - [aux_sym_readonly_modifier_token1] = ACTIONS(1553), - [aux_sym_visibility_modifier_token1] = ACTIONS(1553), - [aux_sym_visibility_modifier_token2] = ACTIONS(1553), - [aux_sym_visibility_modifier_token3] = ACTIONS(1553), - [aux_sym__arrow_function_header_token1] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1551), - [aux_sym_cast_type_token1] = ACTIONS(1553), - [aux_sym_echo_statement_token1] = ACTIONS(1553), - [aux_sym_exit_statement_token1] = ACTIONS(1553), - [anon_sym_unset] = ACTIONS(1553), - [aux_sym_declare_statement_token1] = ACTIONS(1553), - [aux_sym_declare_statement_token2] = ACTIONS(1553), - [sym_float] = ACTIONS(1553), - [aux_sym_try_statement_token1] = ACTIONS(1553), - [aux_sym_goto_statement_token1] = ACTIONS(1553), - [aux_sym_continue_statement_token1] = ACTIONS(1553), - [aux_sym_break_statement_token1] = ACTIONS(1553), - [sym_integer] = ACTIONS(1553), - [aux_sym_return_statement_token1] = ACTIONS(1553), - [aux_sym_throw_expression_token1] = ACTIONS(1553), - [aux_sym_while_statement_token1] = ACTIONS(1553), - [aux_sym_while_statement_token2] = ACTIONS(1553), - [aux_sym_do_statement_token1] = ACTIONS(1553), - [aux_sym_for_statement_token1] = ACTIONS(1553), - [aux_sym_for_statement_token2] = ACTIONS(1553), - [aux_sym_foreach_statement_token1] = ACTIONS(1553), - [aux_sym_foreach_statement_token2] = ACTIONS(1553), - [aux_sym_if_statement_token1] = ACTIONS(1553), - [aux_sym_if_statement_token2] = ACTIONS(1553), - [aux_sym_else_if_clause_token1] = ACTIONS(1553), - [aux_sym_else_clause_token1] = ACTIONS(1553), - [aux_sym_match_expression_token1] = ACTIONS(1553), - [aux_sym_match_default_expression_token1] = ACTIONS(1553), - [aux_sym_switch_statement_token1] = ACTIONS(1553), - [aux_sym_switch_block_token1] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_AT] = ACTIONS(1551), - [aux_sym_clone_expression_token1] = ACTIONS(1553), - [aux_sym_print_intrinsic_token1] = ACTIONS(1553), - [aux_sym_object_creation_expression_token1] = ACTIONS(1553), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_PLUS_PLUS] = ACTIONS(1551), - [aux_sym__list_destructing_token1] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_self] = ACTIONS(1553), - [anon_sym_parent] = ACTIONS(1553), - [aux_sym__argument_name_token1] = ACTIONS(1553), - [aux_sym__argument_name_token2] = ACTIONS(1553), - [anon_sym_POUND_LBRACK] = ACTIONS(1551), - [aux_sym_encapsed_string_token1] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [aux_sym_string_token1] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1551), - [anon_sym_LT_LT_LT] = ACTIONS(1551), - [anon_sym_BQUOTE] = ACTIONS(1551), - [anon_sym_DOLLAR] = ACTIONS(1551), - [aux_sym_yield_expression_token1] = ACTIONS(1553), - [aux_sym_include_expression_token1] = ACTIONS(1553), - [aux_sym_include_once_expression_token1] = ACTIONS(1553), - [aux_sym_require_expression_token1] = ACTIONS(1553), - [aux_sym_require_once_expression_token1] = ACTIONS(1553), + [sym_qualified_name] = STATE(703), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2495), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_primary_expression] = STATE(919), + [sym_parenthesized_expression] = STATE(702), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_variable] = STATE(675), + [sym_member_access_expression] = STATE(675), + [sym_nullsafe_member_access_expression] = STATE(675), + [sym_scoped_property_access_expression] = STATE(675), + [sym_function_call_expression] = STATE(644), + [sym_scoped_call_expression] = STATE(644), + [sym__scope_resolution_qualifier] = STATE(2464), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(644), + [sym_nullsafe_member_call_expression] = STATE(644), + [sym_subscript_expression] = STATE(644), + [sym__dereferencable_expression] = STATE(1678), + [sym_array_creation_expression] = STATE(702), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(700), + [sym_dynamic_variable_name] = STATE(644), + [sym_variable_name] = STATE(644), + [sym__reserved_identifier] = STATE(1549), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(1524), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(1526), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(589), + [aux_sym_print_intrinsic_token1] = ACTIONS(601), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(1528), [sym_comment] = ACTIONS(5), }, [565] = { [sym_text_interpolation] = STATE(565), - [ts_builtin_sym_end] = ACTIONS(1555), - [sym_name] = ACTIONS(1557), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1555), - [aux_sym_function_static_declaration_token1] = ACTIONS(1557), - [aux_sym_global_declaration_token1] = ACTIONS(1557), - [aux_sym_namespace_definition_token1] = ACTIONS(1557), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1557), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1557), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1557), - [anon_sym_BSLASH] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1555), - [anon_sym_RBRACE] = ACTIONS(1555), - [aux_sym_trait_declaration_token1] = ACTIONS(1557), - [aux_sym_interface_declaration_token1] = ACTIONS(1557), - [aux_sym_enum_declaration_token1] = ACTIONS(1557), - [aux_sym_enum_case_token1] = ACTIONS(1557), - [aux_sym_class_declaration_token1] = ACTIONS(1557), - [aux_sym_final_modifier_token1] = ACTIONS(1557), - [aux_sym_abstract_modifier_token1] = ACTIONS(1557), - [aux_sym_readonly_modifier_token1] = ACTIONS(1557), - [aux_sym_visibility_modifier_token1] = ACTIONS(1557), - [aux_sym_visibility_modifier_token2] = ACTIONS(1557), - [aux_sym_visibility_modifier_token3] = ACTIONS(1557), - [aux_sym__arrow_function_header_token1] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1555), - [aux_sym_cast_type_token1] = ACTIONS(1557), - [aux_sym_echo_statement_token1] = ACTIONS(1557), - [aux_sym_exit_statement_token1] = ACTIONS(1557), - [anon_sym_unset] = ACTIONS(1557), - [aux_sym_declare_statement_token1] = ACTIONS(1557), - [aux_sym_declare_statement_token2] = ACTIONS(1557), - [sym_float] = ACTIONS(1557), - [aux_sym_try_statement_token1] = ACTIONS(1557), - [aux_sym_goto_statement_token1] = ACTIONS(1557), - [aux_sym_continue_statement_token1] = ACTIONS(1557), - [aux_sym_break_statement_token1] = ACTIONS(1557), - [sym_integer] = ACTIONS(1557), - [aux_sym_return_statement_token1] = ACTIONS(1557), - [aux_sym_throw_expression_token1] = ACTIONS(1557), - [aux_sym_while_statement_token1] = ACTIONS(1557), - [aux_sym_while_statement_token2] = ACTIONS(1557), - [aux_sym_do_statement_token1] = ACTIONS(1557), - [aux_sym_for_statement_token1] = ACTIONS(1557), - [aux_sym_for_statement_token2] = ACTIONS(1557), - [aux_sym_foreach_statement_token1] = ACTIONS(1557), - [aux_sym_foreach_statement_token2] = ACTIONS(1557), - [aux_sym_if_statement_token1] = ACTIONS(1557), - [aux_sym_if_statement_token2] = ACTIONS(1557), - [aux_sym_else_if_clause_token1] = ACTIONS(1557), - [aux_sym_else_clause_token1] = ACTIONS(1557), - [aux_sym_match_expression_token1] = ACTIONS(1557), - [aux_sym_match_default_expression_token1] = ACTIONS(1557), - [aux_sym_switch_statement_token1] = ACTIONS(1557), - [aux_sym_switch_block_token1] = ACTIONS(1557), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_TILDE] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1555), - [anon_sym_AT] = ACTIONS(1555), - [aux_sym_clone_expression_token1] = ACTIONS(1557), - [aux_sym_print_intrinsic_token1] = ACTIONS(1557), - [aux_sym_object_creation_expression_token1] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1555), - [anon_sym_PLUS_PLUS] = ACTIONS(1555), - [aux_sym__list_destructing_token1] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1555), - [anon_sym_self] = ACTIONS(1557), - [anon_sym_parent] = ACTIONS(1557), - [aux_sym__argument_name_token1] = ACTIONS(1557), - [aux_sym__argument_name_token2] = ACTIONS(1557), - [anon_sym_POUND_LBRACK] = ACTIONS(1555), - [aux_sym_encapsed_string_token1] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(1555), - [aux_sym_string_token1] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1555), - [anon_sym_LT_LT_LT] = ACTIONS(1555), - [anon_sym_BQUOTE] = ACTIONS(1555), - [anon_sym_DOLLAR] = ACTIONS(1555), - [aux_sym_yield_expression_token1] = ACTIONS(1557), - [aux_sym_include_expression_token1] = ACTIONS(1557), - [aux_sym_include_once_expression_token1] = ACTIONS(1557), - [aux_sym_require_expression_token1] = ACTIONS(1557), - [aux_sym_require_once_expression_token1] = ACTIONS(1557), + [sym_qualified_name] = STATE(703), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2502), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_primary_expression] = STATE(919), + [sym_parenthesized_expression] = STATE(702), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_variable] = STATE(675), + [sym_member_access_expression] = STATE(675), + [sym_nullsafe_member_access_expression] = STATE(675), + [sym_scoped_property_access_expression] = STATE(675), + [sym_function_call_expression] = STATE(644), + [sym_scoped_call_expression] = STATE(644), + [sym__scope_resolution_qualifier] = STATE(2464), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(644), + [sym_nullsafe_member_call_expression] = STATE(644), + [sym_subscript_expression] = STATE(644), + [sym__dereferencable_expression] = STATE(1678), + [sym_array_creation_expression] = STATE(702), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(700), + [sym_dynamic_variable_name] = STATE(644), + [sym_variable_name] = STATE(644), + [sym__reserved_identifier] = STATE(1549), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(1524), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(1526), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(679), + [aux_sym_print_intrinsic_token1] = ACTIONS(689), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(1528), [sym_comment] = ACTIONS(5), }, [566] = { [sym_text_interpolation] = STATE(566), - [ts_builtin_sym_end] = ACTIONS(1559), - [sym_name] = ACTIONS(1561), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1559), - [aux_sym_function_static_declaration_token1] = ACTIONS(1561), - [aux_sym_global_declaration_token1] = ACTIONS(1561), - [aux_sym_namespace_definition_token1] = ACTIONS(1561), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1561), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1561), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1561), - [anon_sym_BSLASH] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_RBRACE] = ACTIONS(1559), - [aux_sym_trait_declaration_token1] = ACTIONS(1561), - [aux_sym_interface_declaration_token1] = ACTIONS(1561), - [aux_sym_enum_declaration_token1] = ACTIONS(1561), - [aux_sym_enum_case_token1] = ACTIONS(1561), - [aux_sym_class_declaration_token1] = ACTIONS(1561), - [aux_sym_final_modifier_token1] = ACTIONS(1561), - [aux_sym_abstract_modifier_token1] = ACTIONS(1561), - [aux_sym_readonly_modifier_token1] = ACTIONS(1561), - [aux_sym_visibility_modifier_token1] = ACTIONS(1561), - [aux_sym_visibility_modifier_token2] = ACTIONS(1561), - [aux_sym_visibility_modifier_token3] = ACTIONS(1561), - [aux_sym__arrow_function_header_token1] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1559), - [aux_sym_cast_type_token1] = ACTIONS(1561), - [aux_sym_echo_statement_token1] = ACTIONS(1561), - [aux_sym_exit_statement_token1] = ACTIONS(1561), - [anon_sym_unset] = ACTIONS(1561), - [aux_sym_declare_statement_token1] = ACTIONS(1561), - [aux_sym_declare_statement_token2] = ACTIONS(1561), - [sym_float] = ACTIONS(1561), - [aux_sym_try_statement_token1] = ACTIONS(1561), - [aux_sym_goto_statement_token1] = ACTIONS(1561), - [aux_sym_continue_statement_token1] = ACTIONS(1561), - [aux_sym_break_statement_token1] = ACTIONS(1561), - [sym_integer] = ACTIONS(1561), - [aux_sym_return_statement_token1] = ACTIONS(1561), - [aux_sym_throw_expression_token1] = ACTIONS(1561), - [aux_sym_while_statement_token1] = ACTIONS(1561), - [aux_sym_while_statement_token2] = ACTIONS(1561), - [aux_sym_do_statement_token1] = ACTIONS(1561), - [aux_sym_for_statement_token1] = ACTIONS(1561), - [aux_sym_for_statement_token2] = ACTIONS(1561), - [aux_sym_foreach_statement_token1] = ACTIONS(1561), - [aux_sym_foreach_statement_token2] = ACTIONS(1561), - [aux_sym_if_statement_token1] = ACTIONS(1561), - [aux_sym_if_statement_token2] = ACTIONS(1561), - [aux_sym_else_if_clause_token1] = ACTIONS(1561), - [aux_sym_else_clause_token1] = ACTIONS(1561), - [aux_sym_match_expression_token1] = ACTIONS(1561), - [aux_sym_match_default_expression_token1] = ACTIONS(1561), - [aux_sym_switch_statement_token1] = ACTIONS(1561), - [aux_sym_switch_block_token1] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_AT] = ACTIONS(1559), - [aux_sym_clone_expression_token1] = ACTIONS(1561), - [aux_sym_print_intrinsic_token1] = ACTIONS(1561), - [aux_sym_object_creation_expression_token1] = ACTIONS(1561), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [aux_sym__list_destructing_token1] = ACTIONS(1561), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_self] = ACTIONS(1561), - [anon_sym_parent] = ACTIONS(1561), - [aux_sym__argument_name_token1] = ACTIONS(1561), - [aux_sym__argument_name_token2] = ACTIONS(1561), - [anon_sym_POUND_LBRACK] = ACTIONS(1559), - [aux_sym_encapsed_string_token1] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1559), - [aux_sym_string_token1] = ACTIONS(1559), - [anon_sym_SQUOTE] = ACTIONS(1559), - [anon_sym_LT_LT_LT] = ACTIONS(1559), - [anon_sym_BQUOTE] = ACTIONS(1559), - [anon_sym_DOLLAR] = ACTIONS(1559), - [aux_sym_yield_expression_token1] = ACTIONS(1561), - [aux_sym_include_expression_token1] = ACTIONS(1561), - [aux_sym_include_once_expression_token1] = ACTIONS(1561), - [aux_sym_require_expression_token1] = ACTIONS(1561), - [aux_sym_require_once_expression_token1] = ACTIONS(1561), + [sym_qualified_name] = STATE(833), + [sym_namespace_name_as_prefix] = STATE(2606), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2254), + [sym__arrow_function_header] = STATE(2603), + [sym_arrow_function] = STATE(1148), + [sym_literal] = STATE(1148), + [sym_throw_expression] = STATE(1148), + [sym_primary_expression] = STATE(1129), + [sym_parenthesized_expression] = STATE(839), + [sym_class_constant_access_expression] = STATE(906), + [sym_print_intrinsic] = STATE(1148), + [sym_anonymous_function_creation_expression] = STATE(1148), + [sym_object_creation_expression] = STATE(1148), + [sym_update_expression] = STATE(1148), + [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(771), + [sym_scoped_call_expression] = STATE(771), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(771), + [sym_nullsafe_member_call_expression] = STATE(771), + [sym_subscript_expression] = STATE(771), + [sym__dereferencable_expression] = STATE(1671), + [sym_array_creation_expression] = STATE(839), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1756), + [sym_encapsed_string] = STATE(884), + [sym_string] = STATE(884), + [sym_heredoc] = STATE(884), + [sym_nowdoc] = STATE(884), + [sym_shell_command_expression] = STATE(1148), + [sym_boolean] = STATE(1137), + [sym_null] = STATE(1137), + [sym__string] = STATE(845), + [sym_dynamic_variable_name] = STATE(771), + [sym_variable_name] = STATE(771), + [sym__reserved_identifier] = STATE(1578), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(1530), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(669), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(1532), + [aux_sym_cast_type_token1] = ACTIONS(256), + [sym_float] = ACTIONS(266), + [sym_integer] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(278), + [aux_sym_print_intrinsic_token1] = ACTIONS(302), + [aux_sym_object_creation_expression_token1] = ACTIONS(304), + [anon_sym_DASH_DASH] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(314), + [aux_sym__argument_name_token2] = ACTIONS(316), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(320), + [aux_sym_string_token1] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_LT_LT_LT] = ACTIONS(324), + [anon_sym_BQUOTE] = ACTIONS(326), + [anon_sym_DOLLAR] = ACTIONS(1534), [sym_comment] = ACTIONS(5), }, [567] = { [sym_text_interpolation] = STATE(567), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__unary_expression] = STATE(935), - [sym_unary_op_expression] = STATE(970), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(601), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_function_call_expression] = STATE(583), - [sym_scoped_call_expression] = STATE(583), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(583), - [sym_nullsafe_member_call_expression] = STATE(583), - [sym_subscript_expression] = STATE(583), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(583), - [sym_variable_name] = STATE(583), - [sym_include_expression] = STATE(935), - [sym_include_once_expression] = STATE(935), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(630), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [aux_sym_clone_expression_token1] = ACTIONS(642), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(1563), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_include_expression_token1] = ACTIONS(652), - [aux_sym_include_once_expression_token1] = ACTIONS(654), + [sym_qualified_name] = STATE(703), + [sym_namespace_name_as_prefix] = STATE(2494), + [sym_namespace_name] = STATE(2605), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2461), + [sym_arrow_function] = STATE(930), + [sym_literal] = STATE(930), + [sym_throw_expression] = STATE(930), + [sym_primary_expression] = STATE(919), + [sym_parenthesized_expression] = STATE(702), + [sym_class_constant_access_expression] = STATE(769), + [sym_print_intrinsic] = STATE(930), + [sym_anonymous_function_creation_expression] = STATE(930), + [sym_object_creation_expression] = STATE(930), + [sym_update_expression] = STATE(930), + [sym_cast_variable] = STATE(675), + [sym_member_access_expression] = STATE(675), + [sym_nullsafe_member_access_expression] = STATE(675), + [sym_scoped_property_access_expression] = STATE(675), + [sym_function_call_expression] = STATE(644), + [sym_scoped_call_expression] = STATE(644), + [sym__scope_resolution_qualifier] = STATE(2464), + [sym_relative_scope] = STATE(2597), + [sym_member_call_expression] = STATE(644), + [sym_nullsafe_member_call_expression] = STATE(644), + [sym_subscript_expression] = STATE(644), + [sym__dereferencable_expression] = STATE(1678), + [sym_array_creation_expression] = STATE(702), + [sym_attribute_group] = STATE(1046), + [sym_attribute_list] = STATE(1894), + [sym_encapsed_string] = STATE(753), + [sym_string] = STATE(753), + [sym_heredoc] = STATE(753), + [sym_nowdoc] = STATE(753), + [sym_shell_command_expression] = STATE(930), + [sym_boolean] = STATE(972), + [sym_null] = STATE(972), + [sym__string] = STATE(700), + [sym_dynamic_variable_name] = STATE(644), + [sym_variable_name] = STATE(644), + [sym__reserved_identifier] = STATE(1549), + [aux_sym_attribute_list_repeat1] = STATE(976), + [sym_name] = ACTIONS(1524), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(573), + [aux_sym_namespace_definition_token1] = ACTIONS(575), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(1526), + [aux_sym_cast_type_token1] = ACTIONS(585), + [sym_float] = ACTIONS(587), + [sym_integer] = ACTIONS(587), + [aux_sym_throw_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(649), + [aux_sym_object_creation_expression_token1] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_self] = ACTIONS(312), + [anon_sym_parent] = ACTIONS(312), + [aux_sym__argument_name_token1] = ACTIONS(609), + [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(318), + [aux_sym_encapsed_string_token1] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_string_token1] = ACTIONS(615), + [anon_sym_SQUOTE] = ACTIONS(615), + [anon_sym_LT_LT_LT] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(1528), [sym_comment] = ACTIONS(5), }, [568] = { [sym_text_interpolation] = STATE(568), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__unary_expression] = STATE(935), - [sym_unary_op_expression] = STATE(970), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(601), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_function_call_expression] = STATE(583), - [sym_scoped_call_expression] = STATE(583), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(583), - [sym_nullsafe_member_call_expression] = STATE(583), - [sym_subscript_expression] = STATE(583), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(583), - [sym_variable_name] = STATE(583), - [sym_include_expression] = STATE(935), - [sym_include_once_expression] = STATE(935), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(576), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(1563), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(5), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_COMMA] = ACTIONS(1536), + [anon_sym_EQ] = ACTIONS(1538), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [aux_sym_base_clause_token1] = ACTIONS(1536), + [anon_sym_COLON] = ACTIONS(1538), + [aux_sym_class_interface_clause_token1] = ACTIONS(1536), + [anon_sym_EQ_GT] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_RPAREN] = ACTIONS(1536), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1536), + [anon_sym_PLUS_PLUS] = ACTIONS(1536), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1536), + [anon_sym_STAR_EQ] = ACTIONS(1536), + [anon_sym_SLASH_EQ] = ACTIONS(1536), + [anon_sym_PERCENT_EQ] = ACTIONS(1536), + [anon_sym_PLUS_EQ] = ACTIONS(1536), + [anon_sym_DASH_EQ] = ACTIONS(1536), + [anon_sym_DOT_EQ] = ACTIONS(1536), + [anon_sym_LT_LT_EQ] = ACTIONS(1536), + [anon_sym_GT_GT_EQ] = ACTIONS(1536), + [anon_sym_AMP_EQ] = ACTIONS(1536), + [anon_sym_CARET_EQ] = ACTIONS(1536), + [anon_sym_PIPE_EQ] = ACTIONS(1536), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1536), + [anon_sym_DASH_GT] = ACTIONS(1536), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_RBRACK] = ACTIONS(1536), + [aux_sym_binary_expression_token1] = ACTIONS(1536), + [anon_sym_QMARK_QMARK] = ACTIONS(1538), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [aux_sym_binary_expression_token2] = ACTIONS(1536), + [aux_sym_binary_expression_token3] = ACTIONS(1536), + [aux_sym_binary_expression_token4] = ACTIONS(1536), + [anon_sym_PIPE_PIPE] = ACTIONS(1536), + [anon_sym_AMP_AMP] = ACTIONS(1536), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_LT_GT] = ACTIONS(1536), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1536), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1536), + [anon_sym_LT] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1538), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1536), + [anon_sym_LT_EQ_GT] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_DOT] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1538), + [anon_sym_PERCENT] = ACTIONS(1538), + [sym_comment] = ACTIONS(1540), }, [569] = { [sym_text_interpolation] = STATE(569), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__unary_expression] = STATE(935), - [sym_unary_op_expression] = STATE(970), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(637), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_function_call_expression] = STATE(611), - [sym_scoped_call_expression] = STATE(611), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(611), - [sym_nullsafe_member_call_expression] = STATE(611), - [sym_subscript_expression] = STATE(611), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(611), - [sym_variable_name] = STATE(611), - [sym_include_expression] = STATE(935), - [sym_include_once_expression] = STATE(935), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(854), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(590), - [aux_sym_clone_expression_token1] = ACTIONS(594), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(1563), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_include_expression_token1] = ACTIONS(622), - [aux_sym_include_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(5), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_COMMA] = ACTIONS(1542), + [anon_sym_EQ] = ACTIONS(1544), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [aux_sym_base_clause_token1] = ACTIONS(1542), + [anon_sym_COLON] = ACTIONS(1544), + [aux_sym_class_interface_clause_token1] = ACTIONS(1542), + [anon_sym_EQ_GT] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_QMARK] = ACTIONS(1544), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_COLON_COLON] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1542), + [anon_sym_STAR_EQ] = ACTIONS(1542), + [anon_sym_SLASH_EQ] = ACTIONS(1542), + [anon_sym_PERCENT_EQ] = ACTIONS(1542), + [anon_sym_PLUS_EQ] = ACTIONS(1542), + [anon_sym_DASH_EQ] = ACTIONS(1542), + [anon_sym_DOT_EQ] = ACTIONS(1542), + [anon_sym_LT_LT_EQ] = ACTIONS(1542), + [anon_sym_GT_GT_EQ] = ACTIONS(1542), + [anon_sym_AMP_EQ] = ACTIONS(1542), + [anon_sym_CARET_EQ] = ACTIONS(1542), + [anon_sym_PIPE_EQ] = ACTIONS(1542), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1542), + [anon_sym_DASH_GT] = ACTIONS(1542), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(1542), + [aux_sym_binary_expression_token1] = ACTIONS(1542), + [anon_sym_QMARK_QMARK] = ACTIONS(1544), + [anon_sym_STAR_STAR] = ACTIONS(1544), + [aux_sym_binary_expression_token2] = ACTIONS(1542), + [aux_sym_binary_expression_token3] = ACTIONS(1542), + [aux_sym_binary_expression_token4] = ACTIONS(1542), + [anon_sym_PIPE_PIPE] = ACTIONS(1542), + [anon_sym_AMP_AMP] = ACTIONS(1542), + [anon_sym_CARET] = ACTIONS(1544), + [anon_sym_EQ_EQ] = ACTIONS(1544), + [anon_sym_BANG_EQ] = ACTIONS(1544), + [anon_sym_LT_GT] = ACTIONS(1542), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1542), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1542), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_LT_EQ] = ACTIONS(1544), + [anon_sym_GT_EQ] = ACTIONS(1542), + [anon_sym_LT_EQ_GT] = ACTIONS(1542), + [anon_sym_LT_LT] = ACTIONS(1544), + [anon_sym_GT_GT] = ACTIONS(1544), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1544), + [sym_comment] = ACTIONS(1540), }, [570] = { [sym_text_interpolation] = STATE(570), - [sym_qualified_name] = STATE(851), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym__unary_expression] = STATE(1124), - [sym_unary_op_expression] = STATE(1118), - [sym_clone_expression] = STATE(1118), - [sym__primary_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(839), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_expression] = STATE(1118), - [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(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2617), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1674), - [sym_array_creation_expression] = STATE(839), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(839), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_include_expression] = STATE(1124), - [sym_include_once_expression] = STATE(1124), - [sym__reserved_identifier] = STATE(1530), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(660), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(249), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(291), - [aux_sym_clone_expression_token1] = ACTIONS(295), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(323), - [aux_sym_include_expression_token1] = ACTIONS(327), - [aux_sym_include_once_expression_token1] = ACTIONS(329), - [sym_comment] = ACTIONS(5), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_COMMA] = ACTIONS(1546), + [anon_sym_EQ] = ACTIONS(1548), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [aux_sym_base_clause_token1] = ACTIONS(1546), + [anon_sym_COLON] = ACTIONS(1548), + [aux_sym_class_interface_clause_token1] = ACTIONS(1546), + [anon_sym_EQ_GT] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_RPAREN] = ACTIONS(1546), + [anon_sym_QMARK] = ACTIONS(1548), + [anon_sym_PIPE] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_COLON_COLON] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1546), + [anon_sym_STAR_EQ] = ACTIONS(1546), + [anon_sym_SLASH_EQ] = ACTIONS(1546), + [anon_sym_PERCENT_EQ] = ACTIONS(1546), + [anon_sym_PLUS_EQ] = ACTIONS(1546), + [anon_sym_DASH_EQ] = ACTIONS(1546), + [anon_sym_DOT_EQ] = ACTIONS(1546), + [anon_sym_LT_LT_EQ] = ACTIONS(1546), + [anon_sym_GT_GT_EQ] = ACTIONS(1546), + [anon_sym_AMP_EQ] = ACTIONS(1546), + [anon_sym_CARET_EQ] = ACTIONS(1546), + [anon_sym_PIPE_EQ] = ACTIONS(1546), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1546), + [anon_sym_DASH_GT] = ACTIONS(1546), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(1546), + [aux_sym_binary_expression_token1] = ACTIONS(1546), + [anon_sym_QMARK_QMARK] = ACTIONS(1548), + [anon_sym_STAR_STAR] = ACTIONS(1548), + [aux_sym_binary_expression_token2] = ACTIONS(1546), + [aux_sym_binary_expression_token3] = ACTIONS(1546), + [aux_sym_binary_expression_token4] = ACTIONS(1546), + [anon_sym_PIPE_PIPE] = ACTIONS(1546), + [anon_sym_AMP_AMP] = ACTIONS(1546), + [anon_sym_CARET] = ACTIONS(1548), + [anon_sym_EQ_EQ] = ACTIONS(1548), + [anon_sym_BANG_EQ] = ACTIONS(1548), + [anon_sym_LT_GT] = ACTIONS(1546), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1546), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1546), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_GT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(1548), + [anon_sym_GT_EQ] = ACTIONS(1546), + [anon_sym_LT_EQ_GT] = ACTIONS(1546), + [anon_sym_LT_LT] = ACTIONS(1548), + [anon_sym_GT_GT] = ACTIONS(1548), + [anon_sym_DOT] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_SLASH] = ACTIONS(1548), + [anon_sym_PERCENT] = ACTIONS(1548), + [sym_comment] = ACTIONS(1540), }, [571] = { [sym_text_interpolation] = STATE(571), - [sym_qualified_name] = STATE(715), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__unary_expression] = STATE(935), - [sym_unary_op_expression] = STATE(970), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(717), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_expression] = STATE(970), - [sym_cast_variable] = STATE(601), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_function_call_expression] = STATE(583), - [sym_scoped_call_expression] = STATE(583), - [sym__scope_resolution_qualifier] = STATE(2500), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(583), - [sym_nullsafe_member_call_expression] = STATE(583), - [sym_subscript_expression] = STATE(583), - [sym__dereferencable_expression] = STATE(1742), - [sym_array_creation_expression] = STATE(717), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(717), - [sym_dynamic_variable_name] = STATE(583), - [sym_variable_name] = STATE(583), - [sym_include_expression] = STATE(935), - [sym_include_once_expression] = STATE(935), - [sym__reserved_identifier] = STATE(1532), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(670), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(678), - [aux_sym_clone_expression_token1] = ACTIONS(682), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(1563), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(616), - [aux_sym_include_expression_token1] = ACTIONS(692), - [aux_sym_include_once_expression_token1] = ACTIONS(694), - [sym_comment] = ACTIONS(5), - }, - [572] = { - [sym_text_interpolation] = STATE(572), - [sym_name] = ACTIONS(1567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1569), - [aux_sym_function_static_declaration_token1] = ACTIONS(1567), - [aux_sym_global_declaration_token1] = ACTIONS(1567), - [aux_sym_namespace_definition_token1] = ACTIONS(1567), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1567), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1567), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1567), - [anon_sym_BSLASH] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1569), - [aux_sym_trait_declaration_token1] = ACTIONS(1567), - [aux_sym_interface_declaration_token1] = ACTIONS(1567), - [aux_sym_enum_declaration_token1] = ACTIONS(1567), - [anon_sym_COLON] = ACTIONS(1569), - [aux_sym_class_declaration_token1] = ACTIONS(1567), - [aux_sym_final_modifier_token1] = ACTIONS(1567), - [aux_sym_abstract_modifier_token1] = ACTIONS(1567), - [aux_sym_readonly_modifier_token1] = ACTIONS(1567), - [aux_sym_visibility_modifier_token1] = ACTIONS(1567), - [aux_sym_visibility_modifier_token2] = ACTIONS(1567), - [aux_sym_visibility_modifier_token3] = ACTIONS(1567), - [aux_sym__arrow_function_header_token1] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1569), - [aux_sym_cast_type_token1] = ACTIONS(1567), - [aux_sym_echo_statement_token1] = ACTIONS(1567), - [aux_sym_exit_statement_token1] = ACTIONS(1567), - [anon_sym_unset] = ACTIONS(1567), - [aux_sym_declare_statement_token1] = ACTIONS(1567), - [sym_float] = ACTIONS(1567), - [aux_sym_try_statement_token1] = ACTIONS(1567), - [aux_sym_goto_statement_token1] = ACTIONS(1567), - [aux_sym_continue_statement_token1] = ACTIONS(1567), - [aux_sym_break_statement_token1] = ACTIONS(1567), - [sym_integer] = ACTIONS(1567), - [aux_sym_return_statement_token1] = ACTIONS(1567), - [aux_sym_throw_expression_token1] = ACTIONS(1567), - [aux_sym_while_statement_token1] = ACTIONS(1567), - [aux_sym_do_statement_token1] = ACTIONS(1567), - [aux_sym_for_statement_token1] = ACTIONS(1567), - [aux_sym_foreach_statement_token1] = ACTIONS(1567), - [aux_sym_if_statement_token1] = ACTIONS(1567), - [aux_sym_match_expression_token1] = ACTIONS(1567), - [aux_sym_switch_statement_token1] = ACTIONS(1567), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), - [anon_sym_TILDE] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1569), - [anon_sym_AT] = ACTIONS(1569), - [aux_sym_clone_expression_token1] = ACTIONS(1567), - [aux_sym_print_intrinsic_token1] = ACTIONS(1567), - [aux_sym_object_creation_expression_token1] = ACTIONS(1567), - [anon_sym_DASH_DASH] = ACTIONS(1569), - [anon_sym_PLUS_PLUS] = ACTIONS(1569), - [aux_sym__list_destructing_token1] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1569), - [anon_sym_self] = ACTIONS(1567), - [anon_sym_parent] = ACTIONS(1567), - [aux_sym__argument_name_token1] = ACTIONS(1567), - [aux_sym__argument_name_token2] = ACTIONS(1567), - [anon_sym_POUND_LBRACK] = ACTIONS(1569), - [aux_sym_encapsed_string_token1] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [aux_sym_string_token1] = ACTIONS(1569), - [anon_sym_SQUOTE] = ACTIONS(1569), - [anon_sym_LT_LT_LT] = ACTIONS(1569), - [anon_sym_BQUOTE] = ACTIONS(1569), - [anon_sym_DOLLAR] = ACTIONS(1569), - [aux_sym_yield_expression_token1] = ACTIONS(1567), - [aux_sym_include_expression_token1] = ACTIONS(1567), - [aux_sym_include_once_expression_token1] = ACTIONS(1567), - [aux_sym_require_expression_token1] = ACTIONS(1567), - [aux_sym_require_once_expression_token1] = ACTIONS(1567), - [sym_comment] = ACTIONS(5), - }, - [573] = { - [sym_text_interpolation] = STATE(573), - [sym_qualified_name] = STATE(846), - [sym_namespace_name_as_prefix] = STATE(2627), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2239), - [sym__arrow_function_header] = STATE(2620), - [sym_arrow_function] = STATE(1112), - [sym_throw_expression] = STATE(1112), - [sym__primary_expression] = STATE(1131), - [sym_parenthesized_expression] = STATE(860), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1112), - [sym_anonymous_function_creation_expression] = STATE(1112), - [sym_object_creation_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_cast_variable] = STATE(821), - [sym_member_access_expression] = STATE(821), - [sym_nullsafe_member_access_expression] = STATE(821), - [sym_scoped_property_access_expression] = STATE(821), - [sym_function_call_expression] = STATE(782), - [sym_scoped_call_expression] = STATE(782), - [sym__scope_resolution_qualifier] = STATE(2577), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(782), - [sym_nullsafe_member_call_expression] = STATE(782), - [sym_subscript_expression] = STATE(782), - [sym__dereferencable_expression] = STATE(1679), - [sym_array_creation_expression] = STATE(860), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1804), - [sym_encapsed_string] = STATE(876), - [sym_string] = STATE(876), - [sym_heredoc] = STATE(876), - [sym_nowdoc] = STATE(876), - [sym_shell_command_expression] = STATE(1112), - [sym_boolean] = STATE(1112), - [sym_null] = STATE(1112), - [sym__string] = STATE(860), - [sym_dynamic_variable_name] = STATE(782), - [sym_variable_name] = STATE(782), - [sym__reserved_identifier] = STATE(1541), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(1571), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(664), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(1573), - [aux_sym_cast_type_token1] = ACTIONS(251), - [sym_float] = ACTIONS(261), - [sym_integer] = ACTIONS(261), - [aux_sym_throw_expression_token1] = ACTIONS(273), - [aux_sym_print_intrinsic_token1] = ACTIONS(297), - [aux_sym_object_creation_expression_token1] = ACTIONS(299), - [anon_sym_DASH_DASH] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(301), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(309), - [aux_sym__argument_name_token2] = ACTIONS(311), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(315), - [anon_sym_DQUOTE] = ACTIONS(315), - [aux_sym_string_token1] = ACTIONS(317), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_LT_LT_LT] = ACTIONS(319), - [anon_sym_BQUOTE] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(1575), - [sym_comment] = ACTIONS(5), - }, - [574] = { - [sym_text_interpolation] = STATE(574), - [sym_qualified_name] = STATE(697), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2533), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__primary_expression] = STATE(931), - [sym_parenthesized_expression] = STATE(701), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_variable] = STATE(703), - [sym_member_access_expression] = STATE(703), - [sym_nullsafe_member_access_expression] = STATE(703), - [sym_scoped_property_access_expression] = STATE(703), - [sym_function_call_expression] = STATE(656), - [sym_scoped_call_expression] = STATE(656), - [sym__scope_resolution_qualifier] = STATE(2678), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(656), - [sym_nullsafe_member_call_expression] = STATE(656), - [sym_subscript_expression] = STATE(656), - [sym__dereferencable_expression] = STATE(1711), - [sym_array_creation_expression] = STATE(701), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(701), - [sym_dynamic_variable_name] = STATE(656), - [sym_variable_name] = STATE(656), - [sym__reserved_identifier] = STATE(1549), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(1577), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(1579), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(674), - [aux_sym_print_intrinsic_token1] = ACTIONS(684), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(1563), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(1581), - [sym_comment] = ACTIONS(5), - }, - [575] = { - [sym_text_interpolation] = STATE(575), - [sym_qualified_name] = STATE(697), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__primary_expression] = STATE(931), - [sym_parenthesized_expression] = STATE(701), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_variable] = STATE(703), - [sym_member_access_expression] = STATE(703), - [sym_nullsafe_member_access_expression] = STATE(703), - [sym_scoped_property_access_expression] = STATE(703), - [sym_function_call_expression] = STATE(656), - [sym_scoped_call_expression] = STATE(656), - [sym__scope_resolution_qualifier] = STATE(2678), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(656), - [sym_nullsafe_member_call_expression] = STATE(656), - [sym_subscript_expression] = STATE(656), - [sym__dereferencable_expression] = STATE(1711), - [sym_array_creation_expression] = STATE(701), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(701), - [sym_dynamic_variable_name] = STATE(656), - [sym_variable_name] = STATE(656), - [sym__reserved_identifier] = STATE(1549), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(1577), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(1579), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(634), - [aux_sym_print_intrinsic_token1] = ACTIONS(644), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(1563), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(1581), - [sym_comment] = ACTIONS(5), - }, - [576] = { - [sym_text_interpolation] = STATE(576), - [sym_qualified_name] = STATE(697), - [sym_namespace_name_as_prefix] = STATE(2462), - [sym_namespace_name] = STATE(2626), - [sym_static_modifier] = STATE(2280), - [sym__arrow_function_header] = STATE(2482), - [sym_arrow_function] = STATE(937), - [sym_throw_expression] = STATE(937), - [sym__primary_expression] = STATE(931), - [sym_parenthesized_expression] = STATE(701), - [sym_class_constant_access_expression] = STATE(771), - [sym_print_intrinsic] = STATE(937), - [sym_anonymous_function_creation_expression] = STATE(937), - [sym_object_creation_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_cast_variable] = STATE(703), - [sym_member_access_expression] = STATE(703), - [sym_nullsafe_member_access_expression] = STATE(703), - [sym_scoped_property_access_expression] = STATE(703), - [sym_function_call_expression] = STATE(656), - [sym_scoped_call_expression] = STATE(656), - [sym__scope_resolution_qualifier] = STATE(2678), - [sym_relative_scope] = STATE(2615), - [sym_member_call_expression] = STATE(656), - [sym_nullsafe_member_call_expression] = STATE(656), - [sym_subscript_expression] = STATE(656), - [sym__dereferencable_expression] = STATE(1711), - [sym_array_creation_expression] = STATE(701), - [sym_attribute_group] = STATE(1011), - [sym_attribute_list] = STATE(1763), - [sym_encapsed_string] = STATE(734), - [sym_string] = STATE(734), - [sym_heredoc] = STATE(734), - [sym_nowdoc] = STATE(734), - [sym_shell_command_expression] = STATE(937), - [sym_boolean] = STATE(937), - [sym_null] = STATE(937), - [sym__string] = STATE(701), - [sym_dynamic_variable_name] = STATE(656), - [sym_variable_name] = STATE(656), - [sym__reserved_identifier] = STATE(1549), - [aux_sym_attribute_list_repeat1] = STATE(975), - [sym_name] = ACTIONS(1577), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(568), - [aux_sym_namespace_definition_token1] = ACTIONS(570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(572), - [anon_sym_BSLASH] = ACTIONS(223), - [aux_sym__arrow_function_header_token1] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(1579), - [aux_sym_cast_type_token1] = ACTIONS(580), - [sym_float] = ACTIONS(582), - [sym_integer] = ACTIONS(582), - [aux_sym_throw_expression_token1] = ACTIONS(584), - [aux_sym_print_intrinsic_token1] = ACTIONS(596), - [aux_sym_object_creation_expression_token1] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(1563), - [anon_sym_self] = ACTIONS(307), - [anon_sym_parent] = ACTIONS(307), - [aux_sym__argument_name_token1] = ACTIONS(604), - [aux_sym__argument_name_token2] = ACTIONS(606), - [anon_sym_POUND_LBRACK] = ACTIONS(313), - [aux_sym_encapsed_string_token1] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_string_token1] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(1581), - [sym_comment] = ACTIONS(5), - }, - [577] = { - [sym_text_interpolation] = STATE(577), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1583), - [anon_sym_AMP] = ACTIONS(1585), - [anon_sym_COMMA] = ACTIONS(1583), - [anon_sym_EQ] = ACTIONS(1585), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_RBRACE] = ACTIONS(1583), - [aux_sym_base_clause_token1] = ACTIONS(1583), - [anon_sym_COLON] = ACTIONS(1585), - [aux_sym_class_interface_clause_token1] = ACTIONS(1583), - [anon_sym_EQ_GT] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1583), - [anon_sym_RPAREN] = ACTIONS(1583), - [anon_sym_QMARK] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_COLON_COLON] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1583), - [anon_sym_STAR_EQ] = ACTIONS(1583), - [anon_sym_SLASH_EQ] = ACTIONS(1583), - [anon_sym_PERCENT_EQ] = ACTIONS(1583), - [anon_sym_PLUS_EQ] = ACTIONS(1583), - [anon_sym_DASH_EQ] = ACTIONS(1583), - [anon_sym_DOT_EQ] = ACTIONS(1583), - [anon_sym_LT_LT_EQ] = ACTIONS(1583), - [anon_sym_GT_GT_EQ] = ACTIONS(1583), - [anon_sym_AMP_EQ] = ACTIONS(1583), - [anon_sym_CARET_EQ] = ACTIONS(1583), - [anon_sym_PIPE_EQ] = ACTIONS(1583), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1583), - [anon_sym_DASH_GT] = ACTIONS(1583), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1583), - [anon_sym_LBRACK] = ACTIONS(1583), - [anon_sym_RBRACK] = ACTIONS(1583), - [aux_sym_binary_expression_token1] = ACTIONS(1583), - [anon_sym_QMARK_QMARK] = ACTIONS(1585), - [anon_sym_STAR_STAR] = ACTIONS(1585), - [aux_sym_binary_expression_token2] = ACTIONS(1583), - [aux_sym_binary_expression_token3] = ACTIONS(1583), - [aux_sym_binary_expression_token4] = ACTIONS(1583), - [anon_sym_PIPE_PIPE] = ACTIONS(1583), - [anon_sym_AMP_AMP] = ACTIONS(1583), - [anon_sym_CARET] = ACTIONS(1585), - [anon_sym_EQ_EQ] = ACTIONS(1585), - [anon_sym_BANG_EQ] = ACTIONS(1585), - [anon_sym_LT_GT] = ACTIONS(1583), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1583), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1583), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1583), - [anon_sym_LT_EQ_GT] = ACTIONS(1583), - [anon_sym_LT_LT] = ACTIONS(1585), - [anon_sym_GT_GT] = ACTIONS(1585), - [anon_sym_DOT] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_PERCENT] = ACTIONS(1585), - [sym_comment] = ACTIONS(1587), - }, - [578] = { - [sym_text_interpolation] = STATE(578), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_COMMA] = ACTIONS(1589), - [anon_sym_EQ] = ACTIONS(1591), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1589), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [aux_sym_base_clause_token1] = ACTIONS(1589), - [anon_sym_COLON] = ACTIONS(1591), - [aux_sym_class_interface_clause_token1] = ACTIONS(1589), - [anon_sym_EQ_GT] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1589), - [anon_sym_QMARK] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1591), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1589), - [anon_sym_STAR_EQ] = ACTIONS(1589), - [anon_sym_SLASH_EQ] = ACTIONS(1589), - [anon_sym_PERCENT_EQ] = ACTIONS(1589), - [anon_sym_PLUS_EQ] = ACTIONS(1589), - [anon_sym_DASH_EQ] = ACTIONS(1589), - [anon_sym_DOT_EQ] = ACTIONS(1589), - [anon_sym_LT_LT_EQ] = ACTIONS(1589), - [anon_sym_GT_GT_EQ] = ACTIONS(1589), - [anon_sym_AMP_EQ] = ACTIONS(1589), - [anon_sym_CARET_EQ] = ACTIONS(1589), - [anon_sym_PIPE_EQ] = ACTIONS(1589), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1589), - [anon_sym_DASH_GT] = ACTIONS(1589), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_RBRACK] = ACTIONS(1589), - [aux_sym_binary_expression_token1] = ACTIONS(1589), - [anon_sym_QMARK_QMARK] = ACTIONS(1591), - [anon_sym_STAR_STAR] = ACTIONS(1591), - [aux_sym_binary_expression_token2] = ACTIONS(1589), - [aux_sym_binary_expression_token3] = ACTIONS(1589), - [aux_sym_binary_expression_token4] = ACTIONS(1589), - [anon_sym_PIPE_PIPE] = ACTIONS(1589), - [anon_sym_AMP_AMP] = ACTIONS(1589), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_EQ_EQ] = ACTIONS(1591), - [anon_sym_BANG_EQ] = ACTIONS(1591), - [anon_sym_LT_GT] = ACTIONS(1589), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1591), - [anon_sym_GT] = ACTIONS(1591), - [anon_sym_LT_EQ] = ACTIONS(1591), - [anon_sym_GT_EQ] = ACTIONS(1589), - [anon_sym_LT_EQ_GT] = ACTIONS(1589), - [anon_sym_LT_LT] = ACTIONS(1591), - [anon_sym_GT_GT] = ACTIONS(1591), - [anon_sym_DOT] = ACTIONS(1591), - [anon_sym_STAR] = ACTIONS(1591), - [anon_sym_SLASH] = ACTIONS(1591), - [anon_sym_PERCENT] = ACTIONS(1591), - [sym_comment] = ACTIONS(1587), - }, - [579] = { - [sym_text_interpolation] = STATE(579), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1593), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_COMMA] = ACTIONS(1593), - [anon_sym_EQ] = ACTIONS(1595), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1593), - [anon_sym_RBRACE] = ACTIONS(1593), - [aux_sym_base_clause_token1] = ACTIONS(1593), - [anon_sym_COLON] = ACTIONS(1595), - [aux_sym_class_interface_clause_token1] = ACTIONS(1593), - [anon_sym_EQ_GT] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_RPAREN] = ACTIONS(1593), - [anon_sym_QMARK] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1595), - [anon_sym_COLON_COLON] = ACTIONS(1593), - [anon_sym_DASH_DASH] = ACTIONS(1593), - [anon_sym_PLUS_PLUS] = ACTIONS(1593), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1593), - [anon_sym_STAR_EQ] = ACTIONS(1593), - [anon_sym_SLASH_EQ] = ACTIONS(1593), - [anon_sym_PERCENT_EQ] = ACTIONS(1593), - [anon_sym_PLUS_EQ] = ACTIONS(1593), - [anon_sym_DASH_EQ] = ACTIONS(1593), - [anon_sym_DOT_EQ] = ACTIONS(1593), - [anon_sym_LT_LT_EQ] = ACTIONS(1593), - [anon_sym_GT_GT_EQ] = ACTIONS(1593), - [anon_sym_AMP_EQ] = ACTIONS(1593), - [anon_sym_CARET_EQ] = ACTIONS(1593), - [anon_sym_PIPE_EQ] = ACTIONS(1593), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1593), - [anon_sym_DASH_GT] = ACTIONS(1593), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1593), - [anon_sym_LBRACK] = ACTIONS(1593), - [anon_sym_RBRACK] = ACTIONS(1593), - [aux_sym_binary_expression_token1] = ACTIONS(1593), - [anon_sym_QMARK_QMARK] = ACTIONS(1595), - [anon_sym_STAR_STAR] = ACTIONS(1595), - [aux_sym_binary_expression_token2] = ACTIONS(1593), - [aux_sym_binary_expression_token3] = ACTIONS(1593), - [aux_sym_binary_expression_token4] = ACTIONS(1593), - [anon_sym_PIPE_PIPE] = ACTIONS(1593), - [anon_sym_AMP_AMP] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1595), - [anon_sym_EQ_EQ] = ACTIONS(1595), - [anon_sym_BANG_EQ] = ACTIONS(1595), - [anon_sym_LT_GT] = ACTIONS(1593), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1593), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_LT_EQ] = ACTIONS(1595), - [anon_sym_GT_EQ] = ACTIONS(1593), - [anon_sym_LT_EQ_GT] = ACTIONS(1593), - [anon_sym_LT_LT] = ACTIONS(1595), - [anon_sym_GT_GT] = ACTIONS(1595), - [anon_sym_DOT] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_PERCENT] = ACTIONS(1595), - [sym_comment] = ACTIONS(1587), - }, - [580] = { - [sym_text_interpolation] = STATE(580), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_COMMA] = ACTIONS(1597), - [anon_sym_EQ] = ACTIONS(1599), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_RBRACE] = ACTIONS(1597), - [aux_sym_base_clause_token1] = ACTIONS(1597), - [anon_sym_COLON] = ACTIONS(1599), - [aux_sym_class_interface_clause_token1] = ACTIONS(1597), - [anon_sym_EQ_GT] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(1597), - [anon_sym_QMARK] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_DASH_DASH] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1597), - [anon_sym_STAR_EQ] = ACTIONS(1597), - [anon_sym_SLASH_EQ] = ACTIONS(1597), - [anon_sym_PERCENT_EQ] = ACTIONS(1597), - [anon_sym_PLUS_EQ] = ACTIONS(1597), - [anon_sym_DASH_EQ] = ACTIONS(1597), - [anon_sym_DOT_EQ] = ACTIONS(1597), - [anon_sym_LT_LT_EQ] = ACTIONS(1597), - [anon_sym_GT_GT_EQ] = ACTIONS(1597), - [anon_sym_AMP_EQ] = ACTIONS(1597), - [anon_sym_CARET_EQ] = ACTIONS(1597), - [anon_sym_PIPE_EQ] = ACTIONS(1597), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1597), - [anon_sym_DASH_GT] = ACTIONS(1597), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1597), - [anon_sym_RBRACK] = ACTIONS(1597), - [aux_sym_binary_expression_token1] = ACTIONS(1597), - [anon_sym_QMARK_QMARK] = ACTIONS(1599), - [anon_sym_STAR_STAR] = ACTIONS(1599), - [aux_sym_binary_expression_token2] = ACTIONS(1597), - [aux_sym_binary_expression_token3] = ACTIONS(1597), - [aux_sym_binary_expression_token4] = ACTIONS(1597), - [anon_sym_PIPE_PIPE] = ACTIONS(1597), - [anon_sym_AMP_AMP] = ACTIONS(1597), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_EQ_EQ] = ACTIONS(1599), - [anon_sym_BANG_EQ] = ACTIONS(1599), - [anon_sym_LT_GT] = ACTIONS(1597), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1599), - [anon_sym_GT] = ACTIONS(1599), - [anon_sym_LT_EQ] = ACTIONS(1599), - [anon_sym_GT_EQ] = ACTIONS(1597), - [anon_sym_LT_EQ_GT] = ACTIONS(1597), - [anon_sym_LT_LT] = ACTIONS(1599), - [anon_sym_GT_GT] = ACTIONS(1599), - [anon_sym_DOT] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(1599), - [anon_sym_PERCENT] = ACTIONS(1599), - [sym_comment] = ACTIONS(1587), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1552), + [anon_sym_COMMA] = ACTIONS(1550), + [anon_sym_EQ] = ACTIONS(1552), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_RBRACE] = ACTIONS(1550), + [aux_sym_base_clause_token1] = ACTIONS(1550), + [anon_sym_COLON] = ACTIONS(1552), + [aux_sym_class_interface_clause_token1] = ACTIONS(1550), + [anon_sym_EQ_GT] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1550), + [anon_sym_RPAREN] = ACTIONS(1550), + [anon_sym_QMARK] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1550), + [anon_sym_DASH_DASH] = ACTIONS(1550), + [anon_sym_PLUS_PLUS] = ACTIONS(1550), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1550), + [anon_sym_STAR_EQ] = ACTIONS(1550), + [anon_sym_SLASH_EQ] = ACTIONS(1550), + [anon_sym_PERCENT_EQ] = ACTIONS(1550), + [anon_sym_PLUS_EQ] = ACTIONS(1550), + [anon_sym_DASH_EQ] = ACTIONS(1550), + [anon_sym_DOT_EQ] = ACTIONS(1550), + [anon_sym_LT_LT_EQ] = ACTIONS(1550), + [anon_sym_GT_GT_EQ] = ACTIONS(1550), + [anon_sym_AMP_EQ] = ACTIONS(1550), + [anon_sym_CARET_EQ] = ACTIONS(1550), + [anon_sym_PIPE_EQ] = ACTIONS(1550), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1550), + [anon_sym_DASH_GT] = ACTIONS(1550), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_RBRACK] = ACTIONS(1550), + [aux_sym_binary_expression_token1] = ACTIONS(1550), + [anon_sym_QMARK_QMARK] = ACTIONS(1552), + [anon_sym_STAR_STAR] = ACTIONS(1552), + [aux_sym_binary_expression_token2] = ACTIONS(1550), + [aux_sym_binary_expression_token3] = ACTIONS(1550), + [aux_sym_binary_expression_token4] = ACTIONS(1550), + [anon_sym_PIPE_PIPE] = ACTIONS(1550), + [anon_sym_AMP_AMP] = ACTIONS(1550), + [anon_sym_CARET] = ACTIONS(1552), + [anon_sym_EQ_EQ] = ACTIONS(1552), + [anon_sym_BANG_EQ] = ACTIONS(1552), + [anon_sym_LT_GT] = ACTIONS(1550), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1550), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1550), + [anon_sym_LT] = ACTIONS(1552), + [anon_sym_GT] = ACTIONS(1552), + [anon_sym_LT_EQ] = ACTIONS(1552), + [anon_sym_GT_EQ] = ACTIONS(1550), + [anon_sym_LT_EQ_GT] = ACTIONS(1550), + [anon_sym_LT_LT] = ACTIONS(1552), + [anon_sym_GT_GT] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_SLASH] = ACTIONS(1552), + [anon_sym_PERCENT] = ACTIONS(1552), + [sym_comment] = ACTIONS(1540), }, }; @@ -78369,15 +78350,15 @@ static const uint16_t ts_small_parse_table[] = { [0] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(581), 1, + STATE(572), 1, sym_text_interpolation, - STATE(598), 1, + STATE(584), 1, sym_arguments, - ACTIONS(1603), 21, + ACTIONS(1556), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78399,7 +78380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1601), 38, + ACTIONS(1554), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78441,15 +78422,15 @@ static const uint16_t ts_small_parse_table[] = { [79] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(582), 1, + STATE(573), 1, sym_text_interpolation, - STATE(595), 1, + STATE(586), 1, sym_arguments, - ACTIONS(1609), 21, + ACTIONS(1562), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78471,7 +78452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1607), 38, + ACTIONS(1560), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78510,94 +78491,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [158] = 11, + [158] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - ACTIONS(1615), 1, - anon_sym_EQ, - STATE(583), 1, + STATE(574), 1, sym_text_interpolation, - STATE(597), 1, - sym_arguments, - ACTIONS(1619), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1621), 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(1611), 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(1613), 20, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [245] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, - STATE(584), 1, - sym_text_interpolation, - STATE(594), 1, + STATE(587), 1, sym_arguments, - ACTIONS(1625), 21, + ACTIONS(1566), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78619,7 +78524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1623), 38, + ACTIONS(1564), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78658,50 +78563,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [324] = 7, + [237] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(585), 1, + ACTIONS(1572), 1, + anon_sym_EQ, + STATE(575), 1, sym_text_interpolation, - STATE(593), 1, + STATE(579), 1, sym_arguments, - ACTIONS(1629), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - 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(1627), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON_COLON, + ACTIONS(1576), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1578), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78715,81 +78599,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [403] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, - STATE(586), 1, - sym_text_interpolation, - STATE(589), 1, - sym_arguments, - ACTIONS(1633), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - 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(1631), 38, + ACTIONS(1568), 18, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_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, @@ -78802,16 +78618,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [482] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - STATE(587), 1, - sym_text_interpolation, - ACTIONS(1637), 21, + ACTIONS(1570), 20, anon_sym_AMP, - anon_sym_EQ, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, @@ -78831,54 +78639,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1635), 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [556] = 5, + [324] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(588), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(576), 1, sym_text_interpolation, - ACTIONS(1641), 21, + STATE(588), 1, + sym_arguments, + ACTIONS(1582), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78900,14 +78672,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1639), 39, + ACTIONS(1580), 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_LPAREN, anon_sym_RPAREN, anon_sym_COLON_COLON, anon_sym_DASH_DASH, @@ -78940,14 +78711,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [630] = 5, + [403] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(589), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(577), 1, sym_text_interpolation, - ACTIONS(1645), 21, + STATE(589), 1, + sym_arguments, + ACTIONS(1586), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78969,14 +78744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1643), 39, + ACTIONS(1584), 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_LPAREN, anon_sym_RPAREN, anon_sym_COLON_COLON, anon_sym_DASH_DASH, @@ -79009,14 +78783,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [704] = 5, + [482] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(590), 1, + STATE(578), 1, sym_text_interpolation, - ACTIONS(1649), 21, + ACTIONS(1590), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79038,7 +78812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1647), 39, + ACTIONS(1588), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79078,14 +78852,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [778] = 5, + [556] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(591), 1, + STATE(579), 1, sym_text_interpolation, - ACTIONS(1653), 21, + ACTIONS(1594), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79107,7 +78881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1651), 39, + ACTIONS(1592), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79147,14 +78921,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [852] = 5, + [630] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(592), 1, + STATE(580), 1, sym_text_interpolation, - ACTIONS(1657), 21, + ACTIONS(1598), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79176,7 +78950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1655), 39, + ACTIONS(1596), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79216,14 +78990,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [926] = 5, + [704] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(593), 1, + STATE(581), 1, sym_text_interpolation, - ACTIONS(1661), 21, + ACTIONS(1602), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79245,7 +79019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1659), 39, + ACTIONS(1600), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79285,14 +79059,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1000] = 5, + [778] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(594), 1, + STATE(582), 1, sym_text_interpolation, - ACTIONS(1665), 21, + ACTIONS(1606), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79314,7 +79088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1663), 39, + ACTIONS(1604), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79354,14 +79128,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1074] = 5, + [852] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(595), 1, + STATE(583), 1, sym_text_interpolation, - ACTIONS(1669), 21, + ACTIONS(1610), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79383,7 +79157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1667), 39, + ACTIONS(1608), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79423,14 +79197,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1148] = 5, + [926] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(596), 1, + STATE(584), 1, sym_text_interpolation, - ACTIONS(1673), 21, + ACTIONS(1614), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79452,7 +79226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1671), 39, + ACTIONS(1612), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79492,14 +79266,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1222] = 5, + [1000] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(597), 1, + STATE(585), 1, sym_text_interpolation, - ACTIONS(1677), 21, + ACTIONS(1618), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79521,7 +79295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1675), 39, + ACTIONS(1616), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79561,14 +79335,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1296] = 5, + [1074] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(598), 1, + STATE(586), 1, sym_text_interpolation, - ACTIONS(1681), 21, + ACTIONS(1622), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79590,7 +79364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1679), 39, + ACTIONS(1620), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79630,14 +79404,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1370] = 5, + [1148] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(599), 1, + STATE(587), 1, sym_text_interpolation, - ACTIONS(1685), 21, + ACTIONS(1626), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79659,7 +79433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1683), 39, + ACTIONS(1624), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79699,61 +79473,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1444] = 11, + [1222] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, - ACTIONS(1687), 1, - anon_sym_EQ, - STATE(597), 1, - sym_arguments, - STATE(600), 1, + STATE(588), 1, sym_text_interpolation, - ACTIONS(1619), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1689), 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(1611), 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(1613), 20, + ACTIONS(1630), 21, anon_sym_AMP, + anon_sym_EQ, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, @@ -79773,25 +79502,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [1529] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1615), 1, - anon_sym_EQ, - STATE(601), 1, - sym_text_interpolation, - ACTIONS(1619), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1617), 5, + ACTIONS(1628), 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_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1621), 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79805,13 +79527,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1611), 18, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -79824,8 +79542,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1613), 20, + [1296] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(589), 1, + sym_text_interpolation, + ACTIONS(1634), 21, anon_sym_AMP, + anon_sym_EQ, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, @@ -79845,29 +79571,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [1610] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1605), 1, + ACTIONS(1632), 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, - ACTIONS(1691), 1, - anon_sym_EQ, - STATE(597), 1, - sym_arguments, - STATE(602), 1, - sym_text_interpolation, - ACTIONS(1619), 2, + anon_sym_RPAREN, + anon_sym_COLON_COLON, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1693), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79881,11 +79596,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1611), 16, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, + 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, @@ -79898,40 +79611,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1613), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [1694] = 7, + [1370] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1695), 1, - anon_sym_LPAREN, - STATE(603), 1, + STATE(590), 1, sym_text_interpolation, - STATE(614), 1, - sym_arguments, - ACTIONS(1625), 20, + ACTIONS(1638), 21, anon_sym_AMP, anon_sym_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -79950,12 +79640,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1623), 35, - sym__automatic_semicolon, + ACTIONS(1636), 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_DASH_DASH, anon_sym_PLUS_PLUS, @@ -79975,6 +79668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -79986,20 +79680,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1769] = 7, + [1444] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1695), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(604), 1, - sym_text_interpolation, - STATE(619), 1, + ACTIONS(1640), 1, + anon_sym_EQ, + STATE(579), 1, sym_arguments, - ACTIONS(1603), 20, + STATE(591), 1, + sym_text_interpolation, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1642), 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(1568), 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(1570), 20, anon_sym_AMP, - anon_sym_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -80018,15 +79754,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1601), 35, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, + [1529] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1572), 1, + anon_sym_EQ, + STATE(592), 1, + sym_text_interpolation, + ACTIONS(1576), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1578), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80040,9 +79786,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + ACTIONS(1568), 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, @@ -80054,29 +79805,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1844] = 11, + ACTIONS(1570), 20, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [1610] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1695), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - ACTIONS(1697), 1, + ACTIONS(1644), 1, anon_sym_EQ, - STATE(605), 1, - sym_text_interpolation, - STATE(625), 1, + STATE(579), 1, sym_arguments, - ACTIONS(1699), 2, + STATE(593), 1, + sym_text_interpolation, + ACTIONS(1576), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1701), 13, + ACTIONS(1646), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80090,11 +79862,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1611), 15, - sym__automatic_semicolon, + ACTIONS(1568), 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, @@ -80106,7 +79879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1613), 19, + ACTIONS(1570), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80126,35 +79899,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [1927] = 14, + [1694] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(852), 1, + ACTIONS(864), 1, anon_sym_COMMA, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - ACTIONS(1687), 1, + ACTIONS(1640), 1, anon_sym_EQ, - ACTIONS(1703), 1, + ACTIONS(1648), 1, anon_sym_RPAREN, - STATE(597), 1, + STATE(579), 1, sym_arguments, - STATE(606), 1, + STATE(594), 1, sym_text_interpolation, - STATE(2154), 1, + STATE(2101), 1, aux_sym__list_destructing_repeat1, - ACTIONS(1619), 2, + ACTIONS(1576), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1611), 12, + ACTIONS(1568), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -80167,7 +79940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1689), 13, + ACTIONS(1642), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80181,7 +79954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1613), 19, + ACTIONS(1570), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80201,97 +79974,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2016] = 7, + [1783] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1695), 1, - anon_sym_LPAREN, - STATE(607), 1, - sym_text_interpolation, - STATE(622), 1, - sym_arguments, - ACTIONS(1609), 20, - anon_sym_AMP, + ACTIONS(1650), 1, anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - 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(1607), 35, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_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, - [2091] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1615), 1, - anon_sym_EQ, - ACTIONS(1695), 1, + ACTIONS(1652), 1, anon_sym_LPAREN, - STATE(608), 1, + STATE(595), 1, sym_text_interpolation, - STATE(625), 1, + STATE(606), 1, sym_arguments, - ACTIONS(1699), 2, + ACTIONS(1654), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1621), 13, + ACTIONS(1656), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80305,7 +80010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1611), 15, + ACTIONS(1568), 15, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80321,7 +80026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1613), 19, + ACTIONS(1570), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80341,25 +80046,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2174] = 9, + [1866] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1687), 1, + ACTIONS(1640), 1, anon_sym_EQ, - STATE(609), 1, + STATE(596), 1, sym_text_interpolation, - ACTIONS(1619), 2, + ACTIONS(1576), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1689), 13, + ACTIONS(1642), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80373,7 +80078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1611), 16, + ACTIONS(1568), 16, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -80390,7 +80095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1613), 20, + ACTIONS(1570), 20, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -80411,18 +80116,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2253] = 7, + [1945] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1695), 1, + ACTIONS(1652), 1, anon_sym_LPAREN, - STATE(610), 1, + STATE(597), 1, sym_text_interpolation, - STATE(634), 1, + STATE(604), 1, sym_arguments, - ACTIONS(1629), 20, + ACTIONS(1586), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80443,7 +80148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1627), 35, + ACTIONS(1584), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80479,90 +80184,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2328] = 11, + [2020] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1652), 1, anon_sym_LPAREN, - ACTIONS(1615), 1, - anon_sym_EQ, - STATE(597), 1, - sym_arguments, - STATE(611), 1, - sym_text_interpolation, - ACTIONS(1619), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1611), 12, - anon_sym_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(1621), 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(1613), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [2411] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1695), 1, - anon_sym_LPAREN, - STATE(612), 1, + STATE(598), 1, sym_text_interpolation, - STATE(613), 1, + STATE(621), 1, sym_arguments, - ACTIONS(1633), 20, + ACTIONS(1556), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80583,7 +80216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1631), 35, + ACTIONS(1554), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80619,14 +80252,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2486] = 5, + [2095] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(613), 1, + ACTIONS(1652), 1, + anon_sym_LPAREN, + STATE(599), 1, sym_text_interpolation, - ACTIONS(1645), 20, + STATE(605), 1, + sym_arguments, + ACTIONS(1562), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80647,13 +80284,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1643), 36, + ACTIONS(1560), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_COLON_COLON, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, @@ -80684,14 +80320,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2556] = 5, + [2170] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(614), 1, + ACTIONS(1652), 1, + anon_sym_LPAREN, + STATE(600), 1, sym_text_interpolation, - ACTIONS(1665), 20, + STATE(618), 1, + sym_arguments, + ACTIONS(1566), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80712,13 +80352,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1663), 36, + ACTIONS(1564), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_COLON_COLON, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, @@ -80749,32 +80388,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2626] = 12, + [2245] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - ACTIONS(1687), 1, + ACTIONS(1572), 1, anon_sym_EQ, - STATE(597), 1, + STATE(579), 1, sym_arguments, - STATE(615), 1, + STATE(601), 1, sym_text_interpolation, - ACTIONS(1619), 2, + ACTIONS(1576), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1705), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1611), 12, + ACTIONS(1568), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -80787,7 +80423,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1689), 13, + ACTIONS(1578), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80801,7 +80439,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1613), 19, + anon_sym_RBRACK, + ACTIONS(1570), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80821,14 +80460,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2710] = 5, + [2328] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(616), 1, + ACTIONS(1572), 1, + anon_sym_EQ, + ACTIONS(1652), 1, + anon_sym_LPAREN, + STATE(602), 1, + sym_text_interpolation, + STATE(606), 1, + sym_arguments, + ACTIONS(1654), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1578), 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(1568), 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(1570), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [2411] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1652), 1, + anon_sym_LPAREN, + STATE(603), 1, + sym_text_interpolation, + STATE(615), 1, + sym_arguments, + ACTIONS(1582), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + 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(1580), 35, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_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, + [2486] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(604), 1, sym_text_interpolation, - ACTIONS(1641), 20, + ACTIONS(1634), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80849,7 +80628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1639), 36, + ACTIONS(1632), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80886,14 +80665,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2780] = 5, + [2556] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(617), 1, + STATE(605), 1, sym_text_interpolation, - ACTIONS(1685), 20, + ACTIONS(1622), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80914,7 +80693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1683), 36, + ACTIONS(1620), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80951,32 +80730,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2850] = 12, + [2626] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + STATE(606), 1, + sym_text_interpolation, + ACTIONS(1594), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + 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(1592), 36, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_LPAREN, - ACTIONS(1691), 1, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_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, + [2696] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1640), 1, anon_sym_EQ, - STATE(597), 1, + STATE(579), 1, sym_arguments, - STATE(618), 1, + STATE(607), 1, sym_text_interpolation, - ACTIONS(1619), 2, + ACTIONS(1576), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1707), 2, + ACTIONS(1658), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1611), 12, + ACTIONS(1568), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -80989,7 +80833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1693), 13, + ACTIONS(1642), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81003,7 +80847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1613), 19, + ACTIONS(1570), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81023,14 +80867,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2934] = 5, + [2780] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(619), 1, + STATE(608), 1, sym_text_interpolation, - ACTIONS(1681), 20, + ACTIONS(1598), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -81051,7 +80895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1679), 36, + ACTIONS(1596), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81088,14 +80932,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3004] = 5, + [2850] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(620), 1, + STATE(609), 1, sym_text_interpolation, - ACTIONS(1637), 20, + ACTIONS(1606), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -81116,7 +80960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1635), 36, + ACTIONS(1604), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81153,44 +80997,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3074] = 5, + [2920] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(621), 1, - sym_text_interpolation, - ACTIONS(1599), 20, - anon_sym_AMP, + ACTIONS(1644), 1, anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - 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(1597), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, + STATE(610), 1, + sym_text_interpolation, + ACTIONS(1576), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1646), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81204,9 +81029,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + ACTIONS(1568), 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, @@ -81218,14 +81046,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3144] = 5, + ACTIONS(1570), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [2998] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(622), 1, + STATE(611), 1, sym_text_interpolation, - ACTIONS(1669), 20, + ACTIONS(1552), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -81246,7 +81094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1667), 36, + ACTIONS(1550), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81283,29 +81131,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3214] = 11, + [3068] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - ACTIONS(1710), 1, + ACTIONS(1640), 1, anon_sym_EQ, - STATE(597), 1, + STATE(579), 1, sym_arguments, - STATE(623), 1, + STATE(612), 1, sym_text_interpolation, - ACTIONS(1619), 2, + ACTIONS(1576), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1617), 5, + ACTIONS(1660), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1712), 13, + ACTIONS(1568), 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(1642), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81319,22 +81183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1611), 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(1613), 19, + ACTIONS(1570), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81354,32 +81203,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [3296] = 12, + [3152] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - ACTIONS(1687), 1, + ACTIONS(1644), 1, anon_sym_EQ, - STATE(597), 1, + STATE(579), 1, sym_arguments, - STATE(624), 1, + STATE(613), 1, sym_text_interpolation, - ACTIONS(1619), 2, + ACTIONS(1576), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 2, + ACTIONS(1662), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1617), 5, + anon_sym_RBRACK, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1611), 12, + ACTIONS(1568), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -81392,7 +81241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1689), 13, + ACTIONS(1646), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81406,7 +81255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1613), 19, + ACTIONS(1570), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81426,14 +81275,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [3380] = 5, + [3236] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(625), 1, + STATE(614), 1, sym_text_interpolation, - ACTIONS(1677), 20, + ACTIONS(1590), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -81454,7 +81303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1675), 36, + ACTIONS(1588), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81491,14 +81340,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3450] = 5, + [3306] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(626), 1, + STATE(615), 1, sym_text_interpolation, - ACTIONS(1653), 20, + ACTIONS(1630), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -81519,7 +81368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1651), 36, + ACTIONS(1628), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81556,14 +81405,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3520] = 5, + [3376] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(627), 1, + STATE(616), 1, sym_text_interpolation, - ACTIONS(1649), 20, + ACTIONS(1602), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -81584,7 +81433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1647), 36, + ACTIONS(1600), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81621,44 +81470,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3590] = 5, + [3446] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(628), 1, - sym_text_interpolation, - ACTIONS(1657), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - 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(1655), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, + ACTIONS(1558), 1, anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(1665), 1, + anon_sym_EQ, + STATE(579), 1, + sym_arguments, + STATE(617), 1, + sym_text_interpolation, + ACTIONS(1576), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1667), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81672,9 +81506,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + ACTIONS(1568), 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, @@ -81686,16 +81521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3660] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - STATE(629), 1, - sym_text_interpolation, - ACTIONS(1591), 20, + ACTIONS(1570), 19, anon_sym_AMP, - anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -81714,51 +81541,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1589), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_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, - [3730] = 5, + [3528] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(630), 1, + STATE(618), 1, sym_text_interpolation, - ACTIONS(1595), 20, + ACTIONS(1626), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -81779,7 +81569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1593), 36, + ACTIONS(1624), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81816,14 +81606,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3800] = 5, + [3598] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(631), 1, + STATE(619), 1, sym_text_interpolation, - ACTIONS(1673), 20, + ACTIONS(1638), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -81844,7 +81634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1671), 36, + ACTIONS(1636), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81881,14 +81671,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3870] = 5, + [3668] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(632), 1, + STATE(620), 1, sym_text_interpolation, - ACTIONS(1585), 20, + ACTIONS(1610), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -81909,7 +81699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1583), 36, + ACTIONS(1608), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81946,25 +81736,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3940] = 9, + [3738] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_EQ, - STATE(633), 1, + STATE(621), 1, sym_text_interpolation, - ACTIONS(1619), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1617), 5, + ACTIONS(1614), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + 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(1612), 36, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1693), 13, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [3808] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(622), 1, + sym_text_interpolation, + ACTIONS(1544), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1542), 36, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81978,12 +81852,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1611), 16, + 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, + [3878] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(623), 1, + sym_text_interpolation, + ACTIONS(1618), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + 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(1616), 36, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_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, @@ -81995,8 +81931,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1613), 19, + [3948] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(624), 1, + sym_text_interpolation, + ACTIONS(1548), 20, anon_sym_AMP, + anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -82015,14 +81959,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1546), 36, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_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, [4018] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(634), 1, + STATE(625), 1, sym_text_interpolation, - ACTIONS(1661), 20, + ACTIONS(1538), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -82043,7 +82024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1659), 36, + ACTIONS(1536), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -82083,22 +82064,22 @@ static const uint16_t ts_small_parse_table[] = { [4088] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1615), 1, + ACTIONS(1572), 1, anon_sym_EQ, - STATE(635), 1, + STATE(626), 1, sym_text_interpolation, - ACTIONS(1699), 2, + ACTIONS(1654), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1621), 13, + ACTIONS(1578), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82112,7 +82093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1611), 15, + ACTIONS(1568), 15, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -82128,7 +82109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1613), 19, + ACTIONS(1570), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82148,31 +82129,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4165] = 12, + [4165] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(852), 1, - anon_sym_COMMA, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1687), 1, + ACTIONS(1572), 1, anon_sym_EQ, - ACTIONS(1703), 1, - anon_sym_RPAREN, - STATE(636), 1, + STATE(627), 1, sym_text_interpolation, - STATE(2154), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1619), 2, + ACTIONS(1576), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1611), 12, + ACTIONS(1568), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -82185,7 +82160,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1689), 13, + ACTIONS(1578), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82199,7 +82176,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1613), 19, + anon_sym_RBRACK, + ACTIONS(1570), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82219,26 +82197,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4248] = 9, + [4242] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1615), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1644), 1, anon_sym_EQ, - STATE(637), 1, + STATE(579), 1, + sym_arguments, + STATE(628), 1, sym_text_interpolation, - ACTIONS(1619), 2, + ACTIONS(1576), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1617), 5, + ACTIONS(1669), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1611), 12, - anon_sym_EQ_GT, + ACTIONS(1568), 11, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -82250,9 +82234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1621), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1646), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82266,8 +82248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_RBRACK, - ACTIONS(1613), 19, + ACTIONS(1570), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82290,29 +82271,29 @@ static const uint16_t ts_small_parse_table[] = { [4325] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, - ACTIONS(1691), 1, + ACTIONS(1640), 1, anon_sym_EQ, - STATE(597), 1, - sym_arguments, - STATE(638), 1, + ACTIONS(1648), 1, + anon_sym_RPAREN, + STATE(629), 1, sym_text_interpolation, - ACTIONS(1619), 2, + STATE(2101), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1576), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1716), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1611), 11, + ACTIONS(1568), 12, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -82324,7 +82305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1693), 13, + ACTIONS(1642), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82338,7 +82319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1613), 19, + ACTIONS(1570), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82361,22 +82342,22 @@ static const uint16_t ts_small_parse_table[] = { [4408] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1697), 1, + ACTIONS(1650), 1, anon_sym_EQ, - STATE(639), 1, + STATE(630), 1, sym_text_interpolation, - ACTIONS(1699), 2, + ACTIONS(1654), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1701), 13, + ACTIONS(1656), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82390,7 +82371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1611), 15, + ACTIONS(1568), 15, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -82406,7 +82387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1613), 19, + ACTIONS(1570), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82426,41 +82407,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4485] = 10, + [4485] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1687), 1, + ACTIONS(1665), 1, anon_sym_EQ, - STATE(640), 1, + STATE(631), 1, sym_text_interpolation, - ACTIONS(1619), 2, + ACTIONS(1576), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1705), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1611), 12, - anon_sym_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(1689), 13, + ACTIONS(1667), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82474,7 +82439,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1613), 19, + ACTIONS(1568), 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(1570), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82494,25 +82474,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4563] = 9, + [4561] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1710), 1, + ACTIONS(1640), 1, anon_sym_EQ, - STATE(641), 1, + STATE(632), 1, sym_text_interpolation, - ACTIONS(1619), 2, + ACTIONS(1576), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1617), 5, + ACTIONS(1660), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1712), 13, + ACTIONS(1568), 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(1642), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82526,22 +82522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1611), 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(1613), 19, + ACTIONS(1570), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82564,25 +82545,25 @@ static const uint16_t ts_small_parse_table[] = { [4639] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1644), 1, anon_sym_EQ, - STATE(642), 1, + STATE(633), 1, sym_text_interpolation, - ACTIONS(1619), 2, + ACTIONS(1576), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1707), 2, + ACTIONS(1662), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1611), 12, + ACTIONS(1568), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -82595,7 +82576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1693), 13, + ACTIONS(1646), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82609,7 +82590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1613), 19, + ACTIONS(1570), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82632,25 +82613,25 @@ static const uint16_t ts_small_parse_table[] = { [4717] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1687), 1, + ACTIONS(1640), 1, anon_sym_EQ, - STATE(643), 1, + STATE(634), 1, sym_text_interpolation, - ACTIONS(1619), 2, + ACTIONS(1576), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 2, + ACTIONS(1658), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1617), 5, + anon_sym_RBRACK, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1611), 12, + ACTIONS(1568), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -82663,7 +82644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1689), 13, + ACTIONS(1642), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82677,7 +82658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1613), 19, + ACTIONS(1570), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82700,25 +82681,25 @@ static const uint16_t ts_small_parse_table[] = { [4795] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1691), 1, + ACTIONS(1644), 1, anon_sym_EQ, - STATE(644), 1, + STATE(635), 1, sym_text_interpolation, - ACTIONS(1619), 2, + ACTIONS(1576), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1716), 2, + ACTIONS(1669), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1611), 11, + ACTIONS(1568), 11, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -82730,7 +82711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1693), 13, + ACTIONS(1646), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82744,7 +82725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1613), 19, + ACTIONS(1570), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82767,11 +82748,11 @@ static const uint16_t ts_small_parse_table[] = { [4872] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(645), 1, + STATE(636), 1, sym_text_interpolation, - ACTIONS(1719), 22, + ACTIONS(1672), 22, anon_sym_AMP, aux_sym_function_static_declaration_token1, aux_sym_namespace_aliasing_clause_token1, @@ -82794,7 +82775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, sym_name, - ACTIONS(1721), 28, + ACTIONS(1674), 28, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -82823,76 +82804,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [4936] = 30, + [4936] = 31, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(239), 1, + ACTIONS(242), 1, aux_sym_final_modifier_token1, - ACTIONS(241), 1, + ACTIONS(244), 1, aux_sym_abstract_modifier_token1, - ACTIONS(243), 1, + ACTIONS(246), 1, aux_sym_readonly_modifier_token1, - ACTIONS(570), 1, + ACTIONS(248), 1, + sym_var_modifier, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(1676), 1, sym_name, - ACTIONS(1725), 1, + ACTIONS(1678), 1, aux_sym_function_static_declaration_token1, - ACTIONS(1727), 1, + ACTIONS(1680), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(1731), 1, - sym_var_modifier, - ACTIONS(1733), 1, + ACTIONS(1682), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(1686), 1, anon_sym_LPAREN, - ACTIONS(1735), 1, + ACTIONS(1688), 1, anon_sym_QMARK, - ACTIONS(1737), 1, + ACTIONS(1690), 1, anon_sym_DOLLAR, - STATE(646), 1, + STATE(637), 1, sym_text_interpolation, - STATE(1105), 1, - aux_sym_property_declaration_repeat1, - STATE(1331), 1, + STATE(1009), 1, + aux_sym_class_declaration_repeat1, + STATE(1329), 1, sym__modifier, - STATE(1417), 1, + STATE(1423), 1, sym__types, - STATE(1427), 1, + STATE(1433), 1, sym_qualified_name, - STATE(1699), 1, + STATE(1721), 1, sym_variable_name, - STATE(1814), 1, - sym_property_element, - STATE(1816), 1, + STATE(1774), 1, sym__function_definition_header, - STATE(2128), 1, - sym__type, - STATE(2462), 1, + STATE(1777), 1, + sym_property_element, + STATE(2148), 1, + sym_type, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - ACTIONS(245), 3, + ACTIONS(250), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1424), 3, + STATE(1435), 3, sym_named_type, sym_optional_type, sym_primitive_type, - STATE(1477), 3, + STATE(1479), 3, sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - STATE(1330), 5, + STATE(1327), 5, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - ACTIONS(1729), 12, + ACTIONS(1684), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -82905,76 +82888,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [5048] = 30, + [5051] = 31, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(239), 1, + ACTIONS(242), 1, aux_sym_final_modifier_token1, - ACTIONS(241), 1, + ACTIONS(244), 1, aux_sym_abstract_modifier_token1, - ACTIONS(243), 1, + ACTIONS(246), 1, aux_sym_readonly_modifier_token1, - ACTIONS(570), 1, + ACTIONS(248), 1, + sym_var_modifier, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(1676), 1, sym_name, - ACTIONS(1725), 1, + ACTIONS(1678), 1, aux_sym_function_static_declaration_token1, - ACTIONS(1727), 1, + ACTIONS(1680), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(1731), 1, - sym_var_modifier, - ACTIONS(1733), 1, + ACTIONS(1682), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(1686), 1, anon_sym_LPAREN, - ACTIONS(1735), 1, + ACTIONS(1688), 1, anon_sym_QMARK, - ACTIONS(1737), 1, + ACTIONS(1690), 1, anon_sym_DOLLAR, - STATE(647), 1, + STATE(638), 1, sym_text_interpolation, - STATE(1105), 1, - aux_sym_property_declaration_repeat1, - STATE(1331), 1, + STATE(1009), 1, + aux_sym_class_declaration_repeat1, + STATE(1329), 1, sym__modifier, - STATE(1417), 1, + STATE(1423), 1, sym__types, - STATE(1427), 1, + STATE(1433), 1, sym_qualified_name, - STATE(1699), 1, + STATE(1721), 1, sym_variable_name, - STATE(1885), 1, + STATE(1754), 1, sym__function_definition_header, - STATE(1886), 1, + STATE(1812), 1, sym_property_element, - STATE(1914), 1, - sym__type, - STATE(2462), 1, + STATE(2142), 1, + sym_type, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - ACTIONS(245), 3, + ACTIONS(250), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1424), 3, + STATE(1435), 3, sym_named_type, sym_optional_type, sym_primitive_type, - STATE(1477), 3, + STATE(1479), 3, sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - STATE(1330), 5, + STATE(1327), 5, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - ACTIONS(1729), 12, + ACTIONS(1684), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -82987,77 +82972,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [5160] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1739), 1, - anon_sym_LPAREN, - STATE(648), 1, - sym_text_interpolation, - STATE(671), 1, - sym_arguments, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1615), 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(1621), 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [5227] = 7, + [5166] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1739), 1, + ACTIONS(1692), 1, anon_sym_LPAREN, - STATE(649), 1, + STATE(639), 1, sym_text_interpolation, - STATE(664), 1, + STATE(661), 1, sym_arguments, - ACTIONS(1603), 13, + ACTIONS(1562), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83071,7 +82997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 32, + ACTIONS(1560), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83104,74 +83030,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5292] = 7, + [5231] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1739), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(650), 1, - sym_text_interpolation, - STATE(679), 1, + ACTIONS(1698), 1, + anon_sym_BSLASH, + STATE(579), 1, sym_arguments, - ACTIONS(1629), 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(1627), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + STATE(640), 1, + sym_text_interpolation, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, anon_sym_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [5357] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - STATE(651), 1, - sym_text_interpolation, - ACTIONS(1649), 13, + ACTIONS(1696), 12, anon_sym_AMP, - anon_sym_EQ, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, @@ -83183,22 +83064,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1647), 34, + ACTIONS(1694), 26, 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_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, @@ -83218,28 +83091,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5418] = 10, + [5302] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1739), 1, + ACTIONS(1692), 1, anon_sym_LPAREN, - ACTIONS(1741), 1, + ACTIONS(1698), 1, anon_sym_BSLASH, - STATE(652), 1, + STATE(641), 1, sym_text_interpolation, - STATE(671), 1, + STATE(666), 1, sym_arguments, - STATE(2377), 1, + STATE(2243), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1613), 12, + ACTIONS(1570), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83252,7 +83125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1611), 26, + ACTIONS(1568), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83279,32 +83152,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5489] = 10, + [5373] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1692), 1, anon_sym_LPAREN, - ACTIONS(1741), 1, - anon_sym_BSLASH, - STATE(597), 1, - sym_arguments, - STATE(653), 1, + STATE(642), 1, sym_text_interpolation, - STATE(2377), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1613), 12, + STATE(656), 1, + sym_arguments, + ACTIONS(1586), 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, @@ -83313,14 +83177,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1611), 26, + ACTIONS(1584), 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_PLUS, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -83340,28 +83210,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5560] = 10, + [5438] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1741), 1, - anon_sym_BSLASH, - ACTIONS(1748), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(654), 1, - sym_text_interpolation, - STATE(728), 1, + ACTIONS(1698), 1, + anon_sym_BSLASH, + STATE(579), 1, sym_arguments, - STATE(2377), 1, + STATE(643), 1, + sym_text_interpolation, + STATE(2243), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1746), 12, + ACTIONS(1570), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83374,7 +83244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1744), 26, + ACTIONS(1568), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83401,18 +83271,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5631] = 7, + [5509] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1739), 1, + ACTIONS(1692), 1, anon_sym_LPAREN, - STATE(655), 1, + STATE(644), 1, sym_text_interpolation, - STATE(678), 1, + STATE(666), 1, sym_arguments, - ACTIONS(1625), 13, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83426,20 +83305,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1623), 32, + ACTIONS(1568), 25, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -83459,32 +83331,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5696] = 9, + [5578] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1739), 1, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(1705), 1, anon_sym_LPAREN, - STATE(656), 1, + STATE(645), 1, sym_text_interpolation, - STATE(671), 1, + STATE(755), 1, sym_arguments, - ACTIONS(1619), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1617), 5, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1613), 13, + ACTIONS(1703), 12, 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, @@ -83493,13 +83365,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1611), 25, + ACTIONS(1701), 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_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -83519,18 +83392,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5765] = 7, + [5649] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1739), 1, + ACTIONS(1692), 1, anon_sym_LPAREN, - STATE(657), 1, + STATE(646), 1, sym_text_interpolation, - STATE(666), 1, + STATE(663), 1, sym_arguments, - ACTIONS(1609), 13, + ACTIONS(1556), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83544,7 +83417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 32, + ACTIONS(1554), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83577,32 +83450,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5830] = 10, + [5714] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1692), 1, anon_sym_LPAREN, - ACTIONS(1741), 1, - anon_sym_BSLASH, - STATE(597), 1, - sym_arguments, - STATE(658), 1, + STATE(647), 1, sym_text_interpolation, - STATE(2377), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1752), 12, + STATE(659), 1, + sym_arguments, + ACTIONS(1566), 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, @@ -83611,14 +83475,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1750), 26, + ACTIONS(1564), 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_PLUS, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -83638,18 +83508,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5901] = 7, + [5779] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1739), 1, + ACTIONS(1692), 1, anon_sym_LPAREN, - STATE(659), 1, + STATE(648), 1, sym_text_interpolation, - STATE(677), 1, + STATE(657), 1, sym_arguments, - ACTIONS(1633), 13, + ACTIONS(1582), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83663,7 +83533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1631), 32, + ACTIONS(1580), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83696,99 +83566,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5966] = 30, + [5844] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(313), 1, - anon_sym_POUND_LBRACK, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(580), 1, - aux_sym_cast_type_token1, - ACTIONS(612), 1, - anon_sym_LT_LT_LT, - ACTIONS(1563), 1, + STATE(649), 1, + sym_text_interpolation, + ACTIONS(1598), 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(1596), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1754), 1, - sym_name, - ACTIONS(1758), 1, - aux_sym_class_declaration_token1, - ACTIONS(1760), 1, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [5905] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1692), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_DOLLAR, - STATE(660), 1, + STATE(650), 1, sym_text_interpolation, - STATE(975), 1, - aux_sym_attribute_list_repeat1, - STATE(1011), 1, - sym_attribute_group, - STATE(1677), 1, - sym__dereferencable_expression, - STATE(2532), 1, - sym_attribute_list, - STATE(2546), 1, - sym__scope_resolution_qualifier, - STATE(2615), 1, - sym_relative_scope, - STATE(2626), 1, - sym_namespace_name, - STATE(2627), 1, - sym_namespace_name_as_prefix, - ACTIONS(608), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(610), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(816), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1730), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(1756), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(811), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(814), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(734), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1559), 7, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_array_creation_expression, - sym__string, - [6076] = 5, + STATE(666), 1, + sym_arguments, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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(1578), 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [5972] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(661), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(578), 1, + sym_arguments, + STATE(651), 1, sym_text_interpolation, - ACTIONS(1657), 13, + ACTIONS(1709), 12, 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, @@ -83797,18 +83705,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1655), 33, + ACTIONS(1707), 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_LPAREN, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -83831,154 +83738,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6136] = 30, + [6036] = 30, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(313), 1, + ACTIONS(318), 1, anon_sym_POUND_LBRACK, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1723), 1, + ACTIONS(1676), 1, sym_name, - ACTIONS(1764), 1, + ACTIONS(1711), 1, anon_sym_AMP, - ACTIONS(1766), 1, + ACTIONS(1713), 1, anon_sym_COMMA, - ACTIONS(1768), 1, + ACTIONS(1715), 1, anon_sym_LPAREN, - ACTIONS(1770), 1, + ACTIONS(1717), 1, anon_sym_RPAREN, - ACTIONS(1772), 1, + ACTIONS(1719), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1774), 1, + ACTIONS(1721), 1, anon_sym_QMARK, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - STATE(662), 1, - sym_text_interpolation, - STATE(975), 1, - aux_sym_attribute_list_repeat1, - STATE(978), 1, - sym_attribute_list, - STATE(1011), 1, - sym_attribute_group, - STATE(1192), 1, - sym_visibility_modifier, - STATE(1427), 1, - sym_qualified_name, - STATE(1560), 1, - sym__types, - STATE(1654), 1, - sym__type, - STATE(2014), 1, - sym_reference_modifier, - STATE(2017), 1, - sym_variable_name, - STATE(2544), 1, - sym_namespace_name_as_prefix, - STATE(2626), 1, - sym_namespace_name, - ACTIONS(245), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1424), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1477), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - STATE(1929), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1729), 12, - 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_false, - anon_sym_null, - anon_sym_true, - [6246] = 30, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(313), 1, - anon_sym_POUND_LBRACK, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, ACTIONS(1723), 1, - sym_name, - ACTIONS(1764), 1, - anon_sym_AMP, - ACTIONS(1768), 1, - anon_sym_LPAREN, - ACTIONS(1772), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1774), 1, - anon_sym_QMARK, - ACTIONS(1776), 1, anon_sym_DOLLAR, - ACTIONS(1778), 1, - anon_sym_COMMA, - ACTIONS(1780), 1, - anon_sym_RPAREN, - STATE(663), 1, + STATE(652), 1, sym_text_interpolation, STATE(975), 1, - aux_sym_attribute_list_repeat1, - STATE(978), 1, sym_attribute_list, - STATE(1011), 1, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, sym_attribute_group, - STATE(1192), 1, + STATE(1198), 1, sym_visibility_modifier, - STATE(1427), 1, + STATE(1433), 1, sym_qualified_name, - STATE(1560), 1, + STATE(1548), 1, sym__types, - STATE(1654), 1, - sym__type, - STATE(2014), 1, + STATE(1732), 1, + sym_type, + STATE(1933), 1, sym_reference_modifier, - STATE(2017), 1, + STATE(1935), 1, sym_variable_name, - STATE(2544), 1, + STATE(2604), 1, sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - ACTIONS(245), 3, + ACTIONS(250), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1424), 3, + STATE(1435), 3, sym_named_type, sym_optional_type, sym_primitive_type, - STATE(1477), 3, + STATE(1479), 3, sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - STATE(2015), 3, + STATE(1934), 3, sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1729), 12, + ACTIONS(1684), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -83991,14 +83818,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [6356] = 5, + [6146] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(664), 1, + STATE(653), 1, sym_text_interpolation, - ACTIONS(1681), 13, + ACTIONS(1544), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84012,7 +83839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1679), 33, + ACTIONS(1542), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84046,14 +83873,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6416] = 5, + [6206] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(665), 1, + STATE(654), 1, sym_text_interpolation, - ACTIONS(1591), 13, + ACTIONS(1538), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84067,7 +83894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1589), 33, + ACTIONS(1536), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84101,14 +83928,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6476] = 5, + [6266] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(666), 1, + STATE(655), 1, sym_text_interpolation, - ACTIONS(1669), 13, + ACTIONS(1598), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84122,7 +83949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1667), 33, + ACTIONS(1596), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84156,22 +83983,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6536] = 7, + [6326] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, - STATE(589), 1, - sym_arguments, - STATE(667), 1, + STATE(656), 1, sym_text_interpolation, - ACTIONS(1784), 12, + ACTIONS(1634), 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, @@ -84180,17 +84004,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1782), 32, + ACTIONS(1632), 33, 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_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -84213,14 +84038,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6600] = 5, + [6386] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(668), 1, + STATE(657), 1, sym_text_interpolation, - ACTIONS(1595), 13, + ACTIONS(1630), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84234,7 +84059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1593), 33, + ACTIONS(1628), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84268,14 +84093,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6660] = 5, + [6446] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(669), 1, + STATE(658), 1, sym_text_interpolation, - ACTIONS(1653), 13, + ACTIONS(1590), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84289,7 +84114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1651), 33, + ACTIONS(1588), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84323,14 +84148,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6720] = 5, + [6506] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(670), 1, + STATE(659), 1, sym_text_interpolation, - ACTIONS(1685), 13, + ACTIONS(1626), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84344,7 +84169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1683), 33, + ACTIONS(1624), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84378,14 +84203,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6780] = 5, + [6566] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(671), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(584), 1, + sym_arguments, + STATE(660), 1, + sym_text_interpolation, + ACTIONS(1727), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1725), 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_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, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [6630] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(661), 1, sym_text_interpolation, - ACTIONS(1677), 13, + ACTIONS(1622), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84399,7 +84281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1675), 33, + ACTIONS(1620), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84433,14 +84315,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6840] = 5, + [6690] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(672), 1, + STATE(662), 1, sym_text_interpolation, - ACTIONS(1599), 13, + ACTIONS(1610), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84454,7 +84336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1597), 33, + ACTIONS(1608), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84488,14 +84370,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6900] = 5, + [6750] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(673), 1, + STATE(663), 1, sym_text_interpolation, - ACTIONS(1649), 13, + ACTIONS(1614), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84509,7 +84391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1647), 33, + ACTIONS(1612), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84543,14 +84425,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6960] = 5, + [6810] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(674), 1, + STATE(664), 1, sym_text_interpolation, - ACTIONS(1641), 13, + ACTIONS(1638), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84564,7 +84446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1639), 33, + ACTIONS(1636), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84598,94 +84480,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7020] = 30, + [6870] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(313), 1, - anon_sym_POUND_LBRACK, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(580), 1, - aux_sym_cast_type_token1, - ACTIONS(612), 1, - anon_sym_LT_LT_LT, - ACTIONS(1563), 1, + STATE(665), 1, + sym_text_interpolation, + 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), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1760), 1, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [6930] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(666), 1, + sym_text_interpolation, + ACTIONS(1594), 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(1592), 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, - ACTIONS(1786), 1, - sym_name, - ACTIONS(1788), 1, - aux_sym_class_declaration_token1, - ACTIONS(1790), 1, - anon_sym_DOLLAR, - STATE(675), 1, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [6990] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(667), 1, sym_text_interpolation, - STATE(975), 1, - aux_sym_attribute_list_repeat1, - STATE(1011), 1, - sym_attribute_group, - STATE(1738), 1, - sym__dereferencable_expression, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2575), 1, - sym_attribute_list, - STATE(2615), 1, - sym_relative_scope, - STATE(2626), 1, - sym_namespace_name, - STATE(2664), 1, - sym__scope_resolution_qualifier, - ACTIONS(608), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(610), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(695), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1730), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(307), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(690), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(693), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(734), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1559), 7, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_array_creation_expression, - sym__string, - [7130] = 5, + 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), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [7050] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(676), 1, + STATE(668), 1, sym_text_interpolation, - ACTIONS(1637), 13, + ACTIONS(1602), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84699,7 +84666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1635), 33, + ACTIONS(1600), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84733,14 +84700,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7190] = 5, + [7110] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(677), 1, + STATE(669), 1, sym_text_interpolation, - ACTIONS(1645), 13, + ACTIONS(1606), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84754,7 +84721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1643), 33, + ACTIONS(1604), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84788,14 +84755,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7250] = 5, + [7170] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(678), 1, + STATE(670), 1, sym_text_interpolation, - ACTIONS(1665), 13, + ACTIONS(1618), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84809,7 +84776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1663), 33, + ACTIONS(1616), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84843,19 +84810,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7310] = 5, + [7230] = 30, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(5), 1, sym_comment, - STATE(679), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1729), 1, + sym_name, + ACTIONS(1731), 1, + aux_sym_class_declaration_token1, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + STATE(671), 1, + sym_text_interpolation, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, + sym_attribute_group, + STATE(1690), 1, + sym__dereferencable_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + STATE(2623), 1, + sym_attribute_list, + STATE(2636), 1, + sym__scope_resolution_qualifier, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(680), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1705), 2, + sym_class_constant_access_expression, + sym_cast_variable, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(676), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(678), 4, + sym_parenthesized_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1581), 6, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_array_creation_expression, + sym__string, + [7340] = 30, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(1715), 1, + anon_sym_LPAREN, + ACTIONS(1719), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1721), 1, + anon_sym_QMARK, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(1737), 1, + anon_sym_COMMA, + ACTIONS(1739), 1, + anon_sym_RPAREN, + STATE(672), 1, + sym_text_interpolation, + STATE(975), 1, + sym_attribute_list, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, + sym_attribute_group, + STATE(1198), 1, + sym_visibility_modifier, + STATE(1433), 1, + sym_qualified_name, + STATE(1548), 1, + sym__types, + STATE(1732), 1, + sym_type, + STATE(1933), 1, + sym_reference_modifier, + STATE(1935), 1, + sym_variable_name, + STATE(2604), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(250), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(1910), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [7450] = 30, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1741), 1, + sym_name, + ACTIONS(1745), 1, + aux_sym_class_declaration_token1, + ACTIONS(1747), 1, + anon_sym_LPAREN, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + STATE(673), 1, + sym_text_interpolation, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, + sym_attribute_group, + STATE(1708), 1, + sym__dereferencable_expression, + STATE(2571), 1, + sym_attribute_list, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + STATE(2606), 1, + sym_namespace_name_as_prefix, + STATE(2609), 1, + sym__scope_resolution_qualifier, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(805), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1705), 2, + sym_class_constant_access_expression, + sym_cast_variable, + ACTIONS(1743), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(840), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(841), 4, + sym_parenthesized_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1581), 6, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_array_creation_expression, + sym__string, + [7560] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1705), 1, + anon_sym_LPAREN, + STATE(674), 1, sym_text_interpolation, - ACTIONS(1661), 13, + STATE(723), 1, + sym_arguments, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1753), 12, 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, @@ -84864,21 +85080,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1659), 33, + ACTIONS(1751), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + anon_sym_PLUS, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -84898,14 +85107,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7370] = 5, + [7625] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(680), 1, + STATE(675), 1, sym_text_interpolation, - ACTIONS(1673), 13, + ACTIONS(1576), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84919,21 +85137,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1671), 33, + ACTIONS(1568), 25, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -84953,18 +85163,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7430] = 7, + [7688] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1755), 1, anon_sym_LPAREN, - STATE(591), 1, - sym_arguments, - STATE(681), 1, + STATE(676), 1, sym_text_interpolation, - ACTIONS(1794), 12, + STATE(961), 1, + sym_arguments, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1703), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84977,20 +85193,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1792), 32, + ACTIONS(1701), 26, 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_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, @@ -85010,19 +85220,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7494] = 5, + [7753] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(682), 1, + ACTIONS(1692), 1, + anon_sym_LPAREN, + STATE(658), 1, + sym_arguments, + STATE(677), 1, sym_text_interpolation, - ACTIONS(1585), 13, + ACTIONS(1709), 12, 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, @@ -85031,18 +85244,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1583), 33, + ACTIONS(1707), 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_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -85065,24 +85276,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7554] = 8, + [7816] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1705), 1, anon_sym_LPAREN, - STATE(683), 1, + STATE(678), 1, sym_text_interpolation, - STATE(738), 1, + STATE(755), 1, sym_arguments, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1798), 12, + ACTIONS(1703), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85095,7 +85306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1796), 26, + ACTIONS(1701), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85122,172 +85333,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7619] = 27, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(580), 1, - aux_sym_cast_type_token1, - ACTIONS(612), 1, - anon_sym_LT_LT_LT, - ACTIONS(616), 1, - anon_sym_DOLLAR, - ACTIONS(1563), 1, - anon_sym_LBRACK, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1760), 1, - anon_sym_LPAREN, - ACTIONS(1800), 1, - sym_name, - ACTIONS(1802), 1, - anon_sym_RBRACE, - STATE(684), 1, - sym_text_interpolation, - STATE(706), 1, - aux_sym_use_list_repeat1, - STATE(1531), 1, - sym_class_constant_access_expression, - STATE(1755), 1, - sym__dereferencable_expression, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2500), 1, - sym__scope_resolution_qualifier, - STATE(2615), 1, - sym_relative_scope, - STATE(2626), 1, - sym_namespace_name, - ACTIONS(608), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(610), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(1532), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(2187), 2, - sym_use_instead_of_clause, - sym_use_as_clause, - ACTIONS(307), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(734), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1730), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1559), 10, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_array_creation_expression, - sym__string, - sym_dynamic_variable_name, - sym_variable_name, - [7722] = 29, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(313), 1, - anon_sym_POUND_LBRACK, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1723), 1, - sym_name, - ACTIONS(1764), 1, - anon_sym_AMP, - ACTIONS(1768), 1, - anon_sym_LPAREN, - ACTIONS(1772), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1774), 1, - anon_sym_QMARK, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(1804), 1, - anon_sym_RPAREN, - STATE(685), 1, - sym_text_interpolation, - STATE(975), 1, - aux_sym_attribute_list_repeat1, - STATE(978), 1, - sym_attribute_list, - STATE(1011), 1, - sym_attribute_group, - STATE(1192), 1, - sym_visibility_modifier, - STATE(1427), 1, - sym_qualified_name, - STATE(1560), 1, - sym__types, - STATE(1654), 1, - sym__type, - STATE(2014), 1, - sym_reference_modifier, - STATE(2017), 1, - sym_variable_name, - STATE(2544), 1, - sym_namespace_name_as_prefix, - STATE(2626), 1, - sym_namespace_name, - ACTIONS(245), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1424), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1477), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - STATE(2227), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1729), 12, - 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_false, - anon_sym_null, - anon_sym_true, - [7829] = 7, + [7881] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1739), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(677), 1, + STATE(579), 1, sym_arguments, - STATE(686), 1, + STATE(679), 1, sym_text_interpolation, - ACTIONS(1784), 12, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1696), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85300,19 +85363,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1782), 31, + ACTIONS(1694), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_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, @@ -85332,16 +85390,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7892] = 6, + [7946] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(594), 1, - sym_arguments, - STATE(687), 1, + ACTIONS(1705), 1, + anon_sym_LPAREN, + STATE(680), 1, sym_text_interpolation, - ACTIONS(1625), 12, + STATE(755), 1, + sym_arguments, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1703), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85354,20 +85420,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1623), 32, + ACTIONS(1701), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_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, @@ -85387,77 +85447,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7953] = 29, + [8011] = 29, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(1715), 1, + anon_sym_LPAREN, + ACTIONS(1719), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1721), 1, + anon_sym_QMARK, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(1757), 1, + anon_sym_RPAREN, + STATE(681), 1, + sym_text_interpolation, + STATE(975), 1, + sym_attribute_list, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, + sym_attribute_group, + STATE(1198), 1, + sym_visibility_modifier, + STATE(1433), 1, + sym_qualified_name, + STATE(1548), 1, + sym__types, + STATE(1732), 1, + sym_type, + STATE(1933), 1, + sym_reference_modifier, + STATE(1935), 1, + sym_variable_name, + STATE(2604), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(250), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(2437), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [8118] = 29, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(303), 1, + ACTIONS(308), 1, aux_sym__list_destructing_token1, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(580), 1, + ACTIONS(585), 1, aux_sym_cast_type_token1, - ACTIONS(612), 1, + ACTIONS(617), 1, anon_sym_LT_LT_LT, - ACTIONS(616), 1, + ACTIONS(621), 1, anon_sym_DOLLAR, - ACTIONS(704), 1, + ACTIONS(737), 1, anon_sym_AMP, - ACTIONS(1563), 1, + ACTIONS(1056), 1, anon_sym_LBRACK, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1760), 1, + ACTIONS(1733), 1, anon_sym_LPAREN, - ACTIONS(1806), 1, + ACTIONS(1759), 1, sym_name, - STATE(688), 1, + STATE(682), 1, sym_text_interpolation, - STATE(1730), 1, - sym_class_constant_access_expression, - STATE(1755), 1, + STATE(1703), 1, sym__dereferencable_expression, - STATE(2090), 1, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2364), 1, sym_by_ref, - STATE(2091), 1, + STATE(2365), 1, sym__list_destructing, - STATE(2462), 1, + STATE(2494), 1, sym_namespace_name_as_prefix, STATE(2500), 1, sym__scope_resolution_qualifier, - STATE(2615), 1, + STATE(2597), 1, sym_relative_scope, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - ACTIONS(608), 2, + ACTIONS(613), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(610), 2, + ACTIONS(615), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(1532), 2, + STATE(1579), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(307), 3, + ACTIONS(312), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1559), 3, + STATE(1581), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - STATE(734), 4, + STATE(753), 4, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, - STATE(1524), 4, + STATE(1555), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(1450), 7, + STATE(1464), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -85465,22 +85603,25 @@ static const uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [8060] = 7, + [8225] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1748), 1, - anon_sym_LPAREN, - STATE(689), 1, + STATE(683), 1, sym_text_interpolation, - STATE(744), 1, - sym_arguments, - ACTIONS(1609), 12, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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, @@ -85489,19 +85630,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 31, + ACTIONS(1578), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -85521,24 +85658,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8123] = 8, + [8286] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1692), 1, anon_sym_LPAREN, - STATE(690), 1, - sym_text_interpolation, - STATE(728), 1, + STATE(663), 1, sym_arguments, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1746), 12, + STATE(684), 1, + sym_text_interpolation, + ACTIONS(1727), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85551,14 +85682,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1744), 26, + ACTIONS(1725), 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_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, @@ -85578,18 +85714,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8188] = 7, + [8349] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(691), 1, - sym_text_interpolation, - STATE(726), 1, + STATE(589), 1, sym_arguments, - ACTIONS(1603), 12, + STATE(685), 1, + sym_text_interpolation, + ACTIONS(1586), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85602,7 +85738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 31, + ACTIONS(1584), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85634,102 +85770,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8251] = 29, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(313), 1, - anon_sym_POUND_LBRACK, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1723), 1, - sym_name, - ACTIONS(1764), 1, - anon_sym_AMP, - ACTIONS(1768), 1, - anon_sym_LPAREN, - ACTIONS(1772), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1774), 1, - anon_sym_QMARK, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(1808), 1, - anon_sym_RPAREN, - STATE(692), 1, - sym_text_interpolation, - STATE(975), 1, - aux_sym_attribute_list_repeat1, - STATE(978), 1, - sym_attribute_list, - STATE(1011), 1, - sym_attribute_group, - STATE(1192), 1, - sym_visibility_modifier, - STATE(1427), 1, - sym_qualified_name, - STATE(1560), 1, - sym__types, - STATE(1654), 1, - sym__type, - STATE(2014), 1, - sym_reference_modifier, - STATE(2017), 1, - sym_variable_name, - STATE(2544), 1, - sym_namespace_name_as_prefix, - STATE(2626), 1, - sym_namespace_name, - ACTIONS(245), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1424), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1477), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - STATE(2227), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1729), 12, - 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_false, - anon_sym_null, - anon_sym_true, - [8358] = 8, + [8412] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1810), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(693), 1, - sym_text_interpolation, - STATE(938), 1, + STATE(588), 1, sym_arguments, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1746), 12, + STATE(686), 1, + sym_text_interpolation, + ACTIONS(1582), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85742,14 +85794,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1744), 26, + ACTIONS(1580), 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_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, @@ -85769,16 +85826,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8423] = 6, + [8475] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(593), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(587), 1, sym_arguments, - STATE(694), 1, + STATE(687), 1, sym_text_interpolation, - ACTIONS(1629), 12, + ACTIONS(1566), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85791,14 +85850,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1627), 32, + ACTIONS(1564), 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_COLON_COLON, @@ -85824,24 +85882,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8484] = 8, + [8538] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(695), 1, - sym_text_interpolation, - STATE(728), 1, + STATE(586), 1, sym_arguments, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1746), 12, + STATE(688), 1, + sym_text_interpolation, + ACTIONS(1562), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85854,14 +85906,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1744), 26, + ACTIONS(1560), 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_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, @@ -85881,16 +85938,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8549] = 6, + [8601] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(589), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(584), 1, sym_arguments, - STATE(696), 1, + STATE(689), 1, sym_text_interpolation, - ACTIONS(1633), 12, + ACTIONS(1556), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85903,14 +85962,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1631), 32, + ACTIONS(1554), 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_COLON_COLON, @@ -85936,24 +85994,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8610] = 8, + [8664] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1739), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(671), 1, + STATE(579), 1, sym_arguments, - STATE(697), 1, + STATE(690), 1, sym_text_interpolation, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1613), 12, + ACTIONS(1763), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85966,7 +86024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1611), 26, + ACTIONS(1761), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85993,16 +86051,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8675] = 6, + [8729] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(595), 1, - sym_arguments, - STATE(698), 1, + ACTIONS(1772), 1, + anon_sym_EQ, + STATE(691), 1, sym_text_interpolation, - ACTIONS(1609), 12, + ACTIONS(1769), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1767), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86015,9 +86076,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 32, + ACTIONS(1765), 30, anon_sym_SEMI, - anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86029,7 +86089,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -86048,25 +86107,259 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8736] = 6, + [8792] = 29, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(5), 1, sym_comment, - STATE(699), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(1715), 1, + anon_sym_LPAREN, + ACTIONS(1719), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1721), 1, + anon_sym_QMARK, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(1774), 1, + anon_sym_RPAREN, + STATE(692), 1, + sym_text_interpolation, + STATE(975), 1, + sym_attribute_list, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, + sym_attribute_group, + STATE(1198), 1, + sym_visibility_modifier, + STATE(1433), 1, + sym_qualified_name, + STATE(1548), 1, + sym__types, + STATE(1732), 1, + sym_type, + STATE(1933), 1, + sym_reference_modifier, + STATE(1935), 1, + sym_variable_name, + STATE(2604), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(250), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(2437), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [8899] = 29, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(308), 1, + aux_sym__list_destructing_token1, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(737), 1, + anon_sym_AMP, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + sym_name, + STATE(693), 1, + sym_text_interpolation, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2141), 1, + sym__list_destructing, + STATE(2169), 1, + sym_by_ref, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1581), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1524), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1457), 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, + [9006] = 26, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1776), 1, + sym_name, + ACTIONS(1782), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1785), 1, + anon_sym_BSLASH, + ACTIONS(1788), 1, + anon_sym_RBRACE, + ACTIONS(1790), 1, + anon_sym_LPAREN, + ACTIONS(1793), 1, + aux_sym_cast_type_token1, + ACTIONS(1796), 1, + anon_sym_LBRACK, + ACTIONS(1805), 1, + anon_sym_LT_LT_LT, + ACTIONS(1808), 1, + anon_sym_DOLLAR, + STATE(1577), 1, + sym_class_constant_access_expression, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(1799), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(1802), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(694), 2, + sym_text_interpolation, + aux_sym_use_list_repeat1, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2347), 2, + sym_use_instead_of_clause, + sym_use_as_clause, + ACTIONS(1779), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1705), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1581), 10, + sym_parenthesized_expression, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_array_creation_expression, + sym__string, + sym_dynamic_variable_name, + sym_variable_name, + [9107] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1705), 1, + anon_sym_LPAREN, + STATE(695), 1, sym_text_interpolation, - ACTIONS(1617), 5, + STATE(723), 1, + sym_arguments, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1615), 13, + ACTIONS(1572), 12, 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, @@ -86075,15 +86368,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1621), 27, + ACTIONS(1578), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_PLUS, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -86103,24 +86395,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8797] = 8, + [9172] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1748), 1, - anon_sym_LPAREN, - STATE(700), 1, - sym_text_interpolation, - STATE(738), 1, + STATE(584), 1, sym_arguments, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1814), 12, + STATE(696), 1, + sym_text_interpolation, + ACTIONS(1556), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86133,14 +86417,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1812), 26, + 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_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, @@ -86160,24 +86450,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8862] = 8, + [9233] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1739), 1, - anon_sym_LPAREN, - STATE(671), 1, + STATE(586), 1, sym_arguments, - STATE(701), 1, + STATE(697), 1, sym_text_interpolation, - ACTIONS(1617), 5, + ACTIONS(1562), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1560), 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_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1613), 12, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [9294] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(587), 1, + sym_arguments, + STATE(698), 1, + sym_text_interpolation, + ACTIONS(1566), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86190,14 +86527,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1611), 26, + ACTIONS(1564), 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_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, @@ -86217,18 +86560,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8927] = 7, + [9355] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1739), 1, - anon_sym_LPAREN, - STATE(669), 1, + STATE(588), 1, sym_arguments, - STATE(702), 1, + STATE(699), 1, sym_text_interpolation, - ACTIONS(1794), 12, + ACTIONS(1582), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86241,13 +86582,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1792), 31, + ACTIONS(1580), 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_COLON_COLON, @@ -86273,28 +86615,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8990] = 7, + [9416] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(703), 1, + ACTIONS(1692), 1, + anon_sym_LPAREN, + STATE(666), 1, + sym_arguments, + STATE(700), 1, sym_text_interpolation, - ACTIONS(1619), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1613), 13, + ACTIONS(1763), 12, 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, @@ -86303,13 +86645,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1611), 25, + ACTIONS(1761), 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_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -86329,97 +86672,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9053] = 29, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(313), 1, - anon_sym_POUND_LBRACK, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1723), 1, - sym_name, - ACTIONS(1764), 1, - anon_sym_AMP, - ACTIONS(1768), 1, - anon_sym_LPAREN, - ACTIONS(1772), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1774), 1, - anon_sym_QMARK, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(1816), 1, - anon_sym_RPAREN, - STATE(704), 1, - sym_text_interpolation, - STATE(975), 1, - aux_sym_attribute_list_repeat1, - STATE(978), 1, - sym_attribute_list, - STATE(1011), 1, - sym_attribute_group, - STATE(1192), 1, - sym_visibility_modifier, - STATE(1427), 1, - sym_qualified_name, - STATE(1560), 1, - sym__types, - STATE(1654), 1, - sym__type, - STATE(2014), 1, - sym_reference_modifier, - STATE(2017), 1, - sym_variable_name, - STATE(2544), 1, - sym_namespace_name_as_prefix, - STATE(2626), 1, - sym_namespace_name, - ACTIONS(245), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1424), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1477), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - STATE(2227), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1729), 12, - 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_false, - anon_sym_null, - anon_sym_true, - [9160] = 7, + [9481] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1825), 1, - anon_sym_EQ, - STATE(705), 1, + STATE(589), 1, + sym_arguments, + STATE(701), 1, sym_text_interpolation, - ACTIONS(1822), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1820), 12, + ACTIONS(1586), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86432,8 +86694,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1818), 30, + ACTIONS(1584), 32, anon_sym_SEMI, + anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86445,6 +86708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -86463,177 +86727,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9223] = 26, + [9542] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1827), 1, - sym_name, - ACTIONS(1833), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1836), 1, - anon_sym_BSLASH, - ACTIONS(1839), 1, - anon_sym_RBRACE, - ACTIONS(1841), 1, + ACTIONS(1692), 1, anon_sym_LPAREN, - ACTIONS(1844), 1, - aux_sym_cast_type_token1, - ACTIONS(1847), 1, - anon_sym_LBRACK, - ACTIONS(1856), 1, - anon_sym_LT_LT_LT, - ACTIONS(1859), 1, - anon_sym_DOLLAR, - STATE(1531), 1, - sym_class_constant_access_expression, - STATE(1755), 1, - sym__dereferencable_expression, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2500), 1, - sym__scope_resolution_qualifier, - STATE(2615), 1, - sym_relative_scope, - STATE(2626), 1, - sym_namespace_name, - ACTIONS(1850), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(1853), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(706), 2, - sym_text_interpolation, - aux_sym_use_list_repeat1, - STATE(1532), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(2187), 2, - sym_use_instead_of_clause, - sym_use_as_clause, - ACTIONS(1830), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(734), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1730), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1559), 10, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_array_creation_expression, - sym__string, - sym_dynamic_variable_name, - sym_variable_name, - [9324] = 29, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(303), 1, - aux_sym__list_destructing_token1, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(580), 1, - aux_sym_cast_type_token1, - ACTIONS(612), 1, - anon_sym_LT_LT_LT, - ACTIONS(616), 1, - anon_sym_DOLLAR, - ACTIONS(704), 1, - anon_sym_AMP, - ACTIONS(1563), 1, - anon_sym_LBRACK, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1760), 1, - anon_sym_LPAREN, - ACTIONS(1806), 1, - sym_name, - STATE(707), 1, - sym_text_interpolation, - STATE(1730), 1, - sym_class_constant_access_expression, - STATE(1755), 1, - sym__dereferencable_expression, - STATE(2310), 1, - sym__list_destructing, - STATE(2422), 1, - sym_by_ref, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2500), 1, - sym__scope_resolution_qualifier, - STATE(2615), 1, - sym_relative_scope, - STATE(2626), 1, - sym_namespace_name, - ACTIONS(608), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(610), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(1532), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(307), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1559), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(734), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1554), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1481), 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, - [9431] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1748), 1, - anon_sym_LPAREN, - STATE(708), 1, - sym_text_interpolation, - STATE(738), 1, + STATE(666), 1, sym_arguments, - ACTIONS(1617), 5, + STATE(702), 1, + sym_text_interpolation, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1615), 12, + ACTIONS(1570), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86646,7 +86757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1621), 26, + ACTIONS(1568), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86673,130 +86784,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9496] = 7, + [9607] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1692), 1, anon_sym_LPAREN, - STATE(709), 1, - sym_text_interpolation, - STATE(765), 1, + STATE(666), 1, sym_arguments, - ACTIONS(1625), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1623), 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_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, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9559] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1748), 1, - anon_sym_LPAREN, - STATE(710), 1, + STATE(703), 1, sym_text_interpolation, - STATE(727), 1, - sym_arguments, - ACTIONS(1629), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1627), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + ACTIONS(1574), 5, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, 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, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9622] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1748), 1, - anon_sym_LPAREN, - STATE(711), 1, - sym_text_interpolation, - STATE(745), 1, - sym_arguments, - ACTIONS(1633), 12, + ACTIONS(1570), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86809,19 +86814,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1631), 31, + ACTIONS(1568), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_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, @@ -86841,80 +86841,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9685] = 7, + [9672] = 29, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(5), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, - STATE(589), 1, - sym_arguments, - STATE(712), 1, - sym_text_interpolation, - ACTIONS(1633), 12, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1711), 1, anon_sym_AMP, - anon_sym_COLON, + ACTIONS(1715), 1, + anon_sym_LPAREN, + ACTIONS(1719), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1721), 1, anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1631), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(1811), 1, anon_sym_RPAREN, - anon_sym_PLUS, - 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, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9748] = 8, + STATE(704), 1, + sym_text_interpolation, + STATE(975), 1, + sym_attribute_list, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, + sym_attribute_group, + STATE(1198), 1, + sym_visibility_modifier, + STATE(1433), 1, + sym_qualified_name, + STATE(1548), 1, + sym__types, + STATE(1732), 1, + sym_type, + STATE(1933), 1, + sym_reference_modifier, + STATE(1935), 1, + sym_variable_name, + STATE(2604), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(250), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(2437), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [9779] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1705), 1, anon_sym_LPAREN, - STATE(597), 1, - sym_arguments, - STATE(713), 1, + STATE(705), 1, sym_text_interpolation, - ACTIONS(1617), 5, + STATE(723), 1, + sym_arguments, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1752), 12, + ACTIONS(1815), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86927,7 +86949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1750), 26, + ACTIONS(1813), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86954,24 +86976,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9813] = 8, + [9844] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(597), 1, + STATE(579), 1, sym_arguments, - STATE(714), 1, + STATE(706), 1, sym_text_interpolation, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1752), 12, + ACTIONS(1570), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86984,7 +87006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1750), 26, + ACTIONS(1568), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87011,24 +87033,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9878] = 8, + [9909] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(597), 1, + STATE(579), 1, sym_arguments, - STATE(715), 1, + STATE(707), 1, sym_text_interpolation, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1613), 12, + ACTIONS(1570), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87041,7 +87063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1611), 26, + ACTIONS(1568), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87068,72 +87090,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9943] = 29, + [9974] = 29, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(313), 1, + ACTIONS(318), 1, anon_sym_POUND_LBRACK, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1723), 1, + ACTIONS(1676), 1, sym_name, - ACTIONS(1764), 1, + ACTIONS(1711), 1, anon_sym_AMP, - ACTIONS(1768), 1, + ACTIONS(1715), 1, anon_sym_LPAREN, - ACTIONS(1772), 1, + ACTIONS(1719), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1774), 1, + ACTIONS(1721), 1, anon_sym_QMARK, - ACTIONS(1776), 1, + ACTIONS(1723), 1, anon_sym_DOLLAR, - ACTIONS(1862), 1, + ACTIONS(1817), 1, anon_sym_RPAREN, - STATE(716), 1, + STATE(708), 1, sym_text_interpolation, STATE(975), 1, - aux_sym_attribute_list_repeat1, - STATE(978), 1, sym_attribute_list, - STATE(1011), 1, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, sym_attribute_group, - STATE(1192), 1, + STATE(1198), 1, sym_visibility_modifier, - STATE(1427), 1, + STATE(1433), 1, sym_qualified_name, - STATE(1560), 1, + STATE(1548), 1, sym__types, - STATE(1654), 1, - sym__type, - STATE(2014), 1, + STATE(1732), 1, + sym_type, + STATE(1933), 1, sym_reference_modifier, - STATE(2017), 1, + STATE(1935), 1, sym_variable_name, - STATE(2544), 1, + STATE(2604), 1, sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - ACTIONS(245), 3, + ACTIONS(250), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1424), 3, + STATE(1435), 3, sym_named_type, sym_optional_type, sym_primitive_type, - STATE(1477), 3, + STATE(1479), 3, sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - STATE(2227), 3, + STATE(2437), 3, sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1729), 12, + ACTIONS(1684), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -87146,75 +87168,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [10050] = 8, + [10081] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1705), 1, anon_sym_LPAREN, - STATE(597), 1, - sym_arguments, - STATE(717), 1, + STATE(709), 1, sym_text_interpolation, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1613), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1611), 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_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10115] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, - STATE(593), 1, + STATE(736), 1, sym_arguments, - STATE(718), 1, - sym_text_interpolation, - ACTIONS(1629), 12, + ACTIONS(1556), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87227,7 +87192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1627), 31, + ACTIONS(1554), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87259,94 +87224,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10178] = 27, + [10144] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(580), 1, - aux_sym_cast_type_token1, - ACTIONS(612), 1, - anon_sym_LT_LT_LT, - ACTIONS(616), 1, - anon_sym_DOLLAR, - ACTIONS(1563), 1, - anon_sym_LBRACK, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1760), 1, + ACTIONS(1705), 1, anon_sym_LPAREN, - ACTIONS(1800), 1, - sym_name, - ACTIONS(1864), 1, - anon_sym_RBRACE, - STATE(684), 1, - aux_sym_use_list_repeat1, - STATE(719), 1, + STATE(710), 1, sym_text_interpolation, - STATE(1531), 1, - sym_class_constant_access_expression, - STATE(1755), 1, - sym__dereferencable_expression, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2500), 1, - sym__scope_resolution_qualifier, - STATE(2615), 1, - sym_relative_scope, - STATE(2626), 1, - sym_namespace_name, - ACTIONS(608), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(610), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(1532), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(2187), 2, - sym_use_instead_of_clause, - sym_use_as_clause, - ACTIONS(307), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(734), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1730), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1559), 10, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_array_creation_expression, - sym__string, - sym_dynamic_variable_name, - sym_variable_name, - [10281] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, - STATE(594), 1, + STATE(759), 1, sym_arguments, - STATE(720), 1, - sym_text_interpolation, - ACTIONS(1625), 12, + ACTIONS(1562), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87359,7 +87248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1623), 31, + ACTIONS(1560), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87391,18 +87280,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10344] = 7, + [10207] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1705), 1, anon_sym_LPAREN, - STATE(595), 1, - sym_arguments, - STATE(721), 1, + STATE(711), 1, sym_text_interpolation, - ACTIONS(1609), 12, + STATE(758), 1, + sym_arguments, + ACTIONS(1566), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87415,7 +87304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 31, + ACTIONS(1564), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87447,16 +87336,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10407] = 6, + [10270] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(598), 1, - sym_arguments, - STATE(722), 1, + ACTIONS(1705), 1, + anon_sym_LPAREN, + STATE(712), 1, sym_text_interpolation, - ACTIONS(1603), 12, + STATE(750), 1, + sym_arguments, + ACTIONS(1582), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87469,14 +87360,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 32, + ACTIONS(1580), 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_COLON_COLON, @@ -87502,70 +87392,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10468] = 7, + [10333] = 27, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1733), 1, anon_sym_LPAREN, - STATE(598), 1, - sym_arguments, - STATE(723), 1, + ACTIONS(1819), 1, + sym_name, + ACTIONS(1821), 1, + anon_sym_RBRACE, + STATE(713), 1, sym_text_interpolation, - ACTIONS(1603), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 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_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, + STATE(714), 1, + aux_sym_use_list_repeat1, + STATE(1577), 1, + sym_class_constant_access_expression, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2347), 2, + sym_use_instead_of_clause, + sym_use_as_clause, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1705), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1581), 10, + sym_parenthesized_expression, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_array_creation_expression, + sym__string, + sym_dynamic_variable_name, + sym_variable_name, + [10436] = 27, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1056), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10531] = 5, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1819), 1, + sym_name, + ACTIONS(1823), 1, + anon_sym_RBRACE, + STATE(694), 1, + aux_sym_use_list_repeat1, + STATE(714), 1, + sym_text_interpolation, + STATE(1577), 1, + sym_class_constant_access_expression, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2347), 2, + sym_use_instead_of_clause, + sym_use_as_clause, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1705), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1581), 10, + sym_parenthesized_expression, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_array_creation_expression, + sym__string, + sym_dynamic_variable_name, + sym_variable_name, + [10539] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(724), 1, + ACTIONS(1705), 1, + anon_sym_LPAREN, + STATE(715), 1, sym_text_interpolation, - ACTIONS(1868), 12, + STATE(732), 1, + sym_arguments, + ACTIONS(1586), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87578,14 +87568,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1866), 32, + ACTIONS(1584), 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_COLON_COLON, @@ -87611,67 +87600,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10589] = 5, + [10602] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(725), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(716), 1, sym_text_interpolation, - ACTIONS(1872), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1870), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + ACTIONS(1574), 5, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, 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, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10647] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - STATE(726), 1, - sym_text_interpolation, - ACTIONS(1681), 12, + ACTIONS(1696), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87684,20 +87630,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1679), 32, + ACTIONS(1694), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_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, @@ -87717,14 +87657,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10705] = 5, + [10667] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(727), 1, + STATE(717), 1, sym_text_interpolation, - ACTIONS(1661), 12, + ACTIONS(1827), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87737,7 +87677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1659), 32, + ACTIONS(1825), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87770,68 +87710,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10763] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - STATE(728), 1, - sym_text_interpolation, - ACTIONS(1675), 6, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1876), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1874), 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_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10823] = 5, + [10725] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(729), 1, + STATE(718), 1, sym_text_interpolation, - ACTIONS(1880), 12, + ACTIONS(1590), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87844,7 +87730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1878), 32, + ACTIONS(1588), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87877,14 +87763,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10881] = 5, + [10783] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(730), 1, + STATE(719), 1, sym_text_interpolation, - ACTIONS(1820), 12, + ACTIONS(1831), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87897,7 +87783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1818), 32, + ACTIONS(1829), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87930,14 +87816,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10939] = 5, + [10841] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(731), 1, + STATE(720), 1, sym_text_interpolation, - ACTIONS(1884), 12, + ACTIONS(1638), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87950,7 +87836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1882), 32, + ACTIONS(1636), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87983,14 +87869,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10997] = 5, + [10899] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(732), 1, + STATE(721), 1, sym_text_interpolation, - ACTIONS(1888), 12, + ACTIONS(1618), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88003,7 +87889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1886), 32, + ACTIONS(1616), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88036,14 +87922,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11055] = 5, + [10957] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(733), 1, + STATE(722), 1, sym_text_interpolation, - ACTIONS(1585), 12, + ACTIONS(1835), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88056,7 +87942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1583), 32, + ACTIONS(1833), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88089,14 +87975,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11113] = 5, + [11015] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(734), 1, + STATE(723), 1, sym_text_interpolation, - ACTIONS(1892), 12, + ACTIONS(1594), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88109,7 +87995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1890), 32, + ACTIONS(1592), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88142,14 +88028,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11171] = 5, + [11073] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(735), 1, + STATE(724), 1, sym_text_interpolation, - ACTIONS(1896), 12, + ACTIONS(1839), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88162,7 +88048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1894), 32, + ACTIONS(1837), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88195,14 +88081,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11229] = 5, + [11131] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(736), 1, + STATE(725), 1, sym_text_interpolation, - ACTIONS(1900), 12, + ACTIONS(1843), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88215,7 +88101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 32, + ACTIONS(1841), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88248,14 +88134,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11287] = 5, + [11189] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(737), 1, + STATE(726), 1, sym_text_interpolation, - ACTIONS(1904), 12, + ACTIONS(1606), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88268,7 +88154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1902), 32, + ACTIONS(1604), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88301,14 +88187,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11345] = 5, + [11247] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(738), 1, + STATE(727), 1, sym_text_interpolation, - ACTIONS(1677), 12, + ACTIONS(1602), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88321,7 +88207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1675), 32, + ACTIONS(1600), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88354,14 +88240,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11403] = 5, + [11305] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(739), 1, + STATE(728), 1, sym_text_interpolation, - ACTIONS(1595), 12, + ACTIONS(1552), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88374,7 +88260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1593), 32, + ACTIONS(1550), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88407,67 +88293,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11461] = 5, + [11363] = 28, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(5), 1, sym_comment, - STATE(740), 1, - sym_text_interpolation, - ACTIONS(1599), 12, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1711), 1, anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1597), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(1715), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - 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, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11519] = 5, + ACTIONS(1719), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1721), 1, + anon_sym_QMARK, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(729), 1, + sym_text_interpolation, + STATE(975), 1, + sym_attribute_list, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, + sym_attribute_group, + STATE(1198), 1, + sym_visibility_modifier, + STATE(1433), 1, + sym_qualified_name, + STATE(1548), 1, + sym__types, + STATE(1732), 1, + sym_type, + STATE(1933), 1, + sym_reference_modifier, + STATE(1935), 1, + sym_variable_name, + STATE(2604), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(250), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(2437), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [11467] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(741), 1, + STATE(730), 1, sym_text_interpolation, - ACTIONS(1657), 12, + ACTIONS(1847), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88480,7 +88389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1655), 32, + ACTIONS(1845), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88513,14 +88422,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11577] = 5, + [11525] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(742), 1, + STATE(731), 1, sym_text_interpolation, - ACTIONS(1591), 12, + ACTIONS(1851), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88533,7 +88442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1589), 32, + ACTIONS(1849), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88566,16 +88475,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11635] = 6, + [11583] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1906), 1, - anon_sym_COLON_COLON, - STATE(743), 1, + STATE(732), 1, sym_text_interpolation, - ACTIONS(1649), 12, + ACTIONS(1634), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88588,7 +88495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1647), 31, + ACTIONS(1632), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88598,6 +88505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -88620,14 +88528,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11695] = 5, + [11641] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(744), 1, + STATE(733), 1, sym_text_interpolation, - ACTIONS(1669), 12, + ACTIONS(1548), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88640,7 +88548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1667), 32, + ACTIONS(1546), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88673,14 +88581,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11753] = 5, + [11699] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(745), 1, + STATE(734), 1, sym_text_interpolation, - ACTIONS(1645), 12, + ACTIONS(1544), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88693,7 +88601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1643), 32, + ACTIONS(1542), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88726,14 +88634,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11811] = 5, + [11757] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(746), 1, + STATE(735), 1, sym_text_interpolation, - ACTIONS(1910), 12, + ACTIONS(1855), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88746,7 +88654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1908), 32, + ACTIONS(1853), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88779,14 +88687,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11869] = 5, + [11815] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(747), 1, + STATE(736), 1, sym_text_interpolation, - ACTIONS(1685), 12, + ACTIONS(1614), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88799,7 +88707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1683), 32, + ACTIONS(1612), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88832,90 +88740,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11927] = 28, + [11873] = 28, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(313), 1, - anon_sym_POUND_LBRACK, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1723), 1, - sym_name, - ACTIONS(1764), 1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(737), 1, anon_sym_AMP, - ACTIONS(1768), 1, + ACTIONS(859), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1733), 1, anon_sym_LPAREN, - ACTIONS(1772), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1774), 1, - anon_sym_QMARK, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - STATE(748), 1, + ACTIONS(1759), 1, + sym_name, + STATE(737), 1, sym_text_interpolation, - STATE(975), 1, - aux_sym_attribute_list_repeat1, - STATE(978), 1, - sym_attribute_list, - STATE(1011), 1, - sym_attribute_group, - STATE(1192), 1, - sym_visibility_modifier, - STATE(1427), 1, - sym_qualified_name, - STATE(1560), 1, - sym__types, - STATE(1654), 1, - sym__type, - STATE(2014), 1, - sym_reference_modifier, - STATE(2017), 1, - sym_variable_name, - STATE(2544), 1, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2388), 1, + sym__array_destructing, + STATE(2400), 1, + sym_by_ref, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, sym_namespace_name, - ACTIONS(245), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1424), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1477), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - STATE(2227), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1729), 12, - 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_false, - anon_sym_null, - anon_sym_true, - [12031] = 5, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1581), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1575), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1499), 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, + [11977] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(749), 1, + STATE(738), 1, sym_text_interpolation, - ACTIONS(1914), 12, + ACTIONS(1859), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88928,7 +88836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1912), 32, + ACTIONS(1857), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88961,14 +88869,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12089] = 5, + [12035] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(750), 1, + STATE(739), 1, sym_text_interpolation, - ACTIONS(1641), 12, + ACTIONS(1538), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88981,7 +88889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1639), 32, + ACTIONS(1536), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89014,14 +88922,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12147] = 5, + [12093] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(751), 1, + STATE(740), 1, sym_text_interpolation, - ACTIONS(1918), 12, + ACTIONS(1863), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89034,7 +88942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1916), 32, + ACTIONS(1861), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89067,14 +88975,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12205] = 5, + [12151] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(752), 1, + STATE(741), 1, sym_text_interpolation, - ACTIONS(1922), 12, + ACTIONS(1867), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89087,7 +88995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1920), 32, + ACTIONS(1865), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89120,14 +89028,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12263] = 5, + [12209] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(753), 1, + STATE(742), 1, sym_text_interpolation, - ACTIONS(1926), 12, + ACTIONS(1871), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89140,7 +89048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1924), 32, + ACTIONS(1869), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89173,14 +89081,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12321] = 5, + [12267] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(754), 1, + STATE(743), 1, sym_text_interpolation, - ACTIONS(1567), 12, + ACTIONS(1875), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89193,7 +89101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1569), 32, + ACTIONS(1873), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89226,14 +89134,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12379] = 5, + [12325] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(755), 1, + STATE(744), 1, sym_text_interpolation, - ACTIONS(1930), 12, + ACTIONS(1879), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89246,7 +89154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1928), 32, + ACTIONS(1877), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89279,14 +89187,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12437] = 5, + [12383] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(756), 1, + STATE(745), 1, sym_text_interpolation, - ACTIONS(1934), 12, + ACTIONS(1610), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89299,7 +89207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1932), 32, + ACTIONS(1608), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89332,14 +89240,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12495] = 5, + [12441] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(757), 1, + STATE(746), 1, sym_text_interpolation, - ACTIONS(1938), 12, + ACTIONS(1883), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89352,7 +89260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1936), 32, + ACTIONS(1881), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89385,14 +89293,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12553] = 5, + [12499] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(758), 1, + STATE(747), 1, sym_text_interpolation, - ACTIONS(1637), 12, + ACTIONS(1767), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89405,7 +89313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1635), 32, + ACTIONS(1765), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89438,14 +89346,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12611] = 5, + [12557] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(759), 1, + STATE(748), 1, sym_text_interpolation, - ACTIONS(1942), 12, + ACTIONS(1887), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89458,7 +89366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1940), 32, + ACTIONS(1885), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89491,14 +89399,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12669] = 5, + [12615] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(760), 1, + STATE(749), 1, sym_text_interpolation, - ACTIONS(1653), 12, + ACTIONS(1891), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89511,7 +89419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1651), 32, + ACTIONS(1889), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89544,14 +89452,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12727] = 5, + [12673] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(761), 1, + STATE(750), 1, sym_text_interpolation, - ACTIONS(1673), 12, + ACTIONS(1630), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89564,7 +89472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1671), 32, + ACTIONS(1628), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89597,14 +89505,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12785] = 5, + [12731] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(762), 1, + STATE(751), 1, sym_text_interpolation, - ACTIONS(1946), 12, + ACTIONS(1520), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89617,7 +89525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1944), 32, + ACTIONS(1522), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89650,14 +89558,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12843] = 5, + [12789] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(763), 1, + STATE(752), 1, sym_text_interpolation, - ACTIONS(1950), 12, + ACTIONS(1895), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89670,7 +89578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1948), 32, + ACTIONS(1893), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89703,90 +89611,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12901] = 28, + [12847] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(580), 1, - aux_sym_cast_type_token1, - ACTIONS(612), 1, - anon_sym_LT_LT_LT, - ACTIONS(616), 1, - anon_sym_DOLLAR, - ACTIONS(704), 1, - anon_sym_AMP, - ACTIONS(860), 1, - anon_sym_LBRACK, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1760), 1, - anon_sym_LPAREN, - ACTIONS(1806), 1, - sym_name, - STATE(764), 1, - sym_text_interpolation, - STATE(1730), 1, - sym_class_constant_access_expression, - STATE(1755), 1, - sym__dereferencable_expression, - STATE(2355), 1, - sym__array_destructing, - STATE(2357), 1, - sym_by_ref, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2500), 1, - sym__scope_resolution_qualifier, - STATE(2615), 1, - sym_relative_scope, - STATE(2626), 1, - sym_namespace_name, - ACTIONS(608), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(610), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(1532), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(307), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1559), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(734), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1556), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1474), 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, - [13005] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - STATE(765), 1, + STATE(753), 1, sym_text_interpolation, - ACTIONS(1665), 12, + ACTIONS(1899), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89799,7 +89631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1663), 32, + ACTIONS(1897), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89832,14 +89664,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13063] = 5, + [12905] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(766), 1, + STATE(754), 1, sym_text_interpolation, - ACTIONS(1954), 12, + ACTIONS(1903), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89852,7 +89684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1952), 32, + ACTIONS(1901), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89885,29 +89717,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13121] = 10, + [12963] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1695), 1, - anon_sym_LPAREN, - ACTIONS(1741), 1, - anon_sym_BSLASH, - STATE(625), 1, - sym_arguments, - STATE(767), 1, + STATE(755), 1, sym_text_interpolation, - STATE(2377), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1617), 5, + ACTIONS(1592), 6, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1613), 11, + ACTIONS(1907), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_DASH, @@ -89918,12 +89744,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1611), 23, - sym__automatic_semicolon, + ACTIONS(1905), 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_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -89942,18 +89771,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13188] = 5, + [13023] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(768), 1, + ACTIONS(1909), 1, + anon_sym_COLON_COLON, + STATE(756), 1, sym_text_interpolation, - ACTIONS(1038), 11, + ACTIONS(1598), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, - aux_sym_else_clause_token1, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -89961,20 +89793,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1036), 32, + ACTIONS(1596), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_EQ_GT, + anon_sym_LPAREN, 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_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -89994,18 +89825,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13245] = 5, + [13083] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(769), 1, + STATE(757), 1, sym_text_interpolation, - ACTIONS(1034), 11, + ACTIONS(1913), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, - aux_sym_else_clause_token1, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -90013,20 +89845,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1032), 32, + ACTIONS(1911), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_EQ_GT, + anon_sym_LPAREN, 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_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, @@ -90046,20 +89878,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13302] = 6, + [13141] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(770), 1, + STATE(758), 1, sym_text_interpolation, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1798), 12, + ACTIONS(1626), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -90072,14 +89898,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1796), 26, + ACTIONS(1624), 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_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, @@ -90099,20 +89931,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13361] = 6, + [13199] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(771), 1, + STATE(759), 1, sym_text_interpolation, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1613), 12, + ACTIONS(1622), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -90125,14 +89951,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1611), 26, + ACTIONS(1620), 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_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, @@ -90152,18 +89984,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13420] = 7, + [13257] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1956), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(772), 1, + STATE(760), 1, sym_text_interpolation, - STATE(792), 1, + STATE(788), 1, sym_arguments, - ACTIONS(1633), 12, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1572), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90176,18 +90014,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1631), 29, + ACTIONS(1578), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_COLON_COLON, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [13320] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1769), 1, + anon_sym_RPAREN, + ACTIONS(1772), 1, + anon_sym_EQ, + STATE(761), 1, + sym_text_interpolation, + ACTIONS(1767), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1765), 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_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, anon_sym_STAR_STAR, @@ -90206,20 +90093,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13481] = 6, + [13381] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(773), 1, + STATE(762), 1, + sym_text_interpolation, + ACTIONS(1034), 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(1032), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [13438] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(763), 1, sym_text_interpolation, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1814), 12, + ACTIONS(1815), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -90232,7 +90171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1812), 26, + ACTIONS(1813), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -90259,18 +90198,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13540] = 7, + [13497] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1956), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(774), 1, + STATE(764), 1, sym_text_interpolation, - STATE(795), 1, + STATE(794), 1, sym_arguments, - ACTIONS(1629), 12, + ACTIONS(1556), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90283,7 +90222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1627), 29, + ACTIONS(1554), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90313,18 +90252,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13601] = 7, + [13558] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1956), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(775), 1, + STATE(765), 1, sym_text_interpolation, - STATE(802), 1, + STATE(796), 1, sym_arguments, - ACTIONS(1625), 12, + ACTIONS(1562), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90337,7 +90276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1623), 29, + ACTIONS(1560), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90367,24 +90306,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13662] = 8, + [13619] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1956), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(776), 1, + STATE(766), 1, sym_text_interpolation, - STATE(791), 1, + STATE(797), 1, sym_arguments, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1615), 12, + ACTIONS(1566), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90397,13 +90330,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1621), 24, + ACTIONS(1564), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, + anon_sym_COLON_COLON, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -90422,81 +90360,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13725] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(777), 1, - sym_text_interpolation, - ACTIONS(1960), 18, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_BANG, - anon_sym_AT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_LBRACK, - anon_sym_POUND_LBRACK, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - aux_sym_string_token1, - anon_sym_SQUOTE, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - ACTIONS(1958), 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, - aux_sym__argument_name_token1, - aux_sym__argument_name_token2, - 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, - [13782] = 10, + [13680] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, - ACTIONS(1741), 1, - anon_sym_BSLASH, - STATE(597), 1, - sym_arguments, - STATE(778), 1, + STATE(767), 1, sym_text_interpolation, - STATE(2377), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1752), 11, + ACTIONS(1696), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_DASH, @@ -90507,12 +90386,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1750), 23, - sym__automatic_semicolon, + ACTIONS(1694), 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_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -90531,29 +90413,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13849] = 10, + [13739] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1741), 1, - anon_sym_BSLASH, - ACTIONS(1956), 1, - anon_sym_LPAREN, - STATE(779), 1, + STATE(768), 1, sym_text_interpolation, - STATE(791), 1, - sym_arguments, - STATE(2377), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1613), 11, + ACTIONS(1572), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_DASH, @@ -90564,12 +90439,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1611), 23, - sym__automatic_semicolon, + ACTIONS(1578), 26, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_RPAREN, anon_sym_PLUS, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -90588,20 +90466,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13916] = 6, + [13798] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(780), 1, + STATE(769), 1, sym_text_interpolation, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1615), 12, + ACTIONS(1570), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -90614,7 +90492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1621), 26, + ACTIONS(1568), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -90641,22 +90519,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13975] = 6, + [13857] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(781), 1, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(770), 1, sym_text_interpolation, - ACTIONS(1617), 5, + STATE(788), 1, + sym_arguments, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1752), 12, + ACTIONS(1570), 11, anon_sym_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_DASH, @@ -90667,15 +90552,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1750), 26, + ACTIONS(1568), 23, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -90694,27 +90576,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14034] = 9, + [13924] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1956), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(782), 1, + STATE(771), 1, sym_text_interpolation, - STATE(791), 1, + STATE(788), 1, sym_arguments, - ACTIONS(1699), 2, + ACTIONS(1654), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1613), 12, + ACTIONS(1570), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90727,7 +90609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1611), 22, + ACTIONS(1568), 22, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90750,22 +90632,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14099] = 7, + [13989] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1956), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(783), 1, - sym_text_interpolation, - STATE(807), 1, + ACTIONS(1698), 1, + anon_sym_BSLASH, + STATE(579), 1, sym_arguments, - ACTIONS(1603), 12, + STATE(772), 1, + sym_text_interpolation, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1696), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -90774,18 +90665,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 29, + ACTIONS(1694), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + anon_sym_PLUS, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -90804,21 +90689,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14160] = 7, + [14056] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1822), 1, - anon_sym_RPAREN, - ACTIONS(1825), 1, - anon_sym_EQ, - STATE(784), 1, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(773), 1, sym_text_interpolation, - ACTIONS(1820), 11, + STATE(781), 1, + sym_arguments, + ACTIONS(1582), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -90827,19 +90713,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1818), 30, + ACTIONS(1580), 29, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -90858,18 +90743,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14221] = 7, + [14117] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1956), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(785), 1, + STATE(774), 1, sym_text_interpolation, - STATE(806), 1, + STATE(782), 1, sym_arguments, - ACTIONS(1609), 12, + ACTIONS(1586), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90882,7 +90767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 29, + ACTIONS(1584), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90912,29 +90797,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14282] = 10, + [14178] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(5), 1, sym_comment, - ACTIONS(1741), 1, + STATE(775), 1, + sym_text_interpolation, + ACTIONS(1919), 18, + anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(1962), 1, anon_sym_LPAREN, - STATE(786), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_BANG, + anon_sym_AT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + aux_sym_string_token1, + anon_sym_SQUOTE, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + ACTIONS(1917), 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, + aux_sym__argument_name_token1, + aux_sym__argument_name_token2, + 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, + [14235] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(776), 1, sym_text_interpolation, - STATE(891), 1, - sym_arguments, - STATE(2377), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1617), 5, + ACTIONS(1042), 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(1040), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [14292] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(777), 1, + sym_text_interpolation, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1746), 11, + ACTIONS(1753), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_DASH, @@ -90945,12 +90927,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1744), 23, - sym__automatic_semicolon, + ACTIONS(1751), 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_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -90969,30 +90954,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14349] = 11, + [14351] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1695), 1, + ACTIONS(1652), 1, anon_sym_LPAREN, - ACTIONS(1741), 1, + ACTIONS(1698), 1, anon_sym_BSLASH, - ACTIONS(1964), 1, - anon_sym_COLON, - STATE(625), 1, + STATE(606), 1, sym_arguments, - STATE(787), 1, + STATE(778), 1, sym_text_interpolation, - STATE(2377), 1, + STATE(2243), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1613), 11, + ACTIONS(1570), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91004,9 +90987,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1611), 21, + ACTIONS(1568), 23, sym__automatic_semicolon, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_PLUS, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -91026,18 +91011,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14417] = 5, + [14418] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(788), 1, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(779), 1, sym_text_interpolation, - ACTIONS(1641), 12, + STATE(869), 1, + sym_arguments, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1703), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -91046,19 +91044,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1639), 30, + ACTIONS(1701), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + anon_sym_PLUS, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -91077,14 +91068,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14473] = 5, + [14485] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, sym_comment, - STATE(789), 1, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + sym_name, + ACTIONS(1923), 1, + anon_sym_RPAREN, + STATE(780), 1, sym_text_interpolation, - ACTIONS(1595), 12, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1581), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1546), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1470), 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, + [14583] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(781), 1, + sym_text_interpolation, + ACTIONS(1630), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91097,7 +91160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1593), 30, + ACTIONS(1628), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91128,14 +91191,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14529] = 5, + [14639] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(790), 1, + STATE(782), 1, sym_text_interpolation, - ACTIONS(1649), 12, + ACTIONS(1634), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91148,7 +91211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1647), 30, + ACTIONS(1632), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91179,18 +91242,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14585] = 5, + [14695] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, sym_comment, - STATE(791), 1, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + sym_name, + ACTIONS(1925), 1, + anon_sym_RPAREN, + STATE(783), 1, + sym_text_interpolation, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1581), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1546), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1470), 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, + [14793] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(1927), 1, + anon_sym_COLON, + STATE(579), 1, + sym_arguments, + STATE(784), 1, sym_text_interpolation, - ACTIONS(1677), 12, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -91199,19 +91349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1675), 30, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1568), 21, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_PLUS, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -91230,14 +91371,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14641] = 5, + [14861] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(792), 1, + STATE(785), 1, sym_text_interpolation, - ACTIONS(1645), 12, + ACTIONS(1602), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91250,7 +91391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1643), 30, + ACTIONS(1600), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91281,18 +91422,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14697] = 5, + [14917] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(793), 1, + ACTIONS(1652), 1, + anon_sym_LPAREN, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(1929), 1, + anon_sym_COLON, + STATE(606), 1, + sym_arguments, + STATE(786), 1, sym_text_interpolation, - ACTIONS(1637), 12, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -91301,19 +91457,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1635), 30, + ACTIONS(1568), 21, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + anon_sym_PLUS, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -91332,14 +91479,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14753] = 5, + [14985] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(794), 1, + STATE(787), 1, sym_text_interpolation, - ACTIONS(1599), 12, + ACTIONS(1606), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91352,7 +91499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1597), 30, + ACTIONS(1604), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91383,14 +91530,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14809] = 5, + [15041] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(795), 1, + STATE(788), 1, sym_text_interpolation, - ACTIONS(1661), 12, + ACTIONS(1594), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91403,7 +91550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1659), 30, + ACTIONS(1592), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91434,71 +91581,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14865] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, - ACTIONS(1741), 1, - anon_sym_BSLASH, - ACTIONS(1966), 1, - anon_sym_COLON, - STATE(597), 1, - sym_arguments, - STATE(796), 1, - sym_text_interpolation, - STATE(2377), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1613), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1611), 21, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PLUS, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14933] = 5, + [15097] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(797), 1, + STATE(789), 1, sym_text_interpolation, - ACTIONS(1970), 17, + ACTIONS(1933), 17, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOT_DOT_DOT, @@ -91516,7 +91606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_DOLLAR, - ACTIONS(1968), 25, + ACTIONS(1931), 25, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -91542,14 +91632,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_require_expression_token1, aux_sym_require_once_expression_token1, sym_name, - [14989] = 5, + [15153] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(798), 1, + STATE(790), 1, sym_text_interpolation, - ACTIONS(1585), 12, + ACTIONS(1538), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91562,7 +91652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1583), 30, + ACTIONS(1536), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91593,14 +91683,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15045] = 5, + [15209] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(799), 1, + STATE(791), 1, sym_text_interpolation, - ACTIONS(1591), 12, + ACTIONS(1638), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91613,7 +91703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1589), 30, + ACTIONS(1636), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91644,14 +91734,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15101] = 5, + [15265] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(800), 1, + STATE(792), 1, sym_text_interpolation, - ACTIONS(1657), 12, + ACTIONS(1618), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91664,7 +91754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1655), 30, + ACTIONS(1616), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91695,33 +91785,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15157] = 11, + [15321] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1695), 1, - anon_sym_LPAREN, - ACTIONS(1741), 1, - anon_sym_BSLASH, - ACTIONS(1972), 1, - anon_sym_COLON, - STATE(625), 1, - sym_arguments, - STATE(801), 1, + STATE(793), 1, sym_text_interpolation, - STATE(2377), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1613), 11, + ACTIONS(1544), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -91730,10 +91805,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1611), 21, + ACTIONS(1542), 30, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -91752,14 +91836,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15225] = 5, + [15377] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(802), 1, + STATE(794), 1, sym_text_interpolation, - ACTIONS(1665), 12, + ACTIONS(1614), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91772,7 +91856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1663), 30, + ACTIONS(1612), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91803,14 +91887,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15281] = 5, + [15433] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(803), 1, + STATE(795), 1, sym_text_interpolation, - ACTIONS(1673), 12, + ACTIONS(1610), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91823,7 +91907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1671), 30, + ACTIONS(1608), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91854,14 +91938,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15337] = 5, + [15489] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(804), 1, + STATE(796), 1, sym_text_interpolation, - ACTIONS(1685), 12, + ACTIONS(1622), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91874,7 +91958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1683), 30, + ACTIONS(1620), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91905,14 +91989,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15393] = 5, + [15545] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(805), 1, + STATE(797), 1, sym_text_interpolation, - ACTIONS(1653), 12, + ACTIONS(1626), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91925,7 +92009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1651), 30, + ACTIONS(1624), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91956,14 +92040,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15449] = 5, + [15601] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, sym_comment, - STATE(806), 1, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + sym_name, + ACTIONS(1935), 1, + anon_sym_RPAREN, + STATE(798), 1, + sym_text_interpolation, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1581), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1546), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1470), 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, + [15699] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(799), 1, sym_text_interpolation, - ACTIONS(1669), 12, + ACTIONS(1548), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91976,7 +92132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1667), 30, + ACTIONS(1546), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92007,14 +92163,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15505] = 5, + [15755] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(807), 1, + STATE(800), 1, sym_text_interpolation, - ACTIONS(1681), 12, + ACTIONS(1552), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92027,7 +92183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1679), 30, + ACTIONS(1550), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92058,234 +92214,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15561] = 25, + [15811] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(580), 1, - aux_sym_cast_type_token1, - ACTIONS(612), 1, - anon_sym_LT_LT_LT, - ACTIONS(1563), 1, - anon_sym_LBRACK, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1790), 1, - anon_sym_DOLLAR, - ACTIONS(1974), 1, - sym_name, - ACTIONS(1976), 1, - anon_sym_LPAREN, - STATE(808), 1, + STATE(801), 1, sym_text_interpolation, - STATE(1730), 1, - sym_class_constant_access_expression, - STATE(1732), 1, - sym__dereferencable_expression, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2615), 1, - sym_relative_scope, - STATE(2626), 1, - sym_namespace_name, - STATE(2636), 1, - sym__scope_resolution_qualifier, - ACTIONS(608), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(610), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(1565), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(307), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1540), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(734), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(770), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(683), 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, - [15656] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(580), 1, - aux_sym_cast_type_token1, - ACTIONS(612), 1, - anon_sym_LT_LT_LT, - ACTIONS(1563), 1, - anon_sym_LBRACK, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1760), 1, + ACTIONS(1590), 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(1588), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_DOLLAR, - ACTIONS(1978), 1, - sym_name, - STATE(809), 1, - sym_text_interpolation, - STATE(1709), 1, - sym__dereferencable_expression, - STATE(2615), 1, - sym_relative_scope, - STATE(2625), 1, - sym__scope_resolution_qualifier, - STATE(2626), 1, - sym_namespace_name, - STATE(2627), 1, - sym_namespace_name_as_prefix, - ACTIONS(608), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(610), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(857), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1730), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(1756), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(858), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(908), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(734), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1559), 7, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_array_creation_expression, - sym__string, - [15751] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(580), 1, - aux_sym_cast_type_token1, - ACTIONS(612), 1, - anon_sym_LT_LT_LT, - ACTIONS(1563), 1, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_DOLLAR, - ACTIONS(1980), 1, - sym_name, - ACTIONS(1982), 1, - anon_sym_LPAREN, - STATE(810), 1, - sym_text_interpolation, - STATE(1698), 1, - sym__dereferencable_expression, - STATE(1730), 1, - sym_class_constant_access_expression, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2615), 1, - sym_relative_scope, - STATE(2626), 1, - sym_namespace_name, - STATE(2634), 1, - sym__scope_resolution_qualifier, - ACTIONS(608), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(610), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(1533), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(307), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1569), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(734), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(905), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(830), 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, - [15846] = 8, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [15867] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1962), 1, + ACTIONS(1652), 1, anon_sym_LPAREN, - STATE(811), 1, - sym_text_interpolation, - STATE(891), 1, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(1937), 1, + anon_sym_COLON, + STATE(606), 1, sym_arguments, - ACTIONS(1617), 5, + STATE(802), 1, + sym_text_interpolation, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1746), 11, + ACTIONS(1570), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92297,11 +92300,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1744), 23, + ACTIONS(1568), 21, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_PLUS, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -92321,69 +92322,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15907] = 25, + [15935] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(580), 1, + ACTIONS(585), 1, aux_sym_cast_type_token1, - ACTIONS(612), 1, + ACTIONS(617), 1, anon_sym_LT_LT_LT, - ACTIONS(616), 1, + ACTIONS(621), 1, anon_sym_DOLLAR, - ACTIONS(1563), 1, + ACTIONS(1056), 1, anon_sym_LBRACK, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1760), 1, + ACTIONS(1733), 1, anon_sym_LPAREN, - ACTIONS(1806), 1, + ACTIONS(1759), 1, sym_name, - STATE(812), 1, + ACTIONS(1939), 1, + anon_sym_RPAREN, + STATE(803), 1, sym_text_interpolation, - STATE(1730), 1, - sym_class_constant_access_expression, - STATE(1755), 1, + STATE(1703), 1, sym__dereferencable_expression, - STATE(2462), 1, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, sym_namespace_name_as_prefix, STATE(2500), 1, sym__scope_resolution_qualifier, - STATE(2615), 1, + STATE(2597), 1, sym_relative_scope, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - ACTIONS(608), 2, + ACTIONS(613), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(610), 2, + ACTIONS(615), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(1532), 2, + STATE(1579), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(307), 3, + ACTIONS(312), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1559), 3, + STATE(1581), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - STATE(734), 4, + STATE(753), 4, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, - STATE(1538), 4, + STATE(1546), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(1487), 7, + STATE(1470), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -92391,97 +92394,18 @@ static const uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [16002] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(580), 1, - aux_sym_cast_type_token1, - ACTIONS(612), 1, - anon_sym_LT_LT_LT, - ACTIONS(1563), 1, - anon_sym_LBRACK, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1760), 1, - anon_sym_LPAREN, - ACTIONS(1790), 1, - anon_sym_DOLLAR, - ACTIONS(1984), 1, - sym_name, - STATE(813), 1, - sym_text_interpolation, - STATE(1736), 1, - sym__dereferencable_expression, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2613), 1, - sym__scope_resolution_qualifier, - STATE(2615), 1, - sym_relative_scope, - STATE(2626), 1, - sym_namespace_name, - ACTIONS(608), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(610), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(713), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1730), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(307), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(714), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(781), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(734), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1559), 7, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_array_creation_expression, - sym__string, - [16097] = 8, + [16033] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1986), 1, - anon_sym_LPAREN, - STATE(814), 1, + STATE(804), 1, sym_text_interpolation, - STATE(1145), 1, - sym_arguments, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1746), 11, + ACTIONS(1598), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -92490,12 +92414,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1744), 23, + ACTIONS(1596), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_PLUS, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -92514,14 +92445,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16158] = 5, + [16089] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(815), 1, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(805), 1, sym_text_interpolation, - ACTIONS(1649), 11, + STATE(869), 1, + sym_arguments, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1703), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92533,19 +92474,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1647), 30, + ACTIONS(1701), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -92564,24 +92498,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16213] = 8, + [16150] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1962), 1, + ACTIONS(1921), 1, anon_sym_LPAREN, - STATE(816), 1, + STATE(806), 1, sym_text_interpolation, - STATE(891), 1, + STATE(874), 1, sym_arguments, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1746), 11, + ACTIONS(1562), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92593,12 +92521,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1744), 23, + ACTIONS(1560), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -92617,18 +92550,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16274] = 5, + [16209] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(817), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(807), 1, sym_text_interpolation, - ACTIONS(1141), 11, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1696), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - aux_sym_else_clause_token1, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -92636,19 +92579,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1139), 30, + ACTIONS(1694), 23, + sym__automatic_semicolon, anon_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_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -92667,18 +92603,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16329] = 7, + [16270] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1956), 1, + ACTIONS(1652), 1, anon_sym_LPAREN, - STATE(805), 1, + STATE(614), 1, sym_arguments, - STATE(818), 1, + STATE(808), 1, sym_text_interpolation, - ACTIONS(1794), 11, + ACTIONS(1709), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92690,7 +92626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1792), 28, + ACTIONS(1707), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92719,69 +92655,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16388] = 25, + [16329] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(580), 1, + ACTIONS(585), 1, aux_sym_cast_type_token1, - ACTIONS(612), 1, + ACTIONS(617), 1, anon_sym_LT_LT_LT, - ACTIONS(1563), 1, + ACTIONS(1056), 1, anon_sym_LBRACK, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1762), 1, + ACTIONS(1526), 1, + anon_sym_LPAREN, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(1980), 1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1941), 1, sym_name, - ACTIONS(1982), 1, - anon_sym_LPAREN, - STATE(819), 1, + STATE(809), 1, sym_text_interpolation, - STATE(1698), 1, + STATE(1678), 1, sym__dereferencable_expression, - STATE(1730), 1, + STATE(1705), 1, sym_class_constant_access_expression, - STATE(2462), 1, + STATE(2464), 1, + sym__scope_resolution_qualifier, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(2615), 1, + STATE(2597), 1, sym_relative_scope, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(2634), 1, - sym__scope_resolution_qualifier, - ACTIONS(608), 2, + ACTIONS(613), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(610), 2, + ACTIONS(615), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(1533), 2, + STATE(1549), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(307), 3, + ACTIONS(312), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1569), 3, + STATE(1544), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - STATE(734), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(906), 4, + STATE(683), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(855), 7, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(650), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -92789,18 +92725,24 @@ static const uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [16483] = 7, + [16424] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(589), 1, + STATE(579), 1, sym_arguments, - STATE(820), 1, + STATE(810), 1, sym_text_interpolation, - ACTIONS(1633), 11, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1696), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92812,17 +92754,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1631), 28, + ACTIONS(1694), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -92841,40 +92778,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16542] = 7, + [16485] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, sym_comment, - STATE(821), 1, + ACTIONS(1747), 1, + anon_sym_LPAREN, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(1943), 1, + sym_name, + STATE(811), 1, sym_text_interpolation, - ACTIONS(1699), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1613), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, + STATE(1675), 1, + sym__dereferencable_expression, + STATE(2588), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + STATE(2606), 1, + sym_namespace_name_as_prefix, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(810), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1705), 2, + sym_class_constant_access_expression, + sym_cast_variable, + ACTIONS(1743), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(907), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(807), 4, + sym_parenthesized_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1581), 6, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_array_creation_expression, + sym__string, + [16580] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + sym_name, + STATE(812), 1, + sym_text_interpolation, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1581), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1532), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1446), 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, + [16675] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(813), 1, + sym_text_interpolation, + ACTIONS(1084), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + aux_sym_else_clause_token1, + anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1611), 22, - sym__automatic_semicolon, + ACTIONS(1082), 30, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -92893,24 +92968,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16601] = 6, + [16730] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, sym_comment, - STATE(822), 1, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(1945), 1, + sym_name, + ACTIONS(1947), 1, + anon_sym_LPAREN, + STATE(814), 1, sym_text_interpolation, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1615), 12, + STATE(1685), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + STATE(2621), 1, + sym__scope_resolution_qualifier, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1554), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1558), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(903), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(854), 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, + [16825] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(587), 1, + sym_arguments, + STATE(815), 1, + sym_text_interpolation, + ACTIONS(1566), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -92919,13 +93059,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1621), 24, + ACTIONS(1564), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -92944,18 +93089,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16658] = 7, + [16882] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, - STATE(593), 1, + STATE(586), 1, sym_arguments, - STATE(823), 1, + STATE(816), 1, sym_text_interpolation, - ACTIONS(1629), 11, + ACTIONS(1562), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92967,12 +93110,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1627), 28, + ACTIONS(1560), 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_COLON_COLON, anon_sym_DASH_GT, @@ -92996,16 +93140,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16717] = 6, + [16939] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(594), 1, + STATE(584), 1, sym_arguments, - STATE(824), 1, + STATE(817), 1, sym_text_interpolation, - ACTIONS(1625), 11, + ACTIONS(1556), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93017,7 +93161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1623), 29, + ACTIONS(1554), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93047,16 +93191,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16774] = 6, + [16996] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1534), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, sym_comment, - STATE(593), 1, - sym_arguments, - STATE(825), 1, + ACTIONS(1949), 1, + sym_name, + ACTIONS(1951), 1, + anon_sym_LPAREN, + STATE(818), 1, + sym_text_interpolation, + STATE(1671), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2584), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1578), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1550), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(821), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(760), 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, + [17091] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(1945), 1, + sym_name, + ACTIONS(1947), 1, + anon_sym_LPAREN, + STATE(819), 1, sym_text_interpolation, - ACTIONS(1629), 11, + STATE(1685), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + STATE(2621), 1, + sym__scope_resolution_qualifier, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1554), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1558), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(905), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(837), 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, + [17186] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(820), 1, + sym_text_interpolation, + STATE(861), 1, + sym_arguments, + ACTIONS(1586), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93068,13 +93354,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1627), 29, + ACTIONS(1584), 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_COLON_COLON, anon_sym_DASH_GT, @@ -93098,18 +93383,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16831] = 7, + [17245] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(821), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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(1578), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [17302] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1733), 1, anon_sym_LPAREN, - STATE(594), 1, - sym_arguments, - STATE(826), 1, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(1953), 1, + sym_name, + STATE(822), 1, + sym_text_interpolation, + STATE(1696), 1, + sym__dereferencable_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2504), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(763), 2, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + STATE(1543), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1573), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(1705), 3, + sym_class_constant_access_expression, + sym_cast_variable, + sym_scoped_property_access_expression, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(705), 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, + [17397] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(823), 1, sym_text_interpolation, - ACTIONS(1625), 11, + STATE(867), 1, + sym_arguments, + ACTIONS(1582), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93121,7 +93527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1623), 28, + ACTIONS(1580), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93150,18 +93556,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16890] = 7, + [17456] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1695), 1, + ACTIONS(1652), 1, anon_sym_LPAREN, - STATE(626), 1, + STATE(606), 1, sym_arguments, - STATE(827), 1, + STATE(824), 1, sym_text_interpolation, - ACTIONS(1794), 11, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93173,17 +93585,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1792), 28, + ACTIONS(1568), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -93202,16 +93609,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16949] = 6, + [17517] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(589), 1, - sym_arguments, - STATE(828), 1, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(825), 1, sym_text_interpolation, - ACTIONS(1633), 11, + STATE(871), 1, + sym_arguments, + ACTIONS(1566), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93223,13 +93632,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1631), 29, + ACTIONS(1564), 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_COLON_COLON, anon_sym_DASH_GT, @@ -93253,18 +93661,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17006] = 7, + [17576] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1652), 1, anon_sym_LPAREN, - STATE(595), 1, + STATE(621), 1, sym_arguments, - STATE(829), 1, + STATE(826), 1, sym_text_interpolation, - ACTIONS(1609), 11, + ACTIONS(1727), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93276,7 +93684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 28, + ACTIONS(1725), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93305,24 +93713,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17065] = 8, + [17635] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1962), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(830), 1, - sym_text_interpolation, - STATE(889), 1, + STATE(589), 1, sym_arguments, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1798), 11, + STATE(827), 1, + sym_text_interpolation, + ACTIONS(1586), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93334,12 +93736,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1796), 23, + ACTIONS(1584), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -93358,86 +93765,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17126] = 25, + [17694] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(580), 1, - aux_sym_cast_type_token1, - ACTIONS(612), 1, - anon_sym_LT_LT_LT, - ACTIONS(616), 1, - anon_sym_DOLLAR, - ACTIONS(1563), 1, - anon_sym_LBRACK, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1760), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - ACTIONS(1806), 1, - sym_name, - STATE(831), 1, - sym_text_interpolation, - STATE(1755), 1, - sym__dereferencable_expression, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2500), 1, - sym__scope_resolution_qualifier, - STATE(2615), 1, - sym_relative_scope, - STATE(2626), 1, - sym_namespace_name, - ACTIONS(608), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(610), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(773), 2, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - STATE(1532), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(307), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1559), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1730), 3, - sym_class_constant_access_expression, - sym_cast_variable, - sym_scoped_property_access_expression, - STATE(734), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1437), 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, - [17221] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1825), 1, - anon_sym_EQ, - STATE(832), 1, + STATE(588), 1, + sym_arguments, + STATE(828), 1, sym_text_interpolation, - ACTIONS(1820), 11, + ACTIONS(1582), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93449,13 +93788,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1818), 29, + ACTIONS(1580), 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_COLON_COLON, anon_sym_DASH_GT, @@ -93479,18 +93817,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17278] = 7, + [17753] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(598), 1, + STATE(587), 1, sym_arguments, - STATE(833), 1, + STATE(829), 1, sym_text_interpolation, - ACTIONS(1603), 11, + ACTIONS(1566), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93502,7 +93840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 28, + ACTIONS(1564), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93531,69 +93869,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17337] = 25, + [17812] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(580), 1, + ACTIONS(585), 1, aux_sym_cast_type_token1, - ACTIONS(612), 1, + ACTIONS(617), 1, anon_sym_LT_LT_LT, - ACTIONS(1563), 1, - anon_sym_LBRACK, - ACTIONS(1579), 1, - anon_sym_LPAREN, - ACTIONS(1581), 1, + ACTIONS(621), 1, anon_sym_DOLLAR, - ACTIONS(1587), 1, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1988), 1, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, sym_name, - STATE(834), 1, + STATE(830), 1, sym_text_interpolation, - STATE(1711), 1, + STATE(1703), 1, sym__dereferencable_expression, - STATE(1730), 1, + STATE(1705), 1, sym_class_constant_access_expression, - STATE(2462), 1, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(2615), 1, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, sym_relative_scope, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(2678), 1, - sym__scope_resolution_qualifier, - ACTIONS(608), 2, + ACTIONS(613), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(610), 2, + ACTIONS(615), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(1549), 2, + STATE(1579), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(307), 3, + ACTIONS(312), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1545), 3, + STATE(1581), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - STATE(699), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(734), 4, + STATE(753), 4, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, - STATE(648), 7, + STATE(1546), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1470), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -93601,69 +93939,69 @@ static const uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [17432] = 25, + [17907] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(580), 1, + ACTIONS(585), 1, aux_sym_cast_type_token1, - ACTIONS(612), 1, + ACTIONS(617), 1, anon_sym_LT_LT_LT, - ACTIONS(1563), 1, + ACTIONS(1056), 1, anon_sym_LBRACK, - ACTIONS(1575), 1, - anon_sym_DOLLAR, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1990), 1, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(1953), 1, sym_name, - ACTIONS(1992), 1, + ACTIONS(1955), 1, anon_sym_LPAREN, - STATE(835), 1, + STATE(831), 1, sym_text_interpolation, - STATE(1679), 1, + STATE(1696), 1, sym__dereferencable_expression, - STATE(1730), 1, + STATE(1705), 1, sym_class_constant_access_expression, - STATE(2462), 1, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(2602), 1, - sym__scope_resolution_qualifier, - STATE(2615), 1, + STATE(2597), 1, sym_relative_scope, - STATE(2626), 1, + STATE(2600), 1, + sym__scope_resolution_qualifier, + STATE(2605), 1, sym_namespace_name, - ACTIONS(608), 2, + ACTIONS(613), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(610), 2, + ACTIONS(615), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(1541), 2, + STATE(1543), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(307), 3, + ACTIONS(312), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1553), 3, + STATE(1573), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - STATE(734), 4, + STATE(753), 4, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, - STATE(822), 4, + STATE(777), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(776), 7, + STATE(674), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -93671,18 +94009,18 @@ static const uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [17527] = 7, + [18002] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1962), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(836), 1, - sym_text_interpolation, - STATE(866), 1, + STATE(586), 1, sym_arguments, - ACTIONS(1603), 11, + STATE(832), 1, + sym_text_interpolation, + ACTIONS(1562), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93694,7 +94032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 28, + ACTIONS(1560), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93723,18 +94061,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17586] = 7, + [18061] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1962), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(837), 1, + STATE(788), 1, + sym_arguments, + STATE(833), 1, sym_text_interpolation, - STATE(864), 1, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1568), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [18122] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(584), 1, sym_arguments, - ACTIONS(1609), 11, + STATE(834), 1, + sym_text_interpolation, + ACTIONS(1556), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93746,7 +94137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 28, + ACTIONS(1554), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93775,69 +94166,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17645] = 25, + [18181] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1772), 1, + anon_sym_EQ, + STATE(835), 1, + sym_text_interpolation, + ACTIONS(1767), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1765), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [18238] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(580), 1, + ACTIONS(585), 1, aux_sym_cast_type_token1, - ACTIONS(612), 1, + ACTIONS(617), 1, anon_sym_LT_LT_LT, - ACTIONS(616), 1, + ACTIONS(621), 1, anon_sym_DOLLAR, - ACTIONS(1563), 1, + ACTIONS(1056), 1, anon_sym_LBRACK, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1760), 1, + ACTIONS(1733), 1, anon_sym_LPAREN, - ACTIONS(1806), 1, + ACTIONS(1759), 1, sym_name, - STATE(838), 1, + STATE(836), 1, sym_text_interpolation, - STATE(1730), 1, - sym_class_constant_access_expression, - STATE(1755), 1, + STATE(1703), 1, sym__dereferencable_expression, - STATE(2462), 1, + STATE(2494), 1, sym_namespace_name_as_prefix, STATE(2500), 1, sym__scope_resolution_qualifier, - STATE(2615), 1, + STATE(2597), 1, sym_relative_scope, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - ACTIONS(608), 2, + ACTIONS(613), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(610), 2, + ACTIONS(615), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(1532), 2, + STATE(763), 2, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + STATE(1579), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(307), 3, + ACTIONS(312), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1559), 3, + STATE(1581), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - STATE(699), 4, + STATE(1705), 3, + sym_class_constant_access_expression, sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(734), 4, + STATE(753), 4, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, - STATE(1436), 7, + STATE(1447), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -93845,24 +94287,24 @@ static const uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [17740] = 8, + [18333] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1695), 1, + ACTIONS(1921), 1, anon_sym_LPAREN, - STATE(625), 1, - sym_arguments, - STATE(839), 1, + STATE(837), 1, sym_text_interpolation, - ACTIONS(1617), 5, + STATE(892), 1, + sym_arguments, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1613), 11, + ACTIONS(1753), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93874,7 +94316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1611), 23, + ACTIONS(1751), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93898,18 +94340,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17801] = 7, + [18394] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1962), 1, + ACTIONS(1921), 1, anon_sym_LPAREN, - STATE(840), 1, + STATE(838), 1, sym_text_interpolation, - STATE(874), 1, + STATE(881), 1, sym_arguments, - ACTIONS(1625), 11, + ACTIONS(1556), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93921,7 +94363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1623), 28, + ACTIONS(1554), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93950,18 +94392,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17860] = 7, + [18453] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1962), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(841), 1, - sym_text_interpolation, - STATE(878), 1, + STATE(788), 1, sym_arguments, - ACTIONS(1629), 11, + STATE(839), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93973,17 +94421,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1627), 28, + ACTIONS(1568), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -94002,18 +94445,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17919] = 7, + [18514] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1956), 1, + ACTIONS(1957), 1, anon_sym_LPAREN, - STATE(792), 1, - sym_arguments, - STATE(842), 1, + STATE(840), 1, sym_text_interpolation, - ACTIONS(1784), 11, + STATE(1052), 1, + sym_arguments, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1703), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94025,17 +94474,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1782), 28, + ACTIONS(1701), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -94054,18 +94498,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17978] = 7, + [18575] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1695), 1, + ACTIONS(1921), 1, anon_sym_LPAREN, - STATE(613), 1, - sym_arguments, - STATE(843), 1, + STATE(841), 1, sym_text_interpolation, - ACTIONS(1784), 11, + STATE(869), 1, + sym_arguments, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1703), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94077,17 +94527,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1782), 28, + ACTIONS(1701), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -94106,18 +94551,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18037] = 7, + [18636] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1962), 1, + ACTIONS(1652), 1, anon_sym_LPAREN, - STATE(844), 1, - sym_text_interpolation, - STATE(883), 1, + STATE(606), 1, sym_arguments, - ACTIONS(1633), 11, + STATE(842), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94129,17 +94580,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1631), 28, + ACTIONS(1568), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -94158,94 +94604,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18096] = 25, + [18697] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(580), 1, - aux_sym_cast_type_token1, - ACTIONS(612), 1, - anon_sym_LT_LT_LT, - ACTIONS(616), 1, - anon_sym_DOLLAR, - ACTIONS(1563), 1, - anon_sym_LBRACK, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1760), 1, + ACTIONS(1921), 1, anon_sym_LPAREN, - ACTIONS(1806), 1, - sym_name, - STATE(845), 1, + STATE(843), 1, sym_text_interpolation, - STATE(1730), 1, - sym_class_constant_access_expression, - STATE(1755), 1, - sym__dereferencable_expression, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2500), 1, - sym__scope_resolution_qualifier, - STATE(2615), 1, - sym_relative_scope, - STATE(2626), 1, - sym_namespace_name, - ACTIONS(608), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(610), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(1532), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(307), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1559), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(734), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1525), 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, - [18191] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1956), 1, - anon_sym_LPAREN, - STATE(791), 1, + STATE(892), 1, sym_arguments, - STATE(846), 1, - sym_text_interpolation, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1613), 11, + ACTIONS(1815), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94257,7 +94633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1611), 23, + ACTIONS(1813), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94281,14 +94657,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18252] = 5, + [18758] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(847), 1, + ACTIONS(1652), 1, + anon_sym_LPAREN, + STATE(606), 1, + sym_arguments, + STATE(844), 1, sym_text_interpolation, - ACTIONS(1719), 11, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1763), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94300,19 +94686,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1721), 30, + ACTIONS(1761), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [18819] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(788), 1, + sym_arguments, + STATE(845), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + ACTIONS(1763), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1761), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -94331,18 +94763,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18307] = 5, + [18880] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(848), 1, + STATE(846), 1, sym_text_interpolation, - ACTIONS(1077), 11, + ACTIONS(1672), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - aux_sym_else_clause_token1, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -94350,19 +94782,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1075), 30, + ACTIONS(1674), 30, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, + anon_sym_LPAREN, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -94381,86 +94813,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18362] = 25, + [18935] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(580), 1, - aux_sym_cast_type_token1, - ACTIONS(612), 1, - anon_sym_LT_LT_LT, - ACTIONS(616), 1, - anon_sym_DOLLAR, - ACTIONS(1563), 1, - anon_sym_LBRACK, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1760), 1, - anon_sym_LPAREN, - ACTIONS(1806), 1, - sym_name, - STATE(849), 1, - sym_text_interpolation, - STATE(1730), 1, - sym_class_constant_access_expression, - STATE(1755), 1, - sym__dereferencable_expression, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2500), 1, - sym__scope_resolution_qualifier, - STATE(2615), 1, - sym_relative_scope, - STATE(2626), 1, - sym_namespace_name, - ACTIONS(608), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(610), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(1532), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(307), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1559), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(734), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1523), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1453), 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, - [18457] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - STATE(595), 1, - sym_arguments, - STATE(850), 1, + STATE(847), 1, sym_text_interpolation, - ACTIONS(1609), 11, + ACTIONS(1598), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94472,10 +94832,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 29, + ACTIONS(1596), 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, @@ -94502,27 +94863,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18514] = 8, + [18990] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1695), 1, - anon_sym_LPAREN, - STATE(625), 1, - sym_arguments, - STATE(851), 1, + STATE(848), 1, sym_text_interpolation, - ACTIONS(1617), 5, + ACTIONS(1654), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1613), 11, + ACTIONS(1570), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -94531,12 +94892,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1611), 23, + ACTIONS(1568), 22, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_PLUS, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -94555,20 +94915,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18575] = 6, + [19049] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(598), 1, - sym_arguments, - STATE(852), 1, + STATE(849), 1, sym_text_interpolation, - ACTIONS(1603), 11, + ACTIONS(1066), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_DASH, + aux_sym_else_clause_token1, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -94576,18 +94934,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 29, - sym__automatic_semicolon, + ACTIONS(1064), 30, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_EQ_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -94606,139 +94965,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18632] = 25, + [19104] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(580), 1, + ACTIONS(585), 1, aux_sym_cast_type_token1, - ACTIONS(612), 1, + ACTIONS(617), 1, anon_sym_LT_LT_LT, - ACTIONS(1563), 1, + ACTIONS(1056), 1, anon_sym_LBRACK, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1760), 1, + ACTIONS(1733), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1749), 1, anon_sym_DOLLAR, - ACTIONS(1980), 1, + ACTIONS(1945), 1, sym_name, - STATE(853), 1, + STATE(850), 1, sym_text_interpolation, - STATE(1698), 1, + STATE(1685), 1, sym__dereferencable_expression, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2468), 1, + STATE(2455), 1, sym__scope_resolution_qualifier, - STATE(2615), 1, - sym_relative_scope, - STATE(2626), 1, - sym_namespace_name, - ACTIONS(608), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(610), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(907), 2, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - STATE(1533), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(307), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1569), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1730), 3, - sym_class_constant_access_expression, - sym_cast_variable, - sym_scoped_property_access_expression, - STATE(734), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(859), 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, - [18727] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(580), 1, - aux_sym_cast_type_token1, - ACTIONS(612), 1, - anon_sym_LT_LT_LT, - ACTIONS(1563), 1, - anon_sym_LBRACK, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1760), 1, - anon_sym_LPAREN, - ACTIONS(1790), 1, - anon_sym_DOLLAR, - ACTIONS(1974), 1, - sym_name, - STATE(854), 1, - sym_text_interpolation, - STATE(1732), 1, - sym__dereferencable_expression, - STATE(2462), 1, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(2535), 1, - sym__scope_resolution_qualifier, - STATE(2615), 1, + STATE(2597), 1, sym_relative_scope, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - ACTIONS(608), 2, + ACTIONS(613), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(610), 2, + ACTIONS(615), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(773), 2, + STATE(904), 2, sym_member_access_expression, sym_nullsafe_member_access_expression, - STATE(1565), 2, + STATE(1554), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(307), 3, + ACTIONS(312), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1540), 3, + STATE(1558), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - STATE(1730), 3, + STATE(1705), 3, sym_class_constant_access_expression, sym_cast_variable, sym_scoped_property_access_expression, - STATE(734), 4, + STATE(753), 4, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, - STATE(700), 7, + STATE(843), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -94746,24 +95035,18 @@ static const uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [18822] = 8, + [19199] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1962), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(855), 1, - sym_text_interpolation, - STATE(889), 1, + STATE(801), 1, sym_arguments, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1615), 11, + STATE(851), 1, + sym_text_interpolation, + ACTIONS(1709), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94775,12 +95058,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1621), 23, + ACTIONS(1707), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -94799,69 +95087,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18883] = 25, + [19258] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(580), 1, + ACTIONS(585), 1, aux_sym_cast_type_token1, - ACTIONS(612), 1, + ACTIONS(617), 1, anon_sym_LT_LT_LT, - ACTIONS(1563), 1, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1056), 1, anon_sym_LBRACK, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1790), 1, - anon_sym_DOLLAR, - ACTIONS(1974), 1, - sym_name, - ACTIONS(1976), 1, + ACTIONS(1733), 1, anon_sym_LPAREN, - STATE(856), 1, + ACTIONS(1759), 1, + sym_name, + STATE(852), 1, sym_text_interpolation, - STATE(1730), 1, - sym_class_constant_access_expression, - STATE(1732), 1, + STATE(1703), 1, sym__dereferencable_expression, - STATE(2462), 1, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(2615), 1, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, sym_relative_scope, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(2636), 1, - sym__scope_resolution_qualifier, - ACTIONS(608), 2, + ACTIONS(613), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(610), 2, + ACTIONS(615), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(1565), 2, + STATE(1579), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(307), 3, + ACTIONS(312), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1540), 3, + STATE(1581), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - STATE(734), 4, + STATE(753), 4, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, - STATE(780), 4, + STATE(1530), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(708), 7, + STATE(1461), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -94869,24 +95157,94 @@ static const uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [18978] = 8, + [19353] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1733), 1, anon_sym_LPAREN, - STATE(597), 1, - sym_arguments, - STATE(857), 1, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(1959), 1, + sym_name, + STATE(853), 1, + sym_text_interpolation, + STATE(1707), 1, + sym__dereferencable_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2586), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(716), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1705), 2, + sym_class_constant_access_expression, + sym_cast_variable, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(767), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(679), 4, + sym_parenthesized_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1581), 6, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_array_creation_expression, + sym__string, + [19448] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(854), 1, sym_text_interpolation, - ACTIONS(1617), 5, + STATE(892), 1, + sym_arguments, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1752), 11, + ACTIONS(1572), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94898,7 +95256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1750), 23, + ACTIONS(1578), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94922,24 +95280,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19039] = 8, + [19509] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, - STATE(597), 1, + STATE(589), 1, sym_arguments, - STATE(858), 1, + STATE(855), 1, sym_text_interpolation, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1752), 11, + ACTIONS(1586), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94951,12 +95301,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1750), 23, + ACTIONS(1584), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -94975,24 +95331,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19100] = 8, + [19566] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1962), 1, - anon_sym_LPAREN, - STATE(859), 1, - sym_text_interpolation, - STATE(889), 1, + STATE(588), 1, sym_arguments, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1814), 11, + STATE(856), 1, + sym_text_interpolation, + ACTIONS(1582), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95004,12 +95352,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1812), 23, + ACTIONS(1580), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -95028,24 +95382,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19161] = 8, + [19623] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1956), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(791), 1, + STATE(794), 1, sym_arguments, - STATE(860), 1, + STATE(857), 1, sym_text_interpolation, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1613), 11, + ACTIONS(1727), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95057,12 +95405,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1611), 23, + ACTIONS(1725), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -95081,14 +95434,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19222] = 5, + [19682] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, sym_comment, - STATE(861), 1, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(1953), 1, + sym_name, + ACTIONS(1955), 1, + anon_sym_LPAREN, + STATE(858), 1, + sym_text_interpolation, + STATE(1696), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2597), 1, + sym_relative_scope, + STATE(2600), 1, + sym__scope_resolution_qualifier, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1543), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1573), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(768), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(695), 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, + [19777] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(585), 1, + aux_sym_cast_type_token1, + ACTIONS(617), 1, + anon_sym_LT_LT_LT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1056), 1, + anon_sym_LBRACK, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + sym_name, + STATE(859), 1, + sym_text_interpolation, + STATE(1703), 1, + sym__dereferencable_expression, + STATE(1705), 1, + sym_class_constant_access_expression, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2500), 1, + sym__scope_resolution_qualifier, + STATE(2597), 1, + sym_relative_scope, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(613), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(615), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1579), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(312), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1581), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(683), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(753), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1445), 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, + [19872] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(860), 1, sym_text_interpolation, - ACTIONS(1880), 11, + ACTIONS(1879), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95100,7 +95593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1878), 29, + ACTIONS(1877), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95130,14 +95623,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19276] = 5, + [19926] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(862), 1, + STATE(861), 1, sym_text_interpolation, - ACTIONS(1595), 11, + ACTIONS(1634), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95149,7 +95642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1593), 29, + ACTIONS(1632), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95179,14 +95672,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19330] = 5, + [19980] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(863), 1, + STATE(862), 1, sym_text_interpolation, - ACTIONS(1930), 11, + ACTIONS(1548), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95198,7 +95691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1928), 29, + ACTIONS(1546), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95228,14 +95721,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19384] = 5, + [20034] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(864), 1, + STATE(863), 1, sym_text_interpolation, - ACTIONS(1669), 11, + ACTIONS(1767), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95247,7 +95740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1667), 29, + ACTIONS(1765), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95277,14 +95770,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19438] = 5, + [20088] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(865), 1, + STATE(864), 1, sym_text_interpolation, - ACTIONS(1954), 11, + ACTIONS(1552), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95296,7 +95789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1952), 29, + ACTIONS(1550), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95326,14 +95819,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19492] = 5, + [20142] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(866), 1, + STATE(865), 1, sym_text_interpolation, - ACTIONS(1681), 11, + ACTIONS(1590), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95345,7 +95838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1679), 29, + ACTIONS(1588), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95375,14 +95868,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19546] = 5, + [20196] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(867), 1, + STATE(866), 1, sym_text_interpolation, - ACTIONS(1599), 11, + ACTIONS(1891), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95394,7 +95887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1597), 29, + ACTIONS(1889), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95424,14 +95917,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19600] = 5, + [20250] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(868), 1, + STATE(867), 1, sym_text_interpolation, - ACTIONS(1653), 11, + ACTIONS(1630), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95443,7 +95936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1651), 29, + ACTIONS(1628), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95473,65 +95966,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19654] = 7, + [20304] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1825), 1, - anon_sym_EQ, - STATE(869), 1, - sym_text_interpolation, - ACTIONS(1994), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1820), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1818), 26, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19712] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - STATE(870), 1, + STATE(868), 1, sym_text_interpolation, - ACTIONS(1591), 11, + ACTIONS(1913), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95543,7 +95985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1589), 29, + ACTIONS(1911), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95573,63 +96015,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19766] = 5, + [20358] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(871), 1, + STATE(869), 1, sym_text_interpolation, - ACTIONS(1914), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1912), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(1592), 6, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_LPAREN, - anon_sym_PLUS, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19820] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - STATE(872), 1, - sym_text_interpolation, - ACTIONS(1904), 11, + ACTIONS(1907), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95641,18 +96041,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1902), 29, + ACTIONS(1905), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -95671,14 +96065,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19874] = 5, + [20414] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(873), 1, + STATE(870), 1, sym_text_interpolation, - ACTIONS(1900), 11, + ACTIONS(1843), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95690,7 +96084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 29, + ACTIONS(1841), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95720,14 +96114,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19928] = 5, + [20468] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(874), 1, + STATE(871), 1, sym_text_interpolation, - ACTIONS(1665), 11, + ACTIONS(1626), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95739,7 +96133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1663), 29, + ACTIONS(1624), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95769,14 +96163,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19982] = 5, + [20522] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(875), 1, + STATE(872), 1, sym_text_interpolation, - ACTIONS(1585), 11, + ACTIONS(1835), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95788,7 +96182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1583), 29, + ACTIONS(1833), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95818,63 +96212,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20036] = 5, + [20576] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(876), 1, + ACTIONS(1772), 1, + anon_sym_EQ, + STATE(873), 1, sym_text_interpolation, - ACTIONS(1892), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1890), 29, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1961), 2, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [20090] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - STATE(877), 1, - sym_text_interpolation, - ACTIONS(1910), 11, + anon_sym_RBRACK, + ACTIONS(1767), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95886,10 +96236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1908), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(1765), 26, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, @@ -95916,14 +96263,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20144] = 5, + [20634] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(878), 1, + STATE(874), 1, sym_text_interpolation, - ACTIONS(1661), 11, + ACTIONS(1622), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95935,7 +96282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1659), 29, + ACTIONS(1620), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95965,14 +96312,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20198] = 5, + [20688] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(879), 1, + STATE(875), 1, sym_text_interpolation, - ACTIONS(1934), 11, + ACTIONS(1859), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95984,7 +96331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1932), 29, + ACTIONS(1857), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96014,14 +96361,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20252] = 5, + [20742] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(880), 1, + STATE(876), 1, sym_text_interpolation, - ACTIONS(1918), 11, + ACTIONS(1610), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96033,7 +96380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1916), 29, + ACTIONS(1608), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96063,14 +96410,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20306] = 5, + [20796] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(881), 1, + STATE(877), 1, sym_text_interpolation, - ACTIONS(1942), 11, + ACTIONS(1827), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96082,7 +96429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1940), 29, + ACTIONS(1825), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96112,14 +96459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20360] = 5, + [20850] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(882), 1, + STATE(878), 1, sym_text_interpolation, - ACTIONS(1657), 11, + ACTIONS(1839), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96131,7 +96478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1655), 29, + ACTIONS(1837), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96161,14 +96508,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20414] = 5, + [20904] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(883), 1, + ACTIONS(1909), 1, + anon_sym_COLON_COLON, + STATE(879), 1, sym_text_interpolation, - ACTIONS(1645), 11, + ACTIONS(1598), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96180,7 +96529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1643), 29, + ACTIONS(1596), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96188,7 +96537,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LPAREN, anon_sym_PLUS, - anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -96210,14 +96558,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20468] = 5, + [20960] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(884), 1, + ACTIONS(1772), 1, + anon_sym_EQ, + STATE(880), 1, sym_text_interpolation, - ACTIONS(1896), 11, + ACTIONS(1767), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96229,13 +96579,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1894), 29, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1765), 28, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COLON_COLON, anon_sym_DASH_GT, @@ -96259,14 +96608,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20522] = 5, + [21016] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(885), 1, + STATE(881), 1, sym_text_interpolation, - ACTIONS(1820), 11, + ACTIONS(1614), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96278,7 +96627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1818), 29, + ACTIONS(1612), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96308,14 +96657,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20576] = 5, + [21070] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(886), 1, + STATE(882), 1, sym_text_interpolation, - ACTIONS(1884), 11, + ACTIONS(1903), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96327,7 +96676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1882), 29, + ACTIONS(1901), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96357,14 +96706,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20630] = 5, + [21124] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(887), 1, + STATE(883), 1, sym_text_interpolation, - ACTIONS(1888), 11, + ACTIONS(1851), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96376,7 +96725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1886), 29, + ACTIONS(1849), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96406,14 +96755,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20684] = 5, + [21178] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(888), 1, + STATE(884), 1, sym_text_interpolation, - ACTIONS(1637), 11, + ACTIONS(1899), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96425,7 +96774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1635), 29, + ACTIONS(1897), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96455,14 +96804,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20738] = 5, + [21232] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(889), 1, + STATE(885), 1, sym_text_interpolation, - ACTIONS(1677), 11, + ACTIONS(1602), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96474,7 +96823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1675), 29, + ACTIONS(1600), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96504,14 +96853,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20792] = 5, + [21286] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(890), 1, + STATE(886), 1, sym_text_interpolation, - ACTIONS(1872), 11, + ACTIONS(1867), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96523,7 +96872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1870), 29, + ACTIONS(1865), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96553,64 +96902,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20846] = 6, + [21340] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(891), 1, - sym_text_interpolation, - ACTIONS(1675), 6, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1876), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1874), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [20902] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - STATE(892), 1, + STATE(887), 1, sym_text_interpolation, - ACTIONS(1922), 11, + ACTIONS(1847), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96622,7 +96921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1920), 29, + ACTIONS(1845), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96652,14 +96951,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20956] = 5, + [21394] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(893), 1, + STATE(888), 1, sym_text_interpolation, - ACTIONS(1868), 11, + ACTIONS(1887), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96671,7 +96970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1866), 29, + ACTIONS(1885), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96701,14 +97000,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21010] = 5, + [21448] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(894), 1, + STATE(889), 1, sym_text_interpolation, - ACTIONS(1946), 11, + ACTIONS(1871), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96720,7 +97019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1944), 29, + ACTIONS(1869), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96750,14 +97049,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21064] = 5, + [21502] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(895), 1, + STATE(890), 1, sym_text_interpolation, - ACTIONS(1673), 11, + ACTIONS(1606), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96769,7 +97068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1671), 29, + ACTIONS(1604), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96799,14 +97098,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21118] = 5, + [21556] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(896), 1, + STATE(891), 1, sym_text_interpolation, - ACTIONS(1950), 11, + ACTIONS(1831), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96818,7 +97117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1948), 29, + ACTIONS(1829), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96848,14 +97147,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21172] = 5, + [21610] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(897), 1, + STATE(892), 1, sym_text_interpolation, - ACTIONS(1567), 11, + ACTIONS(1594), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96867,7 +97166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1569), 29, + ACTIONS(1592), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96897,16 +97196,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21226] = 6, + [21664] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1906), 1, - anon_sym_COLON_COLON, - STATE(898), 1, + STATE(893), 1, sym_text_interpolation, - ACTIONS(1649), 11, + ACTIONS(1875), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96918,7 +97215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1647), 28, + ACTIONS(1873), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96926,6 +97223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LPAREN, anon_sym_PLUS, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -96947,14 +97245,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21282] = 5, + [21718] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(899), 1, + STATE(894), 1, sym_text_interpolation, - ACTIONS(1938), 11, + ACTIONS(1520), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96966,7 +97264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1936), 29, + ACTIONS(1522), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96996,14 +97294,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21336] = 5, + [21772] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(900), 1, + STATE(895), 1, sym_text_interpolation, - ACTIONS(1926), 11, + ACTIONS(1538), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97015,7 +97313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1924), 29, + ACTIONS(1536), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97045,16 +97343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21390] = 6, + [21826] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1825), 1, - anon_sym_EQ, - STATE(901), 1, + STATE(896), 1, sym_text_interpolation, - ACTIONS(1820), 11, + ACTIONS(1638), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97066,12 +97362,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1818), 28, + ACTIONS(1636), 29, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COLON_COLON, anon_sym_DASH_GT, @@ -97095,14 +97392,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21446] = 5, + [21880] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(902), 1, + STATE(897), 1, sym_text_interpolation, - ACTIONS(1685), 11, + ACTIONS(1883), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97114,7 +97411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1683), 29, + ACTIONS(1881), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97144,14 +97441,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21500] = 5, + [21934] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(903), 1, + STATE(898), 1, sym_text_interpolation, - ACTIONS(1641), 11, + ACTIONS(1618), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97163,7 +97460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1639), 29, + ACTIONS(1616), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97193,20 +97490,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21554] = 6, + [21988] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(904), 1, + STATE(899), 1, sym_text_interpolation, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1613), 11, + ACTIONS(1895), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97218,12 +97509,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1611), 23, + ACTIONS(1893), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -97242,20 +97539,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21609] = 6, + [22042] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(905), 1, + STATE(900), 1, sym_text_interpolation, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1798), 11, + ACTIONS(1544), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97267,12 +97558,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1796), 23, + ACTIONS(1542), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_PLUS, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -97291,20 +97588,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21664] = 6, + [22096] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(906), 1, + STATE(901), 1, sym_text_interpolation, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1615), 11, + ACTIONS(1863), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97316,12 +97607,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1621), 23, + ACTIONS(1861), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -97340,20 +97637,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21719] = 6, + [22150] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(907), 1, + STATE(902), 1, sym_text_interpolation, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1814), 11, + ACTIONS(1855), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97365,12 +97656,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1812), 23, + 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -97389,20 +97686,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21774] = 6, + [22204] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(908), 1, + STATE(903), 1, sym_text_interpolation, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1752), 11, + ACTIONS(1572), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97414,7 +97711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1750), 23, + ACTIONS(1578), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97438,64 +97735,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21829] = 5, + [22259] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(909), 1, + STATE(904), 1, sym_text_interpolation, - ACTIONS(1998), 10, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1815), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1996), 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_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [21881] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - STATE(910), 1, - sym_text_interpolation, - ACTIONS(2002), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -97503,17 +97760,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2000), 28, + ACTIONS(1813), 23, + sym__automatic_semicolon, anon_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_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -97532,17 +97784,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21933] = 5, + [22314] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(911), 1, + STATE(905), 1, sym_text_interpolation, - ACTIONS(2006), 10, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1753), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -97550,17 +97809,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2004), 28, + ACTIONS(1751), 23, + sym__automatic_semicolon, anon_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_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -97579,17 +97833,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21985] = 5, + [22369] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(912), 1, + STATE(906), 1, sym_text_interpolation, - ACTIONS(2010), 10, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1570), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -97597,17 +97858,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2008), 28, + ACTIONS(1568), 23, + sym__automatic_semicolon, anon_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_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -97626,17 +97882,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22037] = 5, + [22424] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(913), 1, + STATE(907), 1, sym_text_interpolation, - ACTIONS(2014), 10, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1696), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -97644,17 +97907,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2012), 28, + ACTIONS(1694), 23, + sym__automatic_semicolon, anon_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_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -97673,14 +97931,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22089] = 5, + [22479] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(914), 1, + STATE(908), 1, sym_text_interpolation, - ACTIONS(2018), 10, + ACTIONS(1965), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97691,7 +97949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2016), 28, + ACTIONS(1963), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97720,14 +97978,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22141] = 5, + [22531] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(915), 1, + STATE(909), 1, sym_text_interpolation, - ACTIONS(2022), 10, + ACTIONS(1538), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97738,7 +97996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2020), 28, + ACTIONS(1536), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97767,14 +98025,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22193] = 5, + [22583] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(916), 1, + STATE(910), 1, sym_text_interpolation, - ACTIONS(2026), 10, + ACTIONS(1969), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97785,7 +98043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2024), 28, + ACTIONS(1967), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97814,14 +98072,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22245] = 5, + [22635] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(917), 1, + STATE(911), 1, sym_text_interpolation, - ACTIONS(2030), 10, + ACTIONS(1973), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97832,7 +98090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2028), 28, + ACTIONS(1971), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97861,14 +98119,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22297] = 5, + [22687] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(918), 1, + STATE(912), 1, sym_text_interpolation, - ACTIONS(2034), 10, + ACTIONS(1977), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97879,7 +98137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2032), 28, + ACTIONS(1975), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97908,14 +98166,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22349] = 5, + [22739] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(919), 1, + STATE(913), 1, sym_text_interpolation, - ACTIONS(2038), 10, + ACTIONS(1981), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97926,7 +98184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2036), 28, + ACTIONS(1979), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97955,14 +98213,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22401] = 5, + [22791] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(920), 1, + STATE(914), 1, sym_text_interpolation, - ACTIONS(2042), 10, + ACTIONS(1985), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97973,7 +98231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2040), 28, + ACTIONS(1983), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98002,14 +98260,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22453] = 5, + [22843] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(921), 1, + STATE(915), 1, sym_text_interpolation, - ACTIONS(2046), 10, + ACTIONS(1989), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98020,7 +98278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2044), 28, + ACTIONS(1987), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98049,14 +98307,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22505] = 5, + [22895] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(922), 1, + STATE(916), 1, sym_text_interpolation, - ACTIONS(2050), 10, + ACTIONS(1993), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98067,7 +98325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2048), 28, + ACTIONS(1991), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98096,14 +98354,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22557] = 5, + [22947] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(923), 1, + STATE(917), 1, sym_text_interpolation, - ACTIONS(2054), 10, + ACTIONS(1997), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98114,7 +98372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2052), 28, + ACTIONS(1995), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98143,14 +98401,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22609] = 5, + [22999] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(924), 1, + STATE(918), 1, sym_text_interpolation, - ACTIONS(2058), 10, + ACTIONS(2001), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98161,7 +98419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2056), 28, + ACTIONS(1999), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98190,14 +98448,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22661] = 5, + [23051] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(925), 1, + STATE(919), 1, sym_text_interpolation, - ACTIONS(2062), 10, + ACTIONS(2005), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98208,7 +98466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2060), 28, + ACTIONS(2003), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98237,14 +98495,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22713] = 5, + [23103] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(926), 1, + STATE(920), 1, sym_text_interpolation, - ACTIONS(2066), 10, + ACTIONS(2009), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98255,7 +98513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2064), 28, + ACTIONS(2007), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98284,14 +98542,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22765] = 5, + [23155] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(927), 1, + STATE(921), 1, sym_text_interpolation, - ACTIONS(2070), 10, + ACTIONS(2013), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98302,7 +98560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2068), 28, + ACTIONS(2011), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98331,14 +98589,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22817] = 5, + [23207] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(928), 1, + STATE(922), 1, sym_text_interpolation, - ACTIONS(2074), 10, + ACTIONS(2017), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98349,7 +98607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2072), 28, + ACTIONS(2015), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98378,14 +98636,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22869] = 5, + [23259] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(929), 1, + STATE(923), 1, sym_text_interpolation, - ACTIONS(2078), 10, + ACTIONS(2021), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98396,7 +98654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2076), 28, + ACTIONS(2019), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98425,14 +98683,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22921] = 5, + [23311] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(930), 1, + ACTIONS(2027), 1, + aux_sym_binary_expression_token1, + STATE(924), 1, sym_text_interpolation, - ACTIONS(2082), 10, + ACTIONS(2025), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98443,7 +98703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2080), 28, + ACTIONS(2023), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98454,7 +98714,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_RBRACK, - aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, aux_sym_binary_expression_token2, @@ -98472,14 +98731,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22973] = 5, + [23365] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(931), 1, + STATE(925), 1, sym_text_interpolation, - ACTIONS(2086), 10, + ACTIONS(2031), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98490,7 +98749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2084), 28, + ACTIONS(2029), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98519,14 +98778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23025] = 5, + [23417] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(932), 1, + STATE(926), 1, sym_text_interpolation, - ACTIONS(2090), 10, + ACTIONS(2025), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98537,7 +98796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2088), 28, + ACTIONS(2023), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98566,14 +98825,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23077] = 5, + [23469] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(933), 1, + STATE(927), 1, sym_text_interpolation, - ACTIONS(2094), 10, + ACTIONS(2035), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98584,7 +98843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2092), 28, + ACTIONS(2033), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98613,14 +98872,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23129] = 5, + [23521] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(934), 1, + STATE(928), 1, sym_text_interpolation, - ACTIONS(2098), 10, + ACTIONS(2039), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98631,7 +98890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2096), 28, + ACTIONS(2037), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98660,14 +98919,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23181] = 5, + [23573] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(935), 1, + STATE(929), 1, sym_text_interpolation, - ACTIONS(2102), 10, + ACTIONS(2043), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98678,7 +98937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2100), 28, + ACTIONS(2041), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98707,14 +98966,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23233] = 5, + [23625] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(936), 1, + STATE(930), 1, sym_text_interpolation, - ACTIONS(2106), 10, + ACTIONS(1570), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98725,7 +98984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2104), 28, + ACTIONS(1568), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98754,14 +99013,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23285] = 5, + [23677] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(937), 1, + STATE(931), 1, sym_text_interpolation, - ACTIONS(1613), 10, + ACTIONS(2047), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98772,7 +99031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1611), 28, + ACTIONS(2045), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98801,14 +99060,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23337] = 5, + [23729] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(938), 1, + STATE(932), 1, sym_text_interpolation, - ACTIONS(1876), 10, + ACTIONS(2051), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98819,7 +99078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1874), 28, + ACTIONS(2049), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98848,14 +99107,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23389] = 5, + [23781] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(939), 1, + STATE(933), 1, sym_text_interpolation, - ACTIONS(2110), 10, + ACTIONS(2055), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98866,7 +99125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2108), 28, + ACTIONS(2053), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98895,14 +99154,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23441] = 5, + [23833] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(940), 1, + STATE(934), 1, sym_text_interpolation, - ACTIONS(2114), 10, + ACTIONS(2059), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98913,7 +99172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2112), 28, + ACTIONS(2057), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98942,14 +99201,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23493] = 5, + [23885] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(941), 1, + STATE(935), 1, sym_text_interpolation, - ACTIONS(2118), 10, + ACTIONS(2063), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98960,7 +99219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2116), 28, + ACTIONS(2061), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98989,14 +99248,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23545] = 5, + [23937] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(942), 1, + STATE(936), 1, sym_text_interpolation, - ACTIONS(2122), 10, + ACTIONS(2067), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99007,7 +99266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2120), 28, + ACTIONS(2065), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99036,14 +99295,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23597] = 5, + [23989] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(943), 1, + STATE(937), 1, sym_text_interpolation, - ACTIONS(2126), 10, + ACTIONS(2071), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99054,7 +99313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2124), 28, + ACTIONS(2069), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99083,14 +99342,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23649] = 5, + [24041] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(944), 1, + STATE(938), 1, sym_text_interpolation, - ACTIONS(2130), 10, + ACTIONS(2075), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99101,7 +99360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2128), 28, + ACTIONS(2073), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99130,14 +99389,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23701] = 5, + [24093] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(945), 1, + STATE(939), 1, sym_text_interpolation, - ACTIONS(2134), 10, + ACTIONS(2079), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99148,7 +99407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2132), 28, + ACTIONS(2077), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99177,14 +99436,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23753] = 5, + [24145] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(946), 1, + STATE(940), 1, sym_text_interpolation, - ACTIONS(2138), 10, + ACTIONS(2083), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99195,7 +99454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2136), 28, + ACTIONS(2081), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99224,14 +99483,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23805] = 5, + [24197] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(947), 1, + STATE(941), 1, sym_text_interpolation, - ACTIONS(2142), 10, + ACTIONS(2087), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99242,7 +99501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2140), 28, + ACTIONS(2085), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99271,14 +99530,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23857] = 5, + [24249] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(948), 1, + STATE(942), 1, sym_text_interpolation, - ACTIONS(2146), 10, + ACTIONS(2091), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99289,7 +99548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2144), 28, + ACTIONS(2089), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99318,14 +99577,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23909] = 5, + [24301] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(949), 1, + STATE(943), 1, sym_text_interpolation, - ACTIONS(2150), 10, + ACTIONS(2095), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99336,7 +99595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2148), 28, + ACTIONS(2093), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99365,14 +99624,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23961] = 5, + [24353] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(950), 1, + STATE(944), 1, sym_text_interpolation, - ACTIONS(2154), 10, + ACTIONS(2099), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99383,7 +99642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2152), 28, + ACTIONS(2097), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99412,14 +99671,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24013] = 5, + [24405] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(951), 1, + STATE(945), 1, sym_text_interpolation, - ACTIONS(2158), 10, + ACTIONS(1544), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99430,7 +99689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2156), 28, + ACTIONS(1542), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99459,14 +99718,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24065] = 5, + [24457] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(952), 1, + STATE(946), 1, sym_text_interpolation, - ACTIONS(2162), 10, + ACTIONS(2103), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99477,7 +99736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2160), 28, + ACTIONS(2101), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99506,14 +99765,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24117] = 5, + [24509] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(953), 1, + STATE(947), 1, sym_text_interpolation, - ACTIONS(1585), 10, + ACTIONS(1548), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99524,7 +99783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1583), 28, + ACTIONS(1546), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99553,14 +99812,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24169] = 5, + [24561] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(954), 1, + STATE(948), 1, sym_text_interpolation, - ACTIONS(2166), 10, + ACTIONS(2107), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99571,7 +99830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2164), 28, + ACTIONS(2105), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99600,14 +99859,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24221] = 5, + [24613] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(955), 1, + STATE(949), 1, sym_text_interpolation, - ACTIONS(2170), 10, + ACTIONS(2111), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99618,7 +99877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2168), 28, + ACTIONS(2109), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99647,14 +99906,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24273] = 5, + [24665] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(956), 1, + STATE(950), 1, sym_text_interpolation, - ACTIONS(2174), 10, + ACTIONS(2115), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99665,7 +99924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2172), 28, + ACTIONS(2113), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99694,14 +99953,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24325] = 5, + [24717] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(957), 1, + STATE(951), 1, sym_text_interpolation, - ACTIONS(2178), 10, + ACTIONS(2119), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99712,7 +99971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2176), 28, + ACTIONS(2117), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99741,14 +100000,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24377] = 5, + [24769] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(958), 1, + STATE(952), 1, sym_text_interpolation, - ACTIONS(2182), 10, + ACTIONS(2123), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99759,7 +100018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2180), 28, + ACTIONS(2121), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99788,14 +100047,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24429] = 5, + [24821] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(959), 1, + STATE(953), 1, sym_text_interpolation, - ACTIONS(1595), 10, + ACTIONS(1552), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99806,7 +100065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1593), 28, + ACTIONS(1550), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99835,14 +100094,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24481] = 5, + [24873] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(960), 1, + STATE(954), 1, sym_text_interpolation, - ACTIONS(2186), 10, + ACTIONS(2127), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99853,7 +100112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2184), 28, + ACTIONS(2125), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99882,14 +100141,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24533] = 5, + [24925] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(961), 1, + STATE(955), 1, sym_text_interpolation, - ACTIONS(1599), 10, + ACTIONS(2131), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99900,7 +100159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1597), 28, + ACTIONS(2129), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99929,14 +100188,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24585] = 5, + [24977] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(962), 1, + STATE(956), 1, sym_text_interpolation, - ACTIONS(2190), 10, + ACTIONS(2135), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99947,7 +100206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2188), 28, + ACTIONS(2133), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99976,14 +100235,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24637] = 5, + [25029] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(963), 1, + STATE(957), 1, sym_text_interpolation, - ACTIONS(2194), 10, + ACTIONS(2139), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99994,7 +100253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2192), 28, + ACTIONS(2137), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100023,14 +100282,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24689] = 5, + [25081] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(964), 1, + STATE(958), 1, sym_text_interpolation, - ACTIONS(1591), 10, + ACTIONS(2143), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100041,7 +100300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1589), 28, + ACTIONS(2141), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100070,14 +100329,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24741] = 5, + [25133] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(965), 1, + STATE(959), 1, sym_text_interpolation, - ACTIONS(2198), 10, + ACTIONS(2147), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100088,7 +100347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2196), 28, + ACTIONS(2145), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100117,14 +100376,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24793] = 5, + [25185] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(966), 1, + STATE(960), 1, sym_text_interpolation, - ACTIONS(2202), 10, + ACTIONS(2151), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100135,7 +100394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2200), 28, + ACTIONS(2149), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100164,14 +100423,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24845] = 5, + [25237] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(967), 1, + STATE(961), 1, sym_text_interpolation, - ACTIONS(2206), 10, + ACTIONS(1907), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100182,7 +100441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2204), 28, + ACTIONS(1905), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100211,14 +100470,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24897] = 5, + [25289] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(968), 1, + STATE(962), 1, sym_text_interpolation, - ACTIONS(2210), 10, + ACTIONS(2155), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100229,7 +100488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2208), 28, + ACTIONS(2153), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100258,14 +100517,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24949] = 5, + [25341] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(969), 1, + STATE(963), 1, sym_text_interpolation, - ACTIONS(2214), 10, + ACTIONS(2159), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100276,7 +100535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 28, + ACTIONS(2157), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100305,14 +100564,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25001] = 5, + [25393] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(970), 1, + STATE(964), 1, sym_text_interpolation, - ACTIONS(2218), 10, + ACTIONS(2163), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100323,7 +100582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2216), 28, + ACTIONS(2161), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100352,14 +100611,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25053] = 5, + [25445] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(971), 1, + STATE(965), 1, sym_text_interpolation, - ACTIONS(2222), 10, + ACTIONS(2167), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100370,7 +100629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2220), 28, + ACTIONS(2165), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100399,16 +100658,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25105] = 6, + [25497] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2224), 1, + STATE(966), 1, + sym_text_interpolation, + ACTIONS(2171), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2169), 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_RBRACK, aux_sym_binary_expression_token1, - STATE(972), 1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [25549] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(967), 1, sym_text_interpolation, - ACTIONS(2190), 10, + ACTIONS(2175), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100419,7 +100723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2188), 27, + ACTIONS(2173), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100430,6 +100734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_RBRACK, + aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, aux_sym_binary_expression_token2, @@ -100447,14 +100752,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25159] = 5, + [25601] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(973), 1, + STATE(968), 1, sym_text_interpolation, - ACTIONS(2228), 10, + ACTIONS(2179), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100465,7 +100770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2226), 28, + ACTIONS(2177), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100494,18 +100799,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25211] = 5, + [25653] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(974), 1, + STATE(969), 1, sym_text_interpolation, - ACTIONS(1077), 11, + ACTIONS(2183), 10, 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, @@ -100513,15 +100817,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1075), 26, - sym__automatic_semicolon, + ACTIONS(2181), 28, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_EQ_GT, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -100540,67 +100846,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25262] = 8, + [25705] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(313), 1, - anon_sym_POUND_LBRACK, - STATE(975), 1, + STATE(970), 1, sym_text_interpolation, - STATE(977), 1, - aux_sym_attribute_list_repeat1, - STATE(1011), 1, - sym_attribute_group, - ACTIONS(2232), 5, + ACTIONS(2187), 10, anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - ACTIONS(2230), 29, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - aux_sym_enum_declaration_token1, - anon_sym_string, - anon_sym_int, - 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_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [25319] = 5, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2185), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [25757] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(976), 1, + STATE(971), 1, sym_text_interpolation, - ACTIONS(1141), 11, + ACTIONS(2191), 10, 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, @@ -100608,15 +100911,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1139), 26, - sym__automatic_semicolon, + ACTIONS(2189), 28, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_EQ_GT, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [25809] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(972), 1, + sym_text_interpolation, + ACTIONS(1763), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1761), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [25861] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(973), 1, + sym_text_interpolation, + ACTIONS(2195), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2193), 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_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -100635,25 +101034,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25370] = 7, + [25913] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(2238), 1, + ACTIONS(2201), 1, anon_sym_POUND_LBRACK, - STATE(1011), 1, + STATE(1046), 1, sym_attribute_group, - STATE(977), 2, + STATE(974), 2, sym_text_interpolation, aux_sym_attribute_list_repeat1, - ACTIONS(2236), 5, + ACTIONS(2199), 5, anon_sym_AMP, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - ACTIONS(2234), 29, + ACTIONS(2197), 29, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -100683,58 +101082,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [25425] = 23, + [25968] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(1676), 1, sym_name, - ACTIONS(1764), 1, + ACTIONS(1711), 1, anon_sym_AMP, - ACTIONS(1768), 1, + ACTIONS(1715), 1, anon_sym_LPAREN, - ACTIONS(1774), 1, + ACTIONS(1721), 1, anon_sym_QMARK, - ACTIONS(1776), 1, + ACTIONS(1723), 1, anon_sym_DOLLAR, - ACTIONS(2241), 1, + ACTIONS(2204), 1, anon_sym_DOT_DOT_DOT, - STATE(978), 1, + STATE(975), 1, sym_text_interpolation, - STATE(1194), 1, + STATE(1192), 1, sym_visibility_modifier, - STATE(1427), 1, + STATE(1433), 1, sym_qualified_name, - STATE(1560), 1, + STATE(1548), 1, sym__types, - STATE(1723), 1, - sym__type, - STATE(2102), 1, + STATE(1679), 1, + sym_type, + STATE(2072), 1, sym_reference_modifier, - STATE(2104), 1, + STATE(2074), 1, sym_variable_name, - STATE(2544), 1, + STATE(2604), 1, sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - ACTIONS(245), 3, + ACTIONS(250), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1424), 3, + STATE(1435), 3, sym_named_type, sym_optional_type, sym_primitive_type, - STATE(1477), 3, + STATE(1479), 3, sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - ACTIONS(1729), 12, + ACTIONS(1684), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -100747,126 +101146,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [25512] = 23, + [26055] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(5), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + STATE(974), 1, + aux_sym_attribute_list_repeat1, + STATE(976), 1, + sym_text_interpolation, + STATE(1046), 1, + sym_attribute_group, + ACTIONS(2208), 5, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + ACTIONS(2206), 29, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + aux_sym_enum_declaration_token1, + anon_sym_string, + anon_sym_int, + 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_QMARK, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [26112] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(977), 1, + sym_text_interpolation, + ACTIONS(1066), 11, anon_sym_AMP, - ACTIONS(2245), 1, anon_sym_QMARK, - ACTIONS(2247), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + 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(1064), 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, + aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, anon_sym_CARET, - ACTIONS(2271), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2275), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2279), 1, anon_sym_PERCENT, - STATE(979), 1, + [26163] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(978), 1, sym_text_interpolation, - ACTIONS(2249), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(1084), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + aux_sym_else_clause_token1, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2269), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1750), 8, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1082), 26, + sym__automatic_semicolon, anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_RPAREN, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + anon_sym_PLUS, + anon_sym_DASH, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, - [25598] = 24, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [26214] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - STATE(980), 1, + STATE(979), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2281), 7, + ACTIONS(1975), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100874,57 +101351,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - [25686] = 21, + [26302] = 17, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, - anon_sym_QMARK, - ACTIONS(2247), 1, - anon_sym_PIPE, - ACTIONS(2251), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2259), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, - anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - STATE(981), 1, + STATE(980), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(1696), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2285), 10, + ACTIONS(1694), 13, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100932,54 +101402,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [25768] = 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [26376] = 18, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1752), 1, + ACTIONS(1696), 1, anon_sym_QMARK, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - STATE(982), 1, + STATE(981), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1750), 13, + ACTIONS(1694), 13, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100993,97 +101466,118 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [25844] = 16, + [26452] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2253), 1, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2271), 1, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - STATE(983), 1, + ACTIONS(2250), 1, + anon_sym_EQ_GT, + STATE(982), 1, sym_text_interpolation, - ACTIONS(1752), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1750), 14, + ACTIONS(2149), 6, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [25916] = 13, + [26542] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2253), 1, + ACTIONS(1696), 1, + anon_sym_QMARK, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2271), 1, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - STATE(984), 1, + STATE(983), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2273), 2, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1752), 5, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1750), 18, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 12, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101096,69 +101590,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_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, - [25982] = 24, + [26620] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, - aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - STATE(985), 1, + STATE(984), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2287), 7, + ACTIONS(1694), 9, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101166,38 +101650,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - [26070] = 11, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [26704] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2253), 1, + STATE(985), 1, + sym_text_interpolation, + STATE(1329), 1, + sym__modifier, + STATE(1364), 1, + aux_sym_class_declaration_repeat1, + STATE(1405), 1, + sym__const_declaration, + ACTIONS(2254), 3, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOLLAR, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + ACTIONS(2252), 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_QMARK, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [26762] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2275), 1, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, STATE(986), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2273), 2, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1752), 8, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1750), 19, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2256), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101205,75 +101765,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [26132] = 24, + [26850] = 16, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, - anon_sym_QMARK, - ACTIONS(2247), 1, - anon_sym_PIPE, - ACTIONS(2251), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, - aux_sym_binary_expression_token2, - ACTIONS(2257), 1, - aux_sym_binary_expression_token4, - ACTIONS(2259), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, - anon_sym_AMP_AMP, - ACTIONS(2263), 1, - anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, STATE(987), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(1696), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2289), 7, + ACTIONS(1694), 14, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101281,63 +101814,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - [26220] = 24, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [26922] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, STATE(988), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2291), 7, + ACTIONS(2258), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101345,63 +101885,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - [26308] = 24, + [27010] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, STATE(989), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2293), 7, + ACTIONS(1694), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101409,63 +101947,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - [26396] = 24, + aux_sym_binary_expression_token3, + [27096] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, STATE(990), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2295), 7, + ACTIONS(2260), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101473,174 +102012,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - [26484] = 25, + [27184] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2297), 1, - anon_sym_EQ_GT, STATE(991), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2012), 6, + ACTIONS(2262), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, anon_sym_COLON, + anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - [26574] = 6, + [27272] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2253), 1, - anon_sym_STAR_STAR, - STATE(992), 1, - sym_text_interpolation, - ACTIONS(1752), 10, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(992), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1750), 25, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 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_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, - [26626] = 24, + [27354] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, STATE(993), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2299), 7, + ACTIONS(2264), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101648,24 +102201,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - [26714] = 9, + [27442] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2279), 1, - anon_sym_PERCENT, STATE(994), 1, sym_text_interpolation, - ACTIONS(2249), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2277), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1752), 8, + ACTIONS(1696), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101674,13 +102219,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1750), 22, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1694), 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, @@ -101697,57 +102246,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - [26772] = 21, + anon_sym_PERCENT, + [27494] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(1696), 1, + anon_sym_QMARK, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2303), 1, - anon_sym_QMARK, STATE(995), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2301), 10, + ACTIONS(1694), 10, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101758,105 +102308,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [26854] = 15, + [27576] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2253), 1, - anon_sym_STAR_STAR, - ACTIONS(2271), 1, - anon_sym_GT_EQ, - ACTIONS(2275), 1, - anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, - STATE(996), 1, - sym_text_interpolation, - ACTIONS(2249), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2265), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2273), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1752), 3, + ACTIONS(2210), 1, anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2269), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2267), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1750), 14, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_binary_expression_token1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, + ACTIONS(2224), 1, aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, anon_sym_AMP_AMP, + ACTIONS(2232), 1, anon_sym_CARET, - [26924] = 17, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2243), 1, - anon_sym_AMP, - ACTIONS(2253), 1, - anon_sym_STAR_STAR, - ACTIONS(2263), 1, - anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - STATE(997), 1, + STATE(996), 1, sym_text_interpolation, - ACTIONS(1752), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1750), 13, + ACTIONS(2266), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101864,65 +102372,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [26998] = 22, + [27664] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2259), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - STATE(998), 1, + STATE(997), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1750), 9, + ACTIONS(2268), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101930,29 +102436,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [27082] = 10, + [27752] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - STATE(999), 1, + STATE(998), 1, sym_text_interpolation, - ACTIONS(2249), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2273), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1752), 8, + ACTIONS(1696), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101961,13 +102459,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1750), 20, + ACTIONS(1694), 24, 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, @@ -101981,104 +102481,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - [27142] = 6, + [27808] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2253), 1, - anon_sym_STAR_STAR, - STATE(1000), 1, - sym_text_interpolation, - ACTIONS(1752), 10, + ACTIONS(2210), 1, anon_sym_AMP, - anon_sym_QMARK, + ACTIONS(2214), 1, anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2272), 1, + anon_sym_QMARK, + STATE(999), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1750), 25, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2270), 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_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, - [27194] = 21, + [27890] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2307), 1, + ACTIONS(2276), 1, anon_sym_QMARK, - STATE(1001), 1, + STATE(1000), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2305), 10, + ACTIONS(2274), 10, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -102089,53 +102606,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [27276] = 19, + [27972] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_QMARK, - ACTIONS(2243), 1, - anon_sym_AMP, - ACTIONS(2247), 1, - anon_sym_PIPE, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2261), 1, - anon_sym_AMP_AMP, - ACTIONS(2263), 1, - anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - STATE(1002), 1, + STATE(1001), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(1696), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1750), 12, + ACTIONS(1694), 14, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -102148,63 +102659,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - [27354] = 24, + anon_sym_AMP_AMP, + anon_sym_CARET, + [28042] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, - anon_sym_AMP, - ACTIONS(2245), 1, - anon_sym_QMARK, - ACTIONS(2247), 1, - anon_sym_PIPE, - ACTIONS(2251), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, - aux_sym_binary_expression_token2, - ACTIONS(2257), 1, - aux_sym_binary_expression_token4, - ACTIONS(2259), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, - anon_sym_AMP_AMP, - ACTIONS(2263), 1, - anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - STATE(1003), 1, + STATE(1002), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2309), 7, + ACTIONS(1696), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1694), 18, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -102212,63 +102703,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - [27442] = 24, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_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, + [28108] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, - aux_sym_binary_expression_token2, - ACTIONS(2257), 1, - aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - STATE(1004), 1, + STATE(1003), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2311), 7, + ACTIONS(2278), 10, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -102276,21 +102772,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - [27530] = 8, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [28190] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2279), 1, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, anon_sym_PERCENT, - STATE(1005), 1, + STATE(1004), 1, sym_text_interpolation, - ACTIONS(2277), 2, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1752), 8, + ACTIONS(1696), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102299,15 +102806,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1750), 24, + ACTIONS(1694), 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_PLUS, - anon_sym_DASH, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -102321,60 +102826,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [27586] = 21, + [28252] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2248), 1, + anon_sym_PERCENT, + STATE(1005), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 8, anon_sym_AMP, - ACTIONS(2245), 1, anon_sym_QMARK, - ACTIONS(2247), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1694), 22, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, - anon_sym_STAR_STAR, - ACTIONS(2259), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, anon_sym_CARET, - ACTIONS(2271), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2275), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2279), 1, + [28310] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2248), 1, anon_sym_PERCENT, STATE(1006), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(1696), 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(2267), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1750), 10, + ACTIONS(1694), 20, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -102382,127 +102912,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [27668] = 21, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2243), 1, - anon_sym_AMP, - ACTIONS(2245), 1, - anon_sym_QMARK, - ACTIONS(2247), 1, - anon_sym_PIPE, - ACTIONS(2251), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, - anon_sym_STAR_STAR, - ACTIONS(2259), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, anon_sym_CARET, - ACTIONS(2271), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2275), 1, + anon_sym_LT_EQ_GT, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + [28370] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, STATE(1007), 1, sym_text_interpolation, - ACTIONS(2249), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(1696), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2269), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2313), 10, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1694), 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, - [27750] = 24, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [28422] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, STATE(1008), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2164), 7, + ACTIONS(2280), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -102510,57 +103035,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - [27838] = 21, + [28510] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2284), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2289), 1, + aux_sym_final_modifier_token1, + ACTIONS(2292), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2295), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2298), 1, + sym_var_modifier, + STATE(1329), 1, + sym__modifier, + STATE(1009), 2, + sym_text_interpolation, + aux_sym_class_declaration_repeat1, + ACTIONS(2287), 3, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOLLAR, + ACTIONS(2301), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + ACTIONS(2282), 18, + 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, + anon_sym_QMARK, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [28576] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2259), 1, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - STATE(1009), 1, + STATE(1010), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2315), 10, + ACTIONS(2304), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -102568,60 +103152,57 @@ static const uint16_t ts_small_parse_table[] = { 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, - [27920] = 21, + [28664] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_QMARK, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2247), 1, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - STATE(1010), 1, + STATE(1011), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1750), 10, + ACTIONS(2306), 10, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -102632,30 +103213,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [28002] = 5, + [28746] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1011), 1, + STATE(1012), 1, sym_text_interpolation, - ACTIONS(2319), 6, - anon_sym_AMP, + STATE(1329), 1, + sym__modifier, + STATE(1364), 1, + aux_sym_class_declaration_repeat1, + STATE(1391), 1, + sym__const_declaration, + ACTIONS(2254), 3, anon_sym_BSLASH, anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_POUND_LBRACK, anon_sym_DOLLAR, - ACTIONS(2317), 29, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + ACTIONS(2252), 25, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, - aux_sym_enum_declaration_token1, anon_sym_string, anon_sym_int, - 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, @@ -102663,7 +103250,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - aux_sym__arrow_function_header_token1, anon_sym_QMARK, anon_sym_array, aux_sym_primitive_type_token1, @@ -102676,649 +103262,652 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [28051] = 21, + [28804] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2307), 1, - anon_sym_QMARK, - ACTIONS(2321), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - STATE(1012), 1, + STATE(1013), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2305), 9, + ACTIONS(2308), 10, anon_sym_SEMI, - anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_RPAREN, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [28132] = 5, + [28886] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1013), 1, - sym_text_interpolation, - ACTIONS(2355), 6, + ACTIONS(2310), 1, anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_POUND_LBRACK, - anon_sym_DOLLAR, - ACTIONS(2353), 29, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - aux_sym_enum_declaration_token1, - anon_sym_string, - anon_sym_int, - 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, + ACTIONS(2312), 1, anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [28181] = 21, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2321), 1, - anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, STATE(1014), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1750), 9, + ACTIONS(1694), 7, 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, - [28262] = 24, + [28971] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - ACTIONS(2359), 1, - aux_sym_binary_expression_token2, - ACTIONS(2361), 1, + ACTIONS(2348), 1, aux_sym_binary_expression_token3, - ACTIONS(2363), 1, - aux_sym_binary_expression_token4, STATE(1015), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2295), 6, + ACTIONS(2262), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [28349] = 24, + [29058] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(5), 1, + sym_comment, + STATE(1016), 1, + sym_text_interpolation, + ACTIONS(2352), 6, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_POUND_LBRACK, + anon_sym_DOLLAR, + ACTIONS(2350), 29, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + aux_sym_enum_declaration_token1, + anon_sym_string, + anon_sym_int, + 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_QMARK, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [29107] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - ACTIONS(2359), 1, - aux_sym_binary_expression_token2, - ACTIONS(2361), 1, - aux_sym_binary_expression_token3, - ACTIONS(2363), 1, - aux_sym_binary_expression_token4, - STATE(1016), 1, + STATE(1017), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2309), 6, + ACTIONS(1694), 8, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [28436] = 23, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [29190] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - ACTIONS(2359), 1, - aux_sym_binary_expression_token2, - ACTIONS(2363), 1, - aux_sym_binary_expression_token4, - STATE(1017), 1, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + STATE(1018), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1750), 7, + ACTIONS(2260), 6, 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_token3, - [28521] = 15, + [29277] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2329), 1, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2343), 1, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - STATE(1018), 1, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + STATE(1019), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1752), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2341), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1750), 13, + ACTIONS(1975), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [28590] = 24, + [29364] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(1696), 1, + anon_sym_QMARK, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2327), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - ACTIONS(2359), 1, - aux_sym_binary_expression_token2, - ACTIONS(2361), 1, - aux_sym_binary_expression_token3, - ACTIONS(2363), 1, - aux_sym_binary_expression_token4, - STATE(1019), 1, + STATE(1020), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2289), 6, + ACTIONS(1694), 11, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [28677] = 21, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + [29441] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - STATE(1020), 1, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + STATE(1021), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2285), 9, + ACTIONS(2280), 6, 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, - [28758] = 24, + [29528] = 18, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(1696), 1, + anon_sym_QMARK, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2327), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, - anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - ACTIONS(2359), 1, - aux_sym_binary_expression_token2, - ACTIONS(2361), 1, - aux_sym_binary_expression_token3, - ACTIONS(2363), 1, - aux_sym_binary_expression_token4, - STATE(1021), 1, + STATE(1022), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2287), 6, + ACTIONS(1694), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [28845] = 21, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [29603] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_QMARK, - ACTIONS(2321), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - STATE(1022), 1, + STATE(1023), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1750), 9, + ACTIONS(1694), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103328,45 +103917,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [28926] = 13, + [29684] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2343), 1, - anon_sym_GT_EQ, - ACTIONS(2347), 1, - anon_sym_DOT, - ACTIONS(2351), 1, - anon_sym_PERCENT, - STATE(1023), 1, + STATE(1024), 1, sym_text_interpolation, - ACTIONS(2325), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2345), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2349), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2341), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1752), 5, + ACTIONS(1696), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1750), 17, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1694), 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, @@ -103379,195 +103956,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [28991] = 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [29735] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2303), 1, - anon_sym_QMARK, - ACTIONS(2321), 1, - anon_sym_AMP, - ACTIONS(2323), 1, - anon_sym_PIPE, - ACTIONS(2327), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, - anon_sym_AMP_AMP, - ACTIONS(2335), 1, - anon_sym_CARET, - ACTIONS(2343), 1, - anon_sym_GT_EQ, - ACTIONS(2347), 1, - anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - STATE(1024), 1, + STATE(1025), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2345), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(1696), 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(2339), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2301), 9, + ACTIONS(1694), 21, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [29072] = 24, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [29792] = 16, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2323), 1, - anon_sym_PIPE, - ACTIONS(2327), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, - anon_sym_AMP_AMP, - ACTIONS(2335), 1, - anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - ACTIONS(2359), 1, - aux_sym_binary_expression_token2, - ACTIONS(2361), 1, - aux_sym_binary_expression_token3, - ACTIONS(2363), 1, - aux_sym_binary_expression_token4, - STATE(1025), 1, + STATE(1026), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(1696), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2293), 6, + ACTIONS(1694), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [29159] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1026), 1, - sym_text_interpolation, - ACTIONS(2367), 6, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_POUND_LBRACK, - anon_sym_DOLLAR, - ACTIONS(2365), 29, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - aux_sym_enum_declaration_token1, - anon_sym_string, - anon_sym_int, - 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_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [29208] = 10, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [29863] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2351), 1, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, anon_sym_PERCENT, STATE(1027), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1752), 8, + ACTIONS(1696), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103576,7 +104096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1750), 19, + ACTIONS(1694), 18, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103595,58 +104115,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_DOT, - [29267] = 21, + [29924] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(1696), 1, + anon_sym_QMARK, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, STATE(1028), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2313), 9, + ACTIONS(1694), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103656,129 +104175,128 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [29348] = 6, + [30005] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(5), 1, sym_comment, - ACTIONS(2329), 1, - anon_sym_STAR_STAR, STATE(1029), 1, sym_text_interpolation, - ACTIONS(1752), 10, + ACTIONS(2356), 6, anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_POUND_LBRACK, + anon_sym_DOLLAR, + ACTIONS(2354), 29, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + aux_sym_enum_declaration_token1, + anon_sym_string, + anon_sym_int, + 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_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1750), 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, - [29399] = 24, + 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_false, + anon_sym_null, + anon_sym_true, + sym_name, + [30054] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - ACTIONS(2359), 1, - aux_sym_binary_expression_token2, - ACTIONS(2361), 1, + ACTIONS(2348), 1, aux_sym_binary_expression_token3, - ACTIONS(2363), 1, - aux_sym_binary_expression_token4, STATE(1030), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2291), 6, + ACTIONS(2266), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [29486] = 8, + [30141] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, STATE(1031), 1, sym_text_interpolation, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1752), 8, + ACTIONS(1696), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103787,7 +104305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1750), 23, + ACTIONS(1694), 23, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103811,109 +104329,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - [29541] = 22, + [30196] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - ACTIONS(2359), 1, - aux_sym_binary_expression_token2, STATE(1032), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1750), 8, + ACTIONS(2308), 9, 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, - [29624] = 16, + [30277] = 17, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2343), 1, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, STATE(1033), 1, sym_text_interpolation, - ACTIONS(1752), 2, + ACTIONS(1696), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1750), 13, + ACTIONS(1694), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103926,51 +104445,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - [29695] = 17, + [30350] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, - anon_sym_AMP, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_CARET, - ACTIONS(2343), 1, - anon_sym_GT_EQ, - ACTIONS(2347), 1, - anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, STATE(1034), 1, sym_text_interpolation, - ACTIONS(1752), 2, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 8, + anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2325), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1694), 19, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DOT, + [30409] = 15, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + STATE(1035), 1, + sym_text_interpolation, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(1696), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1750), 12, + ACTIONS(1694), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103983,29 +104547,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [29768] = 11, + anon_sym_CARET, + [30478] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2329), 1, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2347), 1, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - STATE(1035), 1, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + STATE(1036), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2345), 2, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1752), 8, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2268), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + [30565] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + STATE(1037), 1, + sym_text_interpolation, + ACTIONS(1696), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104014,11 +104629,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1750), 18, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1694), 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, @@ -104033,298 +104652,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [29829] = 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [30616] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_QMARK, - ACTIONS(2321), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2329), 1, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2333), 1, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - STATE(1036), 1, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + STATE(1038), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1750), 11, + ACTIONS(2264), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - [29906] = 24, + [30703] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2272), 1, + anon_sym_QMARK, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - ACTIONS(2359), 1, - aux_sym_binary_expression_token2, - ACTIONS(2361), 1, - aux_sym_binary_expression_token3, - ACTIONS(2363), 1, - aux_sym_binary_expression_token4, - STATE(1037), 1, + STATE(1039), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2281), 6, + ACTIONS(2270), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [29993] = 24, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [30784] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - ACTIONS(2359), 1, - aux_sym_binary_expression_token2, - ACTIONS(2361), 1, - aux_sym_binary_expression_token3, - ACTIONS(2363), 1, - aux_sym_binary_expression_token4, - STATE(1038), 1, + STATE(1040), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2311), 6, + ACTIONS(2278), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [30080] = 18, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [30865] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1752), 1, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + STATE(1041), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1696), 5, + anon_sym_AMP, anon_sym_QMARK, - ACTIONS(2321), 1, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1694), 17, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [30930] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2329), 1, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2335), 1, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - STATE(1039), 1, + STATE(1042), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1750), 12, + ACTIONS(2306), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [30155] = 21, + [31011] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2276), 1, + anon_sym_QMARK, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - STATE(1040), 1, + STATE(1043), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2315), 9, + ACTIONS(2274), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -104334,129 +105011,255 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [30236] = 24, + [31092] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - ACTIONS(2359), 1, - aux_sym_binary_expression_token2, - ACTIONS(2361), 1, + ACTIONS(2348), 1, aux_sym_binary_expression_token3, - ACTIONS(2363), 1, - aux_sym_binary_expression_token4, - STATE(1041), 1, + ACTIONS(2358), 1, + anon_sym_EQ_GT, + STATE(1044), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2299), 6, + ACTIONS(2149), 5, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [30323] = 6, + [31181] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2329), 1, - anon_sym_STAR_STAR, - STATE(1042), 1, - sym_text_interpolation, - ACTIONS(1752), 10, + ACTIONS(2310), 1, anon_sym_AMP, + ACTIONS(2312), 1, anon_sym_QMARK, + ACTIONS(2314), 1, anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2330), 1, + anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + STATE(1045), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1750), 24, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2256), 6, 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, + [31268] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + STATE(1046), 1, + sym_text_interpolation, + ACTIONS(2362), 6, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_POUND_LBRACK, + anon_sym_DOLLAR, + ACTIONS(2360), 29, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + aux_sym_enum_declaration_token1, + anon_sym_string, + anon_sym_int, + 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_QMARK, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [31317] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_AMP, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, + ACTIONS(2324), 1, aux_sym_binary_expression_token4, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, + ACTIONS(2328), 1, anon_sym_AMP_AMP, + ACTIONS(2330), 1, anon_sym_CARET, + ACTIONS(2338), 1, + anon_sym_GT_EQ, + ACTIONS(2342), 1, + anon_sym_DOT, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + STATE(1047), 1, + sym_text_interpolation, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [30374] = 5, + ACTIONS(2304), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + [31404] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1043), 1, + STATE(1048), 1, sym_text_interpolation, - ACTIONS(2371), 6, + ACTIONS(2366), 6, anon_sym_AMP, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOT_DOT_DOT, anon_sym_POUND_LBRACK, anon_sym_DOLLAR, - ACTIONS(2369), 29, + ACTIONS(2364), 29, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -104486,151 +105289,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [30423] = 24, + [31453] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - ACTIONS(2359), 1, - aux_sym_binary_expression_token2, - ACTIONS(2361), 1, + ACTIONS(2348), 1, aux_sym_binary_expression_token3, - ACTIONS(2363), 1, - aux_sym_binary_expression_token4, - STATE(1044), 1, + STATE(1049), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2164), 6, + ACTIONS(2258), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [30510] = 25, + [31540] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2376), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2378), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2390), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2398), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2402), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2406), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, + STATE(1050), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2280), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + [31626] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, anon_sym_QMARK, - ACTIONS(2359), 1, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, aux_sym_binary_expression_token2, - ACTIONS(2361), 1, + ACTIONS(2382), 1, aux_sym_binary_expression_token3, - ACTIONS(2363), 1, + ACTIONS(2384), 1, aux_sym_binary_expression_token4, - ACTIONS(2373), 1, - anon_sym_EQ_GT, - STATE(1045), 1, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1051), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2404), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2012), 5, + ACTIONS(2266), 5, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, - [30599] = 9, + [31712] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2329), 1, - anon_sym_STAR_STAR, - ACTIONS(2351), 1, - anon_sym_PERCENT, - STATE(1046), 1, + STATE(1052), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(1907), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1905), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2349), 2, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [31760] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1053), 1, + sym_text_interpolation, + ACTIONS(2404), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1752), 8, + ACTIONS(1696), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104639,12 +105542,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1750), 21, + ACTIONS(1694), 22, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_DASH, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -104661,14 +105565,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - [30656] = 5, + [31814] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1047), 1, + STATE(1054), 1, sym_text_interpolation, - ACTIONS(2054), 10, + ACTIONS(2039), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104679,7 +105583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2052), 24, + ACTIONS(2037), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104704,14 +105608,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [30704] = 5, + [31862] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1048), 1, + STATE(1055), 1, sym_text_interpolation, - ACTIONS(2198), 10, + ACTIONS(1997), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104722,7 +105626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2196), 24, + ACTIONS(1995), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104747,21 +105651,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [30752] = 8, + [31910] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - STATE(1049), 1, + STATE(1056), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1752), 8, + ACTIONS(1989), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104770,7 +105667,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1750), 22, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1987), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104779,6 +105678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -104793,14 +105693,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - [30806] = 5, + anon_sym_PERCENT, + [31958] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1050), 1, + STATE(1057), 1, sym_text_interpolation, - ACTIONS(2138), 10, + ACTIONS(2159), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104811,7 +105712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2136), 24, + ACTIONS(2157), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104836,75 +105737,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [30854] = 21, + [32006] = 17, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_QMARK, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2383), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, - anon_sym_AMP_AMP, - ACTIONS(2393), 1, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2390), 1, anon_sym_CARET, - ACTIONS(2401), 1, + ACTIONS(2398), 1, anon_sym_GT_EQ, - ACTIONS(2405), 1, + ACTIONS(2402), 1, anon_sym_DOT, - STATE(1051), 1, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1058), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + ACTIONS(1696), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2399), 3, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1750), 8, + ACTIONS(1694), 11, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [30934] = 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [32078] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - STATE(1052), 1, + STATE(1059), 1, sym_text_interpolation, - ACTIONS(1752), 10, + ACTIONS(2031), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104915,7 +105810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1750), 23, + ACTIONS(2029), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104924,6 +105819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -104939,407 +105835,333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [30984] = 21, + [32126] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, + STATE(1060), 1, + sym_text_interpolation, + ACTIONS(2143), 10, anon_sym_AMP, - ACTIONS(2383), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, - anon_sym_AMP_AMP, - ACTIONS(2393), 1, - anon_sym_CARET, - ACTIONS(2401), 1, - anon_sym_GT_EQ, - ACTIONS(2405), 1, - anon_sym_DOT, - ACTIONS(2407), 1, anon_sym_QMARK, - STATE(1053), 1, - sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2395), 2, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2399), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1750), 8, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2141), 24, 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, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [31064] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, - anon_sym_AMP, - ACTIONS(2383), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, anon_sym_AMP_AMP, - ACTIONS(2393), 1, anon_sym_CARET, - ACTIONS(2401), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2405), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - STATE(1054), 1, + anon_sym_PERCENT, + [32174] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1061), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(1538), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2399), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1750), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1536), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - [31148] = 22, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, - anon_sym_AMP, - ACTIONS(2383), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, anon_sym_AMP_AMP, - ACTIONS(2393), 1, anon_sym_CARET, - ACTIONS(2401), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2405), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - STATE(1055), 1, + anon_sym_PERCENT, + [32222] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1062), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(2021), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2399), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1750), 7, + 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, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [31230] = 24, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [32270] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, + ACTIONS(2378), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, - anon_sym_AMP, - ACTIONS(2383), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, - anon_sym_AMP_AMP, - ACTIONS(2393), 1, - anon_sym_CARET, - ACTIONS(2401), 1, + ACTIONS(2398), 1, anon_sym_GT_EQ, - ACTIONS(2405), 1, + ACTIONS(2402), 1, anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, - aux_sym_binary_expression_token3, - STATE(1056), 1, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1063), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2399), 3, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2309), 5, + ACTIONS(1694), 12, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, - [31316] = 19, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [32338] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_QMARK, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2383), 1, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, anon_sym_PIPE, - ACTIONS(2391), 1, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, anon_sym_AMP_AMP, - ACTIONS(2393), 1, + ACTIONS(2390), 1, anon_sym_CARET, - ACTIONS(2401), 1, + ACTIONS(2398), 1, anon_sym_GT_EQ, - ACTIONS(2405), 1, + ACTIONS(2402), 1, anon_sym_DOT, - STATE(1057), 1, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1064), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2399), 3, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1750), 10, + ACTIONS(2308), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - [31392] = 18, + [32418] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_QMARK, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2383), 1, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, anon_sym_PIPE, - ACTIONS(2393), 1, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, anon_sym_CARET, - ACTIONS(2401), 1, + ACTIONS(2398), 1, anon_sym_GT_EQ, - ACTIONS(2405), 1, + ACTIONS(2402), 1, anon_sym_DOT, - STATE(1058), 1, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1065), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2399), 3, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1750), 11, + ACTIONS(2306), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [31466] = 16, + [32498] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, + ACTIONS(2378), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, - anon_sym_AMP, - ACTIONS(2401), 1, - anon_sym_GT_EQ, - ACTIONS(2405), 1, - anon_sym_DOT, - STATE(1059), 1, + STATE(1066), 1, sym_text_interpolation, - ACTIONS(1752), 2, + ACTIONS(1696), 10, + anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2395), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2399), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1750), 12, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1694), 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, @@ -105348,14 +106170,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [31536] = 5, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [32548] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1060), 1, + STATE(1067), 1, sym_text_interpolation, - ACTIONS(2166), 10, + ACTIONS(2163), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105366,7 +106197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2164), 24, + ACTIONS(2161), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105391,47 +106222,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31584] = 13, + [32596] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2401), 1, - anon_sym_GT_EQ, - ACTIONS(2405), 1, - anon_sym_DOT, - STATE(1061), 1, + STATE(1068), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2399), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1752), 5, + ACTIONS(2167), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1750), 16, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2165), 24, 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, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -105441,15 +106259,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [31648] = 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [32644] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1062), 1, + STATE(1069), 1, sym_text_interpolation, - ACTIONS(1599), 10, + ACTIONS(2111), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105460,7 +106283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1597), 24, + ACTIONS(2109), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105485,29 +106308,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31696] = 11, + [32692] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2405), 1, - anon_sym_DOT, - STATE(1063), 1, + STATE(1070), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1752), 8, + ACTIONS(1034), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105516,13 +106324,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1750), 17, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1032), 24, 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, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -105534,24 +106347,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [31756] = 9, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [32740] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - STATE(1064), 1, + STATE(1071), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1752), 8, + ACTIONS(1544), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105560,13 +106367,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1750), 20, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1542), 24, 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, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -105581,14 +106393,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - [31812] = 5, + anon_sym_PERCENT, + [32788] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1065), 1, + STATE(1072), 1, sym_text_interpolation, - ACTIONS(2026), 10, + ACTIONS(1042), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105599,7 +106412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2024), 24, + ACTIONS(1040), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105624,27 +106437,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31860] = 10, + [32836] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - STATE(1066), 1, + STATE(1073), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1752), 8, + ACTIONS(1548), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105653,13 +106453,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1750), 18, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1546), 24, 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, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -105671,17 +106476,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - [31918] = 6, + anon_sym_PERCENT, + [32884] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - STATE(1067), 1, + STATE(1074), 1, sym_text_interpolation, - ACTIONS(1752), 10, + ACTIONS(1552), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105692,7 +106498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1750), 23, + ACTIONS(1550), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105701,6 +106507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -105716,135 +106523,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31968] = 21, + [32932] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, + ACTIONS(2378), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, + ACTIONS(2406), 1, anon_sym_PERCENT, - ACTIONS(2381), 1, - anon_sym_AMP, - ACTIONS(2383), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, - anon_sym_AMP_AMP, - ACTIONS(2393), 1, - anon_sym_CARET, - ACTIONS(2401), 1, - anon_sym_GT_EQ, - ACTIONS(2405), 1, - anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - STATE(1068), 1, + STATE(1075), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2399), 3, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 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(2397), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2285), 8, + ACTIONS(1694), 18, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [32048] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, - anon_sym_AMP, - ACTIONS(2383), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, anon_sym_AMP_AMP, - ACTIONS(2393), 1, anon_sym_CARET, - ACTIONS(2401), 1, - anon_sym_GT_EQ, - ACTIONS(2405), 1, - anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, - aux_sym_binary_expression_token3, - STATE(1069), 1, - sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2395), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2399), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2397), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2287), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - aux_sym_binary_expression_token1, - [32134] = 5, + anon_sym_DOT, + [32990] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1070), 1, + STATE(1076), 1, sym_text_interpolation, - ACTIONS(2174), 10, + ACTIONS(2195), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105855,7 +106589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2172), 24, + ACTIONS(2193), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105880,215 +106614,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [32182] = 5, + [33038] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1071), 1, - sym_text_interpolation, - ACTIONS(2074), 10, + ACTIONS(2368), 1, anon_sym_AMP, + ACTIONS(2370), 1, anon_sym_QMARK, + ACTIONS(2372), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2072), 24, - 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, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [32230] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - STATE(1072), 1, - sym_text_interpolation, - ACTIONS(2078), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2076), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_binary_expression_token1, + ACTIONS(2376), 1, anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, anon_sym_STAR_STAR, + ACTIONS(2380), 1, aux_sym_binary_expression_token2, + ACTIONS(2382), 1, aux_sym_binary_expression_token3, + ACTIONS(2384), 1, aux_sym_binary_expression_token4, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, anon_sym_AMP_AMP, + ACTIONS(2390), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2398), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2402), 1, anon_sym_DOT, + ACTIONS(2406), 1, anon_sym_PERCENT, - [32278] = 15, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2401), 1, - anon_sym_GT_EQ, - ACTIONS(2405), 1, - anon_sym_DOT, - STATE(1073), 1, + STATE(1077), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1752), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2399), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2397), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1750), 12, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [32346] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, - anon_sym_AMP, - ACTIONS(2383), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, - anon_sym_AMP_AMP, - ACTIONS(2393), 1, - anon_sym_CARET, - ACTIONS(2401), 1, - anon_sym_GT_EQ, - ACTIONS(2405), 1, - anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, - aux_sym_binary_expression_token3, - STATE(1074), 1, - sym_text_interpolation, - ACTIONS(2377), 2, + ACTIONS(2404), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2385), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2395), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2399), 3, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2299), 5, + ACTIONS(2268), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, - [32432] = 5, + [33124] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1075), 1, + STATE(1078), 1, sym_text_interpolation, - ACTIONS(1591), 10, + ACTIONS(2051), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106099,7 +106694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1589), 24, + ACTIONS(2049), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106124,14 +106719,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [32480] = 5, + [33172] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1076), 1, + STATE(1079), 1, sym_text_interpolation, - ACTIONS(2042), 10, + ACTIONS(2155), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106142,7 +106737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2040), 24, + ACTIONS(2153), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106167,14 +106762,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [32528] = 5, + [33220] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1077), 1, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1080), 1, sym_text_interpolation, - ACTIONS(2130), 10, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106183,18 +106788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2128), 24, + ACTIONS(1694), 20, 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, - anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -106209,15 +106809,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_PERCENT, - [32576] = 5, + [33276] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1078), 1, + STATE(1081), 1, sym_text_interpolation, - ACTIONS(2110), 10, + ACTIONS(1993), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106228,7 +106827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2108), 24, + ACTIONS(1991), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106253,342 +106852,305 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [32624] = 5, + [33324] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1079), 1, - sym_text_interpolation, - ACTIONS(2014), 10, + ACTIONS(2368), 1, anon_sym_AMP, + ACTIONS(2370), 1, anon_sym_QMARK, + ACTIONS(2372), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2012), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_binary_expression_token1, + ACTIONS(2376), 1, anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, anon_sym_STAR_STAR, + ACTIONS(2380), 1, aux_sym_binary_expression_token2, + ACTIONS(2382), 1, aux_sym_binary_expression_token3, + ACTIONS(2384), 1, aux_sym_binary_expression_token4, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, anon_sym_AMP_AMP, + ACTIONS(2390), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2398), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2402), 1, anon_sym_DOT, + ACTIONS(2406), 1, anon_sym_PERCENT, - [32672] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - STATE(1080), 1, + STATE(1082), 1, sym_text_interpolation, - ACTIONS(2010), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2008), 24, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2262), 5, 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, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [32720] = 24, + [33410] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2383), 1, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2376), 1, anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, + ACTIONS(2388), 1, anon_sym_AMP_AMP, - ACTIONS(2393), 1, + ACTIONS(2390), 1, anon_sym_CARET, - ACTIONS(2401), 1, + ACTIONS(2398), 1, anon_sym_GT_EQ, - ACTIONS(2405), 1, + ACTIONS(2402), 1, anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, - aux_sym_binary_expression_token3, - STATE(1081), 1, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1083), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2399), 3, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2289), 5, + ACTIONS(2260), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, - [32806] = 24, + [33496] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, + STATE(1084), 1, + sym_text_interpolation, + ACTIONS(2055), 10, anon_sym_AMP, - ACTIONS(2383), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, - anon_sym_AMP_AMP, - ACTIONS(2393), 1, - anon_sym_CARET, - ACTIONS(2401), 1, - anon_sym_GT_EQ, - ACTIONS(2405), 1, - anon_sym_DOT, - ACTIONS(2407), 1, anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, - aux_sym_binary_expression_token3, - STATE(1082), 1, - sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2395), 2, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2399), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2291), 5, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2053), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, aux_sym_binary_expression_token1, - [32892] = 21, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [33544] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2307), 1, - anon_sym_QMARK, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2383), 1, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2376), 1, anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, + ACTIONS(2388), 1, anon_sym_AMP_AMP, - ACTIONS(2393), 1, + ACTIONS(2390), 1, anon_sym_CARET, - ACTIONS(2401), 1, + ACTIONS(2398), 1, anon_sym_GT_EQ, - ACTIONS(2405), 1, + ACTIONS(2402), 1, anon_sym_DOT, - STATE(1083), 1, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1085), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2399), 3, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2305), 8, + ACTIONS(2258), 5, 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, - [32972] = 21, + [33630] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2383), 1, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2376), 1, anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, + ACTIONS(2388), 1, anon_sym_AMP_AMP, - ACTIONS(2393), 1, + ACTIONS(2390), 1, anon_sym_CARET, - ACTIONS(2401), 1, + ACTIONS(2398), 1, anon_sym_GT_EQ, - ACTIONS(2405), 1, + ACTIONS(2402), 1, anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - STATE(1084), 1, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1086), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2399), 3, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2313), 8, + ACTIONS(2256), 5, 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, - [33052] = 5, + [33716] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1085), 1, + STATE(1087), 1, sym_text_interpolation, - ACTIONS(2022), 10, + ACTIONS(2187), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106599,7 +107161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2020), 24, + ACTIONS(2185), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106624,76 +107186,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33100] = 24, + [33764] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, + ACTIONS(2378), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, - anon_sym_AMP, - ACTIONS(2383), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, - anon_sym_AMP_AMP, - ACTIONS(2393), 1, - anon_sym_CARET, - ACTIONS(2401), 1, - anon_sym_GT_EQ, - ACTIONS(2405), 1, + ACTIONS(2402), 1, anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, - aux_sym_binary_expression_token3, - STATE(1086), 1, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1088), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2399), 3, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 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(2397), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2293), 5, + ACTIONS(1694), 17, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, - [33186] = 5, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [33824] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1087), 1, + STATE(1089), 1, sym_text_interpolation, - ACTIONS(2034), 10, + ACTIONS(2191), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106704,7 +107253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2032), 24, + ACTIONS(2189), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106729,14 +107278,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33234] = 5, + [33872] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1088), 1, + STATE(1090), 1, sym_text_interpolation, - ACTIONS(2046), 10, + ACTIONS(2009), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106747,7 +107296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2044), 24, + ACTIONS(2007), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106772,14 +107321,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33282] = 5, + [33920] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1089), 1, + STATE(1091), 1, sym_text_interpolation, - ACTIONS(2182), 10, + ACTIONS(2179), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106790,7 +107339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2180), 24, + ACTIONS(2177), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106815,14 +107364,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33330] = 5, + [33968] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1090), 1, + STATE(1092), 1, sym_text_interpolation, - ACTIONS(2190), 10, + ACTIONS(2131), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106833,7 +107382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2188), 24, + ACTIONS(2129), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106858,34 +107407,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33378] = 5, + [34016] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1091), 1, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1093), 1, sym_text_interpolation, - ACTIONS(2094), 10, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1696), 5, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2092), 24, + ACTIONS(1694), 16, 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, - anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -106895,20 +107457,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [33426] = 5, + [34080] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1092), 1, + STATE(1094), 1, sym_text_interpolation, - ACTIONS(2158), 10, + ACTIONS(1969), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106919,7 +107476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2156), 24, + ACTIONS(1967), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106944,14 +107501,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33474] = 5, + [34128] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1093), 1, + STATE(1095), 1, sym_text_interpolation, - ACTIONS(2214), 10, + ACTIONS(2063), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106962,7 +107519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 24, + ACTIONS(2061), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106987,14 +107544,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33522] = 5, + [34176] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1094), 1, + STATE(1096), 1, sym_text_interpolation, - ACTIONS(2114), 10, + ACTIONS(2095), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107005,7 +107562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2112), 24, + ACTIONS(2093), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107030,77 +107587,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33570] = 25, + [34224] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, + STATE(1097), 1, + sym_text_interpolation, + ACTIONS(2183), 10, anon_sym_AMP, - ACTIONS(2383), 1, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2387), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2181), 24, + 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, - ACTIONS(2389), 1, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, anon_sym_AMP_AMP, - ACTIONS(2393), 1, anon_sym_CARET, - ACTIONS(2401), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2405), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, - aux_sym_binary_expression_token3, - ACTIONS(2415), 1, - anon_sym_EQ_GT, - STATE(1095), 1, + anon_sym_PERCENT, + [34272] = 16, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1098), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + ACTIONS(1696), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2399), 3, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2012), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_binary_expression_token1, - ACTIONS(2397), 4, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33658] = 5, + ACTIONS(1694), 12, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [34342] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1096), 1, + STATE(1099), 1, sym_text_interpolation, - ACTIONS(2002), 10, + ACTIONS(2043), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107111,7 +107702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2000), 24, + ACTIONS(2041), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107136,14 +107727,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33706] = 5, + [34390] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1097), 1, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + ACTIONS(2408), 1, + anon_sym_EQ_GT, + STATE(1100), 1, sym_text_interpolation, - ACTIONS(2228), 10, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2149), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_binary_expression_token1, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [34478] = 18, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1696), 1, + anon_sym_QMARK, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1101), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 11, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [34552] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1102), 1, + sym_text_interpolation, + ACTIONS(2147), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107154,7 +107864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2226), 24, + ACTIONS(2145), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107179,14 +107889,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33754] = 5, + [34600] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1098), 1, + STATE(1103), 1, sym_text_interpolation, - ACTIONS(2202), 10, + ACTIONS(2175), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107197,7 +107907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2200), 24, + ACTIONS(2173), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107222,14 +107932,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33802] = 5, + [34648] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1099), 1, + STATE(1104), 1, sym_text_interpolation, - ACTIONS(2058), 10, + ACTIONS(2123), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107240,7 +107950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2056), 24, + ACTIONS(2121), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107265,14 +107975,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33850] = 5, + [34696] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1100), 1, + STATE(1105), 1, sym_text_interpolation, - ACTIONS(2030), 10, + ACTIONS(2171), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107283,7 +107993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2028), 24, + ACTIONS(2169), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107308,76 +108018,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33898] = 24, + [34744] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, + STATE(1106), 1, + sym_text_interpolation, + ACTIONS(2013), 10, anon_sym_AMP, - ACTIONS(2383), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, - anon_sym_AMP_AMP, - ACTIONS(2393), 1, - anon_sym_CARET, - ACTIONS(2401), 1, - anon_sym_GT_EQ, - ACTIONS(2405), 1, - anon_sym_DOT, - ACTIONS(2407), 1, anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, - aux_sym_binary_expression_token3, - STATE(1101), 1, - sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2395), 2, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2399), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2281), 5, + 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, aux_sym_binary_expression_token1, - [33984] = 5, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [34792] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1102), 1, + STATE(1107), 1, sym_text_interpolation, - ACTIONS(2222), 10, + ACTIONS(2135), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107388,7 +108079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2220), 24, + ACTIONS(2133), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107413,14 +108104,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34032] = 5, + [34840] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1103), 1, + STATE(1108), 1, sym_text_interpolation, - ACTIONS(2122), 10, + ACTIONS(2067), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107431,7 +108122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2120), 24, + ACTIONS(2065), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107456,14 +108147,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34080] = 5, + [34888] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1104), 1, + STATE(1109), 1, sym_text_interpolation, - ACTIONS(2210), 10, + ACTIONS(2075), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107474,7 +108165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2208), 24, + ACTIONS(2073), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107499,65 +108190,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34128] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2419), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2424), 1, - aux_sym_final_modifier_token1, - ACTIONS(2427), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2430), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2433), 1, - sym_var_modifier, - STATE(1331), 1, - sym__modifier, - STATE(1105), 2, - sym_text_interpolation, - aux_sym_property_declaration_repeat1, - ACTIONS(2422), 3, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOLLAR, - ACTIONS(2436), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1330), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - ACTIONS(2417), 16, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - anon_sym_string, - anon_sym_int, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [34192] = 5, + [34936] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1106), 1, + STATE(1110), 1, sym_text_interpolation, - ACTIONS(2146), 10, + ACTIONS(2017), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107568,7 +108208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2144), 24, + ACTIONS(2015), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107593,14 +108233,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34240] = 5, + [34984] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1107), 1, + STATE(1111), 1, sym_text_interpolation, - ACTIONS(2150), 10, + ACTIONS(2151), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107611,7 +108251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2148), 24, + ACTIONS(2149), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107636,14 +108276,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34288] = 5, + [35032] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1108), 1, + STATE(1112), 1, sym_text_interpolation, - ACTIONS(2070), 10, + ACTIONS(2087), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107654,7 +108294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2068), 24, + ACTIONS(2085), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107679,14 +108319,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34336] = 5, + [35080] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1109), 1, + STATE(1113), 1, sym_text_interpolation, - ACTIONS(2018), 10, + ACTIONS(2083), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107697,7 +108337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2016), 24, + ACTIONS(2081), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107722,231 +108362,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34384] = 5, + [35128] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1110), 1, - sym_text_interpolation, - ACTIONS(2134), 10, + ACTIONS(2368), 1, anon_sym_AMP, + ACTIONS(2370), 1, anon_sym_QMARK, + ACTIONS(2372), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2132), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_binary_expression_token1, + ACTIONS(2376), 1, anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, anon_sym_STAR_STAR, + ACTIONS(2380), 1, aux_sym_binary_expression_token2, + ACTIONS(2382), 1, aux_sym_binary_expression_token3, + ACTIONS(2384), 1, aux_sym_binary_expression_token4, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, anon_sym_AMP_AMP, + ACTIONS(2390), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2398), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2402), 1, anon_sym_DOT, + ACTIONS(2406), 1, anon_sym_PERCENT, - [34432] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - STATE(1111), 1, + STATE(1114), 1, sym_text_interpolation, - ACTIONS(2142), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2140), 24, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2304), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, aux_sym_binary_expression_token1, + [35214] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, anon_sym_AMP_AMP, + ACTIONS(2390), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2398), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2402), 1, anon_sym_DOT, + ACTIONS(2406), 1, anon_sym_PERCENT, - [34480] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - STATE(1112), 1, + STATE(1115), 1, sym_text_interpolation, - ACTIONS(1613), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1611), 24, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2278), 8, 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, - anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, + [35294] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2276), 1, + anon_sym_QMARK, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, anon_sym_AMP_AMP, + ACTIONS(2390), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2398), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2402), 1, anon_sym_DOT, + ACTIONS(2406), 1, anon_sym_PERCENT, - [34528] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - STATE(1113), 1, + STATE(1116), 1, sym_text_interpolation, - ACTIONS(2118), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2116), 24, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2274), 8, 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, - anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, + [35374] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1696), 1, + anon_sym_QMARK, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, anon_sym_AMP_AMP, + ACTIONS(2390), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2398), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2402), 1, anon_sym_DOT, + ACTIONS(2406), 1, anon_sym_PERCENT, - [34576] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - STATE(1114), 1, + STATE(1117), 1, sym_text_interpolation, - ACTIONS(2170), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2168), 24, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 8, 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, - anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [34624] = 6, + [35454] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2439), 1, - aux_sym_binary_expression_token1, - STATE(1115), 1, + STATE(1118), 1, sym_text_interpolation, - ACTIONS(2190), 10, + ACTIONS(1965), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107957,13 +108619,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2188), 23, + ACTIONS(1963), 24, 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, anon_sym_STAR_STAR, aux_sym_binary_expression_token2, @@ -107981,57 +108644,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34674] = 5, + [35502] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1116), 1, - sym_text_interpolation, - ACTIONS(2038), 10, - anon_sym_AMP, + ACTIONS(1696), 1, anon_sym_QMARK, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2372), 1, anon_sym_PIPE, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1119), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2036), 24, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 10, 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, - anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [34722] = 5, + [35578] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1117), 1, + STATE(1120), 1, sym_text_interpolation, - ACTIONS(2126), 10, + ACTIONS(1985), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108042,7 +108719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2124), 24, + ACTIONS(1983), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108067,14 +108744,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34770] = 5, + [35626] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1118), 1, + STATE(1121), 1, sym_text_interpolation, - ACTIONS(2218), 10, + ACTIONS(2099), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108085,7 +108762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2216), 24, + ACTIONS(2097), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108110,57 +108787,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34818] = 5, + [35674] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1119), 1, - sym_text_interpolation, - ACTIONS(2162), 10, + ACTIONS(2368), 1, anon_sym_AMP, + ACTIONS(2370), 1, anon_sym_QMARK, + ACTIONS(2372), 1, anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1122), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2160), 24, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 7, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, aux_sym_binary_expression_token1, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [35756] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, anon_sym_STAR_STAR, + ACTIONS(2380), 1, aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, + ACTIONS(2384), 1, aux_sym_binary_expression_token4, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, anon_sym_AMP_AMP, + ACTIONS(2390), 1, anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1123), 1, + sym_text_interpolation, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [34866] = 5, + ACTIONS(1694), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token3, + [35840] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1120), 1, + ACTIONS(2410), 1, + aux_sym_binary_expression_token1, + STATE(1124), 1, sym_text_interpolation, - ACTIONS(2062), 10, + ACTIONS(2025), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108171,14 +108928,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2060), 24, + ACTIONS(2023), 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, anon_sym_STAR_STAR, aux_sym_binary_expression_token2, @@ -108196,14 +108952,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34914] = 5, + [35890] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1121), 1, + STATE(1125), 1, sym_text_interpolation, - ACTIONS(1998), 10, + ACTIONS(2103), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108214,7 +108970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1996), 24, + ACTIONS(2101), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108239,14 +108995,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34962] = 5, + [35938] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1122), 1, + STATE(1126), 1, sym_text_interpolation, - ACTIONS(2206), 10, + ACTIONS(2107), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108257,7 +109013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2204), 24, + ACTIONS(2105), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108282,69 +109038,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35010] = 17, + [35986] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, + ACTIONS(2272), 1, + anon_sym_QMARK, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2393), 1, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, anon_sym_CARET, - ACTIONS(2401), 1, + ACTIONS(2398), 1, anon_sym_GT_EQ, - ACTIONS(2405), 1, + ACTIONS(2402), 1, anon_sym_DOT, - STATE(1123), 1, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1127), 1, sym_text_interpolation, - ACTIONS(1752), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2399), 3, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1750), 11, + ACTIONS(2270), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [35082] = 5, + [36066] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1124), 1, + STATE(1128), 1, sym_text_interpolation, - ACTIONS(2102), 10, + ACTIONS(2091), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108355,7 +109115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2100), 24, + ACTIONS(2089), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108380,14 +109140,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35130] = 5, + [36114] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1125), 1, + STATE(1129), 1, sym_text_interpolation, - ACTIONS(2050), 10, + ACTIONS(2005), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108398,7 +109158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2048), 24, + ACTIONS(2003), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108423,57 +109183,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35178] = 21, + [36162] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2303), 1, + STATE(1130), 1, + sym_text_interpolation, + ACTIONS(1973), 10, + anon_sym_AMP, anon_sym_QMARK, - ACTIONS(2375), 1, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1971), 24, + 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, anon_sym_STAR_STAR, - ACTIONS(2379), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_PERCENT, - ACTIONS(2381), 1, + [36210] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2383), 1, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2376), 1, anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, + ACTIONS(2388), 1, anon_sym_AMP_AMP, - ACTIONS(2393), 1, + ACTIONS(2390), 1, anon_sym_CARET, - ACTIONS(2401), 1, + ACTIONS(2398), 1, anon_sym_GT_EQ, - ACTIONS(2405), 1, + ACTIONS(2402), 1, anon_sym_DOT, - STATE(1126), 1, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1131), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2399), 3, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2301), 8, + ACTIONS(1694), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108482,14 +109285,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [35258] = 5, + [36290] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1127), 1, + STATE(1132), 1, sym_text_interpolation, - ACTIONS(2186), 10, + ACTIONS(2001), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108500,7 +109303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2184), 24, + ACTIONS(1999), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108525,119 +109328,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35306] = 5, + [36338] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1128), 1, - sym_text_interpolation, - ACTIONS(2106), 10, + ACTIONS(2368), 1, anon_sym_AMP, + ACTIONS(2370), 1, anon_sym_QMARK, + ACTIONS(2372), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2104), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_binary_expression_token1, + ACTIONS(2376), 1, anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, anon_sym_STAR_STAR, + ACTIONS(2380), 1, aux_sym_binary_expression_token2, + ACTIONS(2382), 1, aux_sym_binary_expression_token3, + ACTIONS(2384), 1, aux_sym_binary_expression_token4, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, anon_sym_AMP_AMP, + ACTIONS(2390), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2398), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2402), 1, anon_sym_DOT, + ACTIONS(2406), 1, anon_sym_PERCENT, - [35354] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, - anon_sym_AMP, - ACTIONS(2383), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, - anon_sym_AMP_AMP, - ACTIONS(2393), 1, - anon_sym_CARET, - ACTIONS(2401), 1, - anon_sym_GT_EQ, - ACTIONS(2405), 1, - anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, - aux_sym_binary_expression_token3, - STATE(1129), 1, + STATE(1133), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2399), 3, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2164), 5, + ACTIONS(2264), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, - [35440] = 5, + [36424] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1130), 1, + STATE(1134), 1, sym_text_interpolation, - ACTIONS(2066), 10, + ACTIONS(2059), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108648,7 +109408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2064), 24, + ACTIONS(2057), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108673,14 +109433,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35488] = 5, + [36472] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1131), 1, + STATE(1135), 1, sym_text_interpolation, - ACTIONS(2086), 10, + ACTIONS(2035), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108691,7 +109451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2084), 24, + ACTIONS(2033), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108716,14 +109476,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35536] = 5, + [36520] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1132), 1, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1136), 1, sym_text_interpolation, - ACTIONS(1034), 10, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1975), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + [36606] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1137), 1, + sym_text_interpolation, + ACTIONS(1763), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108734,7 +109556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1032), 24, + ACTIONS(1761), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108759,14 +109581,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35584] = 5, + [36654] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1133), 1, + STATE(1138), 1, sym_text_interpolation, - ACTIONS(2090), 10, + ACTIONS(2115), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108777,7 +109599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2088), 24, + ACTIONS(2113), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108802,14 +109624,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35632] = 5, + [36702] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1134), 1, + STATE(1139), 1, sym_text_interpolation, - ACTIONS(2098), 10, + ACTIONS(2047), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108820,7 +109642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2096), 24, + ACTIONS(2045), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108845,14 +109667,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35680] = 5, + [36750] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1135), 1, + STATE(1140), 1, sym_text_interpolation, - ACTIONS(2154), 10, + ACTIONS(1977), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108863,7 +109685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2152), 24, + ACTIONS(1975), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108888,76 +109710,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35728] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, - anon_sym_AMP, - ACTIONS(2383), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, - anon_sym_AMP_AMP, - ACTIONS(2393), 1, - anon_sym_CARET, - ACTIONS(2401), 1, - anon_sym_GT_EQ, - ACTIONS(2405), 1, - anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, - aux_sym_binary_expression_token3, - STATE(1136), 1, - sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2395), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2399), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2397), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2311), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - aux_sym_binary_expression_token1, - [35814] = 5, + [36798] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1137), 1, + STATE(1141), 1, sym_text_interpolation, - ACTIONS(2082), 10, + ACTIONS(2119), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108968,7 +109728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2080), 24, + ACTIONS(2117), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108993,14 +109753,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35862] = 5, + [36846] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1138), 1, + STATE(1142), 1, sym_text_interpolation, - ACTIONS(1585), 10, + ACTIONS(2127), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109011,7 +109771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1583), 24, + ACTIONS(2125), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109036,14 +109796,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35910] = 5, + [36894] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1139), 1, + STATE(1143), 1, sym_text_interpolation, - ACTIONS(2006), 10, + ACTIONS(2071), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109054,7 +109814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2004), 24, + ACTIONS(2069), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109079,135 +109839,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35958] = 21, + [36942] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, + ACTIONS(2378), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, + STATE(1144), 1, + sym_text_interpolation, + ACTIONS(1696), 10, anon_sym_AMP, - ACTIONS(2383), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, - anon_sym_AMP_AMP, - ACTIONS(2393), 1, - anon_sym_CARET, - ACTIONS(2401), 1, - anon_sym_GT_EQ, - ACTIONS(2405), 1, - anon_sym_DOT, - ACTIONS(2407), 1, anon_sym_QMARK, - STATE(1140), 1, - sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2395), 2, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2399), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2315), 8, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1694), 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, - [36038] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, - anon_sym_AMP, - ACTIONS(2383), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, anon_sym_AMP_AMP, - ACTIONS(2393), 1, anon_sym_CARET, - ACTIONS(2401), 1, - anon_sym_GT_EQ, - ACTIONS(2405), 1, - anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, - aux_sym_binary_expression_token3, - STATE(1141), 1, - sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2395), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2399), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2397), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2295), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - aux_sym_binary_expression_token1, - [36124] = 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [36992] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1142), 1, + STATE(1145), 1, sym_text_interpolation, - ACTIONS(2178), 10, + ACTIONS(2025), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109218,7 +109901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2176), 24, + ACTIONS(2023), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109243,14 +109926,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [36172] = 5, + [37040] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1143), 1, + STATE(1146), 1, sym_text_interpolation, - ACTIONS(2194), 10, + ACTIONS(1981), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109261,7 +109944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2192), 24, + ACTIONS(1979), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109286,14 +109969,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [36220] = 5, + [37088] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1144), 1, + STATE(1147), 1, sym_text_interpolation, - ACTIONS(1595), 10, + ACTIONS(2139), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109304,7 +109987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1593), 24, + ACTIONS(2137), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109329,14 +110012,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [36268] = 5, + [37136] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1145), 1, + STATE(1148), 1, sym_text_interpolation, - ACTIONS(1876), 10, + ACTIONS(1570), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109347,7 +110030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1874), 24, + ACTIONS(1568), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109372,14 +110055,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [36316] = 5, + [37184] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1146), 1, + STATE(1149), 1, sym_text_interpolation, - ACTIONS(1038), 10, + ACTIONS(2079), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109390,7 +110073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1036), 24, + ACTIONS(2077), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109415,90 +110098,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [36364] = 24, + [37232] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2426), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2428), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1147), 1, + STATE(1150), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2293), 4, + ACTIONS(2256), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36449] = 11, + [37317] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2451), 1, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2475), 1, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1148), 1, + STATE(1151), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2278), 7, + 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, + [37396] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1152), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1752), 8, + ACTIONS(1696), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109507,7 +110248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1750), 16, + ACTIONS(1694), 16, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -109524,50 +110265,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [36508] = 19, + [37455] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1733), 1, + ACTIONS(1686), 1, anon_sym_LPAREN, - ACTIONS(1735), 1, + ACTIONS(1688), 1, anon_sym_QMARK, - ACTIONS(2481), 1, + ACTIONS(2452), 1, sym_name, - STATE(1149), 1, + STATE(1153), 1, sym_text_interpolation, - STATE(1417), 1, + STATE(1423), 1, sym__types, - STATE(1427), 1, + STATE(1433), 1, sym_qualified_name, - STATE(1619), 1, - sym__type, - STATE(1861), 1, + STATE(1636), 1, + sym_type, + STATE(1896), 1, sym_const_element, - STATE(2462), 1, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(2564), 1, + STATE(2562), 1, sym__reserved_identifier, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - ACTIONS(2483), 3, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1424), 3, + STATE(1435), 3, sym_named_type, sym_optional_type, sym_primitive_type, - STATE(1477), 3, + STATE(1479), 3, sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - ACTIONS(1729), 12, + ACTIONS(1684), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -109580,208 +110321,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [36583] = 16, + [37530] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2451), 1, - anon_sym_STAR_STAR, - ACTIONS(2471), 1, - anon_sym_GT_EQ, - ACTIONS(2475), 1, - anon_sym_DOT, - ACTIONS(2479), 1, - anon_sym_PERCENT, - STATE(1150), 1, - sym_text_interpolation, - ACTIONS(1752), 2, + ACTIONS(2414), 1, anon_sym_QMARK, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2447), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2465), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2473), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2477), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2469), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2467), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1750), 11, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_binary_expression_token1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, + ACTIONS(2426), 1, aux_sym_binary_expression_token3, + ACTIONS(2428), 1, aux_sym_binary_expression_token4, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, anon_sym_AMP_AMP, + ACTIONS(2434), 1, anon_sym_CARET, - [36652] = 19, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1752), 1, - anon_sym_QMARK, - ACTIONS(2441), 1, - anon_sym_AMP, - ACTIONS(2445), 1, - anon_sym_PIPE, - ACTIONS(2451), 1, - anon_sym_STAR_STAR, - ACTIONS(2461), 1, - anon_sym_AMP_AMP, - ACTIONS(2463), 1, - anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1151), 1, + STATE(1154), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1750), 9, + ACTIONS(2268), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - [36727] = 21, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37615] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2303), 1, - anon_sym_QMARK, - ACTIONS(2441), 1, - anon_sym_AMP, - ACTIONS(2445), 1, - anon_sym_PIPE, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2459), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, - anon_sym_AMP_AMP, - ACTIONS(2463), 1, - anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1152), 1, + STATE(1155), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(1696), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2301), 7, - 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, - [36806] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2451), 1, - anon_sym_STAR_STAR, - ACTIONS(2471), 1, - anon_sym_GT_EQ, - ACTIONS(2475), 1, - anon_sym_DOT, - ACTIONS(2479), 1, - anon_sym_PERCENT, - STATE(1153), 1, - sym_text_interpolation, - ACTIONS(2447), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2473), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2477), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2469), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1752), 5, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1750), 15, + ACTIONS(1694), 11, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -109793,255 +110434,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [36869] = 22, + [37682] = 19, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1686), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_QMARK, + ACTIONS(2452), 1, + sym_name, + STATE(1156), 1, + sym_text_interpolation, + STATE(1423), 1, + sym__types, + STATE(1433), 1, + sym_qualified_name, + STATE(1614), 1, + sym_type, + STATE(1788), 1, + sym_const_element, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2562), 1, + sym__reserved_identifier, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [37757] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2459), 1, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1154), 1, + STATE(1157), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1750), 6, + ACTIONS(2264), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [36950] = 21, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37842] = 17, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_QMARK, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2445), 1, - anon_sym_PIPE, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2459), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, - anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1155), 1, + STATE(1158), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(1696), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1750), 7, + ACTIONS(1694), 10, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [37029] = 23, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [37913] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2456), 1, + anon_sym_COLON, + STATE(1159), 1, + sym_text_interpolation, + ACTIONS(2111), 10, anon_sym_AMP, - ACTIONS(2443), 1, anon_sym_QMARK, - ACTIONS(2445), 1, anon_sym_PIPE, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, - anon_sym_STAR_STAR, - ACTIONS(2453), 1, - aux_sym_binary_expression_token2, - ACTIONS(2457), 1, - aux_sym_binary_expression_token4, - ACTIONS(2459), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, - anon_sym_AMP_AMP, - ACTIONS(2463), 1, - anon_sym_CARET, - ACTIONS(2471), 1, - anon_sym_GT_EQ, - ACTIONS(2475), 1, - anon_sym_DOT, - ACTIONS(2479), 1, - anon_sym_PERCENT, - STATE(1156), 1, - sym_text_interpolation, - ACTIONS(2447), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2477), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2469), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1750), 5, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2109), 22, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - [37112] = 21, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2441), 1, - anon_sym_AMP, - ACTIONS(2443), 1, - anon_sym_QMARK, - ACTIONS(2445), 1, - anon_sym_PIPE, - ACTIONS(2449), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, anon_sym_STAR_STAR, - ACTIONS(2459), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, anon_sym_CARET, - ACTIONS(2471), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2475), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2479), 1, anon_sym_PERCENT, - STATE(1157), 1, + [37962] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1160), 1, sym_text_interpolation, - ACTIONS(2447), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2465), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2473), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(1696), 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(2467), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1750), 7, + ACTIONS(1694), 21, 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, - [37191] = 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [38015] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2451), 1, - anon_sym_STAR_STAR, - STATE(1158), 1, + ACTIONS(2456), 1, + anon_sym_COLON, + STATE(1161), 1, sym_text_interpolation, - ACTIONS(1752), 10, + ACTIONS(2091), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -110052,14 +110713,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1750), 22, + ACTIONS(2089), 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, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -110075,57 +110736,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [37240] = 21, + [38064] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2459), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1159), 1, + STATE(1162), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2285), 7, + ACTIONS(2308), 7, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -110133,157 +110794,112 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [37319] = 24, + [38143] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2426), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2428), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1160), 1, + STATE(1163), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2280), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37404] = 24, + [38228] = 16, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, - anon_sym_QMARK, - ACTIONS(2445), 1, - anon_sym_PIPE, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, - aux_sym_binary_expression_token2, - ACTIONS(2455), 1, - aux_sym_binary_expression_token3, - ACTIONS(2457), 1, - aux_sym_binary_expression_token4, - ACTIONS(2459), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, - anon_sym_AMP_AMP, - ACTIONS(2463), 1, - anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1161), 1, + STATE(1164), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(1696), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2287), 4, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_binary_expression_token1, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37489] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2451), 1, - anon_sym_STAR_STAR, - ACTIONS(2479), 1, - anon_sym_PERCENT, - STATE(1162), 1, - sym_text_interpolation, - ACTIONS(2477), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1752), 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(1750), 21, + ACTIONS(1694), 11, 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, @@ -110292,65 +110908,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [37542] = 21, + [38297] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2459), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1163), 1, + STATE(1165), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2313), 7, + ACTIONS(2306), 7, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -110358,57 +110966,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [37621] = 21, + [38376] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2307), 1, + ACTIONS(1696), 1, anon_sym_QMARK, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2459), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1164), 1, + STATE(1166), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2305), 7, + ACTIONS(1694), 7, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -110416,106 +111024,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [37700] = 19, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1733), 1, - anon_sym_LPAREN, - ACTIONS(1735), 1, - anon_sym_QMARK, - ACTIONS(2481), 1, - sym_name, - STATE(1165), 1, - sym_text_interpolation, - STATE(1417), 1, - sym__types, - STATE(1427), 1, - sym_qualified_name, - STATE(1630), 1, - sym__type, - STATE(1866), 1, - sym_const_element, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2564), 1, - sym__reserved_identifier, - STATE(2626), 1, - sym_namespace_name, - ACTIONS(2483), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1424), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1477), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - ACTIONS(1729), 12, - 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_false, - anon_sym_null, - anon_sym_true, - [37775] = 15, + [38455] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2471), 1, - anon_sym_GT_EQ, - ACTIONS(2475), 1, - anon_sym_DOT, - ACTIONS(2479), 1, - anon_sym_PERCENT, - STATE(1166), 1, + STATE(1167), 1, sym_text_interpolation, - ACTIONS(2447), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2465), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2473), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2477), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1752), 3, + ACTIONS(1696), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2469), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1750), 11, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1694), 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, @@ -110524,552 +111058,518 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [37842] = 19, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1733), 1, - anon_sym_LPAREN, - ACTIONS(1735), 1, - anon_sym_QMARK, - ACTIONS(2481), 1, - sym_name, - STATE(1167), 1, - sym_text_interpolation, - STATE(1417), 1, - sym__types, - STATE(1427), 1, - sym_qualified_name, - STATE(1625), 1, - sym__type, - STATE(1780), 1, - sym_const_element, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2564), 1, - sym__reserved_identifier, - STATE(2626), 1, - sym_namespace_name, - ACTIONS(2483), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1424), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1477), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - ACTIONS(1729), 12, - 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_false, - anon_sym_null, - anon_sym_true, - [37917] = 24, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [38504] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2426), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2428), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, STATE(1168), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2289), 4, + ACTIONS(2262), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38002] = 24, + [38589] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2426), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2428), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, + ACTIONS(2458), 1, + anon_sym_EQ_GT, STATE(1169), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2149), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38676] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1170), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(1696), 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(2309), 4, + ACTIONS(1694), 19, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - ACTIONS(2467), 4, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [38087] = 24, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [38731] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2426), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2428), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1170), 1, + STATE(1171), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2291), 4, + ACTIONS(2260), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38172] = 18, + [38816] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_QMARK, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2445), 1, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2451), 1, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2463), 1, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1171), 1, + STATE(1172), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1750), 10, + ACTIONS(2258), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [38245] = 17, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38901] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2272), 1, + anon_sym_QMARK, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2451), 1, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2463), 1, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1172), 1, + STATE(1173), 1, sym_text_interpolation, - ACTIONS(1752), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1750), 10, + ACTIONS(2270), 7, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [38316] = 24, + [38980] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2426), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2428), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1173), 1, + STATE(1174), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2295), 4, + ACTIONS(2266), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38401] = 9, + [39065] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2451), 1, - anon_sym_STAR_STAR, - ACTIONS(2479), 1, - anon_sym_PERCENT, - STATE(1174), 1, - sym_text_interpolation, - ACTIONS(2447), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2477), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1752), 8, - anon_sym_AMP, + ACTIONS(2276), 1, anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1750), 19, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [38456] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, - anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, - aux_sym_binary_expression_token2, - ACTIONS(2455), 1, - aux_sym_binary_expression_token3, - ACTIONS(2457), 1, - aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, STATE(1175), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2281), 4, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_binary_expression_token1, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38541] = 10, + ACTIONS(2274), 7, + 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, + [39144] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2479), 1, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, anon_sym_PERCENT, STATE(1176), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1752), 8, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1696), 5, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1750), 17, + ACTIONS(1694), 15, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -111084,19 +111584,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_DOT, - [38598] = 6, + [39207] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, STATE(1177), 1, sym_text_interpolation, - ACTIONS(1752), 10, + ACTIONS(1696), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -111107,7 +111605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1750), 22, + ACTIONS(1694), 22, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -111130,858 +111628,863 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [38647] = 24, + [39256] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, - aux_sym_binary_expression_token2, - ACTIONS(2455), 1, - aux_sym_binary_expression_token3, - ACTIONS(2457), 1, - aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, STATE(1178), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_binary_expression_token1, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38732] = 19, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1733), 1, - anon_sym_LPAREN, - ACTIONS(1735), 1, - anon_sym_QMARK, - ACTIONS(2481), 1, - sym_name, - STATE(1179), 1, - sym_text_interpolation, - STATE(1417), 1, - sym__types, - STATE(1427), 1, - sym_qualified_name, - STATE(1644), 1, - sym__type, - STATE(1811), 1, - sym_const_element, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2564), 1, - sym__reserved_identifier, - STATE(2626), 1, - sym_namespace_name, - ACTIONS(2483), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1424), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1477), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - ACTIONS(1729), 12, - 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_false, - anon_sym_null, - anon_sym_true, - [38807] = 24, + ACTIONS(1694), 7, + 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, + [39335] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2426), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2428), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1180), 1, + STATE(1179), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2299), 4, + ACTIONS(2304), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38892] = 6, + [39420] = 18, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2485), 1, - anon_sym_COLON, - STATE(1181), 1, - sym_text_interpolation, - ACTIONS(2130), 10, - anon_sym_AMP, + ACTIONS(1696), 1, anon_sym_QMARK, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2416), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2128), 22, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2434), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2442), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2446), 1, anon_sym_DOT, + ACTIONS(2450), 1, anon_sym_PERCENT, - [38941] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2485), 1, - anon_sym_COLON, - STATE(1182), 1, + STATE(1180), 1, sym_text_interpolation, - ACTIONS(2138), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2136), 22, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1694), 10, 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, - anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [38990] = 21, + [39493] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, - anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(1696), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2459), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1183), 1, + STATE(1181), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2315), 7, + ACTIONS(1694), 9, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [39069] = 25, + anon_sym_PIPE_PIPE, + [39568] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2426), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2428), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - ACTIONS(2487), 1, - anon_sym_EQ_GT, - STATE(1184), 1, + STATE(1182), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2012), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_binary_expression_token1, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(1975), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39156] = 24, + [39653] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, - anon_sym_AMP, - ACTIONS(2383), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, - anon_sym_AMP_AMP, - ACTIONS(2393), 1, - anon_sym_CARET, - ACTIONS(2401), 1, - anon_sym_GT_EQ, - ACTIONS(2405), 1, - anon_sym_DOT, - ACTIONS(2407), 1, + ACTIONS(1686), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, - aux_sym_binary_expression_token3, - STATE(1185), 1, + ACTIONS(2452), 1, + sym_name, + STATE(1183), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2395), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2399), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2489), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2397), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [39240] = 24, + STATE(1423), 1, + sym__types, + STATE(1433), 1, + sym_qualified_name, + STATE(1641), 1, + sym_type, + STATE(1836), 1, + sym_const_element, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2562), 1, + sym__reserved_identifier, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [39728] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2383), 1, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2393), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2401), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2405), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, - aux_sym_binary_expression_token3, - STATE(1186), 1, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1184), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2399), 3, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2491), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2397), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39324] = 25, + ACTIONS(1694), 6, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [39809] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, + ACTIONS(1686), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_QMARK, + ACTIONS(2452), 1, + sym_name, + STATE(1185), 1, + sym_text_interpolation, + STATE(1423), 1, + sym__types, + STATE(1433), 1, + sym_qualified_name, + STATE(1585), 1, + sym_type, + STATE(1891), 1, + sym_const_element, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2562), 1, + sym__reserved_identifier, + STATE(2605), 1, + sym_namespace_name, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [39884] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2383), 1, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2393), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2401), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2405), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, - aux_sym_binary_expression_token3, - ACTIONS(2495), 1, - anon_sym_COMMA, - STATE(1187), 1, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1186), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2399), 3, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39410] = 25, + ACTIONS(1694), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token3, + [39967] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - ACTIONS(2381), 1, + STATE(1187), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1696), 8, anon_sym_AMP, - ACTIONS(2383), 1, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2387), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1694), 17, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, anon_sym_AMP_AMP, - ACTIONS(2393), 1, anon_sym_CARET, - ACTIONS(2401), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2405), 1, + anon_sym_LT_EQ_GT, anon_sym_DOT, - ACTIONS(2407), 1, + [40024] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2409), 1, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, + ACTIONS(2426), 1, aux_sym_binary_expression_token3, - ACTIONS(2495), 1, - anon_sym_COMMA, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + ACTIONS(2460), 1, + anon_sym_EQ_GT, STATE(1188), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + ACTIONS(2149), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2497), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2399), 3, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39496] = 25, + [40110] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - ACTIONS(2359), 1, - aux_sym_binary_expression_token2, - ACTIONS(2361), 1, + ACTIONS(2348), 1, aux_sym_binary_expression_token3, - ACTIONS(2363), 1, - aux_sym_binary_expression_token4, - ACTIONS(2499), 1, + ACTIONS(2462), 1, anon_sym_EQ_GT, STATE(1189), 1, sym_text_interpolation, - ACTIONS(2012), 2, + ACTIONS(2149), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(2325), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39582] = 24, + [40196] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2383), 1, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, + ACTIONS(2320), 1, + anon_sym_STAR_STAR, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2393), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2401), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2405), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, + ACTIONS(2346), 1, + anon_sym_PERCENT, + ACTIONS(2348), 1, aux_sym_binary_expression_token3, + ACTIONS(2464), 1, + anon_sym_COMMA, + ACTIONS(2466), 1, + anon_sym_EQ_GT, STATE(1190), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + STATE(2161), 1, + aux_sym_match_condition_list_repeat1, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2399), 3, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2501), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2397), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39666] = 25, + [40284] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2370), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2372), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2376), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2378), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2380), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2382), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2384), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2388), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2390), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2398), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2402), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2406), 1, anon_sym_PERCENT, - ACTIONS(2503), 1, - anon_sym_EQ_GT, STATE(1191), 1, sym_text_interpolation, - ACTIONS(2012), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2447), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2404), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2468), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39752] = 20, + [40368] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(243), 1, + ACTIONS(246), 1, aux_sym_readonly_modifier_token1, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(1676), 1, sym_name, - ACTIONS(1733), 1, + ACTIONS(1686), 1, anon_sym_LPAREN, - ACTIONS(1735), 1, + ACTIONS(1688), 1, anon_sym_QMARK, - ACTIONS(1776), 1, + ACTIONS(1723), 1, anon_sym_DOLLAR, STATE(1192), 1, sym_text_interpolation, - STATE(1257), 1, + STATE(1272), 1, sym_readonly_modifier, - STATE(1417), 1, + STATE(1423), 1, sym__types, - STATE(1427), 1, + STATE(1433), 1, sym_qualified_name, - STATE(2086), 1, + STATE(2133), 1, sym_variable_name, - STATE(2360), 1, - sym__type, - STATE(2462), 1, + STATE(2430), 1, + sym_type, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(1424), 3, + STATE(1435), 3, sym_named_type, sym_optional_type, sym_primitive_type, - STATE(1477), 3, + STATE(1479), 3, sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - ACTIONS(1729), 12, + ACTIONS(1684), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -111994,7485 +112497,7559 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [39828] = 25, + [40444] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2376), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2378), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2390), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2398), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2402), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2406), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - ACTIONS(2359), 1, - aux_sym_binary_expression_token2, - ACTIONS(2361), 1, - aux_sym_binary_expression_token3, - ACTIONS(2363), 1, - aux_sym_binary_expression_token4, - ACTIONS(2505), 1, - anon_sym_EQ_GT, + ACTIONS(2472), 1, + anon_sym_COMMA, STATE(1193), 1, sym_text_interpolation, - ACTIONS(2012), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2325), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2404), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2470), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39914] = 20, + [40530] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, - sym_name, - ACTIONS(1733), 1, - anon_sym_LPAREN, - ACTIONS(1735), 1, + ACTIONS(2368), 1, + anon_sym_AMP, + ACTIONS(2370), 1, anon_sym_QMARK, - ACTIONS(1776), 1, - anon_sym_DOLLAR, + ACTIONS(2372), 1, + anon_sym_PIPE, + ACTIONS(2376), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(2398), 1, + anon_sym_GT_EQ, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + anon_sym_PERCENT, STATE(1194), 1, sym_text_interpolation, - STATE(1282), 1, - sym_readonly_modifier, - STATE(1417), 1, - sym__types, - STATE(1427), 1, - sym_qualified_name, - STATE(2144), 1, - sym_variable_name, - STATE(2247), 1, - sym__type, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2626), 1, - sym_namespace_name, - STATE(1424), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1477), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - ACTIONS(1729), 12, - 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_false, - anon_sym_null, - anon_sym_true, - [39990] = 26, + ACTIONS(2374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2400), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2474), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(2394), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40614] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2312), 1, + anon_sym_QMARK, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2322), 1, + aux_sym_binary_expression_token2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token4, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - ACTIONS(2359), 1, - aux_sym_binary_expression_token2, - ACTIONS(2361), 1, + ACTIONS(2348), 1, aux_sym_binary_expression_token3, - ACTIONS(2363), 1, - aux_sym_binary_expression_token4, - ACTIONS(2507), 1, - anon_sym_COMMA, - ACTIONS(2509), 1, + ACTIONS(2476), 1, anon_sym_EQ_GT, STATE(1195), 1, sym_text_interpolation, - STATE(2096), 1, - aux_sym_match_condition_list_repeat1, - ACTIONS(2325), 2, + ACTIONS(2149), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40078] = 25, + [40700] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2370), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2372), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2376), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2378), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2380), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2382), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2384), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2388), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2390), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2398), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2402), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2406), 1, anon_sym_PERCENT, - ACTIONS(2497), 1, - anon_sym_RPAREN, - ACTIONS(2511), 1, + ACTIONS(2472), 1, anon_sym_COMMA, STATE(1196), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2404), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(2478), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40163] = 24, + [40786] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2370), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2372), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2376), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2378), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2380), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2382), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2384), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2388), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2390), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2398), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2402), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2406), 1, anon_sym_PERCENT, STATE(1197), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2404), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2513), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2469), 3, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2480), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40246] = 28, + [40870] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(313), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2515), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2517), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2519), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2521), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2523), 1, - anon_sym_RBRACE, - ACTIONS(2525), 1, - aux_sym_final_modifier_token1, - ACTIONS(2527), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2529), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(246), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2531), 1, - sym_var_modifier, - STATE(646), 1, - aux_sym_property_declaration_repeat1, - STATE(975), 1, - aux_sym_attribute_list_repeat1, - STATE(1011), 1, - sym_attribute_group, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1686), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_QMARK, + ACTIONS(1723), 1, + anon_sym_DOLLAR, STATE(1198), 1, sym_text_interpolation, - STATE(1230), 1, - aux_sym_declaration_list_repeat1, - STATE(1250), 1, - sym_final_modifier, - STATE(1329), 1, - sym_visibility_modifier, - STATE(1331), 1, - sym__modifier, - STATE(1352), 1, - sym_attribute_list, - STATE(1401), 1, - sym__member_declaration, - STATE(1410), 1, - sym__class_const_declaration, - STATE(1412), 1, - sym__const_declaration, - STATE(1766), 1, - sym__function_definition_header, - ACTIONS(2533), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1330), 3, - sym_abstract_modifier, + STATE(1278), 1, sym_readonly_modifier, - sym_static_modifier, - STATE(1413), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [40337] = 24, + STATE(1423), 1, + sym__types, + STATE(1433), 1, + sym_qualified_name, + STATE(2065), 1, + sym_variable_name, + STATE(2323), 1, + sym_type, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [40946] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2383), 1, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2393), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2401), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2405), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, - aux_sym_binary_expression_token3, + ACTIONS(2450), 1, + anon_sym_PERCENT, STATE(1199), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2535), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2399), 3, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2482), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40420] = 28, + [41029] = 27, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(313), 1, + ACTIONS(318), 1, anon_sym_POUND_LBRACK, - ACTIONS(2515), 1, + ACTIONS(2484), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2517), 1, + ACTIONS(2486), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2519), 1, + ACTIONS(2488), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2521), 1, + ACTIONS(2490), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2525), 1, + ACTIONS(2492), 1, + anon_sym_RBRACE, + ACTIONS(2494), 1, aux_sym_final_modifier_token1, - ACTIONS(2527), 1, + ACTIONS(2496), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2529), 1, + ACTIONS(2498), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2531), 1, + ACTIONS(2500), 1, sym_var_modifier, - ACTIONS(2537), 1, - anon_sym_RBRACE, - STATE(646), 1, - aux_sym_property_declaration_repeat1, - STATE(975), 1, + STATE(638), 1, + aux_sym_class_declaration_repeat1, + STATE(976), 1, aux_sym_attribute_list_repeat1, - STATE(1011), 1, + STATE(1012), 1, + sym_final_modifier, + STATE(1046), 1, sym_attribute_group, STATE(1200), 1, sym_text_interpolation, - STATE(1230), 1, + STATE(1229), 1, aux_sym_declaration_list_repeat1, - STATE(1250), 1, - sym_final_modifier, STATE(1329), 1, - sym_visibility_modifier, - STATE(1331), 1, sym__modifier, - STATE(1352), 1, + STATE(1356), 1, sym_attribute_list, - STATE(1401), 1, - sym__member_declaration, - STATE(1410), 1, - sym__class_const_declaration, - STATE(1412), 1, + STATE(1414), 1, sym__const_declaration, - STATE(1766), 1, + STATE(1417), 1, + sym__class_const_declaration, + STATE(1418), 1, + sym__member_declaration, + STATE(1819), 1, sym__function_definition_header, - ACTIONS(2533), 3, + ACTIONS(2502), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1330), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1413), 3, + STATE(1390), 3, sym_property_declaration, sym_method_declaration, sym_use_declaration, - [40511] = 25, + STATE(1327), 4, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [41118] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2539), 1, - anon_sym_EQ_GT, - ACTIONS(2541), 1, - anon_sym_RPAREN, STATE(1201), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2504), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40596] = 24, + [41201] = 27, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(5), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, - anon_sym_AMP, - ACTIONS(2383), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, - anon_sym_AMP_AMP, - ACTIONS(2393), 1, - anon_sym_CARET, - ACTIONS(2401), 1, - anon_sym_GT_EQ, - ACTIONS(2405), 1, - anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, - aux_sym_binary_expression_token3, - STATE(1202), 1, - sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2395), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2543), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2399), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2397), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40679] = 24, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2486), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2488), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2490), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2506), 1, + anon_sym_RBRACE, + STATE(638), 1, + aux_sym_class_declaration_repeat1, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1012), 1, + sym_final_modifier, + STATE(1046), 1, + sym_attribute_group, + STATE(1202), 1, + sym_text_interpolation, + STATE(1228), 1, + aux_sym_declaration_list_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1356), 1, + sym_attribute_list, + STATE(1414), 1, + sym__const_declaration, + STATE(1417), 1, + sym__class_const_declaration, + STATE(1418), 1, + sym__member_declaration, + STATE(1819), 1, + sym__function_definition_header, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1390), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + STATE(1327), 4, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [41290] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2426), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2428), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, STATE(1203), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2545), 2, + ACTIONS(2508), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2469), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2467), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40762] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, - anon_sym_AMP, - ACTIONS(2383), 1, - anon_sym_PIPE, - ACTIONS(2387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, - anon_sym_AMP_AMP, - ACTIONS(2393), 1, - anon_sym_CARET, - ACTIONS(2401), 1, - anon_sym_GT_EQ, - ACTIONS(2405), 1, - anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, - aux_sym_binary_expression_token3, - STATE(1204), 1, - sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2395), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2547), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2399), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40845] = 24, + [41373] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2426), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2428), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1205), 1, + STATE(1204), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2549), 2, + ACTIONS(2510), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40928] = 24, + [41456] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2426), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2428), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1206), 1, + STATE(1205), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2551), 2, + ACTIONS(2512), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41011] = 24, + [41539] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2224), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - STATE(1207), 1, + ACTIONS(2514), 1, + anon_sym_EQ_GT, + ACTIONS(2516), 1, + anon_sym_RPAREN, + STATE(1206), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2553), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2469), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41094] = 24, + [41624] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2370), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2372), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2376), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2378), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2380), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2382), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2384), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2388), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2390), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2398), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2402), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2406), 1, anon_sym_PERCENT, - STATE(1208), 1, + STATE(1207), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2404), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2555), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2469), 3, + ACTIONS(2518), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41177] = 28, + [41707] = 27, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(313), 1, + ACTIONS(318), 1, anon_sym_POUND_LBRACK, - ACTIONS(2515), 1, + ACTIONS(2484), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2517), 1, + ACTIONS(2486), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2519), 1, + ACTIONS(2488), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2521), 1, + ACTIONS(2490), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2525), 1, + ACTIONS(2494), 1, aux_sym_final_modifier_token1, - ACTIONS(2527), 1, + ACTIONS(2496), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2529), 1, + ACTIONS(2498), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2531), 1, + ACTIONS(2500), 1, sym_var_modifier, - ACTIONS(2557), 1, + ACTIONS(2520), 1, anon_sym_RBRACE, - STATE(646), 1, - aux_sym_property_declaration_repeat1, - STATE(975), 1, + STATE(638), 1, + aux_sym_class_declaration_repeat1, + STATE(976), 1, aux_sym_attribute_list_repeat1, - STATE(1011), 1, + STATE(1012), 1, + sym_final_modifier, + STATE(1046), 1, sym_attribute_group, - STATE(1209), 1, + STATE(1208), 1, sym_text_interpolation, - STATE(1230), 1, + STATE(1229), 1, aux_sym_declaration_list_repeat1, - STATE(1250), 1, - sym_final_modifier, STATE(1329), 1, - sym_visibility_modifier, - STATE(1331), 1, sym__modifier, - STATE(1352), 1, + STATE(1356), 1, sym_attribute_list, - STATE(1401), 1, - sym__member_declaration, - STATE(1410), 1, - sym__class_const_declaration, - STATE(1412), 1, + STATE(1414), 1, sym__const_declaration, - STATE(1766), 1, + STATE(1417), 1, + sym__class_const_declaration, + STATE(1418), 1, + sym__member_declaration, + STATE(1819), 1, sym__function_definition_header, - ACTIONS(2533), 3, + ACTIONS(2502), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1330), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1413), 3, + STATE(1390), 3, sym_property_declaration, sym_method_declaration, sym_use_declaration, - [41268] = 24, + STATE(1327), 4, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [41796] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2383), 1, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2376), 1, anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, + ACTIONS(2388), 1, anon_sym_AMP_AMP, - ACTIONS(2393), 1, + ACTIONS(2390), 1, anon_sym_CARET, - ACTIONS(2401), 1, + ACTIONS(2398), 1, anon_sym_GT_EQ, - ACTIONS(2405), 1, + ACTIONS(2402), 1, anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, - aux_sym_binary_expression_token3, - STATE(1210), 1, + ACTIONS(2406), 1, + anon_sym_PERCENT, + STATE(1209), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2559), 2, + ACTIONS(2404), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2522), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(2399), 3, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41351] = 24, + [41879] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2383), 1, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2393), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2401), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2405), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, - aux_sym_binary_expression_token3, - STATE(1211), 1, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1210), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2561), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2399), 3, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2524), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41434] = 24, + [41962] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2383), 1, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2393), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2401), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2405), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, - aux_sym_binary_expression_token3, - STATE(1212), 1, + ACTIONS(2450), 1, + anon_sym_PERCENT, + ACTIONS(2470), 1, + anon_sym_RPAREN, + ACTIONS(2526), 1, + anon_sym_COMMA, + STATE(1211), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2563), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2399), 3, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41517] = 24, + [42047] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2370), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2372), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2376), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2378), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2380), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2382), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2384), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2388), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2390), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2398), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2402), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2406), 1, anon_sym_PERCENT, - STATE(1213), 1, + STATE(1212), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2404), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2565), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2469), 3, + ACTIONS(2528), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41600] = 25, + [42130] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2370), 1, + anon_sym_QMARK, + ACTIONS(2372), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2376), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2378), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2380), 1, + aux_sym_binary_expression_token2, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, + aux_sym_binary_expression_token4, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2390), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2398), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2402), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2406), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - ACTIONS(2359), 1, - aux_sym_binary_expression_token2, - ACTIONS(2361), 1, - aux_sym_binary_expression_token3, - ACTIONS(2363), 1, - aux_sym_binary_expression_token4, - ACTIONS(2493), 1, - anon_sym_SEMI, - ACTIONS(2567), 1, - anon_sym_COMMA, - STATE(1214), 1, + STATE(1213), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2404), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2530), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41685] = 24, + [42213] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2370), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2372), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2376), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2378), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2380), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2382), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2384), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2388), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2390), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2398), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2402), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2406), 1, anon_sym_PERCENT, - STATE(1215), 1, + STATE(1214), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2404), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2569), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2469), 3, + ACTIONS(2532), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41768] = 24, + [42296] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2370), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2372), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2376), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2378), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2380), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2382), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2384), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2388), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2390), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2398), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2402), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2406), 1, anon_sym_PERCENT, - STATE(1216), 1, + STATE(1215), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2404), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2571), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2469), 3, + ACTIONS(2534), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41851] = 24, + [42379] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2370), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2372), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2376), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2378), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2380), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2382), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2384), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2388), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2390), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2398), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2402), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2406), 1, anon_sym_PERCENT, - STATE(1217), 1, + STATE(1216), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2404), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2573), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2469), 3, + ACTIONS(2536), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41934] = 24, + [42462] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2426), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2428), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1218), 1, + STATE(1217), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2575), 2, + ACTIONS(2538), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42017] = 24, + [42545] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2224), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - STATE(1219), 1, + STATE(1218), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2577), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2469), 3, + ACTIONS(2540), 2, + anon_sym_SEMI, + anon_sym_COLON, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42100] = 24, + [42628] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2383), 1, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2393), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2401), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2405), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - ACTIONS(2409), 1, - aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, - aux_sym_binary_expression_token3, - STATE(1220), 1, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1219), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2579), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2399), 3, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2542), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42183] = 24, + [42711] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, + STATE(1220), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2544), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42794] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2359), 1, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2361), 1, + ACTIONS(2426), 1, aux_sym_binary_expression_token3, - ACTIONS(2363), 1, + ACTIONS(2428), 1, aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + ACTIONS(2478), 1, + anon_sym_RPAREN, + ACTIONS(2526), 1, + anon_sym_COMMA, STATE(1221), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2581), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2341), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42266] = 28, + [42879] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(313), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2515), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2517), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2519), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2521), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2525), 1, - aux_sym_final_modifier_token1, - ACTIONS(2527), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2529), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2531), 1, - sym_var_modifier, - ACTIONS(2583), 1, - anon_sym_RBRACE, - STATE(646), 1, - aux_sym_property_declaration_repeat1, - STATE(975), 1, - aux_sym_attribute_list_repeat1, - STATE(1011), 1, - sym_attribute_group, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, STATE(1222), 1, sym_text_interpolation, - STATE(1229), 1, - aux_sym_declaration_list_repeat1, - STATE(1250), 1, - sym_final_modifier, - STATE(1329), 1, - sym_visibility_modifier, - STATE(1331), 1, - sym__modifier, - STATE(1352), 1, - sym_attribute_list, - STATE(1401), 1, - sym__member_declaration, - STATE(1410), 1, - sym__class_const_declaration, - STATE(1412), 1, - sym__const_declaration, - STATE(1766), 1, - sym__function_definition_header, - ACTIONS(2533), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1330), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1413), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [42357] = 24, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2546), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42962] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, + ACTIONS(2514), 1, + anon_sym_EQ_GT, + ACTIONS(2548), 1, + anon_sym_RPAREN, + STATE(1223), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43047] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2359), 1, + ACTIONS(2416), 1, + anon_sym_PIPE, + ACTIONS(2420), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2361), 1, + ACTIONS(2426), 1, aux_sym_binary_expression_token3, - ACTIONS(2363), 1, + ACTIONS(2428), 1, aux_sym_binary_expression_token4, - STATE(1223), 1, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1224), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2585), 2, + ACTIONS(2550), 2, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2341), 3, + anon_sym_RPAREN, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42440] = 25, + [43130] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2370), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2372), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2376), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2378), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2380), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2382), 1, + aux_sym_binary_expression_token3, + ACTIONS(2384), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2386), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2388), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2390), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2398), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2402), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2406), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2539), 1, - anon_sym_EQ_GT, - ACTIONS(2587), 1, - anon_sym_RPAREN, - STATE(1224), 1, + STATE(1225), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2404), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2552), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2396), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2394), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42525] = 24, + [43213] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, + STATE(1226), 1, + sym_text_interpolation, + ACTIONS(2418), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2436), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2554), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2438), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43296] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2359), 1, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2361), 1, + ACTIONS(2224), 1, aux_sym_binary_expression_token3, - ACTIONS(2363), 1, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - STATE(1225), 1, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2514), 1, + anon_sym_EQ_GT, + ACTIONS(2556), 1, + anon_sym_RPAREN, + STATE(1227), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2589), 2, - anon_sym_COMMA, - anon_sym_EQ_GT, - ACTIONS(2341), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42608] = 28, + [43381] = 27, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(313), 1, + ACTIONS(318), 1, anon_sym_POUND_LBRACK, - ACTIONS(2515), 1, + ACTIONS(2484), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2517), 1, + ACTIONS(2486), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2519), 1, + ACTIONS(2488), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2521), 1, + ACTIONS(2490), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2525), 1, + ACTIONS(2494), 1, aux_sym_final_modifier_token1, - ACTIONS(2527), 1, + ACTIONS(2496), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2529), 1, + ACTIONS(2498), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2531), 1, + ACTIONS(2500), 1, sym_var_modifier, - ACTIONS(2591), 1, + ACTIONS(2558), 1, anon_sym_RBRACE, - STATE(646), 1, - aux_sym_property_declaration_repeat1, - STATE(975), 1, + STATE(638), 1, + aux_sym_class_declaration_repeat1, + STATE(976), 1, aux_sym_attribute_list_repeat1, - STATE(1011), 1, + STATE(1012), 1, + sym_final_modifier, + STATE(1046), 1, sym_attribute_group, - STATE(1198), 1, - aux_sym_declaration_list_repeat1, - STATE(1226), 1, + STATE(1228), 1, sym_text_interpolation, - STATE(1250), 1, - sym_final_modifier, + STATE(1229), 1, + aux_sym_declaration_list_repeat1, STATE(1329), 1, - sym_visibility_modifier, - STATE(1331), 1, sym__modifier, - STATE(1352), 1, + STATE(1356), 1, sym_attribute_list, - STATE(1401), 1, - sym__member_declaration, - STATE(1410), 1, - sym__class_const_declaration, - STATE(1412), 1, + STATE(1414), 1, sym__const_declaration, - STATE(1766), 1, + STATE(1417), 1, + sym__class_const_declaration, + STATE(1418), 1, + sym__member_declaration, + STATE(1819), 1, sym__function_definition_header, - ACTIONS(2533), 3, + ACTIONS(2502), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1330), 3, + STATE(1390), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + STATE(1327), 4, sym_abstract_modifier, sym_readonly_modifier, sym_static_modifier, - STATE(1413), 3, + sym_visibility_modifier, + [43470] = 26, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2560), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2563), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2566), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2569), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2572), 1, + anon_sym_RBRACE, + ACTIONS(2574), 1, + aux_sym_final_modifier_token1, + ACTIONS(2577), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2580), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2583), 1, + sym_var_modifier, + ACTIONS(2589), 1, + anon_sym_POUND_LBRACK, + STATE(638), 1, + aux_sym_class_declaration_repeat1, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1012), 1, + sym_final_modifier, + STATE(1046), 1, + sym_attribute_group, + STATE(1329), 1, + sym__modifier, + STATE(1356), 1, + sym_attribute_list, + STATE(1414), 1, + sym__const_declaration, + STATE(1417), 1, + sym__class_const_declaration, + STATE(1418), 1, + sym__member_declaration, + STATE(1819), 1, + sym__function_definition_header, + STATE(1229), 2, + sym_text_interpolation, + aux_sym_declaration_list_repeat1, + ACTIONS(2586), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1390), 3, sym_property_declaration, sym_method_declaration, sym_use_declaration, - [42699] = 24, + STATE(1327), 4, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [43557] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2426), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2428), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1227), 1, + STATE(1230), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2593), 2, + ACTIONS(2592), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42782] = 28, + [43640] = 27, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(313), 1, + ACTIONS(318), 1, anon_sym_POUND_LBRACK, - ACTIONS(2515), 1, + ACTIONS(2484), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2517), 1, + ACTIONS(2486), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2519), 1, + ACTIONS(2488), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2521), 1, + ACTIONS(2490), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2525), 1, + ACTIONS(2494), 1, aux_sym_final_modifier_token1, - ACTIONS(2527), 1, + ACTIONS(2496), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2529), 1, + ACTIONS(2498), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2531), 1, + ACTIONS(2500), 1, sym_var_modifier, - ACTIONS(2595), 1, + ACTIONS(2594), 1, anon_sym_RBRACE, - STATE(646), 1, - aux_sym_property_declaration_repeat1, - STATE(975), 1, + STATE(638), 1, + aux_sym_class_declaration_repeat1, + STATE(976), 1, aux_sym_attribute_list_repeat1, - STATE(1011), 1, + STATE(1012), 1, + sym_final_modifier, + STATE(1046), 1, sym_attribute_group, - STATE(1200), 1, - aux_sym_declaration_list_repeat1, - STATE(1228), 1, + STATE(1231), 1, sym_text_interpolation, - STATE(1250), 1, - sym_final_modifier, + STATE(1246), 1, + aux_sym_declaration_list_repeat1, STATE(1329), 1, - sym_visibility_modifier, - STATE(1331), 1, sym__modifier, - STATE(1352), 1, + STATE(1356), 1, sym_attribute_list, - STATE(1401), 1, - sym__member_declaration, - STATE(1410), 1, - sym__class_const_declaration, - STATE(1412), 1, + STATE(1414), 1, sym__const_declaration, - STATE(1766), 1, + STATE(1417), 1, + sym__class_const_declaration, + STATE(1418), 1, + sym__member_declaration, + STATE(1819), 1, sym__function_definition_header, - ACTIONS(2533), 3, + ACTIONS(2502), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1330), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1413), 3, + STATE(1390), 3, sym_property_declaration, sym_method_declaration, sym_use_declaration, - [42873] = 28, + STATE(1327), 4, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [43729] = 27, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(313), 1, + ACTIONS(318), 1, anon_sym_POUND_LBRACK, - ACTIONS(2515), 1, + ACTIONS(2484), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2517), 1, + ACTIONS(2486), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2519), 1, + ACTIONS(2488), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2521), 1, + ACTIONS(2490), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2525), 1, + ACTIONS(2494), 1, aux_sym_final_modifier_token1, - ACTIONS(2527), 1, + ACTIONS(2496), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2529), 1, + ACTIONS(2498), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2531), 1, + ACTIONS(2500), 1, sym_var_modifier, - ACTIONS(2597), 1, + ACTIONS(2596), 1, anon_sym_RBRACE, - STATE(646), 1, - aux_sym_property_declaration_repeat1, - STATE(975), 1, + STATE(638), 1, + aux_sym_class_declaration_repeat1, + STATE(976), 1, aux_sym_attribute_list_repeat1, - STATE(1011), 1, + STATE(1012), 1, + sym_final_modifier, + STATE(1046), 1, sym_attribute_group, - STATE(1229), 1, - sym_text_interpolation, - STATE(1230), 1, + STATE(1208), 1, aux_sym_declaration_list_repeat1, - STATE(1250), 1, - sym_final_modifier, + STATE(1232), 1, + sym_text_interpolation, STATE(1329), 1, - sym_visibility_modifier, - STATE(1331), 1, sym__modifier, - STATE(1352), 1, + STATE(1356), 1, sym_attribute_list, - STATE(1401), 1, - sym__member_declaration, - STATE(1410), 1, - sym__class_const_declaration, - STATE(1412), 1, + STATE(1414), 1, sym__const_declaration, - STATE(1766), 1, + STATE(1417), 1, + sym__class_const_declaration, + STATE(1418), 1, + sym__member_declaration, + STATE(1819), 1, sym__function_definition_header, - ACTIONS(2533), 3, + ACTIONS(2502), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1330), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1413), 3, + STATE(1390), 3, sym_property_declaration, sym_method_declaration, sym_use_declaration, - [42964] = 27, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2599), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2602), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2605), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2608), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2611), 1, - anon_sym_RBRACE, - ACTIONS(2613), 1, - aux_sym_final_modifier_token1, - ACTIONS(2616), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2619), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2622), 1, - sym_var_modifier, - ACTIONS(2628), 1, - anon_sym_POUND_LBRACK, - STATE(646), 1, - aux_sym_property_declaration_repeat1, - STATE(975), 1, - aux_sym_attribute_list_repeat1, - STATE(1011), 1, - sym_attribute_group, - STATE(1250), 1, - sym_final_modifier, - STATE(1329), 1, - sym_visibility_modifier, - STATE(1331), 1, - sym__modifier, - STATE(1352), 1, - sym_attribute_list, - STATE(1401), 1, - sym__member_declaration, - STATE(1410), 1, - sym__class_const_declaration, - STATE(1412), 1, - sym__const_declaration, - STATE(1766), 1, - sym__function_definition_header, - STATE(1230), 2, - sym_text_interpolation, - aux_sym_declaration_list_repeat1, - ACTIONS(2625), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1330), 3, + STATE(1327), 4, sym_abstract_modifier, sym_readonly_modifier, sym_static_modifier, - STATE(1413), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [43053] = 25, + sym_visibility_modifier, + [43818] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2312), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2322), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2324), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, + ACTIONS(2348), 1, aux_sym_binary_expression_token3, - ACTIONS(2539), 1, - anon_sym_EQ_GT, - ACTIONS(2631), 1, - anon_sym_RPAREN, - STATE(1231), 1, + ACTIONS(2470), 1, + anon_sym_SEMI, + ACTIONS(2598), 1, + anon_sym_COMMA, + STATE(1233), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43138] = 24, + [43903] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2312), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2322), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2324), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, + ACTIONS(2348), 1, aux_sym_binary_expression_token3, - STATE(1232), 1, + ACTIONS(2478), 1, + anon_sym_SEMI, + ACTIONS(2598), 1, + anon_sym_COMMA, + STATE(1234), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2633), 2, - anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(2269), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43221] = 24, + [43988] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2312), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2322), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, - aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2324), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - STATE(1233), 1, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + STATE(1235), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2635), 2, + ACTIONS(2600), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2469), 3, + anon_sym_RBRACE, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43304] = 24, + [44071] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2426), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2428), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1234), 1, + STATE(1236), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2637), 2, + ACTIONS(2602), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43387] = 24, + [44154] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2312), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2322), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, - aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2324), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - STATE(1235), 1, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + STATE(1237), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2639), 2, + ACTIONS(2604), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2469), 3, + anon_sym_RBRACE, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43470] = 24, + [44237] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2426), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2428), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1236), 1, + STATE(1238), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2641), 2, + ACTIONS(2606), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43553] = 25, + [44320] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2312), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2322), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, - aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2324), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2493), 1, - anon_sym_RPAREN, - ACTIONS(2511), 1, - anon_sym_COMMA, - STATE(1237), 1, + ACTIONS(2348), 1, + aux_sym_binary_expression_token3, + STATE(1239), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2469), 3, + ACTIONS(2608), 2, + anon_sym_COMMA, + anon_sym_EQ_GT, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43638] = 24, + [44403] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2426), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2428), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1238), 1, + STATE(1240), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2643), 2, + ACTIONS(2610), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43721] = 24, + [44486] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2426), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2428), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1239), 1, + STATE(1241), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2645), 2, + ACTIONS(2612), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43804] = 24, + [44569] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PERCENT, - ACTIONS(2381), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2383), 1, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2387), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2391), 1, - anon_sym_AMP_AMP, - ACTIONS(2393), 1, - anon_sym_CARET, - ACTIONS(2401), 1, - anon_sym_GT_EQ, - ACTIONS(2405), 1, - anon_sym_DOT, - ACTIONS(2407), 1, - anon_sym_QMARK, - ACTIONS(2409), 1, + ACTIONS(2422), 1, + anon_sym_STAR_STAR, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2411), 1, - aux_sym_binary_expression_token4, - ACTIONS(2413), 1, + ACTIONS(2426), 1, aux_sym_binary_expression_token3, - STATE(1240), 1, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2432), 1, + anon_sym_AMP_AMP, + ACTIONS(2434), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_GT_EQ, + ACTIONS(2446), 1, + anon_sym_DOT, + ACTIONS(2450), 1, + anon_sym_PERCENT, + STATE(1242), 1, sym_text_interpolation, - ACTIONS(2377), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2395), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2403), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2647), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2399), 3, + ACTIONS(2448), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2614), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2397), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43887] = 25, + [44652] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2414), 1, + anon_sym_QMARK, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2424), 1, + aux_sym_binary_expression_token2, + ACTIONS(2426), 1, + aux_sym_binary_expression_token3, + ACTIONS(2428), 1, + aux_sym_binary_expression_token4, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - ACTIONS(2359), 1, - aux_sym_binary_expression_token2, - ACTIONS(2361), 1, - aux_sym_binary_expression_token3, - ACTIONS(2363), 1, - aux_sym_binary_expression_token4, - ACTIONS(2497), 1, - anon_sym_SEMI, - ACTIONS(2567), 1, - anon_sym_COMMA, - STATE(1241), 1, + STATE(1243), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2616), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43972] = 28, + [44735] = 27, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(313), 1, + ACTIONS(318), 1, anon_sym_POUND_LBRACK, - ACTIONS(2515), 1, + ACTIONS(2484), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2517), 1, + ACTIONS(2486), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2519), 1, + ACTIONS(2488), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2521), 1, + ACTIONS(2490), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2525), 1, + ACTIONS(2494), 1, aux_sym_final_modifier_token1, - ACTIONS(2527), 1, + ACTIONS(2496), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2529), 1, + ACTIONS(2498), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2531), 1, + ACTIONS(2500), 1, sym_var_modifier, - ACTIONS(2649), 1, + ACTIONS(2618), 1, anon_sym_RBRACE, - STATE(646), 1, - aux_sym_property_declaration_repeat1, - STATE(975), 1, + STATE(638), 1, + aux_sym_class_declaration_repeat1, + STATE(976), 1, aux_sym_attribute_list_repeat1, - STATE(1011), 1, + STATE(1012), 1, + sym_final_modifier, + STATE(1046), 1, sym_attribute_group, - STATE(1209), 1, + STATE(1200), 1, aux_sym_declaration_list_repeat1, - STATE(1242), 1, + STATE(1244), 1, sym_text_interpolation, - STATE(1250), 1, - sym_final_modifier, STATE(1329), 1, - sym_visibility_modifier, - STATE(1331), 1, sym__modifier, - STATE(1352), 1, + STATE(1356), 1, sym_attribute_list, - STATE(1401), 1, - sym__member_declaration, - STATE(1410), 1, - sym__class_const_declaration, - STATE(1412), 1, + STATE(1414), 1, sym__const_declaration, - STATE(1766), 1, + STATE(1417), 1, + sym__class_const_declaration, + STATE(1418), 1, + sym__member_declaration, + STATE(1819), 1, sym__function_definition_header, - ACTIONS(2533), 3, + ACTIONS(2502), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1330), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1413), 3, + STATE(1390), 3, sym_property_declaration, sym_method_declaration, sym_use_declaration, - [44063] = 25, + STATE(1327), 4, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [44824] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2539), 1, + ACTIONS(2514), 1, anon_sym_EQ_GT, - ACTIONS(2651), 1, + ACTIONS(2620), 1, anon_sym_RPAREN, - STATE(1243), 1, + STATE(1245), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44148] = 24, + [44909] = 27, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(5), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2486), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2488), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2490), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2622), 1, + anon_sym_RBRACE, + STATE(638), 1, + aux_sym_class_declaration_repeat1, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1012), 1, + sym_final_modifier, + STATE(1046), 1, + sym_attribute_group, + STATE(1229), 1, + aux_sym_declaration_list_repeat1, + STATE(1246), 1, + sym_text_interpolation, + STATE(1329), 1, + sym__modifier, + STATE(1356), 1, + sym_attribute_list, + STATE(1414), 1, + sym__const_declaration, + STATE(1417), 1, + sym__class_const_declaration, + STATE(1418), 1, + sym__member_declaration, + STATE(1819), 1, + sym__function_definition_header, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1390), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + STATE(1327), 4, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [44998] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2443), 1, + ACTIONS(2414), 1, anon_sym_QMARK, - ACTIONS(2445), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - ACTIONS(2449), 1, + ACTIONS(2420), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2422), 1, anon_sym_STAR_STAR, - ACTIONS(2453), 1, + ACTIONS(2424), 1, aux_sym_binary_expression_token2, - ACTIONS(2455), 1, + ACTIONS(2426), 1, aux_sym_binary_expression_token3, - ACTIONS(2457), 1, + ACTIONS(2428), 1, aux_sym_binary_expression_token4, - ACTIONS(2459), 1, + ACTIONS(2430), 1, anon_sym_PIPE_PIPE, - ACTIONS(2461), 1, + ACTIONS(2432), 1, anon_sym_AMP_AMP, - ACTIONS(2463), 1, + ACTIONS(2434), 1, anon_sym_CARET, - ACTIONS(2471), 1, + ACTIONS(2442), 1, anon_sym_GT_EQ, - ACTIONS(2475), 1, + ACTIONS(2446), 1, anon_sym_DOT, - ACTIONS(2479), 1, + ACTIONS(2450), 1, anon_sym_PERCENT, - STATE(1244), 1, + STATE(1247), 1, sym_text_interpolation, - ACTIONS(2447), 2, + ACTIONS(2418), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2465), 2, + ACTIONS(2436), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2473), 2, + ACTIONS(2444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2477), 2, + ACTIONS(2448), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2653), 2, + ACTIONS(2624), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2469), 3, + ACTIONS(2440), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 4, + ACTIONS(2438), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44231] = 24, + [45081] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2655), 1, - anon_sym_COLON, - STATE(1245), 1, + ACTIONS(2626), 1, + anon_sym_RBRACE, + STATE(1248), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44313] = 24, + [45163] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2657), 1, + ACTIONS(2628), 1, anon_sym_RBRACE, - STATE(1246), 1, + STATE(1249), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44395] = 24, + [45245] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2659), 1, - anon_sym_RBRACE, - STATE(1247), 1, + ACTIONS(2630), 1, + anon_sym_RPAREN, + STATE(1250), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44477] = 24, + [45327] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2661), 1, + ACTIONS(2632), 1, anon_sym_RBRACE, - STATE(1248), 1, + STATE(1251), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44559] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(221), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(1587), 1, - sym_comment, - STATE(1249), 1, - sym_text_interpolation, - STATE(1388), 1, - sym__const_declaration, - STATE(2622), 1, - sym_visibility_modifier, - ACTIONS(245), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - ACTIONS(2665), 3, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOLLAR, - ACTIONS(2663), 21, - 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, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [44611] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(221), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(1587), 1, - sym_comment, - STATE(1250), 1, - sym_text_interpolation, - STATE(1394), 1, - sym__const_declaration, - STATE(2622), 1, - sym_visibility_modifier, - ACTIONS(245), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - ACTIONS(2665), 3, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOLLAR, - ACTIONS(2663), 21, - 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, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [44663] = 24, + [45409] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2667), 1, + ACTIONS(2634), 1, anon_sym_RBRACE, - STATE(1251), 1, + STATE(1252), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44745] = 24, + [45491] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2669), 1, + ACTIONS(2636), 1, anon_sym_RBRACE, - STATE(1252), 1, + STATE(1253), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44827] = 24, + [45573] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2671), 1, + ACTIONS(2638), 1, anon_sym_RBRACE, - STATE(1253), 1, + STATE(1254), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44909] = 24, + [45655] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2673), 1, + ACTIONS(2640), 1, anon_sym_RBRACE, - STATE(1254), 1, + STATE(1255), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44991] = 24, + [45737] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2675), 1, + ACTIONS(2642), 1, anon_sym_RBRACE, - STATE(1255), 1, + STATE(1256), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45073] = 24, + [45819] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - ACTIONS(2359), 1, - aux_sym_binary_expression_token2, - ACTIONS(2361), 1, - aux_sym_binary_expression_token3, - ACTIONS(2363), 1, - aux_sym_binary_expression_token4, - ACTIONS(2659), 1, - anon_sym_RBRACK, - STATE(1256), 1, + ACTIONS(2644), 1, + anon_sym_RBRACE, + STATE(1257), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45155] = 18, + [45901] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, - sym_name, - ACTIONS(1733), 1, - anon_sym_LPAREN, - ACTIONS(1735), 1, - anon_sym_QMARK, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - STATE(1257), 1, - sym_text_interpolation, - STATE(1417), 1, - sym__types, - STATE(1427), 1, - sym_qualified_name, - STATE(2159), 1, - sym_variable_name, - STATE(2224), 1, - sym__type, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2626), 1, - sym_namespace_name, - STATE(1424), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1477), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - ACTIONS(1729), 12, - 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_false, - anon_sym_null, - anon_sym_true, - [45225] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2243), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2312), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2322), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2324), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, + ACTIONS(2348), 1, aux_sym_binary_expression_token3, - ACTIONS(2677), 1, - anon_sym_RBRACE, + ACTIONS(2646), 1, + anon_sym_RBRACK, STATE(1258), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45307] = 24, + [45983] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2679), 1, - anon_sym_RPAREN, + ACTIONS(2648), 1, + anon_sym_RBRACE, STATE(1259), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45389] = 24, + [46065] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2681), 1, + ACTIONS(2650), 1, anon_sym_RBRACE, STATE(1260), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45471] = 24, + [46147] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2683), 1, - anon_sym_COLON, + ACTIONS(2652), 1, + anon_sym_RBRACE, STATE(1261), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45553] = 24, + [46229] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2685), 1, - anon_sym_COLON, + ACTIONS(2654), 1, + anon_sym_RBRACE, STATE(1262), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45635] = 24, + [46311] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2687), 1, + ACTIONS(2656), 1, anon_sym_RBRACE, STATE(1263), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45717] = 24, + [46393] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2689), 1, + ACTIONS(2658), 1, anon_sym_RBRACE, STATE(1264), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45799] = 24, + [46475] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2691), 1, - anon_sym_RPAREN, + ACTIONS(2660), 1, + anon_sym_RBRACE, STATE(1265), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45881] = 24, + [46557] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2693), 1, + ACTIONS(2662), 1, anon_sym_RBRACE, STATE(1266), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45963] = 24, + [46639] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2695), 1, - anon_sym_RBRACE, + ACTIONS(2664), 1, + anon_sym_EQ_GT, STATE(1267), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46045] = 24, + [46721] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - ACTIONS(2359), 1, - aux_sym_binary_expression_token2, - ACTIONS(2361), 1, - aux_sym_binary_expression_token3, - ACTIONS(2363), 1, - aux_sym_binary_expression_token4, - ACTIONS(2697), 1, - anon_sym_RBRACK, + ACTIONS(2666), 1, + aux_sym_namespace_aliasing_clause_token1, STATE(1268), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46127] = 24, + [46803] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2312), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2322), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2324), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, + ACTIONS(2348), 1, aux_sym_binary_expression_token3, - ACTIONS(2697), 1, - anon_sym_RBRACE, + ACTIONS(2668), 1, + anon_sym_RBRACK, STATE(1269), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46209] = 24, + [46885] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2699), 1, - anon_sym_RBRACE, + ACTIONS(2670), 1, + anon_sym_RPAREN, STATE(1270), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46291] = 24, + [46967] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2701), 1, - anon_sym_RBRACE, + ACTIONS(2672), 1, + anon_sym_COLON, STATE(1271), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46373] = 24, + [47049] = 18, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, - anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1686), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_QMARK, - ACTIONS(2247), 1, - anon_sym_PIPE, - ACTIONS(2251), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, - anon_sym_STAR_STAR, - ACTIONS(2255), 1, - aux_sym_binary_expression_token2, - ACTIONS(2257), 1, - aux_sym_binary_expression_token4, - ACTIONS(2259), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, - anon_sym_AMP_AMP, - ACTIONS(2263), 1, - anon_sym_CARET, - ACTIONS(2271), 1, - anon_sym_GT_EQ, - ACTIONS(2275), 1, - anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2703), 1, - anon_sym_RBRACE, + ACTIONS(1723), 1, + anon_sym_DOLLAR, STATE(1272), 1, sym_text_interpolation, - ACTIONS(2249), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2265), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2273), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2269), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2267), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [46455] = 24, + STATE(1423), 1, + sym__types, + STATE(1433), 1, + sym_qualified_name, + STATE(2155), 1, + sym_variable_name, + STATE(2378), 1, + sym_type, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [47119] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2705), 1, - anon_sym_RBRACE, + ACTIONS(2674), 1, + aux_sym_namespace_aliasing_clause_token1, STATE(1273), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46537] = 24, + [47201] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2707), 1, - anon_sym_COLON, + ACTIONS(2676), 1, + anon_sym_RBRACE, STATE(1274), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46619] = 24, + [47283] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - ACTIONS(2359), 1, - aux_sym_binary_expression_token2, - ACTIONS(2361), 1, - aux_sym_binary_expression_token3, - ACTIONS(2363), 1, - aux_sym_binary_expression_token4, - ACTIONS(2709), 1, - anon_sym_RBRACK, + ACTIONS(2678), 1, + anon_sym_RBRACE, STATE(1275), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46701] = 24, + [47365] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2711), 1, + ACTIONS(2680), 1, anon_sym_RBRACE, STATE(1276), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46783] = 24, + [47447] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2713), 1, + ACTIONS(2668), 1, anon_sym_RBRACE, STATE(1277), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46865] = 24, + [47529] = 18, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(1676), 1, + sym_name, + ACTIONS(1686), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_QMARK, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(1278), 1, + sym_text_interpolation, + STATE(1423), 1, + sym__types, + STATE(1433), 1, + sym_qualified_name, + STATE(2123), 1, + sym_variable_name, + STATE(2436), 1, + sym_type, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1479), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1684), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [47599] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2312), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2322), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2324), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, + ACTIONS(2348), 1, aux_sym_binary_expression_token3, - ACTIONS(2715), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1278), 1, + ACTIONS(2682), 1, + anon_sym_RBRACK, + STATE(1279), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46947] = 24, + [47681] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2312), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2322), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2324), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, + ACTIONS(2348), 1, aux_sym_binary_expression_token3, - ACTIONS(2717), 1, - anon_sym_RBRACE, - STATE(1279), 1, + ACTIONS(2680), 1, + anon_sym_RBRACK, + STATE(1280), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47029] = 24, + [47763] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2719), 1, - anon_sym_RBRACE, - STATE(1280), 1, + ACTIONS(2684), 1, + anon_sym_RPAREN, + STATE(1281), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47111] = 24, + [47845] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2709), 1, + ACTIONS(2686), 1, anon_sym_RBRACE, - STATE(1281), 1, + STATE(1282), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47193] = 18, + [47927] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, - sym_name, - ACTIONS(1733), 1, - anon_sym_LPAREN, - ACTIONS(1735), 1, - anon_sym_QMARK, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - STATE(1282), 1, - sym_text_interpolation, - STATE(1417), 1, - sym__types, - STATE(1427), 1, - sym_qualified_name, - STATE(1925), 1, - sym_variable_name, - STATE(2320), 1, - sym__type, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2626), 1, - sym_namespace_name, - STATE(1424), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1477), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - ACTIONS(1729), 12, - 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_false, - anon_sym_null, - anon_sym_true, - [47263] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2721), 1, - anon_sym_EQ_GT, + ACTIONS(2688), 1, + anon_sym_RBRACE, STATE(1283), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47345] = 24, + [48009] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2723), 1, + ACTIONS(2682), 1, anon_sym_RBRACE, STATE(1284), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47427] = 24, + [48091] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2725), 1, - anon_sym_RBRACE, + ACTIONS(2690), 1, + anon_sym_RPAREN, STATE(1285), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47509] = 24, + [48173] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2727), 1, + ACTIONS(2692), 1, anon_sym_RBRACE, STATE(1286), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47591] = 24, + [48255] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2729), 1, - anon_sym_RBRACE, + ACTIONS(2694), 1, + aux_sym_namespace_aliasing_clause_token1, STATE(1287), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47673] = 24, + [48337] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2731), 1, + ACTIONS(2696), 1, anon_sym_RBRACE, STATE(1288), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47755] = 24, + [48419] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2733), 1, - anon_sym_RBRACE, + ACTIONS(2698), 1, + anon_sym_EQ_GT, STATE(1289), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47837] = 24, + [48501] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2735), 1, - anon_sym_RBRACE, + ACTIONS(2700), 1, + anon_sym_EQ_GT, STATE(1290), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47919] = 24, + [48583] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2737), 1, + ACTIONS(2702), 1, anon_sym_RBRACE, STATE(1291), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48001] = 24, + [48665] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - ACTIONS(2359), 1, - aux_sym_binary_expression_token2, - ACTIONS(2361), 1, - aux_sym_binary_expression_token3, - ACTIONS(2363), 1, - aux_sym_binary_expression_token4, - ACTIONS(2739), 1, - anon_sym_RBRACK, + ACTIONS(2704), 1, + anon_sym_RBRACE, STATE(1292), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48083] = 24, + [48747] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2741), 1, - aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2706), 1, + anon_sym_RBRACE, STATE(1293), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48165] = 24, + [48829] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2739), 1, + ACTIONS(2646), 1, anon_sym_RBRACE, STATE(1294), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48247] = 24, + [48911] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, - anon_sym_QMARK, - ACTIONS(2359), 1, - aux_sym_binary_expression_token2, - ACTIONS(2361), 1, - aux_sym_binary_expression_token3, - ACTIONS(2363), 1, - aux_sym_binary_expression_token4, - ACTIONS(2743), 1, - anon_sym_RBRACK, + ACTIONS(2708), 1, + anon_sym_RPAREN, STATE(1295), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48329] = 24, + [48993] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2312), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2322), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2324), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, + ACTIONS(2348), 1, aux_sym_binary_expression_token3, - ACTIONS(2745), 1, - anon_sym_RBRACE, + ACTIONS(2710), 1, + anon_sym_RBRACK, STATE(1296), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2316), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2340), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2336), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2334), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48411] = 24, + [49075] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2747), 1, + ACTIONS(2712), 1, anon_sym_RBRACE, STATE(1297), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48493] = 24, + [49157] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2743), 1, + ACTIONS(2710), 1, anon_sym_RBRACE, STATE(1298), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48575] = 24, + [49239] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2749), 1, + ACTIONS(2714), 1, anon_sym_RBRACE, STATE(1299), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48657] = 24, + [49321] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2751), 1, - anon_sym_RBRACE, + ACTIONS(2716), 1, + anon_sym_RPAREN, STATE(1300), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48739] = 24, + [49403] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2753), 1, - anon_sym_EQ_GT, + ACTIONS(2718), 1, + anon_sym_RBRACE, STATE(1301), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48821] = 24, + [49485] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2755), 1, + ACTIONS(2720), 1, anon_sym_RBRACE, STATE(1302), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48903] = 24, + [49567] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2757), 1, - anon_sym_RPAREN, + ACTIONS(2722), 1, + anon_sym_RBRACE, STATE(1303), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48985] = 24, + [49649] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2759), 1, + ACTIONS(2724), 1, anon_sym_RBRACE, STATE(1304), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49067] = 24, + [49731] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, - aux_sym_binary_expression_token4, - ACTIONS(2259), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, - anon_sym_AMP_AMP, - ACTIONS(2263), 1, - anon_sym_CARET, - ACTIONS(2271), 1, - anon_sym_GT_EQ, - ACTIONS(2275), 1, - anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, - ACTIONS(2283), 1, + ACTIONS(2224), 1, aux_sym_binary_expression_token3, - ACTIONS(2761), 1, - anon_sym_RPAREN, - STATE(1305), 1, - sym_text_interpolation, - ACTIONS(2249), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2265), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2273), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2269), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2267), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [49149] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2243), 1, - anon_sym_AMP, - ACTIONS(2245), 1, - anon_sym_QMARK, - ACTIONS(2247), 1, - anon_sym_PIPE, - ACTIONS(2251), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, - anon_sym_STAR_STAR, - ACTIONS(2255), 1, - aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2763), 1, + ACTIONS(2726), 1, anon_sym_RBRACE, - STATE(1306), 1, + STATE(1305), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49231] = 24, + [49813] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, - aux_sym_binary_expression_token4, - ACTIONS(2259), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, - anon_sym_AMP_AMP, - ACTIONS(2263), 1, - anon_sym_CARET, - ACTIONS(2271), 1, - anon_sym_GT_EQ, - ACTIONS(2275), 1, - anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, - ACTIONS(2283), 1, + ACTIONS(2224), 1, aux_sym_binary_expression_token3, - ACTIONS(2765), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1307), 1, - sym_text_interpolation, - ACTIONS(2249), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2265), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2273), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2269), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2267), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [49313] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2243), 1, - anon_sym_AMP, - ACTIONS(2245), 1, - anon_sym_QMARK, - ACTIONS(2247), 1, - anon_sym_PIPE, - ACTIONS(2251), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, - anon_sym_STAR_STAR, - ACTIONS(2255), 1, - aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2767), 1, + ACTIONS(2728), 1, anon_sym_RBRACE, - STATE(1308), 1, + STATE(1306), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49395] = 24, + [49895] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, - aux_sym_binary_expression_token4, - ACTIONS(2259), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, - anon_sym_AMP_AMP, - ACTIONS(2263), 1, - anon_sym_CARET, - ACTIONS(2271), 1, - anon_sym_GT_EQ, - ACTIONS(2275), 1, - anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, - ACTIONS(2283), 1, + ACTIONS(2224), 1, aux_sym_binary_expression_token3, - ACTIONS(2769), 1, - anon_sym_EQ_GT, - STATE(1309), 1, - sym_text_interpolation, - ACTIONS(2249), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2265), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2273), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2269), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2267), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [49477] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2243), 1, - anon_sym_AMP, - ACTIONS(2245), 1, - anon_sym_QMARK, - ACTIONS(2247), 1, - anon_sym_PIPE, - ACTIONS(2251), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, - anon_sym_STAR_STAR, - ACTIONS(2255), 1, - aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2771), 1, - anon_sym_RPAREN, - STATE(1310), 1, + ACTIONS(2730), 1, + anon_sym_RBRACE, + STATE(1307), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49559] = 24, + [49977] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, - aux_sym_binary_expression_token4, - ACTIONS(2259), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, - anon_sym_AMP_AMP, - ACTIONS(2263), 1, - anon_sym_CARET, - ACTIONS(2271), 1, - anon_sym_GT_EQ, - ACTIONS(2275), 1, - anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, - ACTIONS(2283), 1, + ACTIONS(2224), 1, aux_sym_binary_expression_token3, - ACTIONS(2773), 1, - anon_sym_RPAREN, - STATE(1311), 1, - sym_text_interpolation, - ACTIONS(2249), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2265), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2273), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2269), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2267), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [49641] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2243), 1, - anon_sym_AMP, - ACTIONS(2245), 1, - anon_sym_QMARK, - ACTIONS(2247), 1, - anon_sym_PIPE, - ACTIONS(2251), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, - anon_sym_STAR_STAR, - ACTIONS(2255), 1, - aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2775), 1, + ACTIONS(2732), 1, anon_sym_RBRACE, - STATE(1312), 1, + STATE(1308), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49723] = 24, + [50059] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, - aux_sym_binary_expression_token3, - ACTIONS(2777), 1, - anon_sym_RBRACE, - STATE(1313), 1, + ACTIONS(2734), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1309), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49805] = 24, + [50141] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, + ACTIONS(2736), 1, + anon_sym_RBRACE, + STATE(1310), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [50223] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1311), 1, + sym_text_interpolation, + ACTIONS(2740), 3, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOLLAR, + ACTIONS(2738), 27, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_string, + anon_sym_int, + aux_sym_class_declaration_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + aux_sym__arrow_function_header_token1, + anon_sym_QMARK, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [50267] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, aux_sym_binary_expression_token3, - ACTIONS(2779), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1314), 1, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2742), 1, + anon_sym_RBRACE, + STATE(1312), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49887] = 24, + [50349] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2210), 1, anon_sym_AMP, - ACTIONS(2323), 1, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, anon_sym_PIPE, - ACTIONS(2327), 1, + ACTIONS(2218), 1, anon_sym_QMARK_QMARK, - ACTIONS(2329), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2331), 1, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2230), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2232), 1, anon_sym_CARET, - ACTIONS(2343), 1, + ACTIONS(2240), 1, anon_sym_GT_EQ, - ACTIONS(2347), 1, + ACTIONS(2244), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2248), 1, anon_sym_PERCENT, - ACTIONS(2357), 1, + ACTIONS(2744), 1, + anon_sym_RBRACE, + STATE(1313), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [50431] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, anon_sym_QMARK, - ACTIONS(2359), 1, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, aux_sym_binary_expression_token2, - ACTIONS(2361), 1, + ACTIONS(2224), 1, aux_sym_binary_expression_token3, - ACTIONS(2363), 1, + ACTIONS(2226), 1, aux_sym_binary_expression_token4, - ACTIONS(2777), 1, - anon_sym_RBRACK, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2746), 1, + anon_sym_COLON, + STATE(1314), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [50513] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2748), 1, + anon_sym_COLON, STATE(1315), 1, sym_text_interpolation, - ACTIONS(2325), 2, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2345), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2349), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2341), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2339), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49969] = 24, + [50595] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2310), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2312), 1, anon_sym_QMARK, - ACTIONS(2247), 1, + ACTIONS(2314), 1, anon_sym_PIPE, - ACTIONS(2251), 1, + ACTIONS(2318), 1, anon_sym_QMARK_QMARK, - ACTIONS(2253), 1, + ACTIONS(2320), 1, anon_sym_STAR_STAR, - ACTIONS(2255), 1, + ACTIONS(2322), 1, aux_sym_binary_expression_token2, - ACTIONS(2257), 1, + ACTIONS(2324), 1, aux_sym_binary_expression_token4, - ACTIONS(2259), 1, + ACTIONS(2326), 1, anon_sym_PIPE_PIPE, - ACTIONS(2261), 1, + ACTIONS(2328), 1, anon_sym_AMP_AMP, - ACTIONS(2263), 1, + ACTIONS(2330), 1, anon_sym_CARET, - ACTIONS(2271), 1, + ACTIONS(2338), 1, anon_sym_GT_EQ, - ACTIONS(2275), 1, + ACTIONS(2342), 1, anon_sym_DOT, - ACTIONS(2279), 1, + ACTIONS(2346), 1, anon_sym_PERCENT, - ACTIONS(2283), 1, + ACTIONS(2348), 1, aux_sym_binary_expression_token3, - ACTIONS(2781), 1, - anon_sym_RBRACE, + ACTIONS(2750), 1, + anon_sym_RBRACK, STATE(1316), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2316), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2336), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [50677] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2750), 1, + anon_sym_RBRACE, + STATE(1317), 1, + sym_text_interpolation, + ACTIONS(2216), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2234), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2246), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2238), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2236), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [50759] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_AMP, + ACTIONS(2212), 1, + anon_sym_QMARK, + ACTIONS(2214), 1, + anon_sym_PIPE, + ACTIONS(2218), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + aux_sym_binary_expression_token2, + ACTIONS(2224), 1, + aux_sym_binary_expression_token3, + ACTIONS(2226), 1, + aux_sym_binary_expression_token4, + ACTIONS(2228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_GT_EQ, + ACTIONS(2244), 1, + anon_sym_DOT, + ACTIONS(2248), 1, + anon_sym_PERCENT, + ACTIONS(2752), 1, + anon_sym_COLON, + STATE(1318), 1, + sym_text_interpolation, + ACTIONS(2216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2265), 2, + ACTIONS(2234), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2273), 2, + ACTIONS(2242), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, + ACTIONS(2246), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2269), 3, + ACTIONS(2238), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2236), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [50051] = 24, + [50841] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(313), 1, + ACTIONS(318), 1, anon_sym_POUND_LBRACK, - ACTIONS(2515), 1, + ACTIONS(2484), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2517), 1, + ACTIONS(2486), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2519), 1, + ACTIONS(2488), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2525), 1, + ACTIONS(2494), 1, aux_sym_final_modifier_token1, - ACTIONS(2527), 1, + ACTIONS(2496), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2529), 1, + ACTIONS(2498), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2531), 1, + ACTIONS(2500), 1, sym_var_modifier, - ACTIONS(2783), 1, + ACTIONS(2754), 1, anon_sym_RBRACE, - ACTIONS(2785), 1, + ACTIONS(2756), 1, aux_sym_enum_case_token1, - STATE(975), 1, + STATE(976), 1, aux_sym_attribute_list_repeat1, - STATE(1011), 1, + STATE(1046), 1, sym_attribute_group, - STATE(1317), 1, + STATE(1319), 1, sym_text_interpolation, - STATE(1318), 1, + STATE(1320), 1, aux_sym_enum_declaration_list_repeat1, - STATE(1331), 1, + STATE(1329), 1, sym__modifier, - STATE(1353), 1, + STATE(1357), 1, sym_attribute_list, - STATE(1354), 1, - aux_sym_property_declaration_repeat1, - STATE(1414), 1, + STATE(1358), 1, + aux_sym_class_declaration_repeat1, + STATE(1398), 1, sym__enum_member_declaration, - STATE(1766), 1, + STATE(1819), 1, sym__function_definition_header, - ACTIONS(2533), 3, + ACTIONS(2502), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1415), 3, + STATE(1403), 3, sym_enum_case, sym_method_declaration, sym_use_declaration, - STATE(1330), 5, + STATE(1327), 5, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [50132] = 23, + [50922] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(2787), 1, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2484), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2790), 1, + ACTIONS(2486), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2793), 1, + ACTIONS(2488), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2796), 1, - anon_sym_RBRACE, - ACTIONS(2798), 1, - aux_sym_enum_case_token1, - ACTIONS(2801), 1, + ACTIONS(2494), 1, aux_sym_final_modifier_token1, - ACTIONS(2804), 1, + ACTIONS(2496), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2807), 1, + ACTIONS(2498), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2810), 1, + ACTIONS(2500), 1, sym_var_modifier, - ACTIONS(2816), 1, - anon_sym_POUND_LBRACK, - STATE(975), 1, + ACTIONS(2756), 1, + aux_sym_enum_case_token1, + ACTIONS(2758), 1, + anon_sym_RBRACE, + STATE(976), 1, aux_sym_attribute_list_repeat1, - STATE(1011), 1, + STATE(1046), 1, sym_attribute_group, - STATE(1331), 1, + STATE(1320), 1, + sym_text_interpolation, + STATE(1321), 1, + aux_sym_enum_declaration_list_repeat1, + STATE(1329), 1, sym__modifier, - STATE(1353), 1, + STATE(1357), 1, sym_attribute_list, - STATE(1354), 1, - aux_sym_property_declaration_repeat1, - STATE(1414), 1, + STATE(1358), 1, + aux_sym_class_declaration_repeat1, + STATE(1398), 1, sym__enum_member_declaration, - STATE(1766), 1, + STATE(1819), 1, sym__function_definition_header, - STATE(1318), 2, - sym_text_interpolation, - aux_sym_enum_declaration_list_repeat1, - ACTIONS(2813), 3, + ACTIONS(2502), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1415), 3, + STATE(1403), 3, sym_enum_case, sym_method_declaration, sym_use_declaration, - STATE(1330), 5, + STATE(1327), 5, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [50211] = 17, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2819), 1, - sym_name, - ACTIONS(2823), 1, - anon_sym_LPAREN, - ACTIONS(2825), 1, - anon_sym_QMARK, - ACTIONS(2827), 1, - sym_bottom_type, - STATE(1319), 1, - sym_text_interpolation, - STATE(1527), 1, - sym__types, - STATE(1750), 1, - sym_qualified_name, - STATE(2058), 1, - sym__type, - STATE(2626), 1, - sym_namespace_name, - STATE(2627), 1, - sym_namespace_name_as_prefix, - STATE(1749), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(2125), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - ACTIONS(2821), 12, - 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_false, - anon_sym_null, - anon_sym_true, - [50278] = 24, + [51003] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(313), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2515), 1, + ACTIONS(2760), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2517), 1, + ACTIONS(2763), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2519), 1, + ACTIONS(2766), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2525), 1, + ACTIONS(2769), 1, + anon_sym_RBRACE, + ACTIONS(2771), 1, + aux_sym_enum_case_token1, + ACTIONS(2774), 1, aux_sym_final_modifier_token1, - ACTIONS(2527), 1, + ACTIONS(2777), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2529), 1, + ACTIONS(2780), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2531), 1, + ACTIONS(2783), 1, sym_var_modifier, - ACTIONS(2785), 1, - aux_sym_enum_case_token1, - ACTIONS(2829), 1, - anon_sym_RBRACE, - STATE(975), 1, + ACTIONS(2789), 1, + anon_sym_POUND_LBRACK, + STATE(976), 1, aux_sym_attribute_list_repeat1, - STATE(1011), 1, + STATE(1046), 1, sym_attribute_group, - STATE(1317), 1, - aux_sym_enum_declaration_list_repeat1, - STATE(1320), 1, - sym_text_interpolation, - STATE(1331), 1, + STATE(1329), 1, sym__modifier, - STATE(1353), 1, + STATE(1357), 1, sym_attribute_list, - STATE(1354), 1, - aux_sym_property_declaration_repeat1, - STATE(1414), 1, + STATE(1358), 1, + aux_sym_class_declaration_repeat1, + STATE(1398), 1, sym__enum_member_declaration, - STATE(1766), 1, + STATE(1819), 1, sym__function_definition_header, - ACTIONS(2533), 3, + STATE(1321), 2, + sym_text_interpolation, + aux_sym_enum_declaration_list_repeat1, + ACTIONS(2786), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1415), 3, + STATE(1403), 3, sym_enum_case, sym_method_declaration, sym_use_declaration, - STATE(1330), 5, + STATE(1327), 5, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [50359] = 5, + [51082] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1321), 1, + STATE(1322), 1, sym_text_interpolation, - ACTIONS(2833), 3, + ACTIONS(2794), 3, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2831), 26, + ACTIONS(2792), 26, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -119499,158 +120076,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50402] = 24, + [51125] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(313), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2515), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2517), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2519), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2525), 1, - aux_sym_final_modifier_token1, - ACTIONS(2527), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2529), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2531), 1, - sym_var_modifier, - ACTIONS(2785), 1, - aux_sym_enum_case_token1, - ACTIONS(2835), 1, - anon_sym_RBRACE, - STATE(975), 1, - aux_sym_attribute_list_repeat1, - STATE(1011), 1, - sym_attribute_group, - STATE(1322), 1, - sym_text_interpolation, STATE(1323), 1, - aux_sym_enum_declaration_list_repeat1, - STATE(1331), 1, - sym__modifier, - STATE(1353), 1, - sym_attribute_list, - STATE(1354), 1, - aux_sym_property_declaration_repeat1, - STATE(1414), 1, - sym__enum_member_declaration, - STATE(1766), 1, - sym__function_definition_header, - ACTIONS(2533), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1415), 3, - sym_enum_case, - sym_method_declaration, - sym_use_declaration, - STATE(1330), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - [50483] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(313), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2515), 1, + sym_text_interpolation, + ACTIONS(2798), 3, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOLLAR, + ACTIONS(2796), 26, aux_sym_function_static_declaration_token1, - ACTIONS(2517), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2519), 1, + aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2525), 1, + aux_sym_namespace_use_declaration_token3, + anon_sym_string, + anon_sym_int, + aux_sym_class_declaration_token1, aux_sym_final_modifier_token1, - ACTIONS(2527), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2529), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2531), 1, sym_var_modifier, - ACTIONS(2785), 1, - aux_sym_enum_case_token1, - ACTIONS(2837), 1, - anon_sym_RBRACE, - STATE(975), 1, - aux_sym_attribute_list_repeat1, - STATE(1011), 1, - sym_attribute_group, - STATE(1318), 1, - aux_sym_enum_declaration_list_repeat1, - STATE(1323), 1, - sym_text_interpolation, - STATE(1331), 1, - sym__modifier, - STATE(1353), 1, - sym_attribute_list, - STATE(1354), 1, - aux_sym_property_declaration_repeat1, - STATE(1414), 1, - sym__enum_member_declaration, - STATE(1766), 1, - sym__function_definition_header, - ACTIONS(2533), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1415), 3, - sym_enum_case, - sym_method_declaration, - sym_use_declaration, - STATE(1330), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - [50564] = 17, + anon_sym_QMARK, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [51168] = 17, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(1676), 1, sym_name, - ACTIONS(1733), 1, + ACTIONS(1686), 1, anon_sym_LPAREN, - ACTIONS(1735), 1, + ACTIONS(1688), 1, anon_sym_QMARK, - ACTIONS(2839), 1, + ACTIONS(2800), 1, sym_bottom_type, STATE(1324), 1, sym_text_interpolation, - STATE(1417), 1, + STATE(1423), 1, sym__types, - STATE(1427), 1, + STATE(1433), 1, sym_qualified_name, - STATE(2186), 1, - sym__type, - STATE(2462), 1, + STATE(2333), 1, + sym_type, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(1424), 3, + STATE(1435), 3, sym_named_type, sym_optional_type, sym_primitive_type, - STATE(1477), 3, + STATE(1479), 3, sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - ACTIONS(1729), 12, + ACTIONS(1684), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -119663,21 +120164,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50631] = 5, + [51235] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1325), 1, sym_text_interpolation, - ACTIONS(2843), 3, + ACTIONS(2804), 3, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2841), 25, + ACTIONS(2802), 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, @@ -119700,32 +120202,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50673] = 5, + [51278] = 17, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(2806), 1, + sym_name, + ACTIONS(2810), 1, + anon_sym_LPAREN, + ACTIONS(2812), 1, + anon_sym_QMARK, + ACTIONS(2814), 1, + sym_bottom_type, STATE(1326), 1, sym_text_interpolation, - ACTIONS(2847), 3, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOLLAR, - ACTIONS(2845), 25, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, + STATE(1536), 1, + sym__types, + STATE(1695), 1, + sym_qualified_name, + STATE(2034), 1, + sym_type, + STATE(2605), 1, + sym_namespace_name, + STATE(2606), 1, + sym_namespace_name_as_prefix, + STATE(1688), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(2081), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(2808), 12, anon_sym_string, anon_sym_int, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_QMARK, anon_sym_array, aux_sym_primitive_type_token1, anon_sym_iterable, @@ -119736,22 +120252,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - sym_name, - [50715] = 5, + [51345] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1327), 1, sym_text_interpolation, - ACTIONS(2851), 3, + ACTIONS(2254), 3, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2849), 25, + ACTIONS(2252), 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, @@ -119774,23 +120290,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50757] = 5, + [51388] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1328), 1, sym_text_interpolation, - ACTIONS(2855), 3, + ACTIONS(2818), 3, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2853), 25, + ACTIONS(2816), 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, @@ -119798,7 +120316,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - aux_sym__arrow_function_header_token1, anon_sym_QMARK, anon_sym_array, aux_sym_primitive_type_token1, @@ -119811,25 +120328,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50799] = 6, + [51431] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2857), 1, - aux_sym_namespace_use_declaration_token3, STATE(1329), 1, sym_text_interpolation, - ACTIONS(2665), 3, + ACTIONS(2822), 3, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2663), 24, + ACTIONS(2820), 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, @@ -119849,108 +120366,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50843] = 5, + [51474] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(5), 1, sym_comment, - STATE(1330), 1, - sym_text_interpolation, - ACTIONS(2665), 3, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOLLAR, - ACTIONS(2663), 24, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2484), 1, aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, + ACTIONS(2486), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2488), 1, aux_sym_namespace_use_declaration_token2, - anon_sym_string, - anon_sym_int, + ACTIONS(2494), 1, aux_sym_final_modifier_token1, + ACTIONS(2496), 1, aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, + ACTIONS(2756), 1, + aux_sym_enum_case_token1, + ACTIONS(2824), 1, + anon_sym_RBRACE, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, + sym_attribute_group, + STATE(1329), 1, + sym__modifier, + STATE(1330), 1, + sym_text_interpolation, + STATE(1331), 1, + aux_sym_enum_declaration_list_repeat1, + STATE(1357), 1, + sym_attribute_list, + STATE(1358), 1, + aux_sym_class_declaration_repeat1, + STATE(1398), 1, + sym__enum_member_declaration, + STATE(1819), 1, + sym__function_definition_header, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [50884] = 5, + STATE(1403), 3, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [51555] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(5), 1, sym_comment, - STATE(1331), 1, - sym_text_interpolation, - ACTIONS(2861), 3, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOLLAR, - ACTIONS(2859), 24, + ACTIONS(318), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2484), 1, aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, + ACTIONS(2486), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2488), 1, aux_sym_namespace_use_declaration_token2, - anon_sym_string, - anon_sym_int, + ACTIONS(2494), 1, aux_sym_final_modifier_token1, + ACTIONS(2496), 1, aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, sym_var_modifier, + ACTIONS(2756), 1, + aux_sym_enum_case_token1, + ACTIONS(2826), 1, + anon_sym_RBRACE, + STATE(976), 1, + aux_sym_attribute_list_repeat1, + STATE(1046), 1, + sym_attribute_group, + STATE(1321), 1, + aux_sym_enum_declaration_list_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1331), 1, + sym_text_interpolation, + STATE(1357), 1, + sym_attribute_list, + STATE(1358), 1, + aux_sym_class_declaration_repeat1, + STATE(1398), 1, + sym__enum_member_declaration, + STATE(1819), 1, + sym__function_definition_header, + ACTIONS(2502), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [50925] = 14, + STATE(1403), 3, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [51636] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2819), 1, + ACTIONS(1676), 1, sym_name, - ACTIONS(2825), 1, + ACTIONS(1688), 1, anon_sym_QMARK, - ACTIONS(2863), 1, - anon_sym_LPAREN, STATE(1332), 1, sym_text_interpolation, - STATE(1750), 1, + STATE(1433), 1, sym_qualified_name, - STATE(1771), 1, + STATE(1937), 1, sym__types, - STATE(2626), 1, - sym_namespace_name, - STATE(2627), 1, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(1749), 3, + STATE(2582), 1, + sym_intersection_type, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(2821), 12, + ACTIONS(1684), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -119963,36 +120522,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50981] = 14, + [51692] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(1676), 1, sym_name, - ACTIONS(1735), 1, + ACTIONS(1688), 1, anon_sym_QMARK, STATE(1333), 1, sym_text_interpolation, - STATE(1427), 1, + STATE(1433), 1, sym_qualified_name, - STATE(2022), 1, + STATE(1937), 1, sym__types, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2581), 1, + STATE(2447), 1, sym_intersection_type, - STATE(2626), 1, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, sym_namespace_name, - STATE(1424), 3, + STATE(1435), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1729), 12, + ACTIONS(1684), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120005,36 +120564,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51037] = 14, + [51748] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(1676), 1, sym_name, - ACTIONS(1735), 1, + ACTIONS(1721), 1, anon_sym_QMARK, - ACTIONS(2865), 1, + ACTIONS(2828), 1, anon_sym_LPAREN, STATE(1334), 1, sym_text_interpolation, - STATE(1427), 1, + STATE(1433), 1, sym_qualified_name, - STATE(1446), 1, + STATE(1459), 1, sym__types, - STATE(2462), 1, + STATE(2604), 1, sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(1424), 3, + STATE(1435), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1729), 12, + ACTIONS(1684), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120047,36 +120606,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51093] = 14, + [51804] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(1676), 1, sym_name, - ACTIONS(1735), 1, + ACTIONS(1688), 1, anon_sym_QMARK, + ACTIONS(2828), 1, + anon_sym_LPAREN, STATE(1335), 1, sym_text_interpolation, - STATE(1427), 1, + STATE(1433), 1, sym_qualified_name, - STATE(2022), 1, + STATE(1459), 1, sym__types, - STATE(2462), 1, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(2628), 1, - sym_intersection_type, - STATE(1424), 3, + STATE(1435), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1729), 12, + ACTIONS(1684), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120089,36 +120648,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51149] = 14, + [51860] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(1676), 1, sym_name, - ACTIONS(1735), 1, + ACTIONS(1688), 1, anon_sym_QMARK, + ACTIONS(2828), 1, + anon_sym_LPAREN, STATE(1336), 1, sym_text_interpolation, - STATE(1427), 1, + STATE(1433), 1, sym_qualified_name, - STATE(2022), 1, + STATE(1444), 1, sym__types, - STATE(2462), 1, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(2471), 1, - sym_intersection_type, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(1424), 3, + STATE(1435), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1729), 12, + ACTIONS(1684), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120131,36 +120690,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51205] = 14, + [51916] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(2806), 1, sym_name, - ACTIONS(1735), 1, + ACTIONS(2812), 1, anon_sym_QMARK, + ACTIONS(2830), 1, + anon_sym_LPAREN, STATE(1337), 1, sym_text_interpolation, - STATE(1427), 1, + STATE(1695), 1, sym_qualified_name, - STATE(2022), 1, + STATE(1773), 1, sym__types, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2485), 1, - sym_intersection_type, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(1424), 3, + STATE(2606), 1, + sym_namespace_name_as_prefix, + STATE(1688), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1729), 12, + ACTIONS(2808), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120173,36 +120732,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51261] = 14, + [51972] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2819), 1, + ACTIONS(1676), 1, sym_name, - ACTIONS(2825), 1, + ACTIONS(1688), 1, anon_sym_QMARK, - ACTIONS(2863), 1, - anon_sym_LPAREN, STATE(1338), 1, sym_text_interpolation, - STATE(1750), 1, + STATE(1433), 1, sym_qualified_name, - STATE(1821), 1, + STATE(1937), 1, sym__types, - STATE(2626), 1, - sym_namespace_name, - STATE(2627), 1, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(1749), 3, + STATE(2537), 1, + sym_intersection_type, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(2821), 12, + ACTIONS(1684), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120215,36 +120774,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51317] = 14, + [52028] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(1676), 1, sym_name, - ACTIONS(1735), 1, + ACTIONS(1721), 1, anon_sym_QMARK, - ACTIONS(2865), 1, + ACTIONS(2828), 1, anon_sym_LPAREN, STATE(1339), 1, sym_text_interpolation, - STATE(1427), 1, + STATE(1433), 1, sym_qualified_name, - STATE(1448), 1, + STATE(1444), 1, sym__types, - STATE(2462), 1, + STATE(2604), 1, sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(1424), 3, + STATE(1435), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1729), 12, + ACTIONS(1684), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120257,36 +120816,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51373] = 14, + [52084] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(2806), 1, sym_name, - ACTIONS(1774), 1, + ACTIONS(2812), 1, anon_sym_QMARK, - ACTIONS(2865), 1, + ACTIONS(2830), 1, anon_sym_LPAREN, STATE(1340), 1, sym_text_interpolation, - STATE(1427), 1, + STATE(1695), 1, sym_qualified_name, - STATE(1448), 1, + STATE(1814), 1, sym__types, - STATE(2544), 1, - sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(1424), 3, + STATE(2606), 1, + sym_namespace_name_as_prefix, + STATE(1688), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1729), 12, + ACTIONS(2808), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120299,36 +120858,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51429] = 14, + [52140] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(1676), 1, sym_name, - ACTIONS(1735), 1, + ACTIONS(1688), 1, anon_sym_QMARK, STATE(1341), 1, sym_text_interpolation, - STATE(1427), 1, + STATE(1433), 1, sym_qualified_name, - STATE(2022), 1, + STATE(1937), 1, sym__types, - STATE(2462), 1, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(2626), 1, - sym_namespace_name, - STATE(2654), 1, + STATE(2524), 1, sym_intersection_type, - STATE(1424), 3, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1729), 12, + ACTIONS(1684), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120341,36 +120900,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51485] = 14, + [52196] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(1676), 1, sym_name, - ACTIONS(1774), 1, + ACTIONS(1688), 1, anon_sym_QMARK, - ACTIONS(2865), 1, - anon_sym_LPAREN, STATE(1342), 1, sym_text_interpolation, - STATE(1427), 1, + STATE(1433), 1, sym_qualified_name, - STATE(1446), 1, + STATE(1937), 1, sym__types, - STATE(2544), 1, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(1424), 3, + STATE(2619), 1, + sym_intersection_type, + STATE(1435), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1729), 12, + ACTIONS(1684), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120383,34 +120942,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51541] = 13, + [52252] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(2806), 1, sym_name, - ACTIONS(1774), 1, + ACTIONS(2812), 1, anon_sym_QMARK, STATE(1343), 1, sym_text_interpolation, - STATE(1427), 1, + STATE(1695), 1, sym_qualified_name, - STATE(1454), 1, + STATE(1875), 1, sym__types, - STATE(2544), 1, - sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(1424), 3, + STATE(2606), 1, + sym_namespace_name_as_prefix, + STATE(1688), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1729), 12, + ACTIONS(2808), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120423,34 +120982,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51594] = 13, + [52305] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(1676), 1, sym_name, - ACTIONS(1735), 1, + ACTIONS(1688), 1, anon_sym_QMARK, STATE(1344), 1, sym_text_interpolation, - STATE(1427), 1, + STATE(1433), 1, sym_qualified_name, - STATE(1449), 1, + STATE(1453), 1, sym__types, - STATE(2462), 1, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(1424), 3, + STATE(1435), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1729), 12, + ACTIONS(1684), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120463,34 +121022,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51647] = 13, + [52358] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2819), 1, + ACTIONS(2806), 1, sym_name, - ACTIONS(2825), 1, + ACTIONS(2812), 1, anon_sym_QMARK, STATE(1345), 1, sym_text_interpolation, - STATE(1750), 1, + STATE(1695), 1, sym_qualified_name, - STATE(1820), 1, + STATE(1816), 1, sym__types, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(2627), 1, + STATE(2606), 1, sym_namespace_name_as_prefix, - STATE(1749), 3, + STATE(1688), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(2821), 12, + ACTIONS(2808), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120503,34 +121062,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51700] = 13, + [52411] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2819), 1, + ACTIONS(1676), 1, sym_name, - ACTIONS(2825), 1, + ACTIONS(1721), 1, anon_sym_QMARK, STATE(1346), 1, sym_text_interpolation, - STATE(1750), 1, + STATE(1433), 1, sym_qualified_name, - STATE(1762), 1, + STATE(1441), 1, sym__types, - STATE(2626), 1, - sym_namespace_name, - STATE(2627), 1, + STATE(2604), 1, sym_namespace_name_as_prefix, - STATE(1749), 3, + STATE(2605), 1, + sym_namespace_name, + STATE(1435), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(2821), 12, + ACTIONS(1684), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120543,34 +121102,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51753] = 13, + [52464] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(1676), 1, sym_name, - ACTIONS(1735), 1, + ACTIONS(1688), 1, anon_sym_QMARK, STATE(1347), 1, sym_text_interpolation, - STATE(1427), 1, + STATE(1433), 1, sym_qualified_name, - STATE(1454), 1, + STATE(1441), 1, sym__types, - STATE(2462), 1, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(1424), 3, + STATE(1435), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1729), 12, + ACTIONS(1684), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120583,34 +121142,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51806] = 13, + [52517] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(1676), 1, sym_name, - ACTIONS(1774), 1, + ACTIONS(1721), 1, anon_sym_QMARK, STATE(1348), 1, sym_text_interpolation, - STATE(1427), 1, + STATE(1433), 1, sym_qualified_name, - STATE(1449), 1, + STATE(1453), 1, sym__types, - STATE(2544), 1, + STATE(2604), 1, sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(1424), 3, + STATE(1435), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1729), 12, + ACTIONS(1684), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120623,29 +121182,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51859] = 11, + [52570] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1690), 1, + anon_sym_DOLLAR, + ACTIONS(1909), 1, + anon_sym_COLON_COLON, + STATE(1349), 1, + sym_text_interpolation, + STATE(1755), 1, + sym_static_variable_declaration, + STATE(1824), 1, + sym_variable_name, + ACTIONS(1596), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(2740), 12, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + aux_sym_class_declaration_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + 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, + [52613] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1690), 1, + anon_sym_DOLLAR, + ACTIONS(1909), 1, + anon_sym_COLON_COLON, + STATE(1350), 1, + sym_text_interpolation, + STATE(1824), 1, + sym_variable_name, + STATE(1885), 1, + sym_static_variable_declaration, + ACTIONS(1596), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(2740), 12, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + aux_sym_class_declaration_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + 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, + [52656] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(2806), 1, sym_name, - STATE(1349), 1, + STATE(1351), 1, sym_text_interpolation, - STATE(1427), 1, + STATE(1695), 1, sym_qualified_name, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(1426), 2, + STATE(2606), 1, + sym_namespace_name_as_prefix, + STATE(1662), 2, sym_named_type, sym_primitive_type, - ACTIONS(1729), 12, + ACTIONS(2808), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120658,29 +121285,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51905] = 11, + [52702] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(1676), 1, sym_name, - STATE(1350), 1, + STATE(1352), 1, sym_text_interpolation, - STATE(1427), 1, + STATE(1433), 1, sym_qualified_name, - STATE(2544), 1, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(1426), 2, + STATE(1434), 2, sym_named_type, sym_primitive_type, - ACTIONS(1729), 12, + ACTIONS(1684), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120693,29 +121320,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51951] = 11, + [52748] = 18, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2832), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2834), 1, + aux_sym_enum_declaration_token1, + ACTIONS(2836), 1, + aux_sym_class_declaration_token1, + ACTIONS(2838), 1, + aux_sym__arrow_function_header_token1, + STATE(1329), 1, + sym__modifier, + STATE(1353), 1, + sym_text_interpolation, + STATE(1365), 1, + aux_sym_class_declaration_repeat1, + STATE(1431), 1, + sym_static_modifier, + STATE(2295), 1, + sym__function_definition_header, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1327), 4, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_visibility_modifier, + [52808] = 18, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2832), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2838), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(2840), 1, + aux_sym_enum_declaration_token1, + ACTIONS(2842), 1, + aux_sym_class_declaration_token1, + STATE(1329), 1, + sym__modifier, + STATE(1354), 1, + sym_text_interpolation, + STATE(1366), 1, + aux_sym_class_declaration_repeat1, + STATE(1431), 1, + sym_static_modifier, + STATE(2249), 1, + sym__function_definition_header, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1327), 4, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_visibility_modifier, + [52868] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2819), 1, + ACTIONS(1676), 1, sym_name, - STATE(1351), 1, + STATE(1355), 1, sym_text_interpolation, - STATE(1750), 1, + STATE(1433), 1, sym_qualified_name, - STATE(2626), 1, - sym_namespace_name, - STATE(2627), 1, + STATE(2604), 1, sym_namespace_name_as_prefix, - STATE(1727), 2, + STATE(2605), 1, + sym_namespace_name, + STATE(1434), 2, sym_named_type, sym_primitive_type, - ACTIONS(2821), 12, + ACTIONS(1684), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120728,201 +121439,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51997] = 18, + [52914] = 17, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2515), 1, + ACTIONS(2484), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2519), 1, + ACTIONS(2488), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2521), 1, + ACTIONS(2490), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2525), 1, + ACTIONS(2494), 1, aux_sym_final_modifier_token1, - ACTIONS(2527), 1, + ACTIONS(2496), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2529), 1, + ACTIONS(2498), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2531), 1, + ACTIONS(2500), 1, sym_var_modifier, - STATE(647), 1, - aux_sym_property_declaration_repeat1, - STATE(1249), 1, + STATE(637), 1, + aux_sym_class_declaration_repeat1, + STATE(985), 1, sym_final_modifier, STATE(1329), 1, - sym_visibility_modifier, - STATE(1331), 1, sym__modifier, - STATE(1352), 1, + STATE(1356), 1, sym_text_interpolation, - STATE(1400), 1, + STATE(1395), 1, sym__const_declaration, - STATE(1813), 1, + STATE(1820), 1, sym__function_definition_header, - ACTIONS(2533), 3, + ACTIONS(2502), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1330), 3, + STATE(1327), 4, sym_abstract_modifier, sym_readonly_modifier, sym_static_modifier, - [52056] = 15, + sym_visibility_modifier, + [52971] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2515), 1, + ACTIONS(2484), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2519), 1, + ACTIONS(2488), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2525), 1, + ACTIONS(2494), 1, aux_sym_final_modifier_token1, - ACTIONS(2527), 1, + ACTIONS(2496), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2529), 1, + ACTIONS(2498), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2531), 1, + ACTIONS(2500), 1, sym_var_modifier, - ACTIONS(2867), 1, + ACTIONS(2844), 1, aux_sym_enum_case_token1, - STATE(1331), 1, + STATE(1329), 1, sym__modifier, - STATE(1353), 1, + STATE(1357), 1, sym_text_interpolation, - STATE(1355), 1, - aux_sym_property_declaration_repeat1, - STATE(1813), 1, + STATE(1360), 1, + aux_sym_class_declaration_repeat1, + STATE(1820), 1, sym__function_definition_header, - ACTIONS(2533), 3, + ACTIONS(2502), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1330), 5, + STATE(1327), 5, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [52108] = 14, + [53023] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2515), 1, + ACTIONS(2484), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2519), 1, + ACTIONS(2488), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2525), 1, + ACTIONS(2494), 1, aux_sym_final_modifier_token1, - ACTIONS(2527), 1, + ACTIONS(2496), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2529), 1, + ACTIONS(2498), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2531), 1, + ACTIONS(2500), 1, sym_var_modifier, - STATE(1105), 1, - aux_sym_property_declaration_repeat1, - STATE(1331), 1, + STATE(1009), 1, + aux_sym_class_declaration_repeat1, + STATE(1329), 1, sym__modifier, - STATE(1354), 1, + STATE(1358), 1, sym_text_interpolation, - STATE(1816), 1, + STATE(1754), 1, sym__function_definition_header, - ACTIONS(2533), 3, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [53072] = 14, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2846), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2848), 1, + aux_sym_class_declaration_token1, + STATE(1009), 1, + aux_sym_class_declaration_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1359), 1, + sym_text_interpolation, + ACTIONS(2502), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1330), 5, + STATE(1327), 5, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [52157] = 14, + [53121] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2515), 1, + ACTIONS(2484), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2519), 1, + ACTIONS(2488), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2525), 1, + ACTIONS(2494), 1, aux_sym_final_modifier_token1, - ACTIONS(2527), 1, + ACTIONS(2496), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2529), 1, + ACTIONS(2498), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2531), 1, + ACTIONS(2500), 1, sym_var_modifier, - STATE(1105), 1, - aux_sym_property_declaration_repeat1, - STATE(1331), 1, + STATE(1009), 1, + aux_sym_class_declaration_repeat1, + STATE(1329), 1, sym__modifier, - STATE(1355), 1, + STATE(1360), 1, sym_text_interpolation, - STATE(1885), 1, + STATE(1774), 1, sym__function_definition_header, - ACTIONS(2533), 3, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [53170] = 14, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2850), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2852), 1, + aux_sym_class_declaration_token1, + STATE(1009), 1, + aux_sym_class_declaration_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1361), 1, + sym_text_interpolation, + ACTIONS(2502), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1330), 5, + STATE(1327), 5, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [52206] = 12, + [53219] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(612), 1, + ACTIONS(587), 1, + sym_integer, + ACTIONS(617), 1, anon_sym_LT_LT_LT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2869), 1, + ACTIONS(2854), 1, sym_float, - ACTIONS(2871), 1, - sym_integer, - ACTIONS(2873), 1, + ACTIONS(2856), 1, aux_sym__argument_name_token1, - ACTIONS(2875), 1, + ACTIONS(2858), 1, aux_sym__argument_name_token2, - STATE(1356), 1, + STATE(1362), 1, sym_text_interpolation, - ACTIONS(608), 2, + STATE(2450), 1, + sym_literal, + ACTIONS(613), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(610), 2, + ACTIONS(615), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(2555), 3, + STATE(972), 3, sym_boolean, sym_null, sym__string, - STATE(734), 4, + STATE(753), 4, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, - [52250] = 5, + [53266] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1357), 1, + STATE(1363), 1, sym_text_interpolation, - ACTIONS(2877), 6, + ACTIONS(2860), 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(1839), 10, + ACTIONS(1788), 10, anon_sym_BSLASH, anon_sym_RBRACE, anon_sym_LPAREN, @@ -120933,135 +121715,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LT_LT_LT, anon_sym_DOLLAR, - [52280] = 15, + [53296] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2846), 1, + aux_sym_namespace_use_declaration_token3, + STATE(1009), 1, + aux_sym_class_declaration_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1364), 1, + sym_text_interpolation, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [53342] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2862), 1, + aux_sym_class_declaration_token1, + STATE(1009), 1, + aux_sym_class_declaration_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1365), 1, + sym_text_interpolation, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [53388] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2494), 1, + aux_sym_final_modifier_token1, + ACTIONS(2496), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2498), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2500), 1, + sym_var_modifier, + ACTIONS(2864), 1, + aux_sym_class_declaration_token1, + STATE(1009), 1, + aux_sym_class_declaration_repeat1, + STATE(1329), 1, + sym__modifier, + STATE(1366), 1, + sym_text_interpolation, + ACTIONS(2502), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1327), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [53434] = 15, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - ACTIONS(2879), 1, + ACTIONS(2866), 1, anon_sym_LBRACE, - ACTIONS(2883), 1, + ACTIONS(2870), 1, anon_sym_BSLASHu, - ACTIONS(2885), 1, + ACTIONS(2872), 1, sym__new_line, - ACTIONS(2888), 1, + ACTIONS(2875), 1, anon_sym_DOLLAR, - ACTIONS(2890), 1, + ACTIONS(2877), 1, sym_heredoc_end, - STATE(1358), 1, + STATE(1367), 1, sym_text_interpolation, - STATE(1359), 1, + STATE(1368), 1, aux_sym_heredoc_body_repeat1, - STATE(1372), 1, + STATE(1376), 1, aux_sym__interpolated_string_body_heredoc, STATE(1443), 1, sym_variable_name, - STATE(1536), 1, + STATE(1540), 1, sym__simple_string_member_access_expression, - ACTIONS(2881), 2, + ACTIONS(2868), 2, sym_encapsed_string_chars_heredoc, sym_escape_sequence, - STATE(1537), 2, + STATE(1539), 2, sym__simple_string_subscript_expression, sym_dynamic_variable_name, - STATE(1568), 2, + STATE(1551), 2, sym__complex_string_part, sym__simple_string_part, - [52329] = 14, + [53483] = 14, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - ACTIONS(2892), 1, + ACTIONS(2879), 1, anon_sym_LBRACE, - ACTIONS(2898), 1, + ACTIONS(2885), 1, anon_sym_BSLASHu, - ACTIONS(2901), 1, + ACTIONS(2888), 1, sym__new_line, - ACTIONS(2904), 1, + ACTIONS(2891), 1, anon_sym_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(2894), 1, sym_heredoc_end, - STATE(1372), 1, + STATE(1376), 1, aux_sym__interpolated_string_body_heredoc, STATE(1443), 1, sym_variable_name, - STATE(1536), 1, + STATE(1540), 1, sym__simple_string_member_access_expression, - ACTIONS(2895), 2, + ACTIONS(2882), 2, sym_encapsed_string_chars_heredoc, sym_escape_sequence, - STATE(1359), 2, + STATE(1368), 2, sym_text_interpolation, aux_sym_heredoc_body_repeat1, - STATE(1537), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - STATE(1568), 2, - sym__complex_string_part, - sym__simple_string_part, - [52376] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(2879), 1, - anon_sym_LBRACE, - ACTIONS(2883), 1, - anon_sym_BSLASHu, - ACTIONS(2888), 1, - anon_sym_DOLLAR, - ACTIONS(2909), 1, - sym__new_line, - STATE(1358), 1, - aux_sym_heredoc_body_repeat1, - STATE(1360), 1, - sym_text_interpolation, - STATE(1372), 1, - aux_sym__interpolated_string_body_heredoc, - STATE(1443), 1, - sym_variable_name, - STATE(1536), 1, - sym__simple_string_member_access_expression, - ACTIONS(2881), 2, - sym_encapsed_string_chars_heredoc, - sym_escape_sequence, - STATE(1537), 2, + STATE(1539), 2, sym__simple_string_subscript_expression, sym_dynamic_variable_name, - STATE(1568), 2, + STATE(1551), 2, sym__complex_string_part, sym__simple_string_part, - [52422] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1361), 1, - sym_text_interpolation, - ACTIONS(2911), 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, - [52448] = 4, + [53530] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1362), 1, + STATE(1369), 1, sym_text_interpolation, - ACTIONS(2913), 14, + ACTIONS(2896), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121076,14 +121903,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52474] = 4, + [53556] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1363), 1, + STATE(1370), 1, sym_text_interpolation, - ACTIONS(2913), 14, + ACTIONS(2898), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121098,14 +121925,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52500] = 4, + [53582] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1364), 1, + STATE(1371), 1, sym_text_interpolation, - ACTIONS(2915), 14, + ACTIONS(2900), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121120,14 +121947,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52526] = 4, + [53608] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1365), 1, + STATE(1372), 1, sym_text_interpolation, - ACTIONS(2917), 14, + ACTIONS(2902), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121142,14 +121969,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52552] = 4, + [53634] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1366), 1, + STATE(1373), 1, sym_text_interpolation, - ACTIONS(2919), 14, + ACTIONS(2902), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121164,14 +121991,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52578] = 4, + [53660] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1367), 1, + STATE(1374), 1, sym_text_interpolation, - ACTIONS(2921), 14, + ACTIONS(2904), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121186,14 +122013,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52604] = 4, + [53686] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1368), 1, + STATE(1375), 1, sym_text_interpolation, - ACTIONS(2923), 14, + ACTIONS(2904), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121208,44 +122035,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52630] = 12, + [53712] = 13, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - ACTIONS(2925), 1, + ACTIONS(2866), 1, anon_sym_LBRACE, - ACTIONS(2931), 1, + ACTIONS(2870), 1, anon_sym_BSLASHu, - ACTIONS(2936), 1, + ACTIONS(2875), 1, anon_sym_DOLLAR, + STATE(1376), 1, + sym_text_interpolation, + STATE(1381), 1, + aux_sym__interpolated_string_body_heredoc, STATE(1443), 1, sym_variable_name, - STATE(1536), 1, + STATE(1540), 1, sym__simple_string_member_access_expression, - ACTIONS(2928), 2, + ACTIONS(2868), 2, sym_encapsed_string_chars_heredoc, sym_escape_sequence, - ACTIONS(2934), 2, + ACTIONS(2906), 2, sym_heredoc_end, sym__new_line, - STATE(1369), 2, - sym_text_interpolation, - aux_sym__interpolated_string_body_heredoc, - STATE(1537), 2, + STATE(1539), 2, sym__simple_string_subscript_expression, sym_dynamic_variable_name, - STATE(1568), 2, + STATE(1551), 2, sym__complex_string_part, sym__simple_string_part, - [52672] = 4, + [53756] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1370), 1, + STATE(1377), 1, sym_text_interpolation, - ACTIONS(2923), 14, + ACTIONS(2908), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121260,14 +122088,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52698] = 4, + [53782] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1371), 1, + STATE(1378), 1, sym_text_interpolation, - ACTIONS(2939), 14, + ACTIONS(2910), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121282,45 +122110,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52724] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(2879), 1, - anon_sym_LBRACE, - ACTIONS(2883), 1, - anon_sym_BSLASHu, - ACTIONS(2888), 1, - anon_sym_DOLLAR, - STATE(1369), 1, - aux_sym__interpolated_string_body_heredoc, - STATE(1372), 1, - sym_text_interpolation, - STATE(1443), 1, - sym_variable_name, - STATE(1536), 1, - sym__simple_string_member_access_expression, - ACTIONS(2881), 2, - sym_encapsed_string_chars_heredoc, - sym_escape_sequence, - ACTIONS(2941), 2, - sym_heredoc_end, - sym__new_line, - STATE(1537), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - STATE(1568), 2, - sym__complex_string_part, - sym__simple_string_part, - [52768] = 4, + [53808] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1373), 1, + STATE(1379), 1, sym_text_interpolation, - ACTIONS(2943), 14, + ACTIONS(2912), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121335,67 +122132,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52794] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, + [53834] = 13, ACTIONS(5), 1, sym_comment, - STATE(1374), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(2866), 1, + anon_sym_LBRACE, + ACTIONS(2870), 1, + anon_sym_BSLASHu, + ACTIONS(2875), 1, + anon_sym_DOLLAR, + STATE(1380), 1, sym_text_interpolation, - ACTIONS(2943), 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, - [52820] = 13, + STATE(1381), 1, + aux_sym__interpolated_string_body_heredoc, + STATE(1443), 1, + sym_variable_name, + STATE(1540), 1, + sym__simple_string_member_access_expression, + ACTIONS(2868), 2, + sym_encapsed_string_chars_heredoc, + sym_escape_sequence, + ACTIONS(2894), 2, + sym_heredoc_end, + sym__new_line, + STATE(1539), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + STATE(1551), 2, + sym__complex_string_part, + sym__simple_string_part, + [53878] = 12, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - ACTIONS(2879), 1, + ACTIONS(2914), 1, anon_sym_LBRACE, - ACTIONS(2883), 1, + ACTIONS(2920), 1, anon_sym_BSLASHu, - ACTIONS(2888), 1, + ACTIONS(2925), 1, anon_sym_DOLLAR, - STATE(1369), 1, - aux_sym__interpolated_string_body_heredoc, - STATE(1375), 1, - sym_text_interpolation, STATE(1443), 1, sym_variable_name, - STATE(1536), 1, + STATE(1540), 1, sym__simple_string_member_access_expression, - ACTIONS(2881), 2, + ACTIONS(2917), 2, sym_encapsed_string_chars_heredoc, sym_escape_sequence, - ACTIONS(2907), 2, + ACTIONS(2923), 2, sym_heredoc_end, sym__new_line, - STATE(1537), 2, + STATE(1381), 2, + sym_text_interpolation, + aux_sym__interpolated_string_body_heredoc, + STATE(1539), 2, sym__simple_string_subscript_expression, sym_dynamic_variable_name, - STATE(1568), 2, + STATE(1551), 2, sym__complex_string_part, sym__simple_string_part, - [52864] = 4, + [53920] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1376), 1, + STATE(1382), 1, sym_text_interpolation, - ACTIONS(2945), 14, + ACTIONS(2928), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121410,14 +122215,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52890] = 4, + [53946] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1377), 1, + STATE(1383), 1, sym_text_interpolation, - ACTIONS(2947), 14, + ACTIONS(2930), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121432,14 +122237,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52916] = 4, + [53972] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1378), 1, + STATE(1384), 1, sym_text_interpolation, - ACTIONS(2917), 14, + ACTIONS(2932), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121454,14 +122259,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52942] = 4, + [53998] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1379), 1, + STATE(1385), 1, sym_text_interpolation, - ACTIONS(2949), 14, + ACTIONS(2932), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121476,19 +122281,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52968] = 4, + [54024] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1380), 1, + STATE(1386), 1, sym_text_interpolation, - ACTIONS(2951), 13, + ACTIONS(2934), 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, @@ -121497,226 +122303,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52993] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2953), 1, - anon_sym_LBRACE, - ACTIONS(2957), 1, - anon_sym_BSLASHu, - ACTIONS(2959), 1, - anon_sym_DQUOTE, - ACTIONS(2961), 1, - anon_sym_DOLLAR, - STATE(1381), 1, - sym_text_interpolation, - STATE(1402), 1, - aux_sym__interpolated_string_body, - STATE(1498), 1, - sym_variable_name, - STATE(1641), 1, - sym__simple_string_member_access_expression, - ACTIONS(2955), 2, - sym_encapsed_string_chars, - sym_escape_sequence, - STATE(1640), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1642), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [53036] = 15, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2515), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2525), 1, - aux_sym_final_modifier_token1, - ACTIONS(2527), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2529), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2963), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2965), 1, - aux_sym_enum_declaration_token1, - ACTIONS(2967), 1, - aux_sym_class_declaration_token1, - ACTIONS(2969), 1, - aux_sym__arrow_function_header_token1, - STATE(1382), 1, - sym_text_interpolation, - STATE(2386), 1, - sym_static_modifier, - STATE(2398), 1, - sym__function_definition_header, - STATE(2503), 1, - sym_readonly_modifier, - STATE(2003), 2, - sym_final_modifier, - sym_abstract_modifier, - [53083] = 12, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2971), 1, - sym_name, - ACTIONS(2977), 1, - anon_sym_BSLASH, - STATE(1383), 1, - sym_text_interpolation, - STATE(1799), 1, - sym_namespace_use_clause, - STATE(2570), 1, - sym_namespace_name, - STATE(2627), 1, - sym_namespace_name_as_prefix, - ACTIONS(2975), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - STATE(1714), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2973), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [53124] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, + [54050] = 14, + ACTIONS(5), 1, sym_comment, - ACTIONS(2953), 1, - anon_sym_LBRACE, - ACTIONS(2957), 1, - anon_sym_BSLASHu, - ACTIONS(2961), 1, - anon_sym_DOLLAR, - ACTIONS(2979), 1, - anon_sym_DQUOTE, - STATE(1384), 1, - sym_text_interpolation, - STATE(1402), 1, - aux_sym__interpolated_string_body, - STATE(1498), 1, - sym_variable_name, - STATE(1641), 1, - sym__simple_string_member_access_expression, - ACTIONS(2955), 2, - sym_encapsed_string_chars, - sym_escape_sequence, - STATE(1640), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1642), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [53167] = 13, - ACTIONS(3), 1, + ACTIONS(11), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2981), 1, + ACTIONS(2866), 1, anon_sym_LBRACE, - ACTIONS(2985), 1, + ACTIONS(2870), 1, anon_sym_BSLASHu, - ACTIONS(2987), 1, - anon_sym_BQUOTE, - ACTIONS(2989), 1, + ACTIONS(2875), 1, anon_sym_DOLLAR, - STATE(1385), 1, + ACTIONS(2936), 1, + sym__new_line, + STATE(1367), 1, + aux_sym_heredoc_body_repeat1, + STATE(1376), 1, + aux_sym__interpolated_string_body_heredoc, + STATE(1387), 1, sym_text_interpolation, - STATE(1397), 1, - aux_sym__interpolated_execution_operator_body, - STATE(1506), 1, + STATE(1443), 1, sym_variable_name, - STATE(1627), 1, + STATE(1540), 1, sym__simple_string_member_access_expression, - ACTIONS(2983), 2, - sym_execution_string_chars, + ACTIONS(2868), 2, + sym_encapsed_string_chars_heredoc, sym_escape_sequence, - STATE(1628), 2, + STATE(1539), 2, sym__simple_string_subscript_expression, sym_dynamic_variable_name, - STATE(1645), 2, + STATE(1551), 2, sym__complex_string_part, sym__simple_string_part, - [53210] = 12, + [54096] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(5), 1, sym_comment, - ACTIONS(2971), 1, - sym_name, - ACTIONS(2993), 1, - anon_sym_BSLASH, - STATE(1386), 1, + STATE(1388), 1, sym_text_interpolation, - STATE(1857), 1, - sym_namespace_use_clause, - STATE(2579), 1, - sym_namespace_name, - STATE(2627), 1, - sym_namespace_name_as_prefix, - ACTIONS(2991), 2, + ACTIONS(2896), 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, - STATE(1714), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2973), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [53251] = 15, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2515), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2525), 1, + anon_sym_RBRACE, + aux_sym_enum_case_token1, aux_sym_final_modifier_token1, - ACTIONS(2527), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2529), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2963), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2969), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(2995), 1, - aux_sym_enum_declaration_token1, - ACTIONS(2997), 1, - aux_sym_class_declaration_token1, - STATE(1387), 1, - sym_text_interpolation, - STATE(2210), 1, - sym__function_definition_header, - STATE(2386), 1, - sym_static_modifier, - STATE(2588), 1, - sym_readonly_modifier, - STATE(1949), 2, - sym_final_modifier, - sym_abstract_modifier, - [53298] = 4, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [54122] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1388), 1, + STATE(1389), 1, sym_text_interpolation, - ACTIONS(2999), 13, + ACTIONS(2938), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121730,79 +122378,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53323] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2953), 1, - anon_sym_LBRACE, - ACTIONS(2957), 1, - anon_sym_BSLASHu, - ACTIONS(2961), 1, - anon_sym_DOLLAR, - ACTIONS(3001), 1, - anon_sym_DQUOTE, - STATE(1381), 1, - aux_sym__interpolated_string_body, - STATE(1389), 1, - sym_text_interpolation, - STATE(1498), 1, - sym_variable_name, - STATE(1641), 1, - sym__simple_string_member_access_expression, - ACTIONS(2955), 2, - sym_encapsed_string_chars, - sym_escape_sequence, - STATE(1640), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1642), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [53366] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2981), 1, - anon_sym_LBRACE, - ACTIONS(2985), 1, - anon_sym_BSLASHu, - ACTIONS(2989), 1, - anon_sym_DOLLAR, - ACTIONS(3003), 1, - anon_sym_BQUOTE, - STATE(1390), 1, - sym_text_interpolation, - STATE(1396), 1, - aux_sym__interpolated_execution_operator_body, - STATE(1506), 1, - sym_variable_name, - STATE(1627), 1, - sym__simple_string_member_access_expression, - ACTIONS(2983), 2, - sym_execution_string_chars, - sym_escape_sequence, - STATE(1628), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - STATE(1645), 2, - sym__complex_string_part, - sym__simple_string_part, - [53409] = 4, + [54147] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1391), 1, + STATE(1390), 1, sym_text_interpolation, - ACTIONS(3005), 13, + ACTIONS(2940), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, anon_sym_RBRACE, - aux_sym_enum_case_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -121811,14 +122399,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53434] = 4, + [54172] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1392), 1, + STATE(1391), 1, sym_text_interpolation, - ACTIONS(3007), 13, + ACTIONS(2942), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121832,43 +122420,103 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53459] = 12, + [54197] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2944), 1, + sym_name, + ACTIONS(2950), 1, + anon_sym_BSLASH, + STATE(1392), 1, + sym_text_interpolation, + STATE(1832), 1, + sym_namespace_use_clause, + STATE(2440), 1, + sym_namespace_name, + STATE(2606), 1, + sym_namespace_name_as_prefix, + ACTIONS(2948), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + STATE(1658), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2946), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [54238] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3009), 1, + ACTIONS(2952), 1, anon_sym_LBRACE, - ACTIONS(3015), 1, + ACTIONS(2956), 1, anon_sym_BSLASHu, - ACTIONS(3018), 1, - anon_sym_BQUOTE, - ACTIONS(3020), 1, + ACTIONS(2958), 1, + anon_sym_DQUOTE, + ACTIONS(2960), 1, anon_sym_DOLLAR, - STATE(1506), 1, + STATE(1393), 1, + sym_text_interpolation, + STATE(1411), 1, + aux_sym__interpolated_string_body, + STATE(1501), 1, sym_variable_name, - STATE(1627), 1, + STATE(1637), 1, sym__simple_string_member_access_expression, - ACTIONS(3012), 2, - sym_execution_string_chars, + ACTIONS(2954), 2, + sym_encapsed_string_chars, sym_escape_sequence, - STATE(1393), 2, - sym_text_interpolation, - aux_sym__interpolated_execution_operator_body, - STATE(1628), 2, + STATE(1635), 2, sym__simple_string_subscript_expression, sym_dynamic_variable_name, - STATE(1645), 2, + STATE(1640), 2, sym__complex_string_part, sym__simple_string_part, - [53500] = 4, + [54281] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(2966), 1, + anon_sym_BSLASHu, + ACTIONS(2968), 1, + anon_sym_BQUOTE, + ACTIONS(2970), 1, + anon_sym_DOLLAR, STATE(1394), 1, sym_text_interpolation, - ACTIONS(3023), 13, + STATE(1409), 1, + aux_sym__interpolated_execution_operator_body, + STATE(1462), 1, + sym_variable_name, + STATE(1626), 1, + sym__simple_string_member_access_expression, + ACTIONS(2964), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1593), 2, + sym__complex_string_part, + sym__simple_string_part, + STATE(1616), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + [54324] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + STATE(1395), 1, + sym_text_interpolation, + ACTIONS(2972), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121882,104 +122530,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53525] = 13, + [54349] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2953), 1, + ACTIONS(2974), 1, anon_sym_LBRACE, - ACTIONS(2957), 1, + ACTIONS(2980), 1, anon_sym_BSLASHu, - ACTIONS(2961), 1, - anon_sym_DOLLAR, - ACTIONS(3025), 1, - anon_sym_DQUOTE, - STATE(1384), 1, - aux_sym__interpolated_string_body, - STATE(1395), 1, - sym_text_interpolation, - STATE(1498), 1, - sym_variable_name, - STATE(1641), 1, - sym__simple_string_member_access_expression, - ACTIONS(2955), 2, - sym_encapsed_string_chars, - sym_escape_sequence, - STATE(1640), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1642), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [53568] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(2981), 1, - anon_sym_LBRACE, + ACTIONS(2983), 1, + anon_sym_BQUOTE, ACTIONS(2985), 1, - anon_sym_BSLASHu, - ACTIONS(2989), 1, anon_sym_DOLLAR, - ACTIONS(3027), 1, - anon_sym_BQUOTE, - STATE(1393), 1, - aux_sym__interpolated_execution_operator_body, - STATE(1396), 1, - sym_text_interpolation, - STATE(1506), 1, + STATE(1462), 1, sym_variable_name, - STATE(1627), 1, + STATE(1626), 1, sym__simple_string_member_access_expression, - ACTIONS(2983), 2, + ACTIONS(2977), 2, sym_execution_string_chars, sym_escape_sequence, - STATE(1628), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - STATE(1645), 2, + STATE(1396), 2, + sym_text_interpolation, + aux_sym__interpolated_execution_operator_body, + STATE(1593), 2, sym__complex_string_part, sym__simple_string_part, - [53611] = 13, + STATE(1616), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + [54390] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2981), 1, + ACTIONS(2952), 1, anon_sym_LBRACE, - ACTIONS(2985), 1, + ACTIONS(2956), 1, anon_sym_BSLASHu, - ACTIONS(2989), 1, + ACTIONS(2960), 1, anon_sym_DOLLAR, - ACTIONS(3029), 1, - anon_sym_BQUOTE, - STATE(1393), 1, - aux_sym__interpolated_execution_operator_body, + ACTIONS(2988), 1, + anon_sym_DQUOTE, STATE(1397), 1, sym_text_interpolation, - STATE(1506), 1, + STATE(1422), 1, + aux_sym__interpolated_string_body, + STATE(1501), 1, sym_variable_name, - STATE(1627), 1, + STATE(1637), 1, sym__simple_string_member_access_expression, - ACTIONS(2983), 2, - sym_execution_string_chars, + ACTIONS(2954), 2, + sym_encapsed_string_chars, sym_escape_sequence, - STATE(1628), 2, + STATE(1635), 2, sym__simple_string_subscript_expression, sym_dynamic_variable_name, - STATE(1645), 2, + STATE(1640), 2, sym__complex_string_part, sym__simple_string_part, - [53654] = 4, + [54433] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1398), 1, sym_text_interpolation, - ACTIONS(3031), 13, + ACTIONS(2990), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121993,19 +122610,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53679] = 4, + [54458] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1399), 1, sym_text_interpolation, - ACTIONS(3033), 13, + 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_enum_case_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -122014,14 +122631,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53704] = 4, + [54483] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1400), 1, sym_text_interpolation, - ACTIONS(3035), 13, + ACTIONS(2994), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122035,19 +122652,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53729] = 4, + [54508] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1401), 1, sym_text_interpolation, - ACTIONS(3037), 13, + ACTIONS(2996), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, anon_sym_RBRACE, + aux_sym_enum_case_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -122056,43 +122673,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53754] = 12, + [54533] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(5), 1, sym_comment, - ACTIONS(3039), 1, - anon_sym_LBRACE, - ACTIONS(3045), 1, - anon_sym_BSLASHu, - ACTIONS(3048), 1, - anon_sym_DQUOTE, - ACTIONS(3050), 1, - anon_sym_DOLLAR, - STATE(1498), 1, - sym_variable_name, - STATE(1641), 1, - sym__simple_string_member_access_expression, - ACTIONS(3042), 2, - sym_encapsed_string_chars, - sym_escape_sequence, - STATE(1402), 2, + STATE(1402), 1, sym_text_interpolation, - aux_sym__interpolated_string_body, - STATE(1640), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1642), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [53795] = 4, + ACTIONS(2998), 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, + [54558] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1403), 1, sym_text_interpolation, - ACTIONS(3053), 13, + ACTIONS(3000), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122106,14 +122715,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53820] = 4, + [54583] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1404), 1, sym_text_interpolation, - ACTIONS(3055), 13, + ACTIONS(3002), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122127,19 +122736,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53845] = 4, + [54608] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1405), 1, sym_text_interpolation, - ACTIONS(3057), 13, + ACTIONS(3004), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, anon_sym_RBRACE, - aux_sym_enum_case_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -122148,14 +122757,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53870] = 4, + [54633] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1406), 1, sym_text_interpolation, - ACTIONS(3059), 13, + ACTIONS(3006), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122169,38 +122778,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53895] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1741), 1, - anon_sym_BSLASH, - STATE(1407), 1, - sym_text_interpolation, - STATE(2377), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3061), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - ACTIONS(3063), 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, - [53926] = 4, + [54658] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1408), 1, + STATE(1407), 1, sym_text_interpolation, - ACTIONS(3065), 13, + ACTIONS(3008), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122214,14 +122799,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53951] = 4, + [54683] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1409), 1, + STATE(1408), 1, sym_text_interpolation, - ACTIONS(3067), 13, + ACTIONS(3010), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122235,19 +122820,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53976] = 4, + [54708] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(2966), 1, + anon_sym_BSLASHu, + ACTIONS(2970), 1, + anon_sym_DOLLAR, + ACTIONS(3012), 1, + anon_sym_BQUOTE, + STATE(1396), 1, + aux_sym__interpolated_execution_operator_body, + STATE(1409), 1, + sym_text_interpolation, + STATE(1462), 1, + sym_variable_name, + STATE(1626), 1, + sym__simple_string_member_access_expression, + ACTIONS(2964), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1593), 2, + sym__complex_string_part, + sym__simple_string_part, + STATE(1616), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + [54751] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1410), 1, sym_text_interpolation, - ACTIONS(3069), 13, + ACTIONS(3014), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, anon_sym_RBRACE, + aux_sym_enum_case_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -122256,14 +122871,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54001] = 4, + [54776] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(2956), 1, + anon_sym_BSLASHu, + ACTIONS(2960), 1, + anon_sym_DOLLAR, + ACTIONS(3016), 1, + anon_sym_DQUOTE, STATE(1411), 1, sym_text_interpolation, - ACTIONS(3071), 13, + STATE(1422), 1, + aux_sym__interpolated_string_body, + STATE(1501), 1, + sym_variable_name, + STATE(1637), 1, + sym__simple_string_member_access_expression, + ACTIONS(2954), 2, + sym_encapsed_string_chars, + sym_escape_sequence, + STATE(1635), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + STATE(1640), 2, + sym__complex_string_part, + sym__simple_string_part, + [54819] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + STATE(1412), 1, + sym_text_interpolation, + ACTIONS(3018), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122277,14 +122922,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54026] = 4, + [54844] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1698), 1, + anon_sym_BSLASH, + STATE(1413), 1, + sym_text_interpolation, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3020), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(3022), 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, + [54875] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1412), 1, + STATE(1414), 1, sym_text_interpolation, - ACTIONS(3073), 13, + ACTIONS(3024), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122298,14 +122967,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54051] = 4, + [54900] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2944), 1, + sym_name, + ACTIONS(3028), 1, + anon_sym_BSLASH, + STATE(1415), 1, + sym_text_interpolation, + STATE(1787), 1, + sym_namespace_use_clause, + STATE(2592), 1, + sym_namespace_name, + STATE(2606), 1, + sym_namespace_name_as_prefix, + ACTIONS(3026), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + STATE(1658), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2946), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [54941] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(2966), 1, + anon_sym_BSLASHu, + ACTIONS(2970), 1, + anon_sym_DOLLAR, + ACTIONS(3030), 1, + anon_sym_BQUOTE, + STATE(1416), 1, + sym_text_interpolation, + STATE(1421), 1, + aux_sym__interpolated_execution_operator_body, + STATE(1462), 1, + sym_variable_name, + STATE(1626), 1, + sym__simple_string_member_access_expression, + ACTIONS(2964), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1593), 2, + sym__complex_string_part, + sym__simple_string_part, + STATE(1616), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + [54984] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1413), 1, + STATE(1417), 1, sym_text_interpolation, - ACTIONS(3075), 13, + ACTIONS(3032), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122319,19 +123047,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54076] = 4, + [55009] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1414), 1, + STATE(1418), 1, sym_text_interpolation, - ACTIONS(3077), 13, + 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_enum_case_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -122340,14 +123068,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54101] = 4, + [55034] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1415), 1, + STATE(1419), 1, sym_text_interpolation, - ACTIONS(3079), 13, + ACTIONS(3036), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122361,157 +123089,286 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54126] = 12, + [55059] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2883), 1, - anon_sym_BSLASHu, - ACTIONS(3081), 1, + ACTIONS(2952), 1, anon_sym_LBRACE, - ACTIONS(3083), 1, + ACTIONS(2956), 1, + anon_sym_BSLASHu, + ACTIONS(2960), 1, anon_sym_DOLLAR, - STATE(1375), 1, - aux_sym__interpolated_string_body_heredoc, - STATE(1416), 1, + ACTIONS(3038), 1, + anon_sym_DQUOTE, + STATE(1397), 1, + aux_sym__interpolated_string_body, + STATE(1420), 1, sym_text_interpolation, - STATE(1443), 1, + STATE(1501), 1, sym_variable_name, - STATE(1536), 1, + STATE(1637), 1, sym__simple_string_member_access_expression, - ACTIONS(2881), 2, - sym_encapsed_string_chars_heredoc, + ACTIONS(2954), 2, + sym_encapsed_string_chars, sym_escape_sequence, - STATE(1537), 2, + STATE(1635), 2, sym__simple_string_subscript_expression, sym_dynamic_variable_name, - STATE(1568), 2, + STATE(1640), 2, sym__complex_string_part, sym__simple_string_part, - [54166] = 10, + [55102] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3090), 1, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(2966), 1, + anon_sym_BSLASHu, + ACTIONS(2970), 1, + anon_sym_DOLLAR, + ACTIONS(3040), 1, + anon_sym_BQUOTE, + STATE(1396), 1, + aux_sym__interpolated_execution_operator_body, + STATE(1421), 1, + sym_text_interpolation, + STATE(1462), 1, + sym_variable_name, + STATE(1626), 1, + sym__simple_string_member_access_expression, + ACTIONS(2964), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1593), 2, + sym__complex_string_part, + sym__simple_string_part, + STATE(1616), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + [55145] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3042), 1, + anon_sym_LBRACE, + ACTIONS(3048), 1, + anon_sym_BSLASHu, + ACTIONS(3051), 1, + anon_sym_DQUOTE, + ACTIONS(3053), 1, + anon_sym_DOLLAR, + STATE(1501), 1, + sym_variable_name, + STATE(1637), 1, + sym__simple_string_member_access_expression, + ACTIONS(3045), 2, + sym_encapsed_string_chars, + sym_escape_sequence, + STATE(1422), 2, + sym_text_interpolation, + aux_sym__interpolated_string_body, + STATE(1635), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + STATE(1640), 2, + sym__complex_string_part, + sym__simple_string_part, + [55186] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3061), 1, anon_sym_AMP, - ACTIONS(3097), 1, + ACTIONS(3068), 1, anon_sym_PIPE, - STATE(1417), 1, + STATE(1423), 1, sym_text_interpolation, - STATE(1441), 1, + STATE(1450), 1, aux_sym_intersection_type_repeat1, - STATE(1469), 1, + STATE(1507), 1, aux_sym_disjunctive_normal_form_type_repeat1, - STATE(1470), 1, + STATE(1512), 1, aux_sym_union_type_repeat1, - ACTIONS(3092), 3, + ACTIONS(3063), 3, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOLLAR, - ACTIONS(3085), 4, + ACTIONS(3056), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - [54202] = 12, + [55222] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2870), 1, + anon_sym_BSLASHu, + ACTIONS(3070), 1, + anon_sym_LBRACE, + ACTIONS(3072), 1, + anon_sym_DOLLAR, + STATE(1380), 1, + aux_sym__interpolated_string_body_heredoc, + STATE(1424), 1, + sym_text_interpolation, + STATE(1443), 1, + sym_variable_name, + STATE(1540), 1, + sym__simple_string_member_access_expression, + ACTIONS(2868), 2, + sym_encapsed_string_chars_heredoc, + sym_escape_sequence, + STATE(1539), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + STATE(1551), 2, + sym__complex_string_part, + sym__simple_string_part, + [55262] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3074), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(3076), 1, + aux_sym__arrow_function_header_token1, + STATE(1425), 1, + sym_text_interpolation, + ACTIONS(2254), 10, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token3, + 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, + [55290] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3099), 1, + ACTIONS(3078), 1, sym_name, - ACTIONS(3101), 1, + ACTIONS(3080), 1, anon_sym_RBRACK, - STATE(1418), 1, + STATE(1426), 1, sym_text_interpolation, - STATE(2216), 1, + STATE(2413), 1, sym_attribute, - STATE(2462), 1, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(1782), 2, + STATE(1808), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2483), 3, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54242] = 12, + [55330] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3099), 1, + ACTIONS(3078), 1, sym_name, - ACTIONS(3103), 1, + ACTIONS(3082), 1, anon_sym_RBRACK, - STATE(1419), 1, + STATE(1427), 1, sym_text_interpolation, - STATE(2216), 1, + STATE(2413), 1, sym_attribute, - STATE(2462), 1, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(1782), 2, + STATE(1808), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2483), 3, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54282] = 11, + [55370] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(324), 1, + anon_sym_LT_LT_LT, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2971), 1, - sym_name, - ACTIONS(3105), 1, - anon_sym_BSLASH, - STATE(1420), 1, + ACTIONS(3084), 1, + sym_integer, + STATE(1428), 1, sym_text_interpolation, - STATE(1904), 1, - sym_namespace_use_clause, - STATE(2590), 1, - sym_namespace_name, - STATE(2627), 1, - sym_namespace_name_as_prefix, - STATE(1714), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2973), 3, + STATE(2346), 1, + sym__string, + ACTIONS(320), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(322), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(884), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + [55403] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1429), 1, + sym_text_interpolation, + ACTIONS(3086), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54319] = 7, + sym_name, + ACTIONS(3088), 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, + [55428] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1906), 1, + ACTIONS(1909), 1, anon_sym_COLON_COLON, - ACTIONS(1966), 1, + ACTIONS(1927), 1, anon_sym_COLON, - STATE(1421), 1, + STATE(1430), 1, sym_text_interpolation, - ACTIONS(2855), 2, + ACTIONS(2740), 2, aux_sym_namespace_use_declaration_token2, aux_sym__arrow_function_header_token1, - ACTIONS(1647), 7, + ACTIONS(1596), 7, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_LPAREN, @@ -122519,69 +123376,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [54348] = 9, + [55457] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1906), 1, - anon_sym_COLON_COLON, - STATE(1422), 1, - sym_text_interpolation, - STATE(1847), 1, - sym_variable_name, - STATE(1850), 1, - sym_static_variable_declaration, - ACTIONS(2855), 2, + ACTIONS(3090), 1, aux_sym_namespace_use_declaration_token2, + ACTIONS(3092), 1, aux_sym__arrow_function_header_token1, - ACTIONS(1647), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [54381] = 11, + STATE(1431), 1, + sym_text_interpolation, + ACTIONS(2254), 9, + aux_sym_function_static_declaration_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, + [55484] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3099), 1, + ACTIONS(2944), 1, sym_name, - STATE(1423), 1, + ACTIONS(3094), 1, + anon_sym_BSLASH, + STATE(1432), 1, sym_text_interpolation, - STATE(2216), 1, - sym_attribute, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(1757), 1, + sym_namespace_use_clause, + STATE(2548), 1, sym_namespace_name, - STATE(1782), 2, + STATE(2606), 1, + sym_namespace_name_as_prefix, + STATE(1658), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2483), 3, + ACTIONS(2946), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54418] = 5, + [55521] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1424), 1, + STATE(1433), 1, sym_text_interpolation, - ACTIONS(3107), 4, + ACTIONS(3020), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3109), 7, + ACTIONS(3022), 7, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -122589,45 +123443,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [54443] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3099), 1, - sym_name, - STATE(1425), 1, - sym_text_interpolation, - STATE(1992), 1, - sym_attribute, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2626), 1, - sym_namespace_name, - STATE(1782), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2483), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [54480] = 5, + [55546] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1426), 1, + STATE(1434), 1, sym_text_interpolation, - ACTIONS(3111), 4, + ACTIONS(3096), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3113), 7, + ACTIONS(3098), 7, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -122635,19 +123463,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [54505] = 5, + [55571] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1427), 1, + STATE(1435), 1, sym_text_interpolation, - ACTIONS(3061), 4, + ACTIONS(3100), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3063), 7, + ACTIONS(3102), 7, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -122655,400 +123483,375 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [54530] = 5, + [55596] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - STATE(1428), 1, + ACTIONS(3078), 1, + sym_name, + STATE(1436), 1, sym_text_interpolation, - ACTIONS(3115), 4, + STATE(1914), 1, + sym_attribute, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1808), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, + [55633] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(2944), 1, sym_name, - ACTIONS(3117), 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, - [54555] = 9, + STATE(1437), 1, + sym_text_interpolation, + STATE(2063), 1, + sym_namespace_use_clause, + STATE(2605), 1, + sym_namespace_name, + STATE(2606), 1, + sym_namespace_name_as_prefix, + STATE(1658), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2946), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [55670] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(319), 1, - anon_sym_LT_LT_LT, - ACTIONS(1587), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3119), 1, - sym_integer, - STATE(1429), 1, + ACTIONS(3078), 1, + sym_name, + STATE(1438), 1, sym_text_interpolation, - STATE(2246), 1, - sym__string, - ACTIONS(315), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(317), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(876), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - [54588] = 11, + STATE(2413), 1, + sym_attribute, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + STATE(1808), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [55707] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2971), 1, + ACTIONS(2944), 1, sym_name, - ACTIONS(3121), 1, + ACTIONS(3104), 1, anon_sym_BSLASH, - STATE(1430), 1, + STATE(1439), 1, sym_text_interpolation, STATE(1879), 1, sym_namespace_use_clause, - STATE(2492), 1, + STATE(2555), 1, sym_namespace_name, - STATE(2627), 1, + STATE(2606), 1, sym_namespace_name_as_prefix, - STATE(1714), 2, + STATE(1658), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2973), 3, + ACTIONS(2946), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54625] = 9, + [55744] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(319), 1, + ACTIONS(324), 1, anon_sym_LT_LT_LT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3106), 1, sym_integer, - STATE(1431), 1, + STATE(1440), 1, sym_text_interpolation, - STATE(2193), 1, + STATE(2332), 1, sym__string, - ACTIONS(315), 2, + ACTIONS(320), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(317), 2, + ACTIONS(322), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(876), 4, + STATE(884), 4, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, - [54658] = 9, + [55777] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - ACTIONS(1906), 1, - anon_sym_COLON_COLON, - STATE(1432), 1, + STATE(1441), 1, sym_text_interpolation, - STATE(1847), 1, - sym_variable_name, - STATE(1854), 1, - sym_static_variable_declaration, - ACTIONS(2855), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym__arrow_function_header_token1, - ACTIONS(1647), 5, + ACTIONS(3108), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(3110), 6, + anon_sym_AMP, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [54691] = 11, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [55801] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2971), 1, - sym_name, - STATE(1433), 1, + STATE(1442), 1, sym_text_interpolation, - STATE(2079), 1, - sym_namespace_use_clause, - STATE(2626), 1, - sym_namespace_name, - STATE(2627), 1, - sym_namespace_name_as_prefix, - STATE(1714), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2973), 3, + ACTIONS(3112), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54728] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, - ACTIONS(3125), 1, - anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_RPAREN, - STATE(597), 1, - sym_arguments, - STATE(1434), 1, - sym_text_interpolation, - STATE(2105), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1617), 5, + sym_name, + ACTIONS(3114), 6, + anon_sym_AMP, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [54760] = 5, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [55825] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - STATE(1435), 1, + ACTIONS(3118), 1, + anon_sym_DASH_GT, + ACTIONS(3120), 1, + anon_sym_LBRACK, + ACTIONS(3124), 1, + sym_encapsed_string_chars_after_variable_heredoc, + STATE(1443), 1, sym_text_interpolation, - ACTIONS(1683), 5, + ACTIONS(3116), 3, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_DOLLAR, + ACTIONS(3122), 4, sym_encapsed_string_chars_heredoc, - sym_encapsed_string_chars_after_variable_heredoc, sym_heredoc_end, sym_escape_sequence, sym__new_line, - ACTIONS(1685), 5, + [55855] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1444), 1, + sym_text_interpolation, + ACTIONS(3126), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(3129), 6, + anon_sym_AMP, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_BSLASHu, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, anon_sym_DOLLAR, - [54784] = 7, + [55879] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(597), 1, + STATE(579), 1, sym_arguments, - STATE(1436), 1, + STATE(1445), 1, sym_text_interpolation, - ACTIONS(1621), 3, + ACTIONS(1578), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [54812] = 7, + [55907] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(597), 1, - sym_arguments, - STATE(1437), 1, - sym_text_interpolation, - ACTIONS(1812), 3, + ACTIONS(3132), 1, anon_sym_COMMA, + ACTIONS(3134), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1617), 5, + STATE(579), 1, + sym_arguments, + STATE(1446), 1, + sym_text_interpolation, + STATE(1918), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [54840] = 10, + [55939] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3129), 1, - sym_name, - STATE(1438), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(1447), 1, sym_text_interpolation, - STATE(2626), 1, - sym_namespace_name, - STATE(2627), 1, - sym_namespace_name_as_prefix, - STATE(1602), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2973), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [54874] = 10, + ACTIONS(1813), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [55967] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3131), 1, + ACTIONS(3136), 1, sym_name, - STATE(1439), 1, + STATE(1448), 1, sym_text_interpolation, - STATE(2626), 1, - sym_namespace_name, - STATE(2627), 1, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(1871), 2, + STATE(2605), 1, + sym_namespace_name, + STATE(2144), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2973), 3, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54908] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, - ACTIONS(1741), 1, - anon_sym_BSLASH, - ACTIONS(3133), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(597), 1, - sym_arguments, - STATE(1440), 1, - sym_text_interpolation, - STATE(2377), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [54940] = 7, + [56001] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3090), 1, + ACTIONS(3138), 1, anon_sym_AMP, - STATE(1441), 1, + STATE(1449), 2, sym_text_interpolation, - STATE(1442), 1, aux_sym_intersection_type_repeat1, - ACTIONS(3135), 4, + ACTIONS(3108), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3137), 4, + ACTIONS(3110), 4, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_DOLLAR, - [54968] = 6, + [56027] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3141), 1, + ACTIONS(3061), 1, anon_sym_AMP, - STATE(1442), 2, - sym_text_interpolation, + STATE(1449), 1, aux_sym_intersection_type_repeat1, - ACTIONS(3139), 4, + STATE(1450), 1, + sym_text_interpolation, + ACTIONS(3141), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3144), 4, + ACTIONS(3143), 4, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_DOLLAR, - [54994] = 8, + [56055] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - ACTIONS(3148), 1, - anon_sym_DASH_GT, - ACTIONS(3150), 1, - anon_sym_LBRACK, - ACTIONS(3154), 1, - sym_encapsed_string_chars_after_variable_heredoc, - STATE(1443), 1, + STATE(1451), 1, sym_text_interpolation, - ACTIONS(3146), 3, - anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_DOLLAR, - ACTIONS(3152), 4, + ACTIONS(1600), 5, sym_encapsed_string_chars_heredoc, + sym_encapsed_string_chars_after_variable_heredoc, sym_heredoc_end, sym_escape_sequence, sym__new_line, - [55024] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - STATE(1444), 1, - sym_text_interpolation, - ACTIONS(3156), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - ACTIONS(3158), 6, - anon_sym_AMP, + ACTIONS(1602), 5, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_BSLASHu, anon_sym_DOLLAR, - [55048] = 6, + [56079] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1906), 1, + ACTIONS(1909), 1, anon_sym_COLON_COLON, - STATE(1445), 1, + STATE(1452), 1, sym_text_interpolation, - ACTIONS(2855), 2, + ACTIONS(2740), 2, aux_sym_namespace_use_declaration_token2, aux_sym__arrow_function_header_token1, - ACTIONS(1647), 7, + ACTIONS(1596), 7, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_LPAREN, @@ -123056,20468 +123859,19901 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55074] = 5, + [56105] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1446), 1, + STATE(1453), 1, sym_text_interpolation, - ACTIONS(3160), 4, + ACTIONS(3145), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3163), 6, + ACTIONS(3147), 6, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [55098] = 10, + [56129] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3166), 1, + ACTIONS(3149), 1, sym_name, - STATE(1447), 1, + STATE(1454), 1, sym_text_interpolation, - STATE(2462), 1, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(1980), 2, + STATE(1818), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2483), 3, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55132] = 5, + [56163] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, sym_comment, - STATE(1448), 1, + ACTIONS(3151), 1, + sym_name, + STATE(1455), 1, sym_text_interpolation, - ACTIONS(3168), 4, + STATE(2605), 1, + sym_namespace_name, + STATE(2606), 1, + sym_namespace_name_as_prefix, + STATE(1623), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2946), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - sym_name, - ACTIONS(3170), 6, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [55156] = 5, + [56197] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1449), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(3153), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(579), 1, + sym_arguments, + STATE(1456), 1, sym_text_interpolation, - ACTIONS(3139), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - ACTIONS(3144), 6, - anon_sym_AMP, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [55180] = 9, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [56229] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(852), 1, + ACTIONS(864), 1, anon_sym_COMMA, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - ACTIONS(3172), 1, + ACTIONS(3155), 1, anon_sym_RPAREN, - STATE(597), 1, + STATE(579), 1, sym_arguments, - STATE(1450), 1, + STATE(1457), 1, sym_text_interpolation, - STATE(2052), 1, + STATE(2131), 1, aux_sym__list_destructing_repeat1, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55212] = 10, + [56261] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3174), 1, + ACTIONS(3157), 1, sym_name, - STATE(1451), 1, + STATE(1458), 1, sym_text_interpolation, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(1768), 2, + STATE(2606), 1, + sym_namespace_name_as_prefix, + STATE(1806), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2483), 3, + ACTIONS(2946), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [56295] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1459), 1, + sym_text_interpolation, + ACTIONS(3159), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55246] = 10, + sym_name, + ACTIONS(3161), 6, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [56319] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(570), 1, + ACTIONS(575), 1, aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3176), 1, + ACTIONS(3163), 1, sym_name, - STATE(1452), 1, + STATE(1460), 1, sym_text_interpolation, - STATE(2462), 1, + STATE(2494), 1, sym_namespace_name_as_prefix, - STATE(2626), 1, + STATE(2605), 1, sym_namespace_name, - STATE(2132), 2, + STATE(2089), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2483), 3, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55280] = 9, + [56353] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - ACTIONS(3125), 1, + ACTIONS(3165), 1, anon_sym_COMMA, - ACTIONS(3178), 1, + ACTIONS(3167), 1, anon_sym_RPAREN, - STATE(597), 1, + STATE(579), 1, sym_arguments, - STATE(1453), 1, + STATE(1461), 1, sym_text_interpolation, - STATE(2135), 1, + STATE(2093), 1, aux_sym_unset_statement_repeat1, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55312] = 5, + [56385] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1454), 1, + ACTIONS(3116), 1, + anon_sym_BSLASHu, + ACTIONS(3169), 1, + anon_sym_DASH_GT, + ACTIONS(3171), 1, + anon_sym_LBRACK, + ACTIONS(3173), 1, + sym_execution_string_chars_after_variable, + STATE(1462), 1, sym_text_interpolation, - ACTIONS(3180), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - ACTIONS(3182), 6, - anon_sym_AMP, + ACTIONS(3122), 5, + sym_execution_string_chars, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, + sym_escape_sequence, + anon_sym_BQUOTE, anon_sym_DOLLAR, - [55336] = 7, + [56414] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3188), 1, - anon_sym_PIPE, - STATE(1455), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(1463), 1, sym_text_interpolation, - STATE(1480), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3186), 3, + ACTIONS(2482), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1574), 5, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - ACTIONS(3184), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [55363] = 9, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [56441] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(616), 1, - anon_sym_DOLLAR, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3190), 1, - sym_name, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(1456), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(1464), 1, sym_text_interpolation, - STATE(1550), 1, - sym__reserved_identifier, - STATE(1534), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2483), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [55394] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(616), 1, - anon_sym_DOLLAR, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3194), 1, - sym_name, - ACTIONS(3196), 1, + ACTIONS(3175), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1574), 5, anon_sym_LBRACE, - STATE(1457), 1, - sym_text_interpolation, - STATE(1555), 1, - sym__reserved_identifier, - STATE(1552), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2483), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [55425] = 8, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [56468] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1735), 1, anon_sym_DOLLAR, - ACTIONS(3198), 1, + ACTIONS(3177), 1, sym_name, - ACTIONS(3200), 1, + ACTIONS(3179), 1, anon_sym_LBRACE, - STATE(1458), 1, + STATE(1465), 1, sym_text_interpolation, - ACTIONS(2973), 3, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(825), 3, + STATE(697), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55454] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1741), 1, - anon_sym_BSLASH, - ACTIONS(3202), 1, - anon_sym_EQ, - STATE(1459), 1, - sym_text_interpolation, - STATE(2377), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3063), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3061), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [55483] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1906), 1, - anon_sym_COLON_COLON, - ACTIONS(1966), 1, - anon_sym_COLON, - STATE(1460), 1, - sym_text_interpolation, - ACTIONS(1647), 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, - [55508] = 7, + [56497] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1692), 1, anon_sym_LPAREN, - STATE(597), 1, - sym_arguments, - STATE(1461), 1, - sym_text_interpolation, - ACTIONS(2551), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [55535] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1741), 1, + ACTIONS(1698), 1, anon_sym_BSLASH, - ACTIONS(1748), 1, - anon_sym_LPAREN, - STATE(738), 1, + STATE(666), 1, sym_arguments, - STATE(1462), 1, + STATE(1466), 1, sym_text_interpolation, - STATE(2377), 1, + STATE(2243), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55564] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1575), 1, - anon_sym_DOLLAR, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3204), 1, - sym_name, - ACTIONS(3206), 1, - anon_sym_LBRACE, - STATE(842), 1, - sym__reserved_identifier, - STATE(1463), 1, - sym_text_interpolation, - STATE(772), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2973), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [55595] = 8, + [56526] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(616), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3208), 1, + ACTIONS(3181), 1, sym_name, - ACTIONS(3212), 1, + ACTIONS(3185), 1, anon_sym_LBRACE, - STATE(1464), 1, + STATE(1467), 1, sym_text_interpolation, - ACTIONS(3210), 3, + ACTIONS(3183), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(585), 3, + STATE(647), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55624] = 8, + [56555] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(616), 1, + ACTIONS(621), 1, anon_sym_DOLLAR, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3214), 1, + ACTIONS(3187), 1, sym_name, - ACTIONS(3216), 1, + ACTIONS(3189), 1, anon_sym_LBRACE, - STATE(1465), 1, + STATE(1468), 1, sym_text_interpolation, - ACTIONS(3210), 3, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(584), 3, + STATE(573), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55653] = 8, + [56584] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1762), 1, + ACTIONS(621), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3191), 1, sym_name, - ACTIONS(3220), 1, + ACTIONS(3193), 1, anon_sym_LBRACE, - STATE(1466), 1, + STATE(660), 1, + sym__reserved_identifier, + STATE(1469), 1, sym_text_interpolation, - ACTIONS(2973), 3, + STATE(572), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(824), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [55682] = 7, + [56615] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(597), 1, + STATE(579), 1, sym_arguments, - STATE(1467), 1, + STATE(1470), 1, sym_text_interpolation, - ACTIONS(2593), 2, + ACTIONS(3195), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55709] = 5, + [56642] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1685), 1, - anon_sym_BSLASHu, - STATE(1468), 1, - sym_text_interpolation, - ACTIONS(1683), 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, + ACTIONS(621), 1, anon_sym_DOLLAR, - [55732] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3188), 1, - anon_sym_PIPE, - STATE(1469), 1, - sym_text_interpolation, - STATE(1480), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3224), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - ACTIONS(3222), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, + ACTIONS(3197), 1, sym_name, - [55759] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3230), 1, - anon_sym_PIPE, - STATE(1470), 1, - sym_text_interpolation, - STATE(1479), 1, - aux_sym_union_type_repeat1, - ACTIONS(3228), 3, + ACTIONS(3199), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - ACTIONS(3226), 4, + STATE(1471), 1, + sym_text_interpolation, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - sym_name, - [55786] = 5, + STATE(574), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [56671] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1685), 1, - anon_sym_BSLASHu, - STATE(1471), 1, - sym_text_interpolation, - ACTIONS(1683), 8, - sym_encapsed_string_chars, - sym_encapsed_string_chars_after_variable, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LBRACK, - sym_escape_sequence, - anon_sym_DQUOTE, + ACTIONS(1528), 1, anon_sym_DOLLAR, - [55809] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1762), 1, - anon_sym_DOLLAR, - ACTIONS(3232), 1, + ACTIONS(3201), 1, sym_name, - ACTIONS(3234), 1, + ACTIONS(3203), 1, anon_sym_LBRACE, - STATE(667), 1, - sym__reserved_identifier, STATE(1472), 1, sym_text_interpolation, - STATE(828), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2483), 3, + ACTIONS(3183), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55840] = 8, + STATE(639), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [56700] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1749), 1, anon_sym_DOLLAR, - ACTIONS(3236), 1, + ACTIONS(3205), 1, sym_name, - ACTIONS(3238), 1, + ACTIONS(3207), 1, anon_sym_LBRACE, STATE(1473), 1, sym_text_interpolation, - ACTIONS(2973), 3, + ACTIONS(2946), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(841), 3, + STATE(816), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55869] = 7, + [56729] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, - STATE(597), 1, - sym_arguments, + ACTIONS(3213), 1, + anon_sym_PIPE, STATE(1474), 1, sym_text_interpolation, - ACTIONS(3240), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1617), 5, + STATE(1477), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3211), 3, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [55896] = 8, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + ACTIONS(3209), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [56756] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1762), 1, + ACTIONS(1534), 1, anon_sym_DOLLAR, - ACTIONS(3242), 1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3215), 1, sym_name, - ACTIONS(3244), 1, + ACTIONS(3219), 1, anon_sym_LBRACE, STATE(1475), 1, sym_text_interpolation, - ACTIONS(2973), 3, + ACTIONS(3217), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(840), 3, + STATE(765), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55925] = 7, + [56785] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3188), 1, - anon_sym_PIPE, - STATE(1455), 1, - aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(3221), 1, + sym_name, + ACTIONS(3223), 1, + anon_sym_LBRACE, STATE(1476), 1, sym_text_interpolation, - ACTIONS(3248), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - ACTIONS(3246), 4, + ACTIONS(2946), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - sym_name, - [55952] = 5, + STATE(815), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [56814] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3213), 1, + anon_sym_PIPE, STATE(1477), 1, sym_text_interpolation, - ACTIONS(3250), 4, + STATE(1517), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3227), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + ACTIONS(3225), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3252), 5, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [55975] = 10, + [56841] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_AMP, - ACTIONS(3254), 1, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(3229), 1, sym_name, - ACTIONS(3256), 1, - anon_sym_LPAREN, + ACTIONS(3231), 1, + anon_sym_LBRACE, STATE(1478), 1, sym_text_interpolation, - STATE(1544), 1, - sym_reference_modifier, - STATE(1610), 1, - sym_formal_parameters, - STATE(2295), 1, - sym__reserved_identifier, - ACTIONS(2483), 3, + ACTIONS(2946), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56008] = 6, + STATE(825), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [56870] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3258), 1, - anon_sym_PIPE, - STATE(1479), 2, + STATE(1479), 1, sym_text_interpolation, - aux_sym_union_type_repeat1, - ACTIONS(3182), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - ACTIONS(3180), 4, + ACTIONS(3233), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - [56033] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3261), 1, - anon_sym_PIPE, - STATE(1480), 2, - sym_text_interpolation, - aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3170), 3, + ACTIONS(3235), 5, + anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - ACTIONS(3168), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [56058] = 7, + [56893] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, - STATE(597), 1, - sym_arguments, - STATE(1481), 1, - sym_text_interpolation, - ACTIONS(3264), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1617), 5, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(3237), 1, + sym_name, + ACTIONS(3239), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56085] = 10, + STATE(1480), 1, + sym_text_interpolation, + ACTIONS(2946), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(806), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [56922] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1711), 1, anon_sym_AMP, - ACTIONS(3254), 1, + ACTIONS(3241), 1, sym_name, - ACTIONS(3256), 1, + ACTIONS(3243), 1, anon_sym_LPAREN, - STATE(1482), 1, + STATE(1481), 1, sym_text_interpolation, STATE(1567), 1, sym_reference_modifier, - STATE(1621), 1, + STATE(1584), 1, sym_formal_parameters, - STATE(2295), 1, + STATE(2203), 1, sym__reserved_identifier, - ACTIONS(2483), 3, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56118] = 8, + [56955] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1741), 1, - anon_sym_BSLASH, - ACTIONS(1962), 1, - anon_sym_LPAREN, - STATE(889), 1, - sym_arguments, - STATE(1483), 1, - sym_text_interpolation, - STATE(2377), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56147] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(323), 1, + ACTIONS(1749), 1, anon_sym_DOLLAR, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3266), 1, + ACTIONS(3191), 1, sym_name, - ACTIONS(3270), 1, + ACTIONS(3193), 1, anon_sym_LBRACE, - STATE(1484), 1, + STATE(660), 1, + sym__reserved_identifier, + STATE(1482), 1, sym_text_interpolation, - ACTIONS(3268), 3, + STATE(817), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2454), 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, - [56176] = 9, + [56986] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1575), 1, + ACTIONS(1534), 1, anon_sym_DOLLAR, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3272), 1, + ACTIONS(3245), 1, sym_name, - ACTIONS(3274), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - STATE(1485), 1, + STATE(1483), 1, sym_text_interpolation, - STATE(1571), 1, - sym__reserved_identifier, - STATE(772), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2483), 3, + ACTIONS(3217), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56207] = 8, + STATE(766), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [57015] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, - ACTIONS(1741), 1, + ACTIONS(1698), 1, anon_sym_BSLASH, - STATE(597), 1, - sym_arguments, - STATE(1486), 1, + ACTIONS(3249), 1, + anon_sym_EQ, + STATE(1484), 1, sym_text_interpolation, - STATE(2377), 1, + STATE(2243), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56236] = 7, + ACTIONS(3022), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3020), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [57044] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(1705), 1, anon_sym_LPAREN, - STATE(597), 1, + STATE(723), 1, sym_arguments, - STATE(1487), 1, + STATE(1485), 1, sym_text_interpolation, - ACTIONS(3276), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1617), 5, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56263] = 9, + [57073] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1790), 1, + ACTIONS(1735), 1, anon_sym_DOLLAR, - ACTIONS(3232), 1, + ACTIONS(3251), 1, sym_name, - ACTIONS(3234), 1, + ACTIONS(3253), 1, anon_sym_LBRACE, - STATE(667), 1, - sym__reserved_identifier, - STATE(1488), 1, + STATE(1486), 1, sym_text_interpolation, - STATE(712), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2483), 3, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56294] = 8, + STATE(698), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [57102] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(323), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3278), 1, + ACTIONS(3255), 1, sym_name, - ACTIONS(3280), 1, + ACTIONS(3257), 1, anon_sym_LBRACE, - STATE(1489), 1, + STATE(684), 1, + sym__reserved_identifier, + STATE(1487), 1, sym_text_interpolation, - ACTIONS(3268), 3, + STATE(646), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(610), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [56323] = 9, + [57133] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(323), 1, - anon_sym_DOLLAR, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3282), 1, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(3191), 1, sym_name, - ACTIONS(3284), 1, + ACTIONS(3193), 1, anon_sym_LBRACE, - STATE(843), 1, + STATE(660), 1, sym__reserved_identifier, - STATE(1490), 1, + STATE(1488), 1, sym_text_interpolation, - STATE(612), 2, + STATE(834), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2973), 3, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56354] = 8, + [57164] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1575), 1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1602), 1, + anon_sym_BSLASHu, + STATE(1489), 1, + sym_text_interpolation, + ACTIONS(1600), 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, - ACTIONS(1587), 1, + [57187] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3286), 1, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(3259), 1, sym_name, - ACTIONS(3290), 1, + ACTIONS(3261), 1, anon_sym_LBRACE, - STATE(1491), 1, + STATE(1490), 1, sym_text_interpolation, - ACTIONS(3288), 3, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(774), 3, + STATE(710), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [56383] = 8, + [57216] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1575), 1, + ACTIONS(621), 1, anon_sym_DOLLAR, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3292), 1, + ACTIONS(3263), 1, sym_name, - ACTIONS(3294), 1, + ACTIONS(3265), 1, anon_sym_LBRACE, - STATE(1492), 1, + STATE(1491), 1, sym_text_interpolation, - ACTIONS(3288), 3, + STATE(1541), 1, + sym__reserved_identifier, + STATE(1580), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(775), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [56412] = 8, + [57247] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1790), 1, + ACTIONS(3267), 1, + anon_sym_PIPE, + STATE(1492), 2, + sym_text_interpolation, + aux_sym_union_type_repeat1, + ACTIONS(3147), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_DOLLAR, - ACTIONS(3296), 1, + ACTIONS(3145), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, sym_name, - ACTIONS(3298), 1, + [57272] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3270), 1, + sym_name, + ACTIONS(3272), 1, anon_sym_LBRACE, STATE(1493), 1, sym_text_interpolation, - ACTIONS(2483), 3, + STATE(1542), 1, + sym__reserved_identifier, + STATE(1574), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(720), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [56441] = 8, + [57303] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(616), 1, - anon_sym_DOLLAR, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3214), 1, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(3274), 1, sym_name, - ACTIONS(3216), 1, + ACTIONS(3276), 1, anon_sym_LBRACE, STATE(1494), 1, sym_text_interpolation, - ACTIONS(2483), 3, + ACTIONS(2946), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(584), 3, + STATE(829), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [56470] = 9, + [57332] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(616), 1, - anon_sym_DOLLAR, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3232), 1, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(3191), 1, sym_name, - ACTIONS(3234), 1, + ACTIONS(3193), 1, anon_sym_LBRACE, - STATE(667), 1, + STATE(660), 1, sym__reserved_identifier, STATE(1495), 1, sym_text_interpolation, - STATE(586), 2, + STATE(689), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2483), 3, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56501] = 8, + [57363] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1790), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(1496), 1, + sym_text_interpolation, + ACTIONS(2538), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [57390] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1735), 1, anon_sym_DOLLAR, - ACTIONS(3300), 1, + ACTIONS(3278), 1, sym_name, - ACTIONS(3302), 1, + ACTIONS(3280), 1, anon_sym_LBRACE, - STATE(1496), 1, + STATE(1497), 1, sym_text_interpolation, - ACTIONS(2483), 3, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(718), 3, + STATE(711), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [56530] = 9, + [57419] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1749), 1, anon_sym_DOLLAR, - ACTIONS(3232), 1, + ACTIONS(3282), 1, sym_name, - ACTIONS(3234), 1, + ACTIONS(3284), 1, anon_sym_LBRACE, - STATE(667), 1, + STATE(1498), 1, + sym_text_interpolation, + ACTIONS(2946), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(832), 3, + sym_dynamic_variable_name, + sym_variable_name, sym__reserved_identifier, - STATE(1497), 1, + [57448] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(1499), 1, + sym_text_interpolation, + ACTIONS(3286), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [57475] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(3270), 1, + sym_name, + ACTIONS(3272), 1, + anon_sym_LBRACE, + STATE(1500), 1, sym_text_interpolation, - STATE(820), 2, + STATE(1542), 1, + sym__reserved_identifier, + STATE(709), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2483), 3, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56561] = 8, + [57506] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3146), 1, + ACTIONS(3116), 1, anon_sym_BSLASHu, - ACTIONS(3304), 1, + ACTIONS(3288), 1, anon_sym_DASH_GT, - ACTIONS(3306), 1, + ACTIONS(3290), 1, anon_sym_LBRACK, - ACTIONS(3308), 1, + ACTIONS(3292), 1, sym_encapsed_string_chars_after_variable, - STATE(1498), 1, + STATE(1501), 1, sym_text_interpolation, - ACTIONS(3152), 5, + ACTIONS(3122), 5, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_DQUOTE, anon_sym_DOLLAR, - [56590] = 9, + [57535] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1749), 1, anon_sym_DOLLAR, - ACTIONS(3194), 1, + ACTIONS(3263), 1, sym_name, - ACTIONS(3196), 1, + ACTIONS(3265), 1, anon_sym_LBRACE, - STATE(1499), 1, + STATE(1502), 1, sym_text_interpolation, - STATE(1555), 1, + STATE(1541), 1, sym__reserved_identifier, - STATE(844), 2, + STATE(838), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2483), 3, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56621] = 8, + [57566] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(1503), 1, + sym_text_interpolation, + ACTIONS(2542), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [57593] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1735), 1, anon_sym_DOLLAR, - ACTIONS(3310), 1, + ACTIONS(3191), 1, sym_name, - ACTIONS(3312), 1, + ACTIONS(3193), 1, anon_sym_LBRACE, - STATE(1500), 1, + STATE(660), 1, + sym__reserved_identifier, + STATE(1504), 1, sym_text_interpolation, - ACTIONS(2973), 3, + STATE(696), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(823), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [56650] = 8, + [57624] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1762), 1, + ACTIONS(621), 1, anon_sym_DOLLAR, - ACTIONS(3314), 1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3197), 1, sym_name, - ACTIONS(3316), 1, + ACTIONS(3199), 1, anon_sym_LBRACE, - STATE(1501), 1, + STATE(1505), 1, sym_text_interpolation, - ACTIONS(2973), 3, + ACTIONS(3294), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(826), 3, + STATE(574), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [56679] = 8, + [57653] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(616), 1, + ACTIONS(621), 1, anon_sym_DOLLAR, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3208), 1, + ACTIONS(3187), 1, sym_name, - ACTIONS(3212), 1, + ACTIONS(3189), 1, anon_sym_LBRACE, - STATE(1502), 1, + STATE(1506), 1, sym_text_interpolation, - ACTIONS(2483), 3, + ACTIONS(3294), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(585), 3, + STATE(573), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [56708] = 9, + [57682] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1790), 1, - anon_sym_DOLLAR, - ACTIONS(3190), 1, - sym_name, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(1503), 1, + ACTIONS(3213), 1, + anon_sym_PIPE, + STATE(1507), 1, sym_text_interpolation, - STATE(1550), 1, - sym__reserved_identifier, - STATE(711), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2483), 3, + STATE(1517), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3298), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + ACTIONS(3296), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56739] = 8, + sym_name, + [57709] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1790), 1, + ACTIONS(1735), 1, anon_sym_DOLLAR, - ACTIONS(3318), 1, + ACTIONS(3300), 1, sym_name, - ACTIONS(3320), 1, + ACTIONS(3302), 1, anon_sym_LBRACE, - STATE(1504), 1, + STATE(1508), 1, sym_text_interpolation, - ACTIONS(2483), 3, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(709), 3, + STATE(688), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [56768] = 8, + [57738] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1534), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1741), 1, + ACTIONS(3304), 1, + sym_name, + ACTIONS(3306), 1, + anon_sym_LBRACE, + STATE(857), 1, + sym__reserved_identifier, + STATE(1509), 1, + sym_text_interpolation, + STATE(764), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2946), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [57769] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1698), 1, anon_sym_BSLASH, - ACTIONS(1956), 1, + ACTIONS(1921), 1, anon_sym_LPAREN, - STATE(791), 1, + STATE(892), 1, sym_arguments, - STATE(1505), 1, + STATE(1510), 1, sym_text_interpolation, - STATE(2377), 1, + STATE(2243), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56797] = 8, + [57798] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3146), 1, - anon_sym_BSLASHu, - ACTIONS(3322), 1, - anon_sym_DASH_GT, - ACTIONS(3324), 1, - anon_sym_LBRACK, - ACTIONS(3326), 1, - sym_execution_string_chars_after_variable, - STATE(1506), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1698), 1, + anon_sym_BSLASH, + STATE(579), 1, + sym_arguments, + STATE(1511), 1, sym_text_interpolation, - ACTIONS(3152), 5, - sym_execution_string_chars, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [56826] = 8, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [57827] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1581), 1, - anon_sym_DOLLAR, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3328), 1, - sym_name, - ACTIONS(3332), 1, - anon_sym_LBRACE, - STATE(1507), 1, + ACTIONS(3312), 1, + anon_sym_PIPE, + STATE(1492), 1, + aux_sym_union_type_repeat1, + STATE(1512), 1, sym_text_interpolation, - ACTIONS(3330), 3, + ACTIONS(3310), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + ACTIONS(3308), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(650), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [56855] = 8, + sym_name, + [57854] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1581), 1, - anon_sym_DOLLAR, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3334), 1, + ACTIONS(1735), 1, + anon_sym_DOLLAR, + ACTIONS(3314), 1, sym_name, - ACTIONS(3336), 1, + ACTIONS(3316), 1, anon_sym_LBRACE, - STATE(1508), 1, + STATE(1513), 1, sym_text_interpolation, - ACTIONS(3330), 3, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(655), 3, + STATE(687), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [56884] = 9, + [57883] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1581), 1, - anon_sym_DOLLAR, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3338), 1, - sym_name, - ACTIONS(3340), 1, - anon_sym_LBRACE, - STATE(686), 1, - sym__reserved_identifier, - STATE(1509), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(1514), 1, sym_text_interpolation, - STATE(659), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2483), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [56915] = 8, + ACTIONS(2524), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [57910] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1790), 1, - anon_sym_DOLLAR, - ACTIONS(3342), 1, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(3241), 1, sym_name, - ACTIONS(3344), 1, - anon_sym_LBRACE, - STATE(1510), 1, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1515), 1, sym_text_interpolation, - ACTIONS(2483), 3, + STATE(1559), 1, + sym_reference_modifier, + STATE(1628), 1, + sym_formal_parameters, + STATE(2203), 1, + sym__reserved_identifier, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(710), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [56944] = 9, + [57943] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1790), 1, + ACTIONS(1534), 1, anon_sym_DOLLAR, - ACTIONS(3232), 1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3318), 1, sym_name, - ACTIONS(3234), 1, + ACTIONS(3320), 1, anon_sym_LBRACE, - STATE(667), 1, - sym__reserved_identifier, - STATE(1511), 1, + STATE(1516), 1, sym_text_interpolation, - STATE(696), 2, + STATE(1570), 1, + sym__reserved_identifier, + STATE(764), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2483), 3, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56975] = 7, + [57974] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, - STATE(597), 1, - sym_arguments, - STATE(1512), 1, + ACTIONS(3322), 1, + anon_sym_PIPE, + STATE(1517), 2, sym_text_interpolation, - ACTIONS(2571), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1617), 5, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3161), 3, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [57002] = 7, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + ACTIONS(3159), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [57999] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, - STATE(597), 1, - sym_arguments, - STATE(1513), 1, + ACTIONS(1602), 1, + anon_sym_BSLASHu, + STATE(1518), 1, sym_text_interpolation, - ACTIONS(2565), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1617), 5, + ACTIONS(1600), 8, + sym_encapsed_string_chars, + sym_encapsed_string_chars_after_variable, anon_sym_LBRACE, - anon_sym_COLON_COLON, anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57029] = 8, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [58022] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(328), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1739), 1, - anon_sym_LPAREN, - ACTIONS(1741), 1, - anon_sym_BSLASH, - STATE(671), 1, - sym_arguments, - STATE(1514), 1, - sym_text_interpolation, - STATE(2377), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1617), 5, + ACTIONS(3325), 1, + sym_name, + ACTIONS(3327), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [57058] = 8, + STATE(826), 1, + sym__reserved_identifier, + STATE(1519), 1, + sym_text_interpolation, + STATE(598), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2946), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [58053] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1790), 1, + ACTIONS(328), 1, anon_sym_DOLLAR, - ACTIONS(3346), 1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3329), 1, sym_name, - ACTIONS(3348), 1, + ACTIONS(3333), 1, anon_sym_LBRACE, - STATE(1515), 1, + STATE(1520), 1, sym_text_interpolation, - ACTIONS(2483), 3, + ACTIONS(3331), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(694), 3, + STATE(599), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [57087] = 8, + [58082] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1790), 1, + ACTIONS(328), 1, anon_sym_DOLLAR, - ACTIONS(3350), 1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3335), 1, sym_name, - ACTIONS(3352), 1, + ACTIONS(3337), 1, anon_sym_LBRACE, - STATE(1516), 1, + STATE(1521), 1, sym_text_interpolation, - ACTIONS(2483), 3, + ACTIONS(3331), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(687), 3, + STATE(600), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [57116] = 11, + [58111] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, - sym_name, - STATE(1427), 1, - sym_qualified_name, - STATE(1517), 1, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(788), 1, + sym_arguments, + STATE(1522), 1, sym_text_interpolation, - STATE(1819), 1, - sym_named_type, - STATE(2092), 1, - sym_type_list, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2626), 1, - sym_namespace_name, - [57150] = 11, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [58140] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, - ACTIONS(3354), 1, - anon_sym_LBRACE, - ACTIONS(3356), 1, - aux_sym_base_clause_token1, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - STATE(947), 1, - sym_declaration_list, - STATE(1518), 1, + ACTIONS(1909), 1, + anon_sym_COLON_COLON, + ACTIONS(1927), 1, + anon_sym_COLON, + STATE(1523), 1, sym_text_interpolation, - STATE(1589), 1, - sym_arguments, - STATE(1872), 1, - sym_base_clause, - STATE(2347), 1, - sym_class_interface_clause, - [57184] = 11, + ACTIONS(1596), 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, + [58165] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, - ACTIONS(3356), 1, - aux_sym_base_clause_token1, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3360), 1, - anon_sym_LBRACE, - STATE(1111), 1, - sym_declaration_list, - STATE(1519), 1, + ACTIONS(3155), 1, + anon_sym_RPAREN, + STATE(1524), 1, sym_text_interpolation, - STATE(1612), 1, - sym_arguments, - STATE(1779), 1, - sym_base_clause, - STATE(2236), 1, - sym_class_interface_clause, - [57218] = 11, + STATE(2131), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [58191] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - ACTIONS(3354), 1, + ACTIONS(3339), 1, anon_sym_LBRACE, - ACTIONS(3356), 1, + ACTIONS(3341), 1, aux_sym_base_clause_token1, - ACTIONS(3358), 1, + ACTIONS(3343), 1, aux_sym_class_interface_clause_token1, - STATE(938), 1, + STATE(941), 1, sym_declaration_list, - STATE(1520), 1, + STATE(1525), 1, sym_text_interpolation, - STATE(1584), 1, + STATE(1639), 1, sym_arguments, - STATE(1909), 1, + STATE(1899), 1, sym_base_clause, - STATE(2271), 1, + STATE(2251), 1, sym_class_interface_clause, - [57252] = 11, + [58225] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - ACTIONS(3356), 1, + ACTIONS(3341), 1, aux_sym_base_clause_token1, - ACTIONS(3358), 1, + ACTIONS(3343), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3360), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - STATE(1145), 1, + STATE(1052), 1, sym_declaration_list, - STATE(1521), 1, + STATE(1526), 1, sym_text_interpolation, - STATE(1653), 1, + STATE(1617), 1, sym_arguments, - STATE(1841), 1, + STATE(1850), 1, sym_base_clause, - STATE(2430), 1, + STATE(2288), 1, sym_class_interface_clause, - [57286] = 9, + [58259] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1676), 1, + sym_name, + STATE(1433), 1, + sym_qualified_name, + STATE(1527), 1, + sym_text_interpolation, + STATE(1828), 1, + sym_named_type, + STATE(2090), 1, + sym_type_list, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + [58293] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(980), 1, + ACTIONS(985), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3362), 1, + ACTIONS(3347), 1, aux_sym_catch_clause_token1, - ACTIONS(3364), 1, + ACTIONS(3349), 1, aux_sym_finally_clause_token1, - STATE(1522), 1, + STATE(1528), 1, sym_text_interpolation, - STATE(1526), 1, + STATE(1533), 1, aux_sym_try_statement_repeat1, - ACTIONS(978), 2, + ACTIONS(983), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - STATE(1717), 2, + STATE(1672), 2, sym_catch_clause, sym_finally_clause, - [57316] = 7, + [58323] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1676), 1, + sym_name, + STATE(1433), 1, + sym_qualified_name, + STATE(1529), 1, + sym_text_interpolation, + STATE(1828), 1, + sym_named_type, + STATE(2156), 1, + sym_type_list, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + [58357] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3125), 1, + ACTIONS(3165), 1, anon_sym_COMMA, - ACTIONS(3178), 1, + ACTIONS(3167), 1, anon_sym_RPAREN, - STATE(1523), 1, + STATE(1530), 1, sym_text_interpolation, - STATE(2135), 1, + STATE(2093), 1, aux_sym_unset_statement_repeat1, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57342] = 7, + [58383] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(852), 1, - anon_sym_COMMA, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3172), 1, - anon_sym_RPAREN, - STATE(1524), 1, - sym_text_interpolation, - STATE(2052), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1617), 5, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [57368] = 7, + STATE(1112), 1, + sym_declaration_list, + STATE(1531), 1, + sym_text_interpolation, + STATE(1644), 1, + sym_arguments, + STATE(1780), 1, + sym_base_clause, + STATE(2407), 1, + sym_class_interface_clause, + [58417] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3125), 1, + ACTIONS(3132), 1, anon_sym_COMMA, - ACTIONS(3127), 1, + ACTIONS(3134), 1, anon_sym_RPAREN, - STATE(1525), 1, + STATE(1532), 1, sym_text_interpolation, - STATE(2105), 1, + STATE(1918), 1, aux_sym_unset_statement_repeat1, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57394] = 8, + [58443] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(988), 1, + ACTIONS(993), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3366), 1, + ACTIONS(3351), 1, aux_sym_catch_clause_token1, - ACTIONS(3369), 1, + ACTIONS(3354), 1, aux_sym_finally_clause_token1, - ACTIONS(986), 2, + ACTIONS(991), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - STATE(1526), 2, + STATE(1533), 2, sym_text_interpolation, aux_sym_try_statement_repeat1, - STATE(1717), 2, + STATE(1672), 2, sym_catch_clause, sym_finally_clause, - [57422] = 9, + [58471] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3372), 1, - anon_sym_AMP, - ACTIONS(3374), 1, - anon_sym_PIPE, - STATE(1527), 1, - sym_text_interpolation, - STATE(1692), 1, - aux_sym_intersection_type_repeat1, - STATE(1724), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - STATE(1726), 1, - aux_sym_union_type_repeat1, - ACTIONS(3092), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [57452] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1741), 1, + ACTIONS(1698), 1, anon_sym_BSLASH, - ACTIONS(3378), 1, + ACTIONS(3359), 1, anon_sym_COMMA, - ACTIONS(3380), 1, + ACTIONS(3361), 1, anon_sym_LBRACE, - STATE(1366), 1, + STATE(1371), 1, sym_use_list, - STATE(1528), 1, + STATE(1534), 1, sym_text_interpolation, - STATE(1583), 1, + STATE(1619), 1, aux_sym_base_clause_repeat1, - STATE(2377), 1, + STATE(2243), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3376), 2, + ACTIONS(3357), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57484] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1723), 1, - sym_name, - STATE(1427), 1, - sym_qualified_name, - STATE(1529), 1, - sym_text_interpolation, - STATE(1819), 1, - sym_named_type, - STATE(2114), 1, - sym_type_list, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2626), 1, - sym_namespace_name, - [57518] = 6, + [58503] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1695), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(625), 1, - sym_arguments, - STATE(1530), 1, - sym_text_interpolation, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [57541] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3133), 1, - aux_sym_namespace_aliasing_clause_token1, - ACTIONS(3382), 1, - aux_sym_use_instead_of_clause_token1, - STATE(1531), 1, - sym_text_interpolation, - ACTIONS(1617), 5, + ACTIONS(3339), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [57564] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, - STATE(597), 1, - sym_arguments, - STATE(1532), 1, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + STATE(961), 1, + sym_declaration_list, + STATE(1535), 1, sym_text_interpolation, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [57587] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1962), 1, - anon_sym_LPAREN, - STATE(889), 1, + STATE(1634), 1, sym_arguments, - STATE(1533), 1, - sym_text_interpolation, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [57610] = 6, + STATE(1855), 1, + sym_base_clause, + STATE(2272), 1, + sym_class_interface_clause, + [58537] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1748), 1, - anon_sym_LPAREN, - STATE(745), 1, - sym_arguments, - STATE(1534), 1, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3365), 1, + anon_sym_PIPE, + STATE(1536), 1, sym_text_interpolation, - ACTIONS(1631), 5, + STATE(1663), 1, + aux_sym_intersection_type_repeat1, + STATE(1666), 1, + aux_sym_union_type_repeat1, + STATE(1667), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3063), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [57633] = 5, + [58567] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1535), 1, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + sym_name, + STATE(1537), 1, sym_text_interpolation, - ACTIONS(1970), 3, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - ACTIONS(1968), 4, + STATE(1682), 1, + sym_reference_modifier, + STATE(2302), 1, + sym__reserved_identifier, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, + [58594] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(575), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1676), 1, sym_name, - [57654] = 5, + STATE(1433), 1, + sym_qualified_name, + STATE(1538), 1, + sym_text_interpolation, + STATE(2110), 1, + sym_named_type, + STATE(2494), 1, + sym_namespace_name_as_prefix, + STATE(2605), 1, + sym_namespace_name, + [58625] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - STATE(1536), 1, + STATE(1539), 1, sym_text_interpolation, - ACTIONS(3384), 3, + ACTIONS(3116), 3, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_DOLLAR, - ACTIONS(3386), 4, + ACTIONS(3122), 4, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, sym__new_line, - [57675] = 5, + [58646] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - STATE(1537), 1, + STATE(1540), 1, sym_text_interpolation, - ACTIONS(3146), 3, + ACTIONS(3369), 3, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_DOLLAR, - ACTIONS(3152), 4, + ACTIONS(3371), 4, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, sym__new_line, - [57696] = 5, + [58667] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1538), 1, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(881), 1, + sym_arguments, + STATE(1541), 1, sym_text_interpolation, - ACTIONS(3276), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1617), 5, + ACTIONS(1725), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57717] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1741), 1, - anon_sym_BSLASH, - ACTIONS(3390), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1539), 1, - sym_text_interpolation, - STATE(2010), 1, - sym_namespace_aliasing_clause, - STATE(2377), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3388), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [57744] = 6, + [58690] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1705), 1, anon_sym_LPAREN, - STATE(738), 1, + STATE(736), 1, sym_arguments, - STATE(1540), 1, + STATE(1542), 1, sym_text_interpolation, - ACTIONS(1617), 5, + ACTIONS(1725), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57767] = 6, + [58713] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1956), 1, + ACTIONS(1705), 1, anon_sym_LPAREN, - STATE(791), 1, + STATE(723), 1, sym_arguments, - STATE(1541), 1, + STATE(1543), 1, sym_text_interpolation, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57790] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3394), 1, - aux_sym_enum_case_token1, - ACTIONS(3397), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3392), 2, - anon_sym_RBRACE, - aux_sym_switch_block_token1, - STATE(1542), 2, - sym_text_interpolation, - aux_sym_switch_block_repeat1, - STATE(1775), 2, - sym_case_statement, - sym_default_statement, - [57815] = 6, + [58736] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1962), 1, + ACTIONS(1692), 1, anon_sym_LPAREN, - STATE(868), 1, + STATE(666), 1, sym_arguments, - STATE(1543), 1, + STATE(1544), 1, sym_text_interpolation, - ACTIONS(1792), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57838] = 8, + [58759] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3400), 1, - sym_name, - STATE(1544), 1, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(3375), 1, + anon_sym_DASH, + STATE(1545), 1, sym_text_interpolation, - STATE(1648), 1, - sym_formal_parameters, - STATE(2441), 1, - sym__reserved_identifier, - ACTIONS(2483), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [57865] = 6, + STATE(2458), 1, + sym__simple_string_array_access_argument, + ACTIONS(3373), 2, + sym_integer, + sym_name, + STATE(2460), 2, + sym__simple_string_subscript_unary_expression, + sym_variable_name, + [58786] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1739), 1, - anon_sym_LPAREN, - STATE(671), 1, - sym_arguments, - STATE(1545), 1, + STATE(1546), 1, sym_text_interpolation, - ACTIONS(1617), 5, + ACTIONS(3195), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57888] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - STATE(1546), 1, - sym_text_interpolation, - ACTIONS(1685), 3, - anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_DOLLAR, - ACTIONS(1683), 4, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - sym__new_line, - [57909] = 8, + [58807] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_AMP, - ACTIONS(3402), 1, - sym_name, STATE(1547), 1, sym_text_interpolation, - STATE(1703), 1, - sym_reference_modifier, - STATE(2371), 1, - sym__reserved_identifier, - ACTIONS(2483), 3, + ACTIONS(1933), 3, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + ACTIONS(1931), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [57936] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + sym_name, + [58828] = 9, + ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3377), 1, + anon_sym_AMP, + ACTIONS(3383), 1, + anon_sym_PIPE, STATE(1548), 1, sym_text_interpolation, - ACTIONS(1637), 3, - anon_sym_LBRACE, - anon_sym_BSLASHu, + STATE(1747), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + STATE(1753), 1, + aux_sym_union_type_repeat1, + STATE(1898), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3063), 2, + anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - ACTIONS(1635), 4, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - sym__new_line, - [57957] = 6, + [58857] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1739), 1, + ACTIONS(1692), 1, anon_sym_LPAREN, - STATE(671), 1, + STATE(666), 1, sym_arguments, STATE(1549), 1, sym_text_interpolation, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57980] = 6, + [58880] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(745), 1, + STATE(788), 1, sym_arguments, STATE(1550), 1, sym_text_interpolation, - ACTIONS(1782), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58003] = 5, + [58903] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, STATE(1551), 1, sym_text_interpolation, - ACTIONS(1641), 3, + ACTIONS(3385), 3, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_DOLLAR, - ACTIONS(1639), 4, + ACTIONS(3387), 4, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, sym__new_line, - [58024] = 6, + [58924] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1962), 1, - anon_sym_LPAREN, - STATE(883), 1, - sym_arguments, - STATE(1552), 1, + ACTIONS(3391), 1, + aux_sym_enum_case_token1, + ACTIONS(3394), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3389), 2, + anon_sym_RBRACE, + aux_sym_switch_block_token1, + STATE(1552), 2, sym_text_interpolation, - ACTIONS(1631), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [58047] = 6, + aux_sym_switch_block_repeat1, + STATE(1792), 2, + sym_case_statement, + sym_default_statement, + [58949] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1956), 1, - anon_sym_LPAREN, - STATE(791), 1, - sym_arguments, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(3375), 1, + anon_sym_DASH, STATE(1553), 1, sym_text_interpolation, - ACTIONS(1617), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [58070] = 5, + STATE(2618), 1, + sym__simple_string_array_access_argument, + ACTIONS(3373), 2, + sym_integer, + sym_name, + STATE(2460), 2, + sym__simple_string_subscript_unary_expression, + sym_variable_name, + [58976] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(892), 1, + sym_arguments, STATE(1554), 1, sym_text_interpolation, - ACTIONS(3264), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58091] = 6, + [58999] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1962), 1, - anon_sym_LPAREN, - STATE(883), 1, - sym_arguments, STATE(1555), 1, sym_text_interpolation, - ACTIONS(1782), 5, + ACTIONS(3175), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58114] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, + [59020] = 5, + ACTIONS(5), 1, sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, STATE(1556), 1, sym_text_interpolation, - ACTIONS(3240), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1617), 5, + ACTIONS(1602), 3, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [58135] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1776), 1, + anon_sym_BSLASHu, anon_sym_DOLLAR, - ACTIONS(3406), 1, - anon_sym_DASH, - STATE(1557), 1, - sym_text_interpolation, - STATE(2528), 1, - sym__simple_string_array_access_argument, - ACTIONS(3404), 2, - sym_integer, - sym_name, - STATE(2650), 2, - sym__simple_string_subscript_unary_expression, - sym_variable_name, - [58162] = 5, + ACTIONS(1600), 4, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + [59041] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - STATE(1558), 1, + STATE(1557), 1, sym_text_interpolation, - ACTIONS(3408), 3, + ACTIONS(1618), 3, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_DOLLAR, - ACTIONS(2934), 4, + ACTIONS(1616), 4, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, sym__new_line, - [58183] = 6, + [59062] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1921), 1, anon_sym_LPAREN, - STATE(597), 1, + STATE(892), 1, sym_arguments, - STATE(1559), 1, + STATE(1558), 1, sym_text_interpolation, - ACTIONS(1617), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58206] = 9, + [59085] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3410), 1, - anon_sym_AMP, - ACTIONS(3416), 1, - anon_sym_PIPE, + ACTIONS(3243), 1, + anon_sym_LPAREN, + ACTIONS(3397), 1, + sym_name, + STATE(1559), 1, + sym_text_interpolation, + STATE(1606), 1, + sym_formal_parameters, + STATE(2267), 1, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [59112] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1698), 1, + anon_sym_BSLASH, STATE(1560), 1, sym_text_interpolation, - STATE(1691), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - STATE(1704), 1, - aux_sym_union_type_repeat1, - STATE(1786), 1, - aux_sym_intersection_type_repeat1, - ACTIONS(3092), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [58235] = 5, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3022), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_PIPE, + [59135] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, STATE(1561), 1, sym_text_interpolation, - ACTIONS(3418), 3, + ACTIONS(3399), 3, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_DOLLAR, - ACTIONS(3420), 4, + ACTIONS(3401), 4, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, sym__new_line, - [58256] = 5, + [59156] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, STATE(1562), 1, sym_text_interpolation, - ACTIONS(3422), 3, + ACTIONS(3403), 3, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_DOLLAR, - ACTIONS(3424), 4, + ACTIONS(3405), 4, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, sym__new_line, - [58277] = 6, + [59177] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1741), 1, + ACTIONS(1698), 1, anon_sym_BSLASH, + ACTIONS(3409), 1, + aux_sym_namespace_aliasing_clause_token1, STATE(1563), 1, sym_text_interpolation, - STATE(2377), 1, + STATE(1930), 1, + sym_namespace_aliasing_clause, + STATE(2243), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3063), 5, + ACTIONS(3407), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_PIPE, - [58300] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(3406), 1, - anon_sym_DASH, - STATE(1564), 1, - sym_text_interpolation, - STATE(2573), 1, - sym__simple_string_array_access_argument, - ACTIONS(3404), 2, - sym_integer, - sym_name, - STATE(2650), 2, - sym__simple_string_subscript_unary_expression, - sym_variable_name, - [58327] = 6, + anon_sym_COMMA, + [59204] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(738), 1, + STATE(801), 1, sym_arguments, - STATE(1565), 1, + STATE(1564), 1, sym_text_interpolation, - ACTIONS(1617), 5, + ACTIONS(1707), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58350] = 5, + [59227] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - STATE(1566), 1, + STATE(1565), 1, sym_text_interpolation, - ACTIONS(3426), 3, + ACTIONS(1606), 3, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_DOLLAR, - ACTIONS(3428), 4, + ACTIONS(1604), 4, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, sym__new_line, - [58371] = 8, + [59248] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1705), 1, + anon_sym_LPAREN, + STATE(718), 1, + sym_arguments, + STATE(1566), 1, + sym_text_interpolation, + ACTIONS(1707), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59271] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3256), 1, + ACTIONS(3243), 1, anon_sym_LPAREN, - ACTIONS(3400), 1, + ACTIONS(3397), 1, sym_name, STATE(1567), 1, sym_text_interpolation, - STATE(1605), 1, + STATE(1615), 1, sym_formal_parameters, - STATE(2441), 1, + STATE(2267), 1, sym__reserved_identifier, - ACTIONS(2483), 3, + ACTIONS(2454), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [58398] = 5, + [59298] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1652), 1, + anon_sym_LPAREN, + STATE(606), 1, + sym_arguments, + STATE(1568), 1, + sym_text_interpolation, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59321] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - STATE(1568), 1, + STATE(1569), 1, sym_text_interpolation, - ACTIONS(3430), 3, + ACTIONS(3411), 3, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_DOLLAR, - ACTIONS(3432), 4, + ACTIONS(3413), 4, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, sym__new_line, - [58419] = 6, + [59342] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1962), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(889), 1, + STATE(794), 1, sym_arguments, - STATE(1569), 1, + STATE(1570), 1, sym_text_interpolation, - ACTIONS(1617), 5, + ACTIONS(1725), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58442] = 6, + [59365] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(1571), 1, + sym_text_interpolation, + ACTIONS(3415), 3, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_DOLLAR, + ACTIONS(2923), 4, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + [59386] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(3375), 1, + anon_sym_DASH, + STATE(1572), 1, + sym_text_interpolation, + STATE(2558), 1, + sym__simple_string_array_access_argument, + ACTIONS(3373), 2, + sym_integer, + sym_name, + STATE(2460), 2, + sym__simple_string_subscript_unary_expression, + sym_variable_name, + [59413] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1956), 1, + ACTIONS(1705), 1, anon_sym_LPAREN, - STATE(805), 1, + STATE(723), 1, sym_arguments, - STATE(1570), 1, + STATE(1573), 1, sym_text_interpolation, - ACTIONS(1792), 5, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58465] = 6, + [59436] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1956), 1, + ACTIONS(1705), 1, anon_sym_LPAREN, - STATE(792), 1, + STATE(736), 1, sym_arguments, - STATE(1571), 1, + STATE(1574), 1, + sym_text_interpolation, + ACTIONS(1554), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59459] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1575), 1, sym_text_interpolation, - ACTIONS(1782), 5, + ACTIONS(3286), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1574), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58488] = 6, + [59480] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1921), 1, anon_sym_LPAREN, - STATE(760), 1, + STATE(865), 1, sym_arguments, - STATE(1572), 1, + STATE(1576), 1, sym_text_interpolation, - ACTIONS(1792), 5, + ACTIONS(1707), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58511] = 10, + [59503] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(223), 1, - anon_sym_BSLASH, - ACTIONS(570), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1723), 1, - sym_name, - STATE(1427), 1, - sym_qualified_name, - STATE(1573), 1, + ACTIONS(3153), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(3417), 1, + aux_sym_use_instead_of_clause_token1, + STATE(1577), 1, sym_text_interpolation, - STATE(2180), 1, - sym_named_type, - STATE(2462), 1, - sym_namespace_name_as_prefix, - STATE(2626), 1, - sym_namespace_name, - [58542] = 8, + ACTIONS(1574), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59526] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(3406), 1, - anon_sym_DASH, - STATE(1574), 1, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(788), 1, + sym_arguments, + STATE(1578), 1, sym_text_interpolation, - STATE(2653), 1, - sym__simple_string_array_access_argument, - ACTIONS(3404), 2, - sym_integer, - sym_name, - STATE(2650), 2, - sym__simple_string_subscript_unary_expression, - sym_variable_name, - [58569] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(390), 1, + ACTIONS(1574), 5, anon_sym_LBRACE, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3434), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3436), 1, - anon_sym_COLON, - STATE(969), 1, - sym_compound_statement, - STATE(1575), 1, - sym_text_interpolation, - STATE(1832), 1, - sym_anonymous_function_use_clause, - STATE(2420), 1, - sym__return_type, - [58597] = 9, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59549] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3434), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1078), 1, - sym_compound_statement, - STATE(1576), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(1579), 1, sym_text_interpolation, - STATE(1792), 1, - sym_anonymous_function_use_clause, - STATE(2194), 1, - sym__return_type, - [58625] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(390), 1, + ACTIONS(1574), 5, anon_sym_LBRACE, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3434), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3436), 1, - anon_sym_COLON, - STATE(920), 1, - sym_compound_statement, - STATE(1577), 1, - sym_text_interpolation, - STATE(1894), 1, - sym_anonymous_function_use_clause, - STATE(2299), 1, - sym__return_type, - [58653] = 9, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59572] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3434), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3436), 1, - anon_sym_COLON, - STATE(939), 1, - sym_compound_statement, - STATE(1578), 1, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(881), 1, + sym_arguments, + STATE(1580), 1, sym_text_interpolation, - STATE(1859), 1, - sym_anonymous_function_use_clause, - STATE(2362), 1, - sym__return_type, - [58681] = 8, + ACTIONS(1554), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59595] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_RBRACE, - ACTIONS(3442), 1, - aux_sym_enum_case_token1, - ACTIONS(3444), 1, - aux_sym_match_default_expression_token1, - STATE(1579), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(579), 1, + sym_arguments, + STATE(1581), 1, sym_text_interpolation, - STATE(1587), 1, - aux_sym_switch_block_repeat1, - STATE(1775), 2, - sym_case_statement, - sym_default_statement, - [58707] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3356), 1, - aux_sym_base_clause_token1, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3360), 1, + ACTIONS(1574), 5, anon_sym_LBRACE, - STATE(1580), 1, - sym_text_interpolation, - STATE(1664), 1, - sym_declaration_list, - STATE(1869), 1, - sym_base_clause, - STATE(2359), 1, - sym_class_interface_clause, - [58735] = 9, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59618] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3356), 1, + ACTIONS(3341), 1, aux_sym_base_clause_token1, - ACTIONS(3358), 1, + ACTIONS(3343), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3360), 1, + ACTIONS(3419), 1, anon_sym_LBRACE, - STATE(1581), 1, - sym_text_interpolation, - STATE(1659), 1, + STATE(450), 1, sym_declaration_list, - STATE(1848), 1, + STATE(1582), 1, + sym_text_interpolation, + STATE(1845), 1, sym_base_clause, - STATE(2403), 1, + STATE(2422), 1, sym_class_interface_clause, - [58763] = 9, + [59646] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3434), 1, + ACTIONS(3421), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3436), 1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, anon_sym_COLON, - STATE(921), 1, + STATE(1147), 1, sym_compound_statement, - STATE(1582), 1, + STATE(1583), 1, sym_text_interpolation, - STATE(1849), 1, + STATE(1852), 1, sym_anonymous_function_use_clause, - STATE(2385), 1, + STATE(2387), 1, sym__return_type, - [58791] = 8, + [59674] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3378), 1, - anon_sym_COMMA, - ACTIONS(3380), 1, - anon_sym_LBRACE, - STATE(1376), 1, - sym_use_list, - STATE(1583), 1, - sym_text_interpolation, - STATE(1671), 1, - aux_sym_base_clause_repeat1, - ACTIONS(3446), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [58817] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3354), 1, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3423), 1, anon_sym_LBRACE, - ACTIONS(3356), 1, - aux_sym_base_clause_token1, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - STATE(941), 1, - sym_declaration_list, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1056), 1, + sym_compound_statement, STATE(1584), 1, sym_text_interpolation, - STATE(1874), 1, - sym_base_clause, - STATE(2342), 1, - sym_class_interface_clause, - [58845] = 9, + STATE(1809), 1, + sym_anonymous_function_use_clause, + STATE(2268), 1, + sym__return_type, + [59702] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3434), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1119), 1, - sym_compound_statement, + ACTIONS(3427), 1, + sym_name, STATE(1585), 1, sym_text_interpolation, - STATE(1812), 1, - sym_anonymous_function_use_clause, - STATE(2289), 1, - sym__return_type, - [58873] = 9, + STATE(1858), 1, + sym_const_element, + STATE(2562), 1, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [59726] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3356), 1, - aux_sym_base_clause_token1, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3448), 1, - anon_sym_LBRACE, - STATE(441), 1, - sym_declaration_list, + ACTIONS(3429), 1, + aux_sym_enum_case_token1, + ACTIONS(3431), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3433), 1, + aux_sym_switch_block_token1, + STATE(1552), 1, + aux_sym_switch_block_repeat1, STATE(1586), 1, sym_text_interpolation, - STATE(1815), 1, - sym_base_clause, - STATE(2296), 1, - sym_class_interface_clause, - [58901] = 8, + STATE(1792), 2, + sym_case_statement, + sym_default_statement, + [59752] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3429), 1, aux_sym_enum_case_token1, - ACTIONS(3444), 1, + ACTIONS(3431), 1, aux_sym_match_default_expression_token1, - ACTIONS(3450), 1, + ACTIONS(3435), 1, anon_sym_RBRACE, - STATE(1542), 1, + STATE(1552), 1, aux_sym_switch_block_repeat1, STATE(1587), 1, sym_text_interpolation, - STATE(1775), 2, + STATE(1792), 2, sym_case_statement, sym_default_statement, - [58927] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, + [59778] = 9, + ACTIONS(5), 1, sym_comment, - ACTIONS(3426), 1, - anon_sym_BSLASHu, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3437), 1, + sym_php_tag, + ACTIONS(3439), 1, + aux_sym_text_token1, + ACTIONS(3441), 1, + aux_sym_text_token2, + ACTIONS(3443), 1, + sym__eof, STATE(1588), 1, sym_text_interpolation, - ACTIONS(3428), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [58947] = 9, + STATE(1719), 1, + aux_sym_text_repeat1, + STATE(2173), 1, + sym_text, + [59806] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3354), 1, - anon_sym_LBRACE, - ACTIONS(3356), 1, - aux_sym_base_clause_token1, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - STATE(911), 1, - sym_declaration_list, + ACTIONS(3427), 1, + sym_name, STATE(1589), 1, sym_text_interpolation, - STATE(1844), 1, - sym_base_clause, - STATE(2456), 1, - sym_class_interface_clause, - [58975] = 6, + STATE(2084), 1, + sym_const_element, + STATE(2562), 1, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [59830] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1741), 1, - anon_sym_BSLASH, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1120), 1, + sym_compound_statement, STATE(1590), 1, sym_text_interpolation, - STATE(2377), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3452), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - [58997] = 9, + STATE(1831), 1, + sym_anonymous_function_use_clause, + STATE(2416), 1, + sym__return_type, + [59858] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1001), 1, + aux_sym_while_statement_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3356), 1, - aux_sym_base_clause_token1, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3360), 1, - anon_sym_LBRACE, + ACTIONS(3445), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3448), 1, + aux_sym_else_clause_token1, STATE(1591), 1, sym_text_interpolation, - STATE(1719), 1, - sym_declaration_list, - STATE(1895), 1, - sym_base_clause, - STATE(2257), 1, - sym_class_interface_clause, - [59025] = 9, + STATE(1748), 1, + aux_sym_if_statement_repeat1, + STATE(2003), 1, + sym_else_clause, + STATE(2023), 1, + sym_else_if_clause, + [59886] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1015), 1, + aux_sym_while_statement_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3356), 1, - aux_sym_base_clause_token1, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3360), 1, - anon_sym_LBRACE, + ACTIONS(3451), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3453), 1, + aux_sym_else_clause_token1, STATE(1592), 1, sym_text_interpolation, - STATE(1718), 1, - sym_declaration_list, - STATE(1842), 1, - sym_base_clause, - STATE(2436), 1, - sym_class_interface_clause, - [59053] = 9, + STATE(1622), 1, + aux_sym_if_statement_repeat1, + STATE(2022), 1, + sym_else_clause, + STATE(2023), 1, + sym_else_if_clause, + [59914] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3434), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3436), 1, - anon_sym_COLON, - STATE(934), 1, - sym_compound_statement, + ACTIONS(3457), 1, + anon_sym_BSLASHu, STATE(1593), 1, sym_text_interpolation, - STATE(1840), 1, - sym_anonymous_function_use_clause, - STATE(2435), 1, - sym__return_type, - [59081] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(390), 1, + ACTIONS(3455), 5, + sym_execution_string_chars, anon_sym_LBRACE, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3434), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3436), 1, - anon_sym_COLON, - STATE(915), 1, - sym_compound_statement, - STATE(1594), 1, - sym_text_interpolation, - STATE(1881), 1, - sym_anonymous_function_use_clause, - STATE(2230), 1, - sym__return_type, - [59109] = 9, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [59934] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, + ACTIONS(401), 1, anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3434), 1, + ACTIONS(3421), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3436), 1, + ACTIONS(3425), 1, anon_sym_COLON, - STATE(919), 1, + STATE(952), 1, sym_compound_statement, - STATE(1595), 1, + STATE(1594), 1, sym_text_interpolation, - STATE(1837), 1, + STATE(1799), 1, sym_anonymous_function_use_clause, - STATE(2429), 1, + STATE(2264), 1, sym__return_type, - [59137] = 9, + [59962] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3356), 1, + ACTIONS(3341), 1, aux_sym_base_clause_token1, - ACTIONS(3358), 1, + ACTIONS(3343), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3360), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - STATE(1596), 1, + STATE(1595), 1, sym_text_interpolation, - STATE(1665), 1, + STATE(1742), 1, sym_declaration_list, - STATE(1835), 1, + STATE(1848), 1, sym_base_clause, - STATE(2421), 1, + STATE(2234), 1, sym_class_interface_clause, - [59165] = 9, + [59990] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3356), 1, - aux_sym_base_clause_token1, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3360), 1, - anon_sym_LBRACE, - STATE(1597), 1, + ACTIONS(3459), 1, + aux_sym_if_statement_token2, + ACTIONS(3461), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3463), 1, + aux_sym_else_clause_token1, + STATE(1596), 1, sym_text_interpolation, - STATE(1741), 1, - sym_declaration_list, - STATE(1830), 1, - sym_base_clause, - STATE(2390), 1, - sym_class_interface_clause, - [59193] = 9, + STATE(1691), 1, + aux_sym_if_statement_repeat2, + STATE(2094), 1, + sym_else_if_clause_2, + STATE(2465), 1, + sym_else_clause_2, + [60018] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3434), 1, + ACTIONS(3421), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3436), 1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, anon_sym_COLON, - STATE(952), 1, + STATE(1121), 1, sym_compound_statement, - STATE(1598), 1, + STATE(1597), 1, sym_text_interpolation, - STATE(1829), 1, + STATE(1867), 1, sym_anonymous_function_use_clause, - STATE(2389), 1, + STATE(2394), 1, sym__return_type, - [59221] = 5, + [60046] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3426), 1, + ACTIONS(3465), 1, + anon_sym_BSLASHu, + STATE(1598), 1, + sym_text_interpolation, + ACTIONS(2983), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [60066] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1602), 1, anon_sym_BSLASHu, STATE(1599), 1, sym_text_interpolation, - ACTIONS(3428), 5, + ACTIONS(1600), 5, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_DQUOTE, anon_sym_DOLLAR, - [59241] = 5, + [60086] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1685), 1, + ACTIONS(3403), 1, anon_sym_BSLASHu, STATE(1600), 1, sym_text_interpolation, - ACTIONS(1683), 5, + ACTIONS(3405), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [59261] = 5, + [60106] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1015), 1, + aux_sym_while_statement_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1685), 1, - anon_sym_BSLASHu, + ACTIONS(3467), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3470), 1, + aux_sym_else_clause_token1, + STATE(1591), 1, + aux_sym_if_statement_repeat1, STATE(1601), 1, sym_text_interpolation, - ACTIONS(1683), 5, + STATE(2022), 1, + sym_else_clause, + STATE(2023), 1, + sym_else_if_clause, + [60134] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3399), 1, + anon_sym_BSLASHu, + STATE(1602), 1, + sym_text_interpolation, + ACTIONS(3401), 5, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_DQUOTE, anon_sym_DOLLAR, - [59281] = 8, + [60154] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3378), 1, - anon_sym_COMMA, - ACTIONS(3380), 1, - anon_sym_LBRACE, - STATE(1366), 1, - sym_use_list, - STATE(1583), 1, - aux_sym_base_clause_repeat1, - STATE(1602), 1, + ACTIONS(1698), 1, + anon_sym_BSLASH, + STATE(1603), 1, sym_text_interpolation, - ACTIONS(3376), 2, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3473), 4, sym__automatic_semicolon, anon_sym_SEMI, - [59307] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3434), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(3438), 1, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(1093), 1, - sym_compound_statement, - STATE(1603), 1, - sym_text_interpolation, - STATE(1896), 1, - sym_anonymous_function_use_clause, - STATE(2301), 1, - sym__return_type, - [59335] = 9, + [60176] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3356), 1, - aux_sym_base_clause_token1, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3448), 1, - anon_sym_LBRACE, - STATE(457), 1, - sym_declaration_list, + ACTIONS(3399), 1, + anon_sym_BSLASHu, STATE(1604), 1, sym_text_interpolation, - STATE(1870), 1, - sym_base_clause, - STATE(2334), 1, - sym_class_interface_clause, - [59363] = 9, + ACTIONS(3401), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [60196] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3434), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1116), 1, - sym_compound_statement, + ACTIONS(3429), 1, + aux_sym_enum_case_token1, + ACTIONS(3431), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3475), 1, + aux_sym_switch_block_token1, STATE(1605), 1, sym_text_interpolation, - STATE(1846), 1, - sym_anonymous_function_use_clause, - STATE(2415), 1, - sym__return_type, - [59391] = 9, + STATE(1631), 1, + aux_sym_switch_block_repeat1, + STATE(1792), 2, + sym_case_statement, + sym_default_statement, + [60222] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3434), 1, + ACTIONS(3421), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(3438), 1, + ACTIONS(3423), 1, anon_sym_LBRACE, - STATE(1134), 1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1138), 1, sym_compound_statement, STATE(1606), 1, sym_text_interpolation, - STATE(1843), 1, + STATE(1862), 1, sym_anonymous_function_use_clause, - STATE(2431), 1, + STATE(2391), 1, sym__return_type, - [59419] = 9, + [60250] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3356), 1, + ACTIONS(3341), 1, aux_sym_base_clause_token1, - ACTIONS(3358), 1, + ACTIONS(3343), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3448), 1, + ACTIONS(3419), 1, anon_sym_LBRACE, - STATE(438), 1, + STATE(452), 1, sym_declaration_list, STATE(1607), 1, sym_text_interpolation, - STATE(1831), 1, + STATE(1870), 1, sym_base_clause, - STATE(2231), 1, + STATE(2427), 1, sym_class_interface_clause, - [59447] = 5, + [60278] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3422), 1, - anon_sym_BSLASHu, + ACTIONS(3461), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3463), 1, + aux_sym_else_clause_token1, + ACTIONS(3477), 1, + aux_sym_if_statement_token2, + STATE(1596), 1, + aux_sym_if_statement_repeat2, STATE(1608), 1, sym_text_interpolation, - ACTIONS(3424), 5, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [59467] = 5, + STATE(2094), 1, + sym_else_if_clause_2, + STATE(2471), 1, + sym_else_clause_2, + [60306] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3418), 1, - anon_sym_BSLASHu, + ACTIONS(3461), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3463), 1, + aux_sym_else_clause_token1, + ACTIONS(3479), 1, + aux_sym_if_statement_token2, STATE(1609), 1, sym_text_interpolation, - ACTIONS(3420), 5, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [59487] = 9, + STATE(1632), 1, + aux_sym_if_statement_repeat2, + STATE(2094), 1, + sym_else_if_clause_2, + STATE(2493), 1, + sym_else_clause_2, + [60334] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3434), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(3438), 1, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, anon_sym_LBRACE, - STATE(1085), 1, - sym_compound_statement, STATE(1610), 1, sym_text_interpolation, - STATE(1865), 1, - sym_anonymous_function_use_clause, - STATE(2444), 1, - sym__return_type, - [59515] = 5, + STATE(1730), 1, + sym_declaration_list, + STATE(1778), 1, + sym_base_clause, + STATE(2212), 1, + sym_class_interface_clause, + [60362] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1637), 1, - anon_sym_BSLASHu, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(957), 1, + sym_compound_statement, STATE(1611), 1, sym_text_interpolation, - ACTIONS(1635), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [59535] = 9, + STATE(1772), 1, + sym_anonymous_function_use_clause, + STATE(2214), 1, + sym__return_type, + [60390] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3356), 1, - aux_sym_base_clause_token1, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3360), 1, - anon_sym_LBRACE, - STATE(1139), 1, - sym_declaration_list, + ACTIONS(3429), 1, + aux_sym_enum_case_token1, + ACTIONS(3431), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3481), 1, + anon_sym_RBRACE, + STATE(1587), 1, + aux_sym_switch_block_repeat1, STATE(1612), 1, sym_text_interpolation, - STATE(1826), 1, - sym_base_clause, - STATE(2409), 1, - sym_class_interface_clause, - [59563] = 9, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + STATE(1792), 2, + sym_case_statement, + sym_default_statement, + [60416] = 8, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(3454), 1, - sym_php_tag, - ACTIONS(3456), 1, - aux_sym_text_token1, - ACTIONS(3458), 1, - aux_sym_text_token2, - ACTIONS(3460), 1, - sym__eof, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3429), 1, + aux_sym_enum_case_token1, + ACTIONS(3431), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3483), 1, + aux_sym_switch_block_token1, + STATE(1586), 1, + aux_sym_switch_block_repeat1, STATE(1613), 1, sym_text_interpolation, - STATE(1734), 1, - aux_sym_text_repeat1, - STATE(2191), 1, - sym_text, - [59591] = 5, + STATE(1792), 2, + sym_case_statement, + sym_default_statement, + [60442] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1641), 1, - anon_sym_BSLASHu, + ACTIONS(3427), 1, + sym_name, STATE(1614), 1, sym_text_interpolation, - ACTIONS(1639), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [59611] = 8, + STATE(1841), 1, + sym_const_element, + STATE(2562), 1, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [60466] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3442), 1, - aux_sym_enum_case_token1, - ACTIONS(3444), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3462), 1, - aux_sym_switch_block_token1, - STATE(1542), 1, - aux_sym_switch_block_repeat1, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1104), 1, + sym_compound_statement, STATE(1615), 1, sym_text_interpolation, - STATE(1775), 2, - sym_case_statement, - sym_default_statement, - [59637] = 8, + STATE(1863), 1, + sym_anonymous_function_use_clause, + STATE(2331), 1, + sym__return_type, + [60494] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3442), 1, - aux_sym_enum_case_token1, - ACTIONS(3444), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3464), 1, - anon_sym_RBRACE, - STATE(1542), 1, - aux_sym_switch_block_repeat1, + ACTIONS(3116), 1, + anon_sym_BSLASHu, STATE(1616), 1, sym_text_interpolation, - STATE(1775), 2, - sym_case_statement, - sym_default_statement, - [59663] = 9, + ACTIONS(3122), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [60514] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3466), 1, - aux_sym_if_statement_token2, - ACTIONS(3468), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3470), 1, - aux_sym_else_clause_token1, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1092), 1, + sym_declaration_list, STATE(1617), 1, sym_text_interpolation, - STATE(1686), 1, - aux_sym_if_statement_repeat2, - STATE(2139), 1, - sym_else_if_clause_2, - STATE(2538), 1, - sym_else_clause_2, - [59691] = 5, + STATE(1781), 1, + sym_base_clause, + STATE(2405), 1, + sym_class_interface_clause, + [60542] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1637), 1, - anon_sym_BSLASHu, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(950), 1, + sym_compound_statement, STATE(1618), 1, sym_text_interpolation, - ACTIONS(1635), 5, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [59711] = 7, + STATE(1769), 1, + sym_anonymous_function_use_clause, + STATE(2217), 1, + sym__return_type, + [60570] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3472), 1, - sym_name, + ACTIONS(3359), 1, + anon_sym_COMMA, + ACTIONS(3361), 1, + anon_sym_LBRACE, + STATE(1383), 1, + sym_use_list, STATE(1619), 1, sym_text_interpolation, - STATE(1884), 1, - sym_const_element, - STATE(2564), 1, - sym__reserved_identifier, - ACTIONS(2483), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [59735] = 9, + STATE(1720), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3485), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60596] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3356), 1, + ACTIONS(3341), 1, aux_sym_base_clause_token1, - ACTIONS(3358), 1, + ACTIONS(3343), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3448), 1, + ACTIONS(3419), 1, anon_sym_LBRACE, - STATE(448), 1, + STATE(440), 1, sym_declaration_list, STATE(1620), 1, sym_text_interpolation, - STATE(1856), 1, + STATE(1851), 1, sym_base_clause, - STATE(2450), 1, + STATE(2385), 1, sym_class_interface_clause, - [59763] = 9, + [60624] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3434), 1, + ACTIONS(3421), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3436), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1088), 1, + STATE(915), 1, sym_compound_statement, STATE(1621), 1, sym_text_interpolation, - STATE(1800), 1, + STATE(1887), 1, sym_anonymous_function_use_clause, - STATE(2309), 1, + STATE(2290), 1, sym__return_type, - [59791] = 5, + [60652] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1001), 1, + aux_sym_while_statement_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3422), 1, - anon_sym_BSLASHu, + ACTIONS(3451), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3453), 1, + aux_sym_else_clause_token1, STATE(1622), 1, sym_text_interpolation, - ACTIONS(3424), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [59811] = 5, + STATE(1748), 1, + aux_sym_if_statement_repeat1, + STATE(2003), 1, + sym_else_clause, + STATE(2023), 1, + sym_else_if_clause, + [60680] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1641), 1, - anon_sym_BSLASHu, + ACTIONS(3359), 1, + anon_sym_COMMA, + ACTIONS(3361), 1, + anon_sym_LBRACE, + STATE(1371), 1, + sym_use_list, + STATE(1619), 1, + aux_sym_base_clause_repeat1, STATE(1623), 1, sym_text_interpolation, - ACTIONS(1639), 5, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [59831] = 8, + ACTIONS(3357), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60706] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1741), 1, - anon_sym_BSLASH, - ACTIONS(3474), 1, - anon_sym_COMMA, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(944), 1, + sym_compound_statement, STATE(1624), 1, sym_text_interpolation, - STATE(1818), 1, - aux_sym_base_clause_repeat1, - STATE(2377), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3476), 2, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [59857] = 7, + STATE(1766), 1, + sym_anonymous_function_use_clause, + STATE(2219), 1, + sym__return_type, + [60734] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3472), 1, - sym_name, + ACTIONS(1606), 1, + anon_sym_BSLASHu, STATE(1625), 1, sym_text_interpolation, - STATE(1862), 1, - sym_const_element, - STATE(2564), 1, - sym__reserved_identifier, - ACTIONS(2483), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [59881] = 9, + ACTIONS(1604), 5, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [60754] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3468), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3470), 1, - aux_sym_else_clause_token1, - ACTIONS(3478), 1, - aux_sym_if_statement_token2, + ACTIONS(3369), 1, + anon_sym_BSLASHu, STATE(1626), 1, sym_text_interpolation, - STATE(1633), 1, - aux_sym_if_statement_repeat2, - STATE(2139), 1, - sym_else_if_clause_2, - STATE(2539), 1, - sym_else_clause_2, - [59909] = 5, + ACTIONS(3371), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [60774] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3411), 1, anon_sym_BSLASHu, STATE(1627), 1, sym_text_interpolation, - ACTIONS(3386), 5, - sym_execution_string_chars, + ACTIONS(3413), 5, + sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, - anon_sym_BQUOTE, + anon_sym_DQUOTE, anon_sym_DOLLAR, - [59929] = 5, + [60794] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3146), 1, - anon_sym_BSLASHu, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1110), 1, + sym_compound_statement, STATE(1628), 1, sym_text_interpolation, - ACTIONS(3152), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [59949] = 8, + STATE(1844), 1, + sym_anonymous_function_use_clause, + STATE(2417), 1, + sym__return_type, + [60822] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3442), 1, - aux_sym_enum_case_token1, - ACTIONS(3444), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3480), 1, - aux_sym_switch_block_token1, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(444), 1, + sym_declaration_list, STATE(1629), 1, sym_text_interpolation, - STATE(1634), 1, - aux_sym_switch_block_repeat1, - STATE(1775), 2, - sym_case_statement, - sym_default_statement, - [59975] = 7, + STATE(1827), 1, + sym_base_clause, + STATE(2277), 1, + sym_class_interface_clause, + [60850] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3472), 1, - sym_name, + ACTIONS(1618), 1, + anon_sym_BSLASHu, STATE(1630), 1, sym_text_interpolation, - STATE(1858), 1, - sym_const_element, - STATE(2564), 1, - sym__reserved_identifier, - ACTIONS(2483), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [59999] = 9, + ACTIONS(1616), 5, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [60870] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1004), 1, - aux_sym_while_statement_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3482), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3485), 1, - aux_sym_else_clause_token1, + ACTIONS(3429), 1, + aux_sym_enum_case_token1, + ACTIONS(3431), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3487), 1, + aux_sym_switch_block_token1, + STATE(1552), 1, + aux_sym_switch_block_repeat1, STATE(1631), 1, sym_text_interpolation, - STATE(1756), 1, - aux_sym_if_statement_repeat1, - STATE(1961), 1, - sym_else_clause, - STATE(2064), 1, - sym_else_if_clause, - [60027] = 9, + STATE(1792), 2, + sym_case_statement, + sym_default_statement, + [60896] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(996), 1, - aux_sym_while_statement_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3488), 1, + ACTIONS(3461), 1, aux_sym_else_if_clause_token1, - ACTIONS(3491), 1, + ACTIONS(3463), 1, aux_sym_else_clause_token1, - STATE(1631), 1, - aux_sym_if_statement_repeat1, + ACTIONS(3489), 1, + aux_sym_if_statement_token2, STATE(1632), 1, sym_text_interpolation, - STATE(2037), 1, - sym_else_clause, - STATE(2064), 1, - sym_else_if_clause, - [60055] = 9, + STATE(1691), 1, + aux_sym_if_statement_repeat2, + STATE(2094), 1, + sym_else_if_clause_2, + STATE(2490), 1, + sym_else_clause_2, + [60924] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3468), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3470), 1, - aux_sym_else_clause_token1, - ACTIONS(3494), 1, - aux_sym_if_statement_token2, + ACTIONS(1602), 1, + anon_sym_BSLASHu, STATE(1633), 1, sym_text_interpolation, - STATE(1686), 1, - aux_sym_if_statement_repeat2, - STATE(2139), 1, - sym_else_if_clause_2, - STATE(2525), 1, - sym_else_clause_2, - [60083] = 8, + ACTIONS(1600), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [60944] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3442), 1, - aux_sym_enum_case_token1, - ACTIONS(3444), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3496), 1, - aux_sym_switch_block_token1, - STATE(1542), 1, - aux_sym_switch_block_repeat1, + ACTIONS(3339), 1, + anon_sym_LBRACE, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + STATE(955), 1, + sym_declaration_list, STATE(1634), 1, sym_text_interpolation, - STATE(1775), 2, - sym_case_statement, - sym_default_statement, - [60109] = 9, + STATE(1901), 1, + sym_base_clause, + STATE(2252), 1, + sym_class_interface_clause, + [60972] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(996), 1, - aux_sym_while_statement_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3498), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3500), 1, - aux_sym_else_clause_token1, + ACTIONS(3116), 1, + anon_sym_BSLASHu, STATE(1635), 1, sym_text_interpolation, - STATE(1639), 1, - aux_sym_if_statement_repeat1, - STATE(2037), 1, - sym_else_clause, - STATE(2064), 1, - sym_else_if_clause, - [60137] = 9, + ACTIONS(3122), 5, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [60992] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3356), 1, - aux_sym_base_clause_token1, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3448), 1, - anon_sym_LBRACE, - STATE(461), 1, - sym_declaration_list, + ACTIONS(3427), 1, + sym_name, STATE(1636), 1, sym_text_interpolation, - STATE(1803), 1, - sym_base_clause, - STATE(2201), 1, - sym_class_interface_clause, - [60165] = 5, + STATE(1810), 1, + sym_const_element, + STATE(2562), 1, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [61016] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3502), 1, + ACTIONS(3369), 1, anon_sym_BSLASHu, STATE(1637), 1, sym_text_interpolation, - ACTIONS(3018), 5, - sym_execution_string_chars, + ACTIONS(3371), 5, + sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, - anon_sym_BQUOTE, + anon_sym_DQUOTE, anon_sym_DOLLAR, - [60185] = 8, + [61036] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, - ACTIONS(1741), 1, - anon_sym_BSLASH, + ACTIONS(3429), 1, + aux_sym_enum_case_token1, + ACTIONS(3431), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3491), 1, + anon_sym_RBRACE, STATE(1638), 1, sym_text_interpolation, - STATE(2377), 1, - aux_sym_namespace_name_repeat1, - STATE(2418), 1, - sym_arguments, - ACTIONS(3504), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [60211] = 9, + STATE(1647), 1, + aux_sym_switch_block_repeat1, + STATE(1792), 2, + sym_case_statement, + sym_default_statement, + [61062] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1004), 1, - aux_sym_while_statement_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3498), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3500), 1, - aux_sym_else_clause_token1, + ACTIONS(3339), 1, + anon_sym_LBRACE, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + STATE(939), 1, + sym_declaration_list, STATE(1639), 1, sym_text_interpolation, - STATE(1756), 1, - aux_sym_if_statement_repeat1, - STATE(1961), 1, - sym_else_clause, - STATE(2064), 1, - sym_else_if_clause, - [60239] = 5, + STATE(1760), 1, + sym_base_clause, + STATE(2223), 1, + sym_class_interface_clause, + [61090] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(3495), 1, anon_sym_BSLASHu, STATE(1640), 1, sym_text_interpolation, - ACTIONS(3506), 5, + ACTIONS(3493), 5, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_DQUOTE, anon_sym_DOLLAR, - [60259] = 5, + [61110] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3384), 1, - anon_sym_BSLASHu, + ACTIONS(3427), 1, + sym_name, STATE(1641), 1, sym_text_interpolation, - ACTIONS(3386), 5, - sym_encapsed_string_chars, + STATE(1889), 1, + sym_const_element, + STATE(2562), 1, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [61134] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3423), 1, anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [60279] = 5, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1103), 1, + sym_compound_statement, + STATE(1642), 1, + sym_text_interpolation, + STATE(1847), 1, + sym_anonymous_function_use_clause, + STATE(2357), 1, + sym__return_type, + [61162] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3146), 1, + ACTIONS(1606), 1, anon_sym_BSLASHu, - STATE(1642), 1, + STATE(1643), 1, sym_text_interpolation, - ACTIONS(3152), 5, - sym_encapsed_string_chars, + ACTIONS(1604), 5, + sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, - anon_sym_DQUOTE, + anon_sym_BQUOTE, anon_sym_DOLLAR, - [60299] = 9, + [61182] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3356), 1, + ACTIONS(3341), 1, aux_sym_base_clause_token1, - ACTIONS(3358), 1, + ACTIONS(3343), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3448), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - STATE(458), 1, + STATE(1149), 1, sym_declaration_list, - STATE(1643), 1, + STATE(1644), 1, sym_text_interpolation, - STATE(1788), 1, + STATE(1854), 1, sym_base_clause, - STATE(2198), 1, + STATE(2402), 1, sym_class_interface_clause, - [60327] = 7, + [61210] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3472), 1, - sym_name, - STATE(1644), 1, - sym_text_interpolation, - STATE(1793), 1, - sym_const_element, - STATE(2564), 1, - sym__reserved_identifier, - ACTIONS(2483), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [60351] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3512), 1, - anon_sym_BSLASHu, - STATE(1645), 1, - sym_text_interpolation, - ACTIONS(3510), 5, - sym_execution_string_chars, + ACTIONS(401), 1, anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [60371] = 5, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(922), 1, + sym_compound_statement, + STATE(1645), 1, + sym_text_interpolation, + STATE(1856), 1, + sym_anonymous_function_use_clause, + STATE(2236), 1, + sym__return_type, + [61238] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3418), 1, + ACTIONS(3411), 1, anon_sym_BSLASHu, STATE(1646), 1, sym_text_interpolation, - ACTIONS(3420), 5, + ACTIONS(3413), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [60391] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3468), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3470), 1, - aux_sym_else_clause_token1, - ACTIONS(3514), 1, - aux_sym_if_statement_token2, - STATE(1617), 1, - aux_sym_if_statement_repeat2, - STATE(1647), 1, - sym_text_interpolation, - STATE(2139), 1, - sym_else_if_clause_2, - STATE(2606), 1, - sym_else_clause_2, - [60419] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3434), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1076), 1, - sym_compound_statement, - STATE(1648), 1, - sym_text_interpolation, - STATE(1760), 1, - sym_anonymous_function_use_clause, - STATE(2330), 1, - sym__return_type, - [60447] = 8, + [61258] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3429), 1, aux_sym_enum_case_token1, - ACTIONS(3444), 1, + ACTIONS(3431), 1, aux_sym_match_default_expression_token1, - ACTIONS(3516), 1, + ACTIONS(3497), 1, anon_sym_RBRACE, - STATE(1616), 1, + STATE(1552), 1, aux_sym_switch_block_repeat1, - STATE(1649), 1, + STATE(1647), 1, sym_text_interpolation, - STATE(1775), 2, + STATE(1792), 2, sym_case_statement, sym_default_statement, - [60473] = 8, + [61284] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3442), 1, - aux_sym_enum_case_token1, - ACTIONS(3444), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3518), 1, - aux_sym_switch_block_token1, - STATE(1615), 1, - aux_sym_switch_block_repeat1, - STATE(1650), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + ACTIONS(1698), 1, + anon_sym_BSLASH, + STATE(1648), 1, sym_text_interpolation, - STATE(1775), 2, - sym_case_statement, - sym_default_statement, - [60499] = 5, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + STATE(2293), 1, + sym_arguments, + ACTIONS(3499), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [61310] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3520), 1, + ACTIONS(3403), 1, anon_sym_BSLASHu, - STATE(1651), 1, + STATE(1649), 1, sym_text_interpolation, - ACTIONS(3048), 5, + ACTIONS(3405), 5, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_DQUOTE, anon_sym_DOLLAR, - [60519] = 7, + [61330] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3472), 1, - sym_name, - STATE(1652), 1, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1650), 1, sym_text_interpolation, - STATE(2123), 1, - sym_const_element, - STATE(2564), 1, - sym__reserved_identifier, - ACTIONS(2483), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [60543] = 9, + STATE(1744), 1, + sym_declaration_list, + STATE(1825), 1, + sym_base_clause, + STATE(2170), 1, + sym_class_interface_clause, + [61358] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3356), 1, + ACTIONS(3341), 1, aux_sym_base_clause_token1, - ACTIONS(3358), 1, + ACTIONS(3343), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3360), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - STATE(1113), 1, - sym_declaration_list, - STATE(1653), 1, + STATE(1651), 1, sym_text_interpolation, - STATE(1777), 1, + STATE(1669), 1, + sym_declaration_list, + STATE(1895), 1, sym_base_clause, - STATE(2241), 1, + STATE(2280), 1, sym_class_interface_clause, - [60571] = 8, + [61386] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_AMP, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(3522), 1, - anon_sym_DOT_DOT_DOT, - STATE(1654), 1, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(3501), 1, + anon_sym_COMMA, + STATE(1652), 1, sym_text_interpolation, - STATE(2093), 1, - sym_reference_modifier, - STATE(2099), 1, - sym_variable_name, - [60596] = 7, + STATE(1805), 1, + aux_sym_base_clause_repeat1, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3503), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [61412] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1790), 1, + ACTIONS(1618), 1, + anon_sym_BSLASHu, + STATE(1653), 1, + sym_text_interpolation, + ACTIONS(1616), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, anon_sym_DOLLAR, - ACTIONS(3524), 1, - sym_name, - ACTIONS(3526), 1, + [61432] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(401), 1, anon_sym_LBRACE, - STATE(1655), 1, - sym_text_interpolation, - STATE(750), 2, - sym_dynamic_variable_name, - sym_variable_name, - [60619] = 8, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(13), 1, - aux_sym_text_token1, - ACTIONS(15), 1, - aux_sym_text_token2, - ACTIONS(3528), 1, - ts_builtin_sym_end, - ACTIONS(3530), 1, - sym_php_tag, - STATE(1656), 1, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(967), 1, + sym_compound_statement, + STATE(1654), 1, sym_text_interpolation, - STATE(1675), 1, - aux_sym_text_repeat1, - [60644] = 8, + STATE(1821), 1, + sym_anonymous_function_use_clause, + STATE(2197), 1, + sym__return_type, + [61460] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(225), 1, + ACTIONS(401), 1, anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3532), 1, - sym_name, - ACTIONS(3534), 1, - anon_sym_BSLASH, - STATE(517), 1, + ACTIONS(3421), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(914), 1, sym_compound_statement, - STATE(1657), 1, + STATE(1655), 1, sym_text_interpolation, - STATE(1688), 1, - sym_namespace_name, - [60669] = 6, + STATE(1859), 1, + sym_anonymous_function_use_clause, + STATE(2241), 1, + sym__return_type, + [61488] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3505), 1, + anon_sym_BSLASHu, + STATE(1656), 1, + sym_text_interpolation, + ACTIONS(3051), 5, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [61508] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1191), 1, + ACTIONS(1100), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1658), 1, + STATE(1657), 1, sym_text_interpolation, - ACTIONS(1189), 2, + ACTIONS(1098), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3536), 2, + ACTIONS(3507), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60690] = 6, + [61529] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1179), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1659), 1, + ACTIONS(3409), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1658), 1, sym_text_interpolation, - ACTIONS(1177), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3538), 2, + STATE(1930), 1, + sym_namespace_aliasing_clause, + ACTIONS(3407), 3, sym__automatic_semicolon, anon_sym_SEMI, - [60711] = 7, + anon_sym_COMMA, + [61550] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3540), 1, - sym_name, - STATE(1660), 1, + ACTIONS(3511), 1, + anon_sym_BSLASH, + STATE(1659), 1, sym_text_interpolation, - STATE(1806), 1, - sym_namespace_name, - STATE(2226), 1, - sym_namespace_use_group_clause, - ACTIONS(3542), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - [60734] = 8, + STATE(1661), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3509), 3, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [61571] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3544), 1, - anon_sym_LBRACE, - ACTIONS(3546), 1, + ACTIONS(3515), 1, anon_sym_COLON, + STATE(1660), 1, + sym_text_interpolation, + STATE(2035), 1, + sym__return_type, + ACTIONS(3513), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [61592] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3511), 1, + anon_sym_BSLASH, STATE(1661), 1, sym_text_interpolation, - STATE(2001), 1, - sym_enum_declaration_list, - STATE(2402), 1, - sym_class_interface_clause, - [60759] = 6, + STATE(1752), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3517), 3, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [61613] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1145), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1662), 1, sym_text_interpolation, - ACTIONS(1143), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3548), 2, + ACTIONS(3098), 5, sym__automatic_semicolon, anon_sym_SEMI, - [60780] = 7, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_PIPE, + [61630] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(3550), 1, + ACTIONS(3363), 1, anon_sym_AMP, - ACTIONS(3552), 1, - anon_sym_RPAREN, STATE(1663), 1, sym_text_interpolation, - STATE(2322), 2, - sym_variable_name, - sym_variable_reference, - [60803] = 6, + STATE(1717), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3143), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [61651] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1165), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(1749), 1, + anon_sym_DOLLAR, + ACTIONS(3519), 1, + sym_name, + ACTIONS(3521), 1, + anon_sym_LBRACE, STATE(1664), 1, sym_text_interpolation, - ACTIONS(1163), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3554), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60824] = 6, + STATE(890), 2, + sym_dynamic_variable_name, + sym_variable_name, + [61674] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1159), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3523), 1, + anon_sym_LBRACE, + ACTIONS(3525), 1, + anon_sym_COLON_COLON, + ACTIONS(3527), 1, + anon_sym_DASH_GT, + ACTIONS(3529), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3531), 1, + anon_sym_LBRACK, STATE(1665), 1, sym_text_interpolation, - ACTIONS(1157), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3556), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60845] = 7, + [61699] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(323), 1, - anon_sym_DOLLAR, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3558), 1, - sym_name, - ACTIONS(3560), 1, - anon_sym_LBRACE, + ACTIONS(3533), 1, + anon_sym_PIPE, STATE(1666), 1, sym_text_interpolation, - STATE(616), 2, - sym_dynamic_variable_name, - sym_variable_name, - [60868] = 6, + STATE(1715), 1, + aux_sym_union_type_repeat1, + ACTIONS(3310), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [61720] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1741), 1, - anon_sym_BSLASH, + ACTIONS(3535), 1, + anon_sym_PIPE, STATE(1667), 1, sym_text_interpolation, - STATE(2377), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3452), 3, - anon_sym_COMMA, + STATE(1718), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3298), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [60889] = 6, + [61741] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1059), 1, + ACTIONS(1038), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1668), 1, sym_text_interpolation, - ACTIONS(1057), 2, + ACTIONS(1036), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3562), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60910] = 6, + [61760] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1053), 1, + ACTIONS(1088), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1669), 1, sym_text_interpolation, - ACTIONS(1051), 2, + ACTIONS(1086), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3564), 2, + ACTIONS(3537), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60931] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, + [61781] = 7, + ACTIONS(5), 1, sym_comment, - ACTIONS(3362), 1, - aux_sym_catch_clause_token1, - ACTIONS(3364), 1, - aux_sym_finally_clause_token1, - STATE(1522), 1, - aux_sym_try_statement_repeat1, - STATE(1670), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3539), 1, + ts_builtin_sym_end, + ACTIONS(3541), 1, + sym_php_tag, + ACTIONS(3543), 1, + aux_sym_text_token1, + ACTIONS(3546), 1, + aux_sym_text_token2, + STATE(1670), 2, sym_text_interpolation, - STATE(1717), 2, - sym_catch_clause, - sym_finally_clause, - [60954] = 5, + aux_sym_text_repeat1, + [61804] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3566), 1, - anon_sym_COMMA, - STATE(1671), 2, - sym_text_interpolation, - aux_sym_base_clause_repeat1, - ACTIONS(3452), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3525), 1, + anon_sym_COLON_COLON, + ACTIONS(3549), 1, anon_sym_LBRACE, - [60973] = 8, + ACTIONS(3551), 1, + anon_sym_DASH_GT, + ACTIONS(3553), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3555), 1, + anon_sym_LBRACK, + STATE(1671), 1, + sym_text_interpolation, + [61829] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1050), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3544), 1, - anon_sym_LBRACE, - ACTIONS(3569), 1, - anon_sym_COLON, STATE(1672), 1, sym_text_interpolation, - STATE(2083), 1, - sym_enum_declaration_list, - STATE(2255), 1, - sym_class_interface_clause, - [60998] = 5, + ACTIONS(1048), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [61848] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1042), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3557), 1, + sym_name, STATE(1673), 1, sym_text_interpolation, - ACTIONS(1040), 4, + STATE(1871), 1, + sym_namespace_name, + STATE(2122), 1, + sym_namespace_use_group_clause, + ACTIONS(3559), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + [61871] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3561), 1, aux_sym_catch_clause_token1, + ACTIONS(3563), 1, aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [61017] = 8, + STATE(424), 1, + aux_sym_try_statement_repeat1, + STATE(1674), 1, + sym_text_interpolation, + STATE(435), 2, + sym_catch_clause, + sym_finally_clause, + [61894] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3571), 1, - anon_sym_LBRACE, - ACTIONS(3573), 1, + ACTIONS(3525), 1, anon_sym_COLON_COLON, - ACTIONS(3575), 1, + ACTIONS(3565), 1, + anon_sym_LBRACE, + ACTIONS(3567), 1, anon_sym_DASH_GT, - ACTIONS(3577), 1, + ACTIONS(3569), 1, anon_sym_QMARK_DASH_GT, - ACTIONS(3579), 1, + ACTIONS(3571), 1, anon_sym_LBRACK, - STATE(1674), 1, + STATE(1675), 1, sym_text_interpolation, - [61042] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + [61919] = 7, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(3581), 1, - ts_builtin_sym_end, - ACTIONS(3583), 1, - sym_php_tag, - ACTIONS(3585), 1, - aux_sym_text_token1, - ACTIONS(3588), 1, - aux_sym_text_token2, - STATE(1675), 2, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3573), 1, + sym_name, + ACTIONS(3575), 1, + anon_sym_LBRACE, + ACTIONS(3577), 1, + anon_sym_DOLLAR, + STATE(1676), 1, sym_text_interpolation, - aux_sym_text_repeat1, - [61065] = 7, + STATE(1643), 2, + sym_dynamic_variable_name, + sym_variable_name, + [61942] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3593), 1, + ACTIONS(3579), 1, anon_sym_BSLASH, - STATE(1676), 1, + STATE(1677), 1, sym_text_interpolation, - STATE(2106), 1, - sym_compound_statement, - ACTIONS(3591), 2, + STATE(1683), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3517), 3, sym__automatic_semicolon, anon_sym_SEMI, - [61088] = 8, + anon_sym_LBRACE, + [61963] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3573), 1, + ACTIONS(3525), 1, anon_sym_COLON_COLON, - ACTIONS(3595), 1, + ACTIONS(3582), 1, anon_sym_LBRACE, - ACTIONS(3597), 1, + ACTIONS(3584), 1, anon_sym_DASH_GT, - ACTIONS(3599), 1, + ACTIONS(3586), 1, anon_sym_QMARK_DASH_GT, - ACTIONS(3601), 1, + ACTIONS(3588), 1, anon_sym_LBRACK, - STATE(1677), 1, + STATE(1678), 1, sym_text_interpolation, - [61113] = 6, + [61988] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1093), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1678), 1, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(3590), 1, + anon_sym_DOT_DOT_DOT, + STATE(1679), 1, sym_text_interpolation, - ACTIONS(1091), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3603), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [61134] = 8, + STATE(2135), 1, + sym_reference_modifier, + STATE(2136), 1, + sym_variable_name, + [62013] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3573), 1, - anon_sym_COLON_COLON, - ACTIONS(3605), 1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3592), 1, anon_sym_LBRACE, - ACTIONS(3607), 1, - anon_sym_DASH_GT, - ACTIONS(3609), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(3611), 1, - anon_sym_LBRACK, - STATE(1679), 1, + ACTIONS(3594), 1, + anon_sym_COLON, + STATE(536), 1, + sym_enum_declaration_list, + STATE(1680), 1, sym_text_interpolation, - [61159] = 7, + STATE(2419), 1, + sym_class_interface_clause, + [62038] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(616), 1, + ACTIONS(328), 1, anon_sym_DOLLAR, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3613), 1, + ACTIONS(3596), 1, sym_name, - ACTIONS(3615), 1, + ACTIONS(3598), 1, anon_sym_LBRACE, - STATE(1680), 1, + STATE(1681), 1, sym_text_interpolation, - STATE(588), 2, + STATE(609), 2, sym_dynamic_variable_name, sym_variable_name, - [61182] = 6, + [62061] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3617), 1, - anon_sym_PIPE, - STATE(1681), 1, - sym_text_interpolation, - STATE(1720), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3248), 3, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [61203] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3621), 1, - anon_sym_BSLASH, + ACTIONS(3600), 1, + sym_name, STATE(1682), 1, sym_text_interpolation, - STATE(1690), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3619), 3, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [61224] = 6, + STATE(2291), 1, + sym__reserved_identifier, + ACTIONS(2454), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [62082] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3623), 1, + ACTIONS(3604), 1, anon_sym_BSLASH, - STATE(1683), 1, + STATE(1683), 2, sym_text_interpolation, - STATE(1739), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3619), 3, + ACTIONS(3602), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [61245] = 8, + [62101] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1534), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3532), 1, + ACTIONS(3607), 1, sym_name, - ACTIONS(3534), 1, - anon_sym_BSLASH, - STATE(1676), 1, - sym_namespace_name, + ACTIONS(3609), 1, + anon_sym_LBRACE, STATE(1684), 1, sym_text_interpolation, - STATE(2127), 1, - sym_compound_statement, - [61270] = 5, + STATE(787), 2, + sym_dynamic_variable_name, + sym_variable_name, + [62124] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1026), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3525), 1, + anon_sym_COLON_COLON, + ACTIONS(3565), 1, + anon_sym_LBRACE, + ACTIONS(3571), 1, + anon_sym_LBRACK, + ACTIONS(3611), 1, + anon_sym_DASH_GT, + ACTIONS(3613), 1, + anon_sym_QMARK_DASH_GT, STATE(1685), 1, sym_text_interpolation, - ACTIONS(1024), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [61289] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, + [62149] = 8, + ACTIONS(5), 1, sym_comment, - ACTIONS(3626), 1, - aux_sym_if_statement_token2, - ACTIONS(3628), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3631), 1, - aux_sym_else_clause_token1, - STATE(2139), 1, - sym_else_if_clause_2, - STATE(1686), 2, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(13), 1, + aux_sym_text_token1, + ACTIONS(15), 1, + aux_sym_text_token2, + ACTIONS(3615), 1, + ts_builtin_sym_end, + ACTIONS(3617), 1, + sym_php_tag, + STATE(1670), 1, + aux_sym_text_repeat1, + STATE(1686), 1, sym_text_interpolation, - aux_sym_if_statement_repeat2, - [61312] = 6, + [62174] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1125), 1, + ACTIONS(1046), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1687), 1, sym_text_interpolation, - ACTIONS(1123), 2, + ACTIONS(1044), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3633), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [61333] = 7, + [62193] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(225), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3593), 1, - anon_sym_BSLASH, - STATE(487), 1, - sym_compound_statement, STATE(1688), 1, sym_text_interpolation, - ACTIONS(3635), 2, + ACTIONS(3102), 5, sym__automatic_semicolon, anon_sym_SEMI, - [61356] = 7, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_PIPE, + [62210] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1575), 1, - anon_sym_DOLLAR, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3637), 1, - sym_name, - ACTIONS(3639), 1, - anon_sym_LBRACE, + ACTIONS(3347), 1, + aux_sym_catch_clause_token1, + ACTIONS(3349), 1, + aux_sym_finally_clause_token1, + STATE(1528), 1, + aux_sym_try_statement_repeat1, STATE(1689), 1, sym_text_interpolation, - STATE(788), 2, - sym_dynamic_variable_name, - sym_variable_name, - [61379] = 6, + STATE(1672), 2, + sym_catch_clause, + sym_finally_clause, + [62233] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3525), 1, + anon_sym_COLON_COLON, + ACTIONS(3619), 1, + anon_sym_LBRACE, ACTIONS(3621), 1, - anon_sym_BSLASH, + anon_sym_DASH_GT, + ACTIONS(3623), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3625), 1, + anon_sym_LBRACK, STATE(1690), 1, sym_text_interpolation, - STATE(1700), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3641), 3, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [61400] = 6, + [62258] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3617), 1, - anon_sym_PIPE, - STATE(1691), 1, + ACTIONS(3627), 1, + aux_sym_if_statement_token2, + ACTIONS(3629), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3632), 1, + aux_sym_else_clause_token1, + STATE(2094), 1, + sym_else_if_clause_2, + STATE(1691), 2, sym_text_interpolation, - STATE(1731), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3224), 3, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [61421] = 6, + aux_sym_if_statement_repeat2, + [62281] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1106), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3372), 1, - anon_sym_AMP, STATE(1692), 1, sym_text_interpolation, - STATE(1696), 1, - aux_sym_intersection_type_repeat1, - ACTIONS(3137), 3, + ACTIONS(1104), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3634), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [61442] = 8, + [62302] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_AMP, - ACTIONS(2485), 1, - anon_sym_COLON, - ACTIONS(3256), 1, - anon_sym_LPAREN, - STATE(1594), 1, - sym_formal_parameters, + ACTIONS(3557), 1, + sym_name, STATE(1693), 1, sym_text_interpolation, - STATE(2448), 1, - sym_reference_modifier, - [61467] = 8, + STATE(1871), 1, + sym_namespace_name, + STATE(2352), 1, + sym_namespace_use_group_clause, + ACTIONS(3559), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + [62325] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1112), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_AMP, - ACTIONS(2485), 1, - anon_sym_COLON, - ACTIONS(3256), 1, - anon_sym_LPAREN, STATE(1694), 1, sym_text_interpolation, - STATE(1968), 1, - sym_formal_parameters, - STATE(2318), 1, - sym_reference_modifier, - [61492] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3643), 1, - anon_sym_PIPE, - STATE(1695), 2, - sym_text_interpolation, - aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3170), 3, + ACTIONS(1110), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3636), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [61511] = 5, + [62346] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3646), 1, - anon_sym_AMP, - STATE(1696), 2, + STATE(1695), 1, sym_text_interpolation, - aux_sym_intersection_type_repeat1, - ACTIONS(3144), 3, + ACTIONS(3022), 5, sym__automatic_semicolon, anon_sym_SEMI, + anon_sym_AMP, anon_sym_LBRACE, - [61530] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3649), 1, anon_sym_PIPE, - STATE(1697), 2, - sym_text_interpolation, - aux_sym_union_type_repeat1, - ACTIONS(3182), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [61549] = 8, + [62363] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3573), 1, + ACTIONS(3525), 1, anon_sym_COLON_COLON, - ACTIONS(3595), 1, + ACTIONS(3619), 1, anon_sym_LBRACE, - ACTIONS(3601), 1, + ACTIONS(3625), 1, anon_sym_LBRACK, - ACTIONS(3652), 1, + ACTIONS(3638), 1, anon_sym_DASH_GT, - ACTIONS(3654), 1, + ACTIONS(3640), 1, anon_sym_QMARK_DASH_GT, - STATE(1698), 1, - sym_text_interpolation, - [61574] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3658), 1, - anon_sym_EQ, - STATE(1699), 1, - sym_text_interpolation, - STATE(1976), 1, - sym_property_initializer, - ACTIONS(3656), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [61595] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3662), 1, - anon_sym_BSLASH, - STATE(1700), 2, + STATE(1696), 1, sym_text_interpolation, - aux_sym_namespace_name_repeat1, - ACTIONS(3660), 3, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [61614] = 6, + [62388] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3665), 1, - anon_sym_PIPE, - STATE(1701), 1, + STATE(1697), 1, sym_text_interpolation, - STATE(1735), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3248), 3, + ACTIONS(3088), 5, sym__automatic_semicolon, anon_sym_SEMI, + anon_sym_AMP, anon_sym_LBRACE, - [61635] = 6, + anon_sym_PIPE, + [62405] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1124), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3669), 1, - anon_sym_COLON, - STATE(1702), 1, + STATE(1698), 1, sym_text_interpolation, - STATE(1995), 1, - sym__return_type, - ACTIONS(3667), 3, + ACTIONS(1122), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3642), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [61656] = 6, + [62426] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3671), 1, - sym_name, - STATE(1703), 1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3644), 1, + anon_sym_LBRACE, + ACTIONS(3646), 1, + anon_sym_COLON, + STATE(1699), 1, sym_text_interpolation, - STATE(2229), 1, - sym__reserved_identifier, - ACTIONS(2483), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [61677] = 6, + STATE(2050), 1, + sym_enum_declaration_list, + STATE(2283), 1, + sym_class_interface_clause, + [62451] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(3648), 1, anon_sym_PIPE, - STATE(1704), 1, + STATE(1700), 2, sym_text_interpolation, - STATE(1733), 1, aux_sym_union_type_repeat1, - ACTIONS(3228), 3, + ACTIONS(3147), 3, anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [61698] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, + [62470] = 7, + ACTIONS(5), 1, sym_comment, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3675), 1, - anon_sym_LBRACE, - ACTIONS(3677), 1, - anon_sym_COLON, - STATE(483), 1, - sym_enum_declaration_list, - STATE(1705), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3539), 1, + sym__eof, + ACTIONS(3541), 1, + sym_php_tag, + ACTIONS(3651), 1, + aux_sym_text_token1, + ACTIONS(3654), 1, + aux_sym_text_token2, + STATE(1701), 2, sym_text_interpolation, - STATE(2196), 1, - sym_class_interface_clause, - [61723] = 6, + aux_sym_text_repeat1, + [62493] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1119), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - STATE(1706), 1, + ACTIONS(3659), 1, + anon_sym_BSLASH, + STATE(1702), 1, sym_text_interpolation, - ACTIONS(1117), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3679), 2, + STATE(2055), 1, + sym_compound_statement, + ACTIONS(3657), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61744] = 7, + [62516] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(3523), 1, + anon_sym_LBRACE, + ACTIONS(3525), 1, + anon_sym_COLON_COLON, + ACTIONS(3531), 1, + anon_sym_LBRACK, + ACTIONS(3661), 1, + anon_sym_DASH_GT, + ACTIONS(3663), 1, + anon_sym_QMARK_DASH_GT, + STATE(1703), 1, + sym_text_interpolation, + [62541] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1528), 1, anon_sym_DOLLAR, - ACTIONS(3681), 1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3665), 1, sym_name, - ACTIONS(3683), 1, + ACTIONS(3667), 1, anon_sym_LBRACE, - STATE(1707), 1, + STATE(1704), 1, sym_text_interpolation, - STATE(903), 2, + STATE(669), 2, sym_dynamic_variable_name, sym_variable_name, - [61767] = 5, + [62564] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3685), 1, - anon_sym_BSLASH, - STATE(1708), 2, + STATE(1705), 1, sym_text_interpolation, - aux_sym_namespace_name_repeat1, - ACTIONS(3660), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1574), 5, anon_sym_LBRACE, - [61786] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3573), 1, anon_sym_COLON_COLON, - ACTIONS(3595), 1, - anon_sym_LBRACE, - ACTIONS(3601), 1, - anon_sym_LBRACK, - ACTIONS(3688), 1, anon_sym_DASH_GT, - ACTIONS(3690), 1, anon_sym_QMARK_DASH_GT, - STATE(1709), 1, - sym_text_interpolation, - [61811] = 7, + anon_sym_LBRACK, + [62581] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3692), 1, - sym_name, - ACTIONS(3694), 1, - anon_sym_LBRACE, - ACTIONS(3696), 1, + ACTIONS(1723), 1, anon_sym_DOLLAR, - STATE(1710), 1, + ACTIONS(3669), 1, + anon_sym_AMP, + ACTIONS(3671), 1, + anon_sym_RPAREN, + STATE(1706), 1, sym_text_interpolation, - STATE(1623), 2, - sym_dynamic_variable_name, + STATE(2348), 2, sym_variable_name, - [61834] = 8, + sym_variable_reference, + [62604] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3573), 1, + ACTIONS(3525), 1, anon_sym_COLON_COLON, - ACTIONS(3698), 1, + ACTIONS(3619), 1, anon_sym_LBRACE, - ACTIONS(3700), 1, + ACTIONS(3625), 1, + anon_sym_LBRACK, + ACTIONS(3673), 1, anon_sym_DASH_GT, - ACTIONS(3702), 1, + ACTIONS(3675), 1, anon_sym_QMARK_DASH_GT, - ACTIONS(3704), 1, + STATE(1707), 1, + sym_text_interpolation, + [62629] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3525), 1, + anon_sym_COLON_COLON, + ACTIONS(3565), 1, + anon_sym_LBRACE, + ACTIONS(3571), 1, anon_sym_LBRACK, - STATE(1711), 1, + ACTIONS(3677), 1, + anon_sym_DASH_GT, + ACTIONS(3679), 1, + anon_sym_QMARK_DASH_GT, + STATE(1708), 1, sym_text_interpolation, - [61859] = 7, + [62654] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(3550), 1, - anon_sym_AMP, - ACTIONS(3706), 1, - anon_sym_RPAREN, - STATE(1712), 1, + ACTIONS(3681), 1, + anon_sym_PIPE, + STATE(1709), 2, sym_text_interpolation, - STATE(2322), 2, - sym_variable_name, - sym_variable_reference, - [61882] = 6, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3161), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [62673] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1185), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1713), 1, + ACTIONS(3515), 1, + anon_sym_COLON, + STATE(1710), 1, sym_text_interpolation, - ACTIONS(1183), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3708), 2, + STATE(2017), 1, + sym__return_type, + ACTIONS(3684), 3, sym__automatic_semicolon, anon_sym_SEMI, - [61903] = 6, + anon_sym_LBRACE, + [62694] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3390), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1714), 1, + ACTIONS(3535), 1, + anon_sym_PIPE, + STATE(1711), 1, sym_text_interpolation, - STATE(2010), 1, - sym_namespace_aliasing_clause, - ACTIONS(3388), 3, + STATE(1749), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3211), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - [61924] = 7, + anon_sym_LBRACE, + [62715] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(621), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3710), 1, + ACTIONS(3686), 1, sym_name, - ACTIONS(3712), 1, + ACTIONS(3688), 1, anon_sym_LBRACE, - ACTIONS(3714), 1, - anon_sym_DOLLAR, - STATE(1715), 1, + STATE(1712), 1, sym_text_interpolation, - STATE(1614), 2, + STATE(582), 2, sym_dynamic_variable_name, sym_variable_name, - [61947] = 7, + [62738] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3540), 1, + ACTIONS(3690), 1, sym_name, - STATE(1716), 1, + ACTIONS(3692), 1, + anon_sym_LBRACE, + ACTIONS(3694), 1, + anon_sym_DOLLAR, + STATE(1713), 1, sym_text_interpolation, - STATE(1806), 1, - sym_namespace_name, - STATE(2162), 1, - sym_namespace_use_group_clause, - ACTIONS(3542), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - [61970] = 5, + STATE(1565), 2, + sym_dynamic_variable_name, + sym_variable_name, + [62761] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1030), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1717), 1, + ACTIONS(3692), 1, + anon_sym_LBRACE, + ACTIONS(3694), 1, + anon_sym_DOLLAR, + ACTIONS(3696), 1, + sym_name, + STATE(1714), 1, sym_text_interpolation, - ACTIONS(1028), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [61989] = 6, + STATE(1565), 2, + sym_dynamic_variable_name, + sym_variable_name, + [62784] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1065), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1718), 1, + ACTIONS(3698), 1, + anon_sym_PIPE, + STATE(1715), 2, sym_text_interpolation, - ACTIONS(1063), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3716), 2, + aux_sym_union_type_repeat1, + ACTIONS(3147), 3, sym__automatic_semicolon, anon_sym_SEMI, - [62010] = 6, + anon_sym_LBRACE, + [62803] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1113), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1719), 1, + ACTIONS(3575), 1, + anon_sym_LBRACE, + ACTIONS(3577), 1, + anon_sym_DOLLAR, + ACTIONS(3701), 1, + sym_name, + STATE(1716), 1, sym_text_interpolation, - ACTIONS(1111), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3718), 2, + STATE(1643), 2, + sym_dynamic_variable_name, + sym_variable_name, + [62826] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3703), 1, + anon_sym_AMP, + STATE(1717), 2, + sym_text_interpolation, + aux_sym_intersection_type_repeat1, + ACTIONS(3110), 3, sym__automatic_semicolon, anon_sym_SEMI, - [62031] = 6, + anon_sym_LBRACE, + [62845] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(3706), 1, anon_sym_PIPE, - STATE(1720), 1, + STATE(1718), 2, sym_text_interpolation, - STATE(1731), 1, aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3186), 3, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [62052] = 5, + ACTIONS(3161), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [62864] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3439), 1, + aux_sym_text_token1, + ACTIONS(3441), 1, + aux_sym_text_token2, + ACTIONS(3615), 1, + sym__eof, + ACTIONS(3617), 1, + sym_php_tag, + STATE(1701), 1, + aux_sym_text_repeat1, + STATE(1719), 1, + sym_text_interpolation, + [62889] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1022), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1721), 1, + ACTIONS(3709), 1, + anon_sym_COMMA, + STATE(1720), 2, sym_text_interpolation, - ACTIONS(1020), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [62071] = 7, + aux_sym_base_clause_repeat1, + ACTIONS(3473), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [62908] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3720), 1, - aux_sym_catch_clause_token1, - ACTIONS(3722), 1, - aux_sym_finally_clause_token1, - STATE(423), 1, - aux_sym_try_statement_repeat1, - STATE(1722), 1, + ACTIONS(3714), 1, + anon_sym_EQ, + STATE(1721), 1, sym_text_interpolation, - STATE(431), 2, - sym_catch_clause, - sym_finally_clause, - [62094] = 8, + STATE(2145), 1, + sym_property_initializer, + ACTIONS(3712), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [62929] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_AMP, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(3724), 1, - anon_sym_DOT_DOT_DOT, - STATE(1723), 1, + ACTIONS(3716), 1, + anon_sym_BSLASH, + STATE(1677), 1, + aux_sym_namespace_name_repeat1, + STATE(1722), 1, sym_text_interpolation, - STATE(2141), 1, - sym_variable_name, - STATE(2142), 1, - sym_reference_modifier, - [62119] = 6, + ACTIONS(3509), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [62950] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(228), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3665), 1, - anon_sym_PIPE, - STATE(1695), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - STATE(1724), 1, + ACTIONS(3659), 1, + anon_sym_BSLASH, + STATE(542), 1, + sym_compound_statement, + STATE(1723), 1, sym_text_interpolation, - ACTIONS(3224), 3, + ACTIONS(3719), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [62140] = 6, + [62973] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1135), 1, + ACTIONS(1136), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1725), 1, + STATE(1724), 1, sym_text_interpolation, - ACTIONS(1133), 2, + ACTIONS(1134), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3726), 2, + ACTIONS(3721), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62161] = 6, + [62994] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3644), 1, + anon_sym_LBRACE, + ACTIONS(3723), 1, + anon_sym_COLON, + STATE(1725), 1, + sym_text_interpolation, + STATE(2019), 1, + sym_enum_declaration_list, + STATE(2235), 1, + sym_class_interface_clause, + [63019] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(3725), 1, anon_sym_PIPE, - STATE(1697), 1, - aux_sym_union_type_repeat1, + STATE(1709), 1, + aux_sym_disjunctive_normal_form_type_repeat1, STATE(1726), 1, sym_text_interpolation, - ACTIONS(3228), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [62182] = 4, + ACTIONS(3227), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [63040] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3592), 1, + anon_sym_LBRACE, + ACTIONS(3727), 1, + anon_sym_COLON, + STATE(515), 1, + sym_enum_declaration_list, STATE(1727), 1, sym_text_interpolation, - ACTIONS(3113), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_AMP, + STATE(2273), 1, + sym_class_interface_clause, + [63065] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(401), 1, anon_sym_LBRACE, - anon_sym_PIPE, - [62199] = 6, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3729), 1, + sym_name, + ACTIONS(3731), 1, + anon_sym_BSLASH, + STATE(1702), 1, + sym_namespace_name, + STATE(1728), 1, + sym_text_interpolation, + STATE(2082), 1, + sym_compound_statement, + [63090] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1071), 1, + ACTIONS(1060), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1728), 1, + STATE(1729), 1, sym_text_interpolation, - ACTIONS(1069), 2, + ACTIONS(1058), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3730), 2, + ACTIONS(3733), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62220] = 6, + [63111] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1070), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3669), 1, - anon_sym_COLON, - STATE(1729), 1, + STATE(1730), 1, sym_text_interpolation, - STATE(2059), 1, - sym__return_type, - ACTIONS(3732), 3, + ACTIONS(1068), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3735), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [62241] = 4, + [63132] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1730), 1, - sym_text_interpolation, - ACTIONS(1617), 5, + ACTIONS(1698), 1, + anon_sym_BSLASH, + ACTIONS(3501), 1, + anon_sym_COMMA, + ACTIONS(3737), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [62258] = 5, + STATE(1731), 1, + sym_text_interpolation, + STATE(2150), 1, + aux_sym_base_clause_repeat1, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, + [63157] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3734), 1, - anon_sym_PIPE, - STATE(1731), 2, - sym_text_interpolation, - aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3170), 3, + ACTIONS(1711), 1, anon_sym_AMP, - anon_sym_DOT_DOT_DOT, + ACTIONS(1723), 1, anon_sym_DOLLAR, - [62277] = 8, + ACTIONS(3739), 1, + anon_sym_DOT_DOT_DOT, + STATE(1732), 1, + sym_text_interpolation, + STATE(2069), 1, + sym_reference_modifier, + STATE(2070), 1, + sym_variable_name, + [63182] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1054), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3573), 1, - anon_sym_COLON_COLON, - ACTIONS(3737), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_DASH_GT, - ACTIONS(3741), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(3743), 1, - anon_sym_LBRACK, - STATE(1732), 1, + STATE(1733), 1, sym_text_interpolation, - [62302] = 5, + ACTIONS(1052), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [63201] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3745), 1, - anon_sym_PIPE, - STATE(1733), 2, - sym_text_interpolation, - aux_sym_union_type_repeat1, - ACTIONS(3182), 3, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, + ACTIONS(1735), 1, anon_sym_DOLLAR, - [62321] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(3456), 1, - aux_sym_text_token1, - ACTIONS(3458), 1, - aux_sym_text_token2, - ACTIONS(3528), 1, - sym__eof, - ACTIONS(3530), 1, - sym_php_tag, + ACTIONS(3741), 1, + sym_name, + ACTIONS(3743), 1, + anon_sym_LBRACE, STATE(1734), 1, sym_text_interpolation, - STATE(1754), 1, - aux_sym_text_repeat1, - [62346] = 6, + STATE(726), 2, + sym_dynamic_variable_name, + sym_variable_name, + [63224] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3665), 1, - anon_sym_PIPE, - STATE(1695), 1, - aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3525), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_LBRACE, + ACTIONS(3747), 1, + anon_sym_DASH_GT, + ACTIONS(3749), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3751), 1, + anon_sym_LBRACK, STATE(1735), 1, sym_text_interpolation, - ACTIONS(3186), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [62367] = 8, + [63249] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1076), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3573), 1, - anon_sym_COLON_COLON, - ACTIONS(3737), 1, - anon_sym_LBRACE, - ACTIONS(3743), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_DASH_GT, - ACTIONS(3750), 1, - anon_sym_QMARK_DASH_GT, STATE(1736), 1, sym_text_interpolation, - [62392] = 8, + ACTIONS(1074), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3753), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [63270] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1741), 1, + ACTIONS(1698), 1, anon_sym_BSLASH, - ACTIONS(3474), 1, - anon_sym_COMMA, - ACTIONS(3752), 1, - anon_sym_LBRACE, STATE(1737), 1, sym_text_interpolation, - STATE(2119), 1, - aux_sym_base_clause_repeat1, - STATE(2377), 1, + STATE(2243), 1, aux_sym_namespace_name_repeat1, - [62417] = 8, + ACTIONS(3473), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [63291] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3573), 1, - anon_sym_COLON_COLON, - ACTIONS(3737), 1, + ACTIONS(3755), 1, + sym_name, + ACTIONS(3757), 1, anon_sym_LBRACE, - ACTIONS(3743), 1, - anon_sym_LBRACK, - ACTIONS(3754), 1, - anon_sym_DASH_GT, - ACTIONS(3756), 1, - anon_sym_QMARK_DASH_GT, + ACTIONS(3759), 1, + anon_sym_DOLLAR, STATE(1738), 1, sym_text_interpolation, - [62442] = 6, + STATE(1625), 2, + sym_dynamic_variable_name, + sym_variable_name, + [63314] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3758), 1, - anon_sym_BSLASH, - STATE(1708), 1, - aux_sym_namespace_name_repeat1, + ACTIONS(3757), 1, + anon_sym_LBRACE, + ACTIONS(3759), 1, + anon_sym_DOLLAR, + ACTIONS(3761), 1, + sym_name, STATE(1739), 1, sym_text_interpolation, - ACTIONS(3641), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [62463] = 8, + STATE(1625), 2, + sym_dynamic_variable_name, + sym_variable_name, + [63337] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3675), 1, - anon_sym_LBRACE, - ACTIONS(3761), 1, - anon_sym_COLON, - STATE(545), 1, - sym_enum_declaration_list, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(3669), 1, + anon_sym_AMP, + ACTIONS(3763), 1, + anon_sym_RPAREN, STATE(1740), 1, sym_text_interpolation, - STATE(2452), 1, - sym_class_interface_clause, - [62488] = 6, + STATE(2348), 2, + sym_variable_name, + sym_variable_reference, + [63360] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1081), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(228), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3729), 1, + sym_name, + ACTIONS(3731), 1, + anon_sym_BSLASH, + STATE(458), 1, + sym_compound_statement, + STATE(1723), 1, + sym_namespace_name, STATE(1741), 1, sym_text_interpolation, - ACTIONS(1079), 2, + [63385] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1118), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, + sym_comment, + STATE(1742), 1, + sym_text_interpolation, + ACTIONS(1116), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3763), 2, + ACTIONS(3765), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62509] = 8, + [63406] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3573), 1, - anon_sym_COLON_COLON, - ACTIONS(3765), 1, - anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_DASH_GT, - ACTIONS(3769), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(3771), 1, - anon_sym_LBRACK, - STATE(1742), 1, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(2456), 1, + anon_sym_COLON, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1621), 1, + sym_formal_parameters, + STATE(1743), 1, sym_text_interpolation, - [62534] = 6, + STATE(2279), 1, + sym_reference_modifier, + [63431] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1087), 1, + ACTIONS(1130), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1743), 1, + STATE(1744), 1, sym_text_interpolation, - ACTIONS(1085), 2, + ACTIONS(1128), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3773), 2, + ACTIONS(3767), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62555] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3775), 1, - sym_name, - ACTIONS(3777), 1, - anon_sym_LBRACE, - ACTIONS(3779), 1, - anon_sym_DOLLAR, - STATE(1744), 1, - sym_text_interpolation, - STATE(1551), 2, - sym_dynamic_variable_name, - sym_variable_name, - [62578] = 7, + [63452] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3777), 1, - anon_sym_LBRACE, - ACTIONS(3779), 1, - anon_sym_DOLLAR, - ACTIONS(3781), 1, + ACTIONS(3769), 1, sym_name, STATE(1745), 1, sym_text_interpolation, - STATE(1551), 2, - sym_dynamic_variable_name, - sym_variable_name, - [62601] = 7, + STATE(2091), 1, + sym_visibility_modifier, + ACTIONS(3771), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + [63473] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3712), 1, - anon_sym_LBRACE, - ACTIONS(3714), 1, - anon_sym_DOLLAR, - ACTIONS(3783), 1, - sym_name, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(2456), 1, + anon_sym_COLON, + ACTIONS(3243), 1, + anon_sym_LPAREN, STATE(1746), 1, sym_text_interpolation, - STATE(1614), 2, - sym_dynamic_variable_name, - sym_variable_name, - [62624] = 6, + STATE(1920), 1, + sym_formal_parameters, + STATE(2213), 1, + sym_reference_modifier, + [63498] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3785), 1, - sym_name, + ACTIONS(3725), 1, + anon_sym_PIPE, + STATE(1709), 1, + aux_sym_disjunctive_normal_form_type_repeat1, STATE(1747), 1, sym_text_interpolation, - STATE(2140), 1, - sym_visibility_modifier, - ACTIONS(3787), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [62645] = 6, + ACTIONS(3298), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [63519] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1103), 1, + ACTIONS(1025), 1, + aux_sym_while_statement_token1, + ACTIONS(1027), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1748), 1, - sym_text_interpolation, - ACTIONS(1101), 2, - aux_sym_while_statement_token1, + ACTIONS(3773), 1, aux_sym_else_if_clause_token1, - ACTIONS(3789), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62666] = 4, + STATE(2023), 1, + sym_else_if_clause, + STATE(1748), 2, + sym_text_interpolation, + aux_sym_if_statement_repeat1, + [63542] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3535), 1, + anon_sym_PIPE, + STATE(1718), 1, + aux_sym_disjunctive_normal_form_type_repeat1, STATE(1749), 1, sym_text_interpolation, - ACTIONS(3109), 5, + ACTIONS(3227), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_AMP, anon_sym_LBRACE, - anon_sym_PIPE, - [62683] = 4, + [63563] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1094), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, STATE(1750), 1, sym_text_interpolation, - ACTIONS(3063), 5, + ACTIONS(1092), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3776), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_PIPE, - [62700] = 4, + [63584] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3725), 1, + anon_sym_PIPE, + STATE(1726), 1, + aux_sym_disjunctive_normal_form_type_repeat1, STATE(1751), 1, sym_text_interpolation, - ACTIONS(3117), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3211), 3, anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_PIPE, - [62717] = 7, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [63605] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3694), 1, - anon_sym_LBRACE, - ACTIONS(3696), 1, - anon_sym_DOLLAR, - ACTIONS(3791), 1, - sym_name, - STATE(1752), 1, + ACTIONS(3778), 1, + anon_sym_BSLASH, + STATE(1752), 2, sym_text_interpolation, - STATE(1623), 2, - sym_dynamic_variable_name, - sym_variable_name, - [62740] = 7, + aux_sym_namespace_name_repeat1, + ACTIONS(3602), 3, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [63624] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1581), 1, - anon_sym_DOLLAR, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3793), 1, - sym_name, - ACTIONS(3795), 1, - anon_sym_LBRACE, + ACTIONS(3781), 1, + anon_sym_PIPE, + STATE(1700), 1, + aux_sym_union_type_repeat1, STATE(1753), 1, sym_text_interpolation, - STATE(674), 2, - sym_dynamic_variable_name, - sym_variable_name, - [62763] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + ACTIONS(3310), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [63645] = 7, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(3581), 1, - sym__eof, - ACTIONS(3583), 1, - sym_php_tag, - ACTIONS(3797), 1, - aux_sym_text_token1, - ACTIONS(3800), 1, - aux_sym_text_token2, - STATE(1754), 2, + ACTIONS(228), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3783), 1, + anon_sym_SEMI, + ACTIONS(3785), 1, + sym__automatic_semicolon, + STATE(1377), 1, + sym_compound_statement, + STATE(1754), 1, sym_text_interpolation, - aux_sym_text_repeat1, - [62786] = 8, + [63667] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3573), 1, - anon_sym_COLON_COLON, - ACTIONS(3765), 1, - anon_sym_LBRACE, - ACTIONS(3771), 1, - anon_sym_LBRACK, - ACTIONS(3803), 1, - anon_sym_DASH_GT, - ACTIONS(3805), 1, - anon_sym_QMARK_DASH_GT, + ACTIONS(3789), 1, + anon_sym_COMMA, STATE(1755), 1, sym_text_interpolation, - [62811] = 7, + STATE(1877), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3787), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [63687] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1044), 1, - aux_sym_while_statement_token1, - ACTIONS(1046), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3807), 1, - aux_sym_else_if_clause_token1, - STATE(2064), 1, - sym_else_if_clause, - STATE(1756), 2, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2838), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3791), 1, + aux_sym_namespace_use_declaration_token2, + STATE(1756), 1, sym_text_interpolation, - aux_sym_if_statement_repeat1, - [62834] = 4, + STATE(2245), 1, + sym_static_modifier, + [63709] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3795), 1, + anon_sym_COMMA, STATE(1757), 1, sym_text_interpolation, - ACTIONS(3810), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - [62850] = 6, + STATE(1886), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3793), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [63729] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COMMA, STATE(1758), 1, sym_text_interpolation, - STATE(1887), 1, - aux_sym_global_declaration_repeat1, - ACTIONS(3812), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62870] = 7, + STATE(2531), 1, + sym_declare_directive, + ACTIONS(3797), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [63747] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_AMP, - ACTIONS(3256), 1, - anon_sym_LPAREN, - STATE(1575), 1, - sym_formal_parameters, + ACTIONS(3801), 1, + anon_sym_COMMA, STATE(1759), 1, sym_text_interpolation, - STATE(2348), 1, - sym_reference_modifier, - [62892] = 7, + STATE(1794), 1, + aux_sym_property_declaration_repeat1, + ACTIONS(3799), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [63767] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(3438), 1, + ACTIONS(3339), 1, anon_sym_LBRACE, - STATE(1142), 1, - sym_compound_statement, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + STATE(965), 1, + sym_declaration_list, STATE(1760), 1, sym_text_interpolation, - STATE(2260), 1, - sym__return_type, - [62914] = 6, + STATE(2204), 1, + sym_class_interface_clause, + [63789] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(3550), 1, - anon_sym_AMP, + ACTIONS(3805), 1, + anon_sym_COMMA, STATE(1761), 1, sym_text_interpolation, - STATE(2137), 2, - sym_variable_name, - sym_variable_reference, - [62934] = 4, + STATE(1897), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3803), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [63809] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3795), 1, + anon_sym_COMMA, STATE(1762), 1, sym_text_interpolation, - ACTIONS(3182), 4, + STATE(1884), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3807), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PIPE, - [62950] = 7, + [63829] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2515), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2969), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3816), 1, - aux_sym_namespace_use_declaration_token2, + ACTIONS(3789), 1, + anon_sym_COMMA, STATE(1763), 1, sym_text_interpolation, - STATE(2272), 1, - sym_static_modifier, - [62972] = 6, + STATE(1893), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3809), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [63849] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3820), 1, - anon_sym_COMMA, - STATE(1764), 1, + ACTIONS(3813), 1, + anon_sym_PIPE, + ACTIONS(3811), 2, + anon_sym_RPAREN, + anon_sym_DOLLAR, + STATE(1764), 2, sym_text_interpolation, - STATE(1765), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3818), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62992] = 5, + aux_sym_type_list_repeat1, + [63867] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3824), 1, - anon_sym_COMMA, - ACTIONS(3822), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1765), 2, + STATE(1765), 1, sym_text_interpolation, - aux_sym__const_declaration_repeat1, - [63010] = 7, + STATE(2560), 1, + sym_declare_directive, + ACTIONS(3797), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [63885] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(225), 1, + ACTIONS(401), 1, anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_SEMI, - ACTIONS(3829), 1, - sym__automatic_semicolon, - STATE(1367), 1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(971), 1, sym_compound_statement, STATE(1766), 1, sym_text_interpolation, - [63032] = 7, + STATE(2201), 1, + sym__return_type, + [63907] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_AMP, - ACTIONS(3256), 1, - anon_sym_LPAREN, - STATE(1621), 1, - sym_formal_parameters, + ACTIONS(3801), 1, + anon_sym_COMMA, STATE(1767), 1, sym_text_interpolation, - STATE(2336), 1, - sym_reference_modifier, - [63054] = 6, + STATE(1794), 1, + aux_sym_property_declaration_repeat1, + ACTIONS(3816), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [63927] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3474), 1, - anon_sym_COMMA, STATE(1768), 1, sym_text_interpolation, - STATE(1818), 1, - aux_sym_base_clause_repeat1, - ACTIONS(3476), 2, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [63074] = 7, + ACTIONS(3818), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [63943] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3675), 1, + ACTIONS(401), 1, anon_sym_LBRACE, - STATE(562), 1, - sym_enum_declaration_list, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(943), 1, + sym_compound_statement, STATE(1769), 1, sym_text_interpolation, - STATE(2314), 1, - sym_class_interface_clause, - [63096] = 7, + STATE(2200), 1, + sym__return_type, + [63965] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1711), 1, anon_sym_AMP, - ACTIONS(3256), 1, + ACTIONS(3243), 1, anon_sym_LPAREN, - STATE(1594), 1, - sym_formal_parameters, STATE(1770), 1, sym_text_interpolation, - STATE(2448), 1, + STATE(2040), 1, + sym_formal_parameters, + STATE(2363), 1, sym_reference_modifier, - [63118] = 4, + [63987] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3644), 1, + anon_sym_LBRACE, STATE(1771), 1, sym_text_interpolation, - ACTIONS(3170), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PIPE, - [63134] = 7, + STATE(1982), 1, + sym_enum_declaration_list, + STATE(2198), 1, + sym_class_interface_clause, + [64009] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_AMP, - ACTIONS(3256), 1, - anon_sym_LPAREN, - STATE(1578), 1, - sym_formal_parameters, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(956), 1, + sym_compound_statement, STATE(1772), 1, sym_text_interpolation, - STATE(2185), 1, - sym_reference_modifier, - [63156] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + STATE(2196), 1, + sym__return_type, + [64031] = 4, + ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, STATE(1773), 1, sym_text_interpolation, - ACTIONS(3831), 2, - sym_php_tag, - aux_sym_text_token1, - ACTIONS(3833), 2, - sym__eof, - aux_sym_text_token2, - [63174] = 7, + ACTIONS(3161), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, + [64047] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3356), 1, - aux_sym_base_clause_token1, - ACTIONS(3835), 1, + ACTIONS(228), 1, anon_sym_LBRACE, - STATE(548), 1, - sym_declaration_list, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3820), 1, + anon_sym_SEMI, + ACTIONS(3822), 1, + sym__automatic_semicolon, + STATE(1382), 1, + sym_compound_statement, STATE(1774), 1, sym_text_interpolation, - STATE(2454), 1, - sym_base_clause, - [63196] = 4, + [64069] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(3243), 1, + anon_sym_LPAREN, STATE(1775), 1, sym_text_interpolation, - ACTIONS(3837), 4, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_match_default_expression_token1, - aux_sym_switch_block_token1, - [63212] = 6, + STATE(2020), 1, + sym_formal_parameters, + STATE(2305), 1, + sym_reference_modifier, + [64091] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3841), 1, - anon_sym_COMMA, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1590), 1, + sym_formal_parameters, STATE(1776), 1, sym_text_interpolation, - STATE(1795), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3839), 2, + STATE(2303), 1, + sym_reference_modifier, + [64113] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3801), 1, + anon_sym_COMMA, + STATE(1777), 1, + sym_text_interpolation, + STATE(1815), 1, + aux_sym_property_declaration_repeat1, + ACTIONS(3824), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63232] = 7, + [64133] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3358), 1, + ACTIONS(3343), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3360), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - STATE(1125), 1, + STATE(1694), 1, sym_declaration_list, - STATE(1777), 1, + STATE(1778), 1, sym_text_interpolation, - STATE(2350), 1, + STATE(2195), 1, sym_class_interface_clause, - [63254] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, + [64155] = 5, + ACTIONS(5), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(3550), 1, - anon_sym_AMP, - STATE(1778), 1, - sym_text_interpolation, - STATE(2322), 2, - sym_variable_name, - sym_variable_reference, - [63274] = 7, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3828), 1, + sym_nowdoc_string, + ACTIONS(3826), 2, + sym_heredoc_end, + sym__new_line, + STATE(1779), 2, + sym_text_interpolation, + aux_sym_nowdoc_body_repeat1, + [64173] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3358), 1, + ACTIONS(3343), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3360), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - STATE(1139), 1, + STATE(1149), 1, sym_declaration_list, - STATE(1779), 1, + STATE(1780), 1, sym_text_interpolation, - STATE(2409), 1, + STATE(2402), 1, sym_class_interface_clause, - [63296] = 6, + [64195] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3820), 1, - anon_sym_COMMA, - STATE(1780), 1, - sym_text_interpolation, - STATE(1860), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3843), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63316] = 5, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(3847), 1, - sym_nowdoc_string, - ACTIONS(3845), 2, - sym_heredoc_end, - sym__new_line, - STATE(1781), 2, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1143), 1, + sym_declaration_list, + STATE(1781), 1, sym_text_interpolation, - aux_sym_nowdoc_body_repeat1, - [63334] = 6, + STATE(2403), 1, + sym_class_interface_clause, + [64217] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1605), 1, - anon_sym_LPAREN, STATE(1782), 1, sym_text_interpolation, - STATE(2418), 1, - sym_arguments, - ACTIONS(3504), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [63354] = 6, + ACTIONS(3831), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + [64233] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3841), 1, + ACTIONS(3835), 1, anon_sym_COMMA, - STATE(1776), 1, - aux_sym_property_declaration_repeat2, STATE(1783), 1, sym_text_interpolation, - ACTIONS(3850), 2, + STATE(1835), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3833), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63374] = 4, + [64253] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1621), 1, + sym_formal_parameters, STATE(1784), 1, sym_text_interpolation, - ACTIONS(3852), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [63390] = 5, + STATE(2279), 1, + sym_reference_modifier, + [64275] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3839), 1, + anon_sym_PIPE, + STATE(1764), 1, + aux_sym_type_list_repeat1, STATE(1785), 1, sym_text_interpolation, - STATE(2478), 1, - sym_declare_directive, - ACTIONS(3854), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [63408] = 6, + ACTIONS(3837), 2, + anon_sym_RPAREN, + anon_sym_DOLLAR, + [64295] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3856), 1, + ACTIONS(1711), 1, anon_sym_AMP, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1655), 1, + sym_formal_parameters, STATE(1786), 1, sym_text_interpolation, - STATE(1834), 1, - aux_sym_intersection_type_repeat1, - ACTIONS(3137), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [63428] = 4, + STATE(2289), 1, + sym_reference_modifier, + [64317] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3795), 1, + anon_sym_COMMA, STATE(1787), 1, sym_text_interpolation, - ACTIONS(3859), 4, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [63444] = 7, + STATE(1791), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3841), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [64337] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3448), 1, - anon_sym_LBRACE, - STATE(462), 1, - sym_declaration_list, + ACTIONS(3835), 1, + anon_sym_COMMA, STATE(1788), 1, sym_text_interpolation, - STATE(2406), 1, - sym_class_interface_clause, - [63466] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3863), 1, - anon_sym_COMMA, - ACTIONS(3861), 2, + STATE(1837), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3843), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1789), 2, + [64357] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3845), 1, + anon_sym_SQUOTE, + ACTIONS(3847), 1, + aux_sym_string_token2, + ACTIONS(3849), 1, + sym_string_content, + STATE(1789), 1, sym_text_interpolation, - aux_sym_namespace_use_declaration_repeat1, - [63484] = 5, + STATE(1811), 1, + aux_sym_string_repeat1, + [64379] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3868), 1, - anon_sym_PIPE, - ACTIONS(3866), 2, - anon_sym_RPAREN, - anon_sym_DOLLAR, - STATE(1790), 2, + ACTIONS(2456), 1, + anon_sym_COLON, + ACTIONS(3731), 1, + anon_sym_BSLASH, + ACTIONS(3851), 1, + sym_name, + STATE(1790), 1, sym_text_interpolation, - aux_sym_type_list_repeat1, - [63502] = 6, + STATE(2589), 1, + sym_namespace_name, + [64401] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3873), 1, + ACTIONS(3795), 1, anon_sym_COMMA, - STATE(1789), 1, - aux_sym_namespace_use_declaration_repeat1, STATE(1791), 1, sym_text_interpolation, - ACTIONS(3871), 2, + STATE(1884), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3793), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63522] = 7, + [64421] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1047), 1, - sym_compound_statement, STATE(1792), 1, sym_text_interpolation, - STATE(2323), 1, - sym__return_type, - [63544] = 6, + ACTIONS(3853), 4, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_match_default_expression_token1, + aux_sym_switch_block_token1, + [64437] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3820), 1, - anon_sym_COMMA, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(3669), 1, + anon_sym_AMP, STATE(1793), 1, sym_text_interpolation, - STATE(1845), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3875), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63564] = 6, + STATE(2348), 2, + sym_variable_name, + sym_variable_reference, + [64457] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3841), 1, + ACTIONS(3857), 1, anon_sym_COMMA, - STATE(1794), 1, - sym_text_interpolation, - STATE(1795), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3877), 2, + ACTIONS(3855), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63584] = 5, + STATE(1794), 2, + sym_text_interpolation, + aux_sym_property_declaration_repeat1, + [64475] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3881), 1, - anon_sym_COMMA, - ACTIONS(3879), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1795), 2, + STATE(1795), 1, sym_text_interpolation, - aux_sym_property_declaration_repeat2, - [63602] = 6, + ACTIONS(3860), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [64491] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3820), 1, + ACTIONS(3801), 1, anon_sym_COMMA, - STATE(1765), 1, - aux_sym__const_declaration_repeat1, + STATE(1794), 1, + aux_sym_property_declaration_repeat1, STATE(1796), 1, sym_text_interpolation, - ACTIONS(3884), 2, + ACTIONS(3862), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63622] = 6, + [64511] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3841), 1, - anon_sym_COMMA, - STATE(1794), 1, - aux_sym_property_declaration_repeat2, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(3243), 1, + anon_sym_LPAREN, STATE(1797), 1, sym_text_interpolation, - ACTIONS(3886), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63642] = 6, + STATE(1920), 1, + sym_formal_parameters, + STATE(2213), 1, + sym_reference_modifier, + [64533] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3841), 1, + ACTIONS(3864), 1, anon_sym_COMMA, - STATE(1795), 1, - aux_sym_property_declaration_repeat2, - STATE(1798), 1, + ACTIONS(3473), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + STATE(1798), 2, sym_text_interpolation, - ACTIONS(3888), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63662] = 6, + aux_sym_base_clause_repeat1, + [64551] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3873), 1, - anon_sym_COMMA, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(925), 1, + sym_compound_statement, STATE(1799), 1, sym_text_interpolation, - STATE(1877), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3890), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63682] = 7, + STATE(2232), 1, + sym__return_type, + [64573] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(3438), 1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3592), 1, anon_sym_LBRACE, - STATE(1110), 1, - sym_compound_statement, + STATE(473), 1, + sym_enum_declaration_list, STATE(1800), 1, sym_text_interpolation, - STATE(2378), 1, - sym__return_type, - [63704] = 5, + STATE(2421), 1, + sym_class_interface_clause, + [64595] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3894), 1, + ACTIONS(3801), 1, anon_sym_COMMA, - ACTIONS(3892), 2, + STATE(1796), 1, + aux_sym_property_declaration_repeat1, + STATE(1801), 1, + sym_text_interpolation, + ACTIONS(3867), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1801), 2, - sym_text_interpolation, - aux_sym_global_declaration_repeat1, - [63722] = 5, + [64615] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3899), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + STATE(1802), 1, + sym_text_interpolation, + ACTIONS(3869), 4, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1802), 2, - sym_text_interpolation, - aux_sym_function_static_declaration_repeat1, - [63740] = 7, + anon_sym_LBRACE, + anon_sym_COLON, + [64631] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3448), 1, - anon_sym_LBRACE, - STATE(463), 1, - sym_declaration_list, + ACTIONS(3835), 1, + anon_sym_COMMA, STATE(1803), 1, sym_text_interpolation, - STATE(2372), 1, - sym_class_interface_clause, - [63762] = 7, + STATE(1835), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3871), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [64651] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2515), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2969), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3902), 1, - aux_sym_namespace_use_declaration_token2, STATE(1804), 1, sym_text_interpolation, - STATE(2386), 1, - sym_static_modifier, - [63784] = 5, + ACTIONS(3114), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, + [64667] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3501), 1, + anon_sym_COMMA, + STATE(1798), 1, + aux_sym_base_clause_repeat1, STATE(1805), 1, sym_text_interpolation, - STATE(2562), 1, - sym_declare_directive, - ACTIONS(3854), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [63802] = 6, + ACTIONS(3873), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [64687] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3906), 1, - aux_sym_namespace_aliasing_clause_token1, STATE(1806), 1, sym_text_interpolation, - STATE(2281), 1, - sym_namespace_aliasing_clause, - ACTIONS(3904), 2, + ACTIONS(3473), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, - [63822] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, + anon_sym_LBRACE, + [64703] = 5, + ACTIONS(5), 1, sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, STATE(1807), 1, sym_text_interpolation, - ACTIONS(3908), 4, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [63838] = 7, + ACTIONS(3875), 2, + sym_php_tag, + aux_sym_text_token1, + ACTIONS(3877), 2, + sym__eof, + aux_sym_text_token2, + [64721] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_AMP, - ACTIONS(3256), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, STATE(1808), 1, sym_text_interpolation, - STATE(2169), 1, - sym_formal_parameters, - STATE(2215), 1, - sym_reference_modifier, - [63860] = 4, + STATE(2293), 1, + sym_arguments, + ACTIONS(3499), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [64741] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1076), 1, + sym_compound_statement, STATE(1809), 1, sym_text_interpolation, - ACTIONS(3660), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BSLASH, - anon_sym_LBRACE, - [63876] = 7, + STATE(2334), 1, + sym__return_type, + [64763] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_AMP, - ACTIONS(3256), 1, - anon_sym_LPAREN, - STATE(1603), 1, - sym_formal_parameters, + ACTIONS(3835), 1, + anon_sym_COMMA, STATE(1810), 1, sym_text_interpolation, - STATE(2217), 1, - sym_reference_modifier, - [63898] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3820), 1, - anon_sym_COMMA, - STATE(1796), 1, + STATE(1860), 1, aux_sym__const_declaration_repeat1, - STATE(1811), 1, - sym_text_interpolation, - ACTIONS(3910), 2, + ACTIONS(3879), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63918] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, + [64783] = 6, + ACTIONS(5), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1094), 1, - sym_compound_statement, - STATE(1812), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3881), 1, + anon_sym_SQUOTE, + ACTIONS(3883), 1, + aux_sym_string_token2, + ACTIONS(3886), 1, + sym_string_content, + STATE(1811), 2, sym_text_interpolation, - STATE(2238), 1, - sym__return_type, - [63940] = 7, + aux_sym_string_repeat1, + [64803] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(225), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3912), 1, - anon_sym_SEMI, - ACTIONS(3914), 1, + ACTIONS(3801), 1, + anon_sym_COMMA, + STATE(1767), 1, + aux_sym_property_declaration_repeat1, + STATE(1812), 1, + sym_text_interpolation, + ACTIONS(3889), 2, sym__automatic_semicolon, - STATE(1361), 1, - sym_compound_statement, + anon_sym_SEMI, + [64823] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3847), 1, + aux_sym_string_token2, + ACTIONS(3849), 1, + sym_string_content, + ACTIONS(3891), 1, + anon_sym_SQUOTE, STATE(1813), 1, sym_text_interpolation, - [63962] = 6, + STATE(1866), 1, + aux_sym_string_repeat1, + [64845] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3841), 1, - anon_sym_COMMA, STATE(1814), 1, sym_text_interpolation, - STATE(1882), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3916), 2, + ACTIONS(3129), 4, sym__automatic_semicolon, anon_sym_SEMI, - [63982] = 7, + anon_sym_LBRACE, + anon_sym_PIPE, + [64861] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3448), 1, - anon_sym_LBRACE, - STATE(436), 1, - sym_declaration_list, + ACTIONS(3801), 1, + anon_sym_COMMA, + STATE(1794), 1, + aux_sym_property_declaration_repeat1, STATE(1815), 1, sym_text_interpolation, - STATE(2237), 1, - sym_class_interface_clause, - [64004] = 7, + ACTIONS(3893), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [64881] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(225), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3918), 1, - anon_sym_SEMI, - ACTIONS(3920), 1, - sym__automatic_semicolon, - STATE(1377), 1, - sym_compound_statement, STATE(1816), 1, sym_text_interpolation, - [64026] = 4, + ACTIONS(3110), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_LBRACE, + [64897] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3835), 1, + anon_sym_COMMA, STATE(1817), 1, sym_text_interpolation, - ACTIONS(3859), 4, + STATE(1835), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3895), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [64042] = 6, + [64917] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3474), 1, + ACTIONS(3501), 1, anon_sym_COMMA, + STATE(1805), 1, + aux_sym_base_clause_repeat1, STATE(1818), 1, sym_text_interpolation, - STATE(1875), 1, - aux_sym_base_clause_repeat1, - ACTIONS(3922), 2, + ACTIONS(3503), 2, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [64062] = 6, + [64937] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(228), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3926), 1, - anon_sym_PIPE, + ACTIONS(3897), 1, + anon_sym_SEMI, + ACTIONS(3899), 1, + sym__automatic_semicolon, + STATE(1386), 1, + sym_compound_statement, STATE(1819), 1, sym_text_interpolation, - STATE(1868), 1, - aux_sym_type_list_repeat1, - ACTIONS(3924), 2, - anon_sym_RPAREN, - anon_sym_DOLLAR, - [64082] = 4, + [64959] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(228), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3901), 1, + anon_sym_SEMI, + ACTIONS(3903), 1, + sym__automatic_semicolon, + STATE(1379), 1, + sym_compound_statement, STATE(1820), 1, sym_text_interpolation, - ACTIONS(3144), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACE, - [64098] = 4, + [64981] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(933), 1, + sym_compound_statement, STATE(1821), 1, sym_text_interpolation, - ACTIONS(3163), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PIPE, - [64114] = 4, + STATE(2190), 1, + sym__return_type, + [65003] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1822), 1, sym_text_interpolation, - ACTIONS(1721), 4, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [64130] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + ACTIONS(3905), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + [65019] = 5, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(3930), 1, - sym_nowdoc_string, - STATE(1781), 1, - aux_sym_nowdoc_body_repeat1, + ACTIONS(1540), 1, + sym_comment, STATE(1823), 1, sym_text_interpolation, - ACTIONS(3928), 2, - sym_heredoc_end, - sym__new_line, - [64150] = 7, + STATE(2445), 1, + sym_declare_directive, + ACTIONS(3797), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [65037] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2485), 1, - anon_sym_COLON, - ACTIONS(3534), 1, - anon_sym_BSLASH, - ACTIONS(3932), 1, - sym_name, + ACTIONS(3909), 1, + anon_sym_EQ, STATE(1824), 1, sym_text_interpolation, - STATE(2563), 1, - sym_namespace_name, - [64172] = 4, + ACTIONS(3907), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [65055] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1729), 1, + sym_declaration_list, STATE(1825), 1, sym_text_interpolation, - ACTIONS(3660), 4, + STATE(2211), 1, + sym_class_interface_clause, + [65077] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1826), 1, + sym_text_interpolation, + ACTIONS(3602), 4, anon_sym_COMMA, anon_sym_BSLASH, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - [64188] = 7, + [65093] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3358), 1, + ACTIONS(3343), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3360), 1, + ACTIONS(3419), 1, anon_sym_LBRACE, - STATE(1072), 1, + STATE(455), 1, sym_declaration_list, - STATE(1826), 1, + STATE(1827), 1, sym_text_interpolation, - STATE(2428), 1, + STATE(2337), 1, sym_class_interface_clause, - [64210] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(3934), 1, - anon_sym_SQUOTE, - ACTIONS(3936), 1, - aux_sym_string_token2, - ACTIONS(3939), 1, - sym_string_value, - STATE(1827), 2, - sym_text_interpolation, - aux_sym_string_repeat1, - [64230] = 4, + [65115] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3839), 1, + anon_sym_PIPE, + STATE(1785), 1, + aux_sym_type_list_repeat1, STATE(1828), 1, sym_text_interpolation, - ACTIONS(3942), 4, - anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(3911), 2, anon_sym_RPAREN, - anon_sym_RBRACK, - [64246] = 7, + anon_sym_DOLLAR, + [65135] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - STATE(940), 1, - sym_compound_statement, + ACTIONS(3801), 1, + anon_sym_COMMA, + STATE(1759), 1, + aux_sym_property_declaration_repeat1, STATE(1829), 1, sym_text_interpolation, - STATE(2379), 1, - sym__return_type, - [64268] = 7, + ACTIONS(3913), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [65155] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3360), 1, - anon_sym_LBRACE, - STATE(1669), 1, - sym_declaration_list, + ACTIONS(3805), 1, + anon_sym_COMMA, STATE(1830), 1, sym_text_interpolation, - STATE(2380), 1, - sym_class_interface_clause, - [64290] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3448), 1, - anon_sym_LBRACE, - STATE(449), 1, - sym_declaration_list, - STATE(1831), 1, - sym_text_interpolation, - STATE(2324), 1, - sym_class_interface_clause, - [64312] = 7, + STATE(1878), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3915), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [65175] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, anon_sym_COLON, - STATE(965), 1, + STATE(1126), 1, sym_compound_statement, - STATE(1832), 1, + STATE(1831), 1, sym_text_interpolation, - STATE(2387), 1, + STATE(2393), 1, sym__return_type, - [64334] = 7, + [65197] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(852), 1, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3795), 1, anon_sym_COMMA, - ACTIONS(1587), 1, + STATE(1832), 1, + sym_text_interpolation, + STATE(1881), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3917), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [65217] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3944), 1, - anon_sym_EQ, - ACTIONS(3946), 1, - anon_sym_RPAREN, + ACTIONS(3805), 1, + anon_sym_COMMA, + STATE(1761), 1, + aux_sym_global_declaration_repeat1, STATE(1833), 1, sym_text_interpolation, - STATE(2157), 1, - aux_sym__list_destructing_repeat1, - [64356] = 5, + ACTIONS(3919), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [65237] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3948), 1, + ACTIONS(3921), 1, anon_sym_AMP, - ACTIONS(3144), 2, + ACTIONS(3110), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, STATE(1834), 2, sym_text_interpolation, aux_sym_intersection_type_repeat1, - [64374] = 7, + [65255] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3360), 1, - anon_sym_LBRACE, - STATE(1743), 1, - sym_declaration_list, - STATE(1835), 1, + ACTIONS(3926), 1, + anon_sym_COMMA, + ACTIONS(3924), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1835), 2, sym_text_interpolation, - STATE(2392), 1, - sym_class_interface_clause, - [64396] = 7, + aux_sym__const_declaration_repeat1, + [65273] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3544), 1, - anon_sym_LBRACE, + ACTIONS(3835), 1, + anon_sym_COMMA, STATE(1836), 1, sym_text_interpolation, - STATE(1969), 1, - sym_enum_declaration_list, - STATE(2393), 1, - sym_class_interface_clause, - [64418] = 7, + STATE(1890), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3929), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [65293] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - STATE(948), 1, - sym_compound_statement, + ACTIONS(3835), 1, + anon_sym_COMMA, + STATE(1835), 1, + aux_sym__const_declaration_repeat1, STATE(1837), 1, sym_text_interpolation, - STATE(2394), 1, - sym__return_type, - [64440] = 6, + ACTIONS(3931), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [65313] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3820), 1, - anon_sym_COMMA, - STATE(1765), 1, - aux_sym__const_declaration_repeat1, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1645), 1, + sym_formal_parameters, STATE(1838), 1, sym_text_interpolation, - ACTIONS(3951), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [64460] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + STATE(2339), 1, + sym_reference_modifier, + [65335] = 7, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(3953), 1, - anon_sym_SQUOTE, - ACTIONS(3955), 1, - aux_sym_string_token2, - ACTIONS(3957), 1, - sym_string_value, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3339), 1, + anon_sym_LBRACE, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, STATE(1839), 1, sym_text_interpolation, - STATE(1891), 1, - aux_sym_string_repeat1, - [64482] = 7, + STATE(2051), 1, + sym_declaration_list, + STATE(2284), 1, + sym_base_clause, + [65357] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - STATE(966), 1, - sym_compound_statement, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3644), 1, + anon_sym_LBRACE, STATE(1840), 1, sym_text_interpolation, - STATE(2399), 1, - sym__return_type, - [64504] = 7, + STATE(2014), 1, + sym_enum_declaration_list, + STATE(2230), 1, + sym_class_interface_clause, + [65379] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3360), 1, - anon_sym_LBRACE, - STATE(1113), 1, - sym_declaration_list, + ACTIONS(3835), 1, + anon_sym_COMMA, + STATE(1783), 1, + aux_sym__const_declaration_repeat1, STATE(1841), 1, sym_text_interpolation, - STATE(2241), 1, - sym_class_interface_clause, - [64526] = 7, + ACTIONS(3933), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [65399] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3360), 1, - anon_sym_LBRACE, - STATE(1706), 1, - sym_declaration_list, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1584), 1, + sym_formal_parameters, STATE(1842), 1, sym_text_interpolation, - STATE(2400), 1, - sym_class_interface_clause, - [64548] = 7, + STATE(2278), 1, + sym_reference_modifier, + [65421] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1098), 1, - sym_compound_statement, STATE(1843), 1, sym_text_interpolation, - STATE(2308), 1, - sym__return_type, - [64570] = 7, + ACTIONS(3869), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [65437] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3354), 1, + ACTIONS(3423), 1, anon_sym_LBRACE, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - STATE(929), 1, - sym_declaration_list, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1142), 1, + sym_compound_statement, STATE(1844), 1, sym_text_interpolation, - STATE(2405), 1, - sym_class_interface_clause, - [64592] = 6, + STATE(2390), 1, + sym__return_type, + [65459] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3820), 1, - anon_sym_COMMA, - STATE(1765), 1, - aux_sym__const_declaration_repeat1, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(441), 1, + sym_declaration_list, STATE(1845), 1, sym_text_interpolation, - ACTIONS(3959), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [64612] = 7, + STATE(2389), 1, + sym_class_interface_clause, + [65481] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1106), 1, - sym_compound_statement, + ACTIONS(3937), 1, + aux_sym_namespace_aliasing_clause_token1, STATE(1846), 1, sym_text_interpolation, - STATE(2304), 1, - sym__return_type, - [64634] = 5, + STATE(2353), 1, + sym_namespace_aliasing_clause, + ACTIONS(3935), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [65501] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3963), 1, - anon_sym_EQ, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1084), 1, + sym_compound_statement, STATE(1847), 1, sym_text_interpolation, - ACTIONS(3961), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [64652] = 7, + STATE(2336), 1, + sym__return_type, + [65523] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3358), 1, + ACTIONS(3343), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3360), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - STATE(1658), 1, + STATE(1736), 1, sym_declaration_list, STATE(1848), 1, sym_text_interpolation, - STATE(2425), 1, + STATE(2215), 1, sym_class_interface_clause, - [64674] = 7, + [65545] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - STATE(945), 1, - sym_compound_statement, + ACTIONS(3835), 1, + anon_sym_COMMA, + STATE(1835), 1, + aux_sym__const_declaration_repeat1, STATE(1849), 1, sym_text_interpolation, - STATE(2427), 1, - sym__return_type, - [64696] = 6, + ACTIONS(3939), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [65565] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3967), 1, - anon_sym_COMMA, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1092), 1, + sym_declaration_list, STATE(1850), 1, sym_text_interpolation, - STATE(1893), 1, - aux_sym_function_static_declaration_repeat1, - ACTIONS(3965), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [64716] = 7, + STATE(2405), 1, + sym_class_interface_clause, + [65587] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_AMP, - ACTIONS(3256), 1, - anon_sym_LPAREN, - STATE(1582), 1, - sym_formal_parameters, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(449), 1, + sym_declaration_list, STATE(1851), 1, sym_text_interpolation, - STATE(2290), 1, - sym_reference_modifier, - [64738] = 7, + STATE(2354), 1, + sym_class_interface_clause, + [65609] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3675), 1, + ACTIONS(3423), 1, anon_sym_LBRACE, - STATE(551), 1, - sym_enum_declaration_list, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1107), 1, + sym_compound_statement, STATE(1852), 1, sym_text_interpolation, - STATE(2302), 1, - sym_class_interface_clause, - [64760] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, + STATE(2356), 1, + sym__return_type, + [65631] = 7, + ACTIONS(5), 1, sym_comment, - ACTIONS(3820), 1, - anon_sym_COMMA, - STATE(1765), 1, - aux_sym__const_declaration_repeat1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3847), 1, + aux_sym_string_token2, + ACTIONS(3849), 1, + sym_string_content, + ACTIONS(3941), 1, + anon_sym_SQUOTE, + STATE(1789), 1, + aux_sym_string_repeat1, STATE(1853), 1, sym_text_interpolation, - ACTIONS(3969), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [64780] = 6, + [65653] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3967), 1, - anon_sym_COMMA, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1068), 1, + sym_declaration_list, STATE(1854), 1, sym_text_interpolation, - STATE(1902), 1, - aux_sym_function_static_declaration_repeat1, - ACTIONS(3971), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [64800] = 6, + STATE(2366), 1, + sym_class_interface_clause, + [65675] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COMMA, + ACTIONS(3339), 1, + anon_sym_LBRACE, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + STATE(955), 1, + sym_declaration_list, STATE(1855), 1, sym_text_interpolation, - STATE(1903), 1, - aux_sym_global_declaration_repeat1, - ACTIONS(3973), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [64820] = 7, + STATE(2252), 1, + sym_class_interface_clause, + [65697] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3448), 1, + ACTIONS(401), 1, anon_sym_LBRACE, - STATE(450), 1, - sym_declaration_list, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(954), 1, + sym_compound_statement, STATE(1856), 1, sym_text_interpolation, - STATE(2293), 1, - sym_class_interface_clause, - [64842] = 6, + STATE(2216), 1, + sym__return_type, + [65719] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3873), 1, - anon_sym_COMMA, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3592), 1, + anon_sym_LBRACE, + STATE(541), 1, + sym_enum_declaration_list, STATE(1857), 1, sym_text_interpolation, - STATE(1906), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3975), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [64862] = 6, + STATE(2358), 1, + sym_class_interface_clause, + [65741] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3820), 1, + ACTIONS(3835), 1, anon_sym_COMMA, - STATE(1838), 1, + STATE(1849), 1, aux_sym__const_declaration_repeat1, STATE(1858), 1, sym_text_interpolation, - ACTIONS(3977), 2, + ACTIONS(3943), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64882] = 7, + [65761] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, + ACTIONS(401), 1, anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, + ACTIONS(3425), 1, anon_sym_COLON, - STATE(923), 1, + STATE(948), 1, sym_compound_statement, STATE(1859), 1, sym_text_interpolation, - STATE(2434), 1, + STATE(2218), 1, sym__return_type, - [64904] = 6, + [65783] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3820), 1, + ACTIONS(3835), 1, anon_sym_COMMA, - STATE(1765), 1, + STATE(1835), 1, aux_sym__const_declaration_repeat1, STATE(1860), 1, sym_text_interpolation, - ACTIONS(3910), 2, + ACTIONS(3945), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64924] = 6, + [65803] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3820), 1, - anon_sym_COMMA, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(3669), 1, + anon_sym_AMP, STATE(1861), 1, sym_text_interpolation, - STATE(1888), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3979), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [64944] = 6, + STATE(2139), 2, + sym_variable_name, + sym_variable_reference, + [65823] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3820), 1, - anon_sym_COMMA, - STATE(1764), 1, - aux_sym__const_declaration_repeat1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1096), 1, + sym_compound_statement, STATE(1862), 1, sym_text_interpolation, - ACTIONS(3981), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [64964] = 5, + STATE(2359), 1, + sym__return_type, + [65845] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1059), 1, + sym_compound_statement, STATE(1863), 1, sym_text_interpolation, - STATE(2469), 1, - sym_declare_directive, - ACTIONS(3854), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [64982] = 7, + STATE(2425), 1, + sym__return_type, + [65867] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3354), 1, - anon_sym_LBRACE, - ACTIONS(3356), 1, - aux_sym_base_clause_token1, + ACTIONS(3835), 1, + anon_sym_COMMA, + STATE(1835), 1, + aux_sym__const_declaration_repeat1, STATE(1864), 1, sym_text_interpolation, - STATE(2094), 1, - sym_declaration_list, - STATE(2253), 1, - sym_base_clause, - [65004] = 7, + ACTIONS(3947), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [65887] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1100), 1, - sym_compound_statement, STATE(1865), 1, sym_text_interpolation, - STATE(2317), 1, - sym__return_type, - [65026] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(3602), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BSLASH, + anon_sym_LBRACE, + [65903] = 7, + ACTIONS(5), 1, sym_comment, - ACTIONS(3820), 1, - anon_sym_COMMA, - STATE(1853), 1, - aux_sym__const_declaration_repeat1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3847), 1, + aux_sym_string_token2, + ACTIONS(3849), 1, + sym_string_content, + ACTIONS(3949), 1, + anon_sym_SQUOTE, + STATE(1811), 1, + aux_sym_string_repeat1, STATE(1866), 1, sym_text_interpolation, - ACTIONS(3983), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [65046] = 7, + [65925] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_AMP, - ACTIONS(3256), 1, - anon_sym_LPAREN, - STATE(1610), 1, - sym_formal_parameters, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(1089), 1, + sym_compound_statement, STATE(1867), 1, sym_text_interpolation, - STATE(2258), 1, - sym_reference_modifier, - [65068] = 6, + STATE(2360), 1, + sym__return_type, + [65947] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3926), 1, - anon_sym_PIPE, - STATE(1790), 1, - aux_sym_type_list_repeat1, + ACTIONS(3341), 1, + aux_sym_base_clause_token1, + ACTIONS(3951), 1, + anon_sym_LBRACE, + STATE(523), 1, + sym_declaration_list, STATE(1868), 1, sym_text_interpolation, - ACTIONS(3985), 2, - anon_sym_RPAREN, - anon_sym_DOLLAR, - [65088] = 7, + STATE(2270), 1, + sym_base_clause, + [65969] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3360), 1, - anon_sym_LBRACE, - STATE(1713), 1, - sym_declaration_list, + ACTIONS(3953), 1, + anon_sym_EQ, + ACTIONS(3955), 1, + anon_sym_RPAREN, STATE(1869), 1, sym_text_interpolation, - STATE(2447), 1, - sym_class_interface_clause, - [65110] = 7, + STATE(2104), 1, + aux_sym__list_destructing_repeat1, + [65991] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3358), 1, + ACTIONS(3343), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3448), 1, + ACTIONS(3419), 1, anon_sym_LBRACE, - STATE(442), 1, + STATE(438), 1, sym_declaration_list, STATE(1870), 1, sym_text_interpolation, - STATE(2297), 1, + STATE(2384), 1, sym_class_interface_clause, - [65132] = 4, + [66013] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3937), 1, + aux_sym_namespace_aliasing_clause_token1, STATE(1871), 1, sym_text_interpolation, - ACTIONS(3452), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + STATE(2382), 1, + sym_namespace_aliasing_clause, + ACTIONS(3957), 2, anon_sym_COMMA, - anon_sym_LBRACE, - [65148] = 7, + anon_sym_RBRACE, + [66033] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3354), 1, - anon_sym_LBRACE, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - STATE(911), 1, - sym_declaration_list, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1583), 1, + sym_formal_parameters, STATE(1872), 1, sym_text_interpolation, - STATE(2456), 1, - sym_class_interface_clause, - [65170] = 4, + STATE(2423), 1, + sym_reference_modifier, + [66055] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(3243), 1, + anon_sym_LPAREN, STATE(1873), 1, sym_text_interpolation, - ACTIONS(3852), 4, + STATE(2120), 1, + sym_formal_parameters, + STATE(2426), 1, + sym_reference_modifier, + [66077] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + STATE(1874), 1, + sym_text_interpolation, + ACTIONS(3905), 4, aux_sym_namespace_use_declaration_token1, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [65186] = 7, + [66093] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3354), 1, + STATE(1875), 1, + sym_text_interpolation, + ACTIONS(3147), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - STATE(922), 1, - sym_declaration_list, - STATE(1874), 1, + anon_sym_PIPE, + [66109] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1711), 1, + anon_sym_AMP, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1611), 1, + sym_formal_parameters, + STATE(1876), 1, sym_text_interpolation, - STATE(2457), 1, - sym_class_interface_clause, - [65208] = 5, + STATE(2316), 1, + sym_reference_modifier, + [66131] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3987), 1, + ACTIONS(3789), 1, anon_sym_COMMA, - ACTIONS(3452), 2, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - STATE(1875), 2, + STATE(1877), 1, sym_text_interpolation, - aux_sym_base_clause_repeat1, - [65226] = 4, + STATE(1893), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3959), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [66151] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1876), 1, + ACTIONS(3805), 1, + anon_sym_COMMA, + STATE(1878), 1, sym_text_interpolation, - ACTIONS(3158), 4, + STATE(1897), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3961), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PIPE, - [65242] = 6, + [66171] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3873), 1, + ACTIONS(3795), 1, anon_sym_COMMA, - STATE(1789), 1, + STATE(1762), 1, aux_sym_namespace_use_declaration_repeat1, - STATE(1877), 1, + STATE(1879), 1, sym_text_interpolation, - ACTIONS(3990), 2, + ACTIONS(3963), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65262] = 4, + [66191] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1878), 1, + STATE(1880), 1, sym_text_interpolation, - ACTIONS(3992), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [65278] = 6, + STATE(2526), 1, + sym_declare_directive, + ACTIONS(3797), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [66209] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3873), 1, + ACTIONS(3795), 1, anon_sym_COMMA, - STATE(1791), 1, - aux_sym_namespace_use_declaration_repeat1, - STATE(1879), 1, + STATE(1881), 1, sym_text_interpolation, - ACTIONS(3990), 2, + STATE(1884), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3963), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65298] = 7, + [66229] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(1882), 1, + sym_text_interpolation, + ACTIONS(3875), 2, + sym_php_tag, + aux_sym_text_token1, + ACTIONS(3877), 2, + ts_builtin_sym_end, + aux_sym_text_token2, + [66247] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3544), 1, - anon_sym_LBRACE, - STATE(1880), 1, + STATE(1883), 1, sym_text_interpolation, - STATE(1952), 1, - sym_enum_declaration_list, - STATE(2433), 1, - sym_class_interface_clause, - [65320] = 7, + ACTIONS(3831), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [66263] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - STATE(917), 1, - sym_compound_statement, - STATE(1881), 1, + ACTIONS(3967), 1, + anon_sym_COMMA, + ACTIONS(3965), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1884), 2, sym_text_interpolation, - STATE(2300), 1, - sym__return_type, - [65342] = 6, + aux_sym_namespace_use_declaration_repeat1, + [66281] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3841), 1, + ACTIONS(3789), 1, anon_sym_COMMA, - STATE(1795), 1, - aux_sym_property_declaration_repeat2, - STATE(1882), 1, + STATE(1763), 1, + aux_sym_function_static_declaration_repeat1, + STATE(1885), 1, sym_text_interpolation, - ACTIONS(3994), 2, + ACTIONS(3970), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65362] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(3955), 1, - aux_sym_string_token2, - ACTIONS(3957), 1, - sym_string_value, - ACTIONS(3996), 1, - anon_sym_SQUOTE, - STATE(1883), 1, - sym_text_interpolation, - STATE(1908), 1, - aux_sym_string_repeat1, - [65384] = 6, + [66301] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3820), 1, + ACTIONS(3795), 1, anon_sym_COMMA, STATE(1884), 1, + aux_sym_namespace_use_declaration_repeat1, + STATE(1886), 1, sym_text_interpolation, - STATE(1890), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3998), 2, + ACTIONS(3972), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65404] = 7, + [66321] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(225), 1, + ACTIONS(401), 1, anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4000), 1, - anon_sym_SEMI, - ACTIONS(4002), 1, - sym__automatic_semicolon, - STATE(1371), 1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(973), 1, sym_compound_statement, - STATE(1885), 1, + STATE(1887), 1, sym_text_interpolation, - [65426] = 6, + STATE(2263), 1, + sym__return_type, + [66343] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3841), 1, - anon_sym_COMMA, - STATE(1798), 1, - aux_sym_property_declaration_repeat2, - STATE(1886), 1, + STATE(1888), 1, sym_text_interpolation, - ACTIONS(4004), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [65446] = 6, + ACTIONS(3974), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [66359] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3814), 1, + ACTIONS(3835), 1, anon_sym_COMMA, - STATE(1801), 1, - aux_sym_global_declaration_repeat1, - STATE(1887), 1, + STATE(1803), 1, + aux_sym__const_declaration_repeat1, + STATE(1889), 1, sym_text_interpolation, - ACTIONS(4006), 2, + ACTIONS(3976), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65466] = 6, + [66379] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3820), 1, + ACTIONS(3835), 1, anon_sym_COMMA, - STATE(1765), 1, + STATE(1835), 1, aux_sym__const_declaration_repeat1, - STATE(1888), 1, + STATE(1890), 1, sym_text_interpolation, - ACTIONS(3983), 2, + ACTIONS(3843), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65486] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - STATE(1889), 1, - sym_text_interpolation, - ACTIONS(3992), 4, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [65502] = 6, + [66399] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3820), 1, + ACTIONS(3835), 1, anon_sym_COMMA, - STATE(1765), 1, + STATE(1864), 1, aux_sym__const_declaration_repeat1, - STATE(1890), 1, + STATE(1891), 1, sym_text_interpolation, - ACTIONS(4008), 2, + ACTIONS(3895), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65522] = 7, + [66419] = 6, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - ACTIONS(3955), 1, - aux_sym_string_token2, - ACTIONS(3957), 1, - sym_string_value, - ACTIONS(4010), 1, - anon_sym_SQUOTE, - STATE(1827), 1, - aux_sym_string_repeat1, - STATE(1891), 1, - sym_text_interpolation, - [65544] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3906), 1, - aux_sym_namespace_aliasing_clause_token1, + ACTIONS(3980), 1, + sym_nowdoc_string, + STATE(1779), 1, + aux_sym_nowdoc_body_repeat1, STATE(1892), 1, sym_text_interpolation, - STATE(2228), 1, - sym_namespace_aliasing_clause, - ACTIONS(4012), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [65564] = 6, + ACTIONS(3978), 2, + sym_heredoc_end, + sym__new_line, + [66439] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3967), 1, + ACTIONS(3984), 1, anon_sym_COMMA, - STATE(1802), 1, - aux_sym_function_static_declaration_repeat1, - STATE(1893), 1, - sym_text_interpolation, - ACTIONS(4014), 2, + ACTIONS(3982), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65584] = 7, + STATE(1893), 2, + sym_text_interpolation, + aux_sym_function_static_declaration_repeat1, + [66457] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - STATE(957), 1, - sym_compound_statement, + ACTIONS(2484), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2838), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3987), 1, + aux_sym_namespace_use_declaration_token2, STATE(1894), 1, sym_text_interpolation, - STATE(2423), 1, - sym__return_type, - [65606] = 7, + STATE(2281), 1, + sym_static_modifier, + [66479] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3358), 1, + ACTIONS(3343), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3360), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - STATE(1687), 1, + STATE(1724), 1, sym_declaration_list, STATE(1895), 1, sym_text_interpolation, - STATE(2311), 1, + STATE(2262), 1, sym_class_interface_clause, - [65628] = 7, + [66501] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1048), 1, - sym_compound_statement, + ACTIONS(3835), 1, + anon_sym_COMMA, + STATE(1817), 1, + aux_sym__const_declaration_repeat1, STATE(1896), 1, sym_text_interpolation, - STATE(2284), 1, - sym__return_type, - [65650] = 7, + ACTIONS(3989), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [66521] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_AMP, - ACTIONS(3256), 1, - anon_sym_LPAREN, - STATE(1897), 1, + ACTIONS(3993), 1, + anon_sym_COMMA, + ACTIONS(3991), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1897), 2, sym_text_interpolation, - STATE(1968), 1, - sym_formal_parameters, - STATE(2318), 1, - sym_reference_modifier, - [65672] = 7, + aux_sym_global_declaration_repeat1, + [66539] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(3996), 1, anon_sym_AMP, - ACTIONS(3256), 1, - anon_sym_LPAREN, + STATE(1834), 1, + aux_sym_intersection_type_repeat1, STATE(1898), 1, sym_text_interpolation, - STATE(2067), 1, - sym_formal_parameters, - STATE(2388), 1, - sym_reference_modifier, - [65694] = 7, + ACTIONS(3143), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [66559] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_AMP, - ACTIONS(3256), 1, - anon_sym_LPAREN, + ACTIONS(3339), 1, + anon_sym_LBRACE, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + STATE(939), 1, + sym_declaration_list, STATE(1899), 1, sym_text_interpolation, - STATE(2060), 1, - sym_formal_parameters, - STATE(2395), 1, - sym_reference_modifier, - [65716] = 7, + STATE(2223), 1, + sym_class_interface_clause, + [66581] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1711), 1, anon_sym_AMP, - ACTIONS(3256), 1, + ACTIONS(3243), 1, anon_sym_LPAREN, - STATE(1576), 1, + STATE(1628), 1, sym_formal_parameters, STATE(1900), 1, sym_text_interpolation, - STATE(2397), 1, + STATE(2304), 1, sym_reference_modifier, - [65738] = 6, + [66603] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3873), 1, - anon_sym_COMMA, - STATE(1789), 1, - aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3339), 1, + anon_sym_LBRACE, + ACTIONS(3343), 1, + aux_sym_class_interface_clause_token1, + STATE(937), 1, + sym_declaration_list, STATE(1901), 1, sym_text_interpolation, - ACTIONS(4016), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [65758] = 6, + STATE(2224), 1, + sym_class_interface_clause, + [66625] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3967), 1, - anon_sym_COMMA, - STATE(1802), 1, - aux_sym_function_static_declaration_repeat1, STATE(1902), 1, sym_text_interpolation, - ACTIONS(4018), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [65778] = 6, + ACTIONS(1674), 4, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [66641] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COMMA, - STATE(1801), 1, - aux_sym_global_declaration_repeat1, STATE(1903), 1, sym_text_interpolation, - ACTIONS(4020), 2, + ACTIONS(3860), 4, sym__automatic_semicolon, anon_sym_SEMI, - [65798] = 6, + anon_sym_LBRACE, + anon_sym_COLON, + [66657] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1470), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3873), 1, - anon_sym_COMMA, - STATE(1901), 1, - aux_sym_namespace_use_declaration_repeat1, STATE(1904), 1, sym_text_interpolation, - ACTIONS(4022), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [65818] = 5, + ACTIONS(1468), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [66674] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3999), 1, + sym_name, + ACTIONS(4001), 1, + anon_sym_LBRACE, STATE(1905), 1, sym_text_interpolation, - STATE(2594), 1, - sym_declare_directive, - ACTIONS(3854), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [65836] = 6, + STATE(2233), 1, + sym_namespace_use_group, + [66693] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3873), 1, - anon_sym_COMMA, - STATE(1789), 1, - aux_sym_namespace_use_declaration_repeat1, + ACTIONS(4003), 1, + anon_sym_LBRACE, + ACTIONS(4005), 1, + anon_sym_COLON, STATE(1906), 1, sym_text_interpolation, - ACTIONS(4022), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [65856] = 4, + STATE(2041), 1, + sym_switch_block, + [66712] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - STATE(1907), 1, - sym_text_interpolation, - ACTIONS(3908), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [65872] = 7, - ACTIONS(5), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(3955), 1, - aux_sym_string_token2, - ACTIONS(3957), 1, - sym_string_value, - ACTIONS(4024), 1, - anon_sym_SQUOTE, - STATE(1827), 1, - aux_sym_string_repeat1, - STATE(1908), 1, + ACTIONS(4007), 1, + anon_sym_COMMA, + ACTIONS(4010), 1, + anon_sym_RPAREN, + STATE(1907), 2, sym_text_interpolation, - [65894] = 7, + aux_sym_array_creation_expression_repeat1, + [66729] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3354), 1, - anon_sym_LBRACE, - ACTIONS(3358), 1, - aux_sym_class_interface_clause_token1, - STATE(941), 1, - sym_declaration_list, - STATE(1909), 1, + ACTIONS(4012), 1, + anon_sym_COMMA, + ACTIONS(4014), 1, + anon_sym_RBRACK, + STATE(1908), 1, sym_text_interpolation, - STATE(2342), 1, - sym_class_interface_clause, - [65916] = 5, + STATE(1913), 1, + aux_sym_array_creation_expression_repeat1, + [66748] = 6, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, + ACTIONS(4016), 1, + sym__new_line, + ACTIONS(4018), 1, + sym_heredoc_end, + STATE(1909), 1, + sym_text_interpolation, + STATE(2269), 1, + sym_heredoc_body, + [66767] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(4020), 1, + anon_sym_COMMA, + ACTIONS(4022), 1, + anon_sym_RPAREN, STATE(1910), 1, sym_text_interpolation, - ACTIONS(3831), 2, - sym_php_tag, - aux_sym_text_token1, - ACTIONS(3833), 2, - ts_builtin_sym_end, - aux_sym_text_token2, - [65934] = 6, + STATE(1931), 1, + aux_sym_formal_parameters_repeat1, + [66786] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2485), 1, - anon_sym_COLON, + ACTIONS(4024), 1, + anon_sym_COMMA, ACTIONS(4026), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, STATE(1911), 1, sym_text_interpolation, - STATE(2321), 1, - sym_parenthesized_expression, - [65953] = 5, + STATE(1941), 1, + aux_sym_array_creation_expression_repeat1, + [66805] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1393), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3999), 1, + sym_name, + ACTIONS(4001), 1, + anon_sym_LBRACE, STATE(1912), 1, sym_text_interpolation, - ACTIONS(1391), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65970] = 6, + STATE(2261), 1, + sym_namespace_use_group, + [66824] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(845), 1, + anon_sym_RBRACK, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - STATE(1699), 1, - sym_variable_name, + ACTIONS(4028), 1, + anon_sym_COMMA, STATE(1913), 1, sym_text_interpolation, - STATE(2183), 1, - sym_property_element, - [65989] = 6, + STATE(2108), 1, + aux_sym_array_creation_expression_repeat1, + [66843] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - STATE(1699), 1, - sym_variable_name, - STATE(1783), 1, - sym_property_element, + ACTIONS(4030), 1, + anon_sym_COMMA, + ACTIONS(4032), 1, + anon_sym_RBRACK, STATE(1914), 1, sym_text_interpolation, - [66008] = 6, + STATE(1947), 1, + aux_sym_attribute_group_repeat1, + [66862] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_RPAREN, - ACTIONS(4028), 1, - anon_sym_COMMA, + ACTIONS(4034), 1, + anon_sym_LBRACE, + ACTIONS(4036), 1, + anon_sym_COLON, + STATE(492), 1, + sym_switch_block, STATE(1915), 1, sym_text_interpolation, - STATE(2184), 1, - aux_sym_anonymous_function_use_clause_repeat1, - [66027] = 6, + [66881] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4030), 1, - anon_sym_COMMA, - ACTIONS(4032), 1, - anon_sym_RBRACK, + ACTIONS(4001), 1, + anon_sym_LBRACE, + ACTIONS(4038), 1, + sym_name, STATE(1916), 1, sym_text_interpolation, - STATE(1948), 1, - aux_sym_array_creation_expression_repeat1, - [66046] = 5, + STATE(2233), 1, + sym_namespace_use_group, + [66900] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1385), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4040), 1, + anon_sym_COMMA, + ACTIONS(4042), 1, + anon_sym_RPAREN, STATE(1917), 1, sym_text_interpolation, - ACTIONS(1383), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66063] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + STATE(1965), 1, + aux_sym_arguments_repeat1, + [66919] = 6, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(4034), 1, - sym__new_line, - ACTIONS(4036), 1, - sym_heredoc_end, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(1939), 1, + anon_sym_RPAREN, + ACTIONS(4044), 1, + anon_sym_COMMA, STATE(1918), 1, sym_text_interpolation, - STATE(2276), 1, - sym_heredoc_body, - [66082] = 5, + STATE(2152), 1, + aux_sym_unset_statement_repeat1, + [66938] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1353), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3953), 1, + anon_sym_EQ, STATE(1919), 1, sym_text_interpolation, - ACTIONS(1351), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66099] = 5, + ACTIONS(4046), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [66955] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(323), 1, - anon_sym_DOLLAR, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(4048), 1, + anon_sym_EQ_GT, STATE(1920), 1, sym_text_interpolation, - STATE(1758), 2, - sym_dynamic_variable_name, - sym_variable_name, - [66116] = 5, + STATE(2532), 1, + sym__return_type, + [66974] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4040), 1, - anon_sym_EQ, + ACTIONS(4050), 1, + anon_sym_COMMA, + ACTIONS(4052), 1, + anon_sym_RBRACK, STATE(1921), 1, sym_text_interpolation, - ACTIONS(4038), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [66133] = 5, + STATE(1944), 1, + aux_sym__array_destructing_repeat1, + [66993] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1249), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4054), 1, + anon_sym_COMMA, + ACTIONS(4056), 1, + anon_sym_RBRACK, STATE(1922), 1, sym_text_interpolation, - ACTIONS(1247), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66150] = 5, + STATE(1945), 1, + aux_sym_array_creation_expression_repeat1, + [67012] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1253), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4050), 1, + anon_sym_COMMA, + ACTIONS(4052), 1, + anon_sym_RBRACK, STATE(1923), 1, sym_text_interpolation, - ACTIONS(1251), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66167] = 5, + STATE(1946), 1, + aux_sym__array_destructing_repeat1, + [67031] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4044), 1, - anon_sym_EQ, + ACTIONS(1648), 1, + anon_sym_RPAREN, STATE(1924), 1, sym_text_interpolation, - ACTIONS(4042), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [66184] = 5, + STATE(2105), 1, + aux_sym__list_destructing_repeat1, + [67050] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4048), 1, - anon_sym_EQ, + ACTIONS(4060), 1, + anon_sym_LPAREN, STATE(1925), 1, sym_text_interpolation, - ACTIONS(4046), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [66201] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1225), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(4058), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [67067] = 5, + ACTIONS(5), 1, sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4064), 1, + sym_string_content, STATE(1926), 1, sym_text_interpolation, - ACTIONS(1223), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66218] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(4062), 2, + anon_sym_SQUOTE, + aux_sym_string_token2, + [67084] = 6, + ACTIONS(5), 1, sym_comment, - ACTIONS(4052), 1, - anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4016), 1, + sym__new_line, + ACTIONS(4066), 1, + sym_heredoc_end, STATE(1927), 1, sym_text_interpolation, - ACTIONS(4050), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [66235] = 5, + STATE(2294), 1, + sym_heredoc_body, + [67103] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1269), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(1690), 1, + anon_sym_DOLLAR, + STATE(1824), 1, + sym_variable_name, STATE(1928), 1, sym_text_interpolation, - ACTIONS(1267), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66252] = 6, + STATE(2049), 1, + sym_static_variable_declaration, + [67122] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(328), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4054), 1, - anon_sym_COMMA, - ACTIONS(4056), 1, - anon_sym_RPAREN, STATE(1929), 1, sym_text_interpolation, - STATE(1959), 1, - aux_sym_formal_parameters_repeat1, - [66271] = 6, + STATE(2059), 2, + sym_dynamic_variable_name, + sym_variable_name, + [67139] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4058), 1, - anon_sym_DQUOTE, - ACTIONS(4060), 1, - anon_sym_SQUOTE, - ACTIONS(4062), 1, - sym_heredoc_start, STATE(1930), 1, sym_text_interpolation, - [66290] = 5, + ACTIONS(4068), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [67154] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1305), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(1774), 1, + anon_sym_RPAREN, + ACTIONS(4070), 1, + anon_sym_COMMA, STATE(1931), 1, sym_text_interpolation, - ACTIONS(1303), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66307] = 5, + STATE(2125), 1, + aux_sym_formal_parameters_repeat1, + [67173] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1309), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3999), 1, + sym_name, + ACTIONS(4001), 1, + anon_sym_LBRACE, STATE(1932), 1, sym_text_interpolation, - ACTIONS(1307), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66324] = 6, + STATE(2307), 1, + sym_namespace_use_group, + [67192] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2529), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(4064), 1, - aux_sym_class_declaration_token1, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(4072), 1, + anon_sym_DOT_DOT_DOT, STATE(1933), 1, sym_text_interpolation, - STATE(2510), 1, - sym_readonly_modifier, - [66343] = 5, + STATE(2064), 1, + sym_variable_name, + [67211] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1225), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4074), 1, + anon_sym_COMMA, + ACTIONS(4076), 1, + anon_sym_RPAREN, STATE(1934), 1, sym_text_interpolation, - ACTIONS(1223), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66360] = 5, + STATE(2066), 1, + aux_sym_formal_parameters_repeat1, + [67230] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1317), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4080), 1, + anon_sym_EQ, STATE(1935), 1, sym_text_interpolation, - ACTIONS(1315), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66377] = 5, + ACTIONS(4078), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [67247] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4066), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_RPAREN, - STATE(1936), 2, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(3513), 1, + anon_sym_LBRACE, + STATE(1936), 1, sym_text_interpolation, - aux_sym_array_creation_expression_repeat1, - [66394] = 5, + STATE(2489), 1, + sym__return_type, + [67266] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1325), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3061), 1, + anon_sym_AMP, + ACTIONS(4082), 1, + anon_sym_RPAREN, + STATE(1450), 1, + aux_sym_intersection_type_repeat1, STATE(1937), 1, sym_text_interpolation, - ACTIONS(1323), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66411] = 5, + [67285] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1325), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(4084), 1, + anon_sym_EQ_GT, STATE(1938), 1, sym_text_interpolation, - ACTIONS(1323), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66428] = 5, + STATE(2483), 1, + sym__return_type, + [67304] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1345), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4086), 1, + anon_sym_COMMA, + ACTIONS(4088), 1, + anon_sym_RPAREN, STATE(1939), 1, sym_text_interpolation, - ACTIONS(1343), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66445] = 6, + STATE(2092), 1, + aux_sym_array_creation_expression_repeat1, + [67323] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4071), 1, - anon_sym_COMMA, - ACTIONS(4073), 1, - anon_sym_RPAREN, STATE(1940), 1, sym_text_interpolation, - STATE(1966), 1, - aux_sym_array_creation_expression_repeat1, - [66464] = 5, + ACTIONS(4090), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [67338] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1349), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(843), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4092), 1, + anon_sym_COMMA, + STATE(1907), 1, + aux_sym_array_creation_expression_repeat1, STATE(1941), 1, sym_text_interpolation, - ACTIONS(1347), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66481] = 5, + [67357] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1361), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(1540), 1, sym_comment, + ACTIONS(1648), 1, + anon_sym_RPAREN, STATE(1942), 1, sym_text_interpolation, - ACTIONS(1359), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66498] = 5, + STATE(2101), 1, + aux_sym__list_destructing_repeat1, + [67376] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1361), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(2456), 1, + anon_sym_COLON, + ACTIONS(4094), 1, + anon_sym_LPAREN, STATE(1943), 1, sym_text_interpolation, - ACTIONS(1359), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66515] = 5, + STATE(2297), 1, + sym_parenthesized_expression, + [67395] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1205), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4050), 1, + anon_sym_COMMA, + ACTIONS(4096), 1, + anon_sym_RBRACK, STATE(1944), 1, sym_text_interpolation, - ACTIONS(1203), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66532] = 5, + STATE(1946), 1, + aux_sym__array_destructing_repeat1, + [67414] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1381), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(829), 1, + anon_sym_RBRACK, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4098), 1, + anon_sym_COMMA, STATE(1945), 1, sym_text_interpolation, - ACTIONS(1379), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66549] = 5, + STATE(2108), 1, + aux_sym_array_creation_expression_repeat1, + [67433] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4077), 1, - anon_sym_EQ, - STATE(1946), 1, - sym_text_interpolation, - ACTIONS(4075), 2, + ACTIONS(4100), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [66566] = 6, + ACTIONS(4103), 1, + anon_sym_RBRACK, + STATE(1946), 2, + sym_text_interpolation, + aux_sym__array_destructing_repeat1, + [67450] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4079), 1, + ACTIONS(3080), 1, + anon_sym_RBRACK, + ACTIONS(4105), 1, anon_sym_COMMA, - ACTIONS(4081), 1, - anon_sym_RBRACE, STATE(1947), 1, sym_text_interpolation, - STATE(2045), 1, - aux_sym_namespace_use_group_repeat1, - [66585] = 6, + STATE(2080), 1, + aux_sym_attribute_group_repeat1, + [67469] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(828), 1, - anon_sym_RBRACK, - ACTIONS(1587), 1, + ACTIONS(1282), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4083), 1, - anon_sym_COMMA, STATE(1948), 1, sym_text_interpolation, - STATE(2167), 1, - aux_sym_array_creation_expression_repeat1, - [66604] = 6, + ACTIONS(1280), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67486] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1278), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2529), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(4085), 1, - aux_sym_class_declaration_token1, STATE(1949), 1, sym_text_interpolation, - STATE(2598), 1, - sym_readonly_modifier, - [66623] = 5, + ACTIONS(1276), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67503] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1409), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4107), 1, + anon_sym_COMMA, + ACTIONS(4109), 1, + anon_sym_RBRACE, STATE(1950), 1, sym_text_interpolation, - ACTIONS(1407), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66640] = 6, + STATE(1995), 1, + aux_sym_match_block_repeat1, + [67522] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1258), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3534), 1, - anon_sym_BSLASH, - ACTIONS(3932), 1, - sym_name, STATE(1951), 1, sym_text_interpolation, - STATE(2563), 1, - sym_namespace_name, - [66659] = 5, + ACTIONS(1256), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67539] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1545), 1, + ACTIONS(1190), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1952), 1, sym_text_interpolation, - ACTIONS(1543), 2, + ACTIONS(1188), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66676] = 6, + [67556] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1158), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4087), 1, - anon_sym_COMMA, - ACTIONS(4089), 1, - anon_sym_RPAREN, STATE(1953), 1, sym_text_interpolation, - STATE(1990), 1, - aux_sym_arguments_repeat1, - [66695] = 6, + ACTIONS(1156), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67573] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1158), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2529), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(4091), 1, - aux_sym_class_declaration_token1, STATE(1954), 1, sym_text_interpolation, - STATE(2586), 1, - sym_readonly_modifier, - [66714] = 5, + ACTIONS(1156), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67590] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1221), 1, + ACTIONS(1346), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1955), 1, sym_text_interpolation, - ACTIONS(1219), 2, + ACTIONS(1344), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66731] = 5, + [67607] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1413), 1, + ACTIONS(1298), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1956), 1, sym_text_interpolation, - ACTIONS(1411), 2, + ACTIONS(1296), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66748] = 5, + [67624] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1449), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4111), 1, + anon_sym_DQUOTE, + ACTIONS(4113), 1, + anon_sym_SQUOTE, + ACTIONS(4115), 1, + sym_heredoc_start, STATE(1957), 1, sym_text_interpolation, - ACTIONS(1447), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66765] = 6, + [67643] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1298), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(4093), 1, - anon_sym_EQ_GT, STATE(1958), 1, sym_text_interpolation, - STATE(2629), 1, - sym__return_type, - [66784] = 6, + ACTIONS(1296), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67660] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1242), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1808), 1, - anon_sym_RPAREN, - ACTIONS(4095), 1, - anon_sym_COMMA, STATE(1959), 1, sym_text_interpolation, - STATE(2155), 1, - aux_sym_formal_parameters_repeat1, - [66803] = 5, + ACTIONS(1240), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67677] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1425), 1, + ACTIONS(1366), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1960), 1, sym_text_interpolation, - ACTIONS(1423), 2, + ACTIONS(1364), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66820] = 5, + [67694] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1477), 1, + ACTIONS(1178), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1961), 1, sym_text_interpolation, - ACTIONS(1475), 2, + ACTIONS(1176), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66837] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1109), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + [67711] = 6, + ACTIONS(5), 1, sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4016), 1, + sym__new_line, + ACTIONS(4117), 1, + sym_heredoc_end, STATE(1962), 1, sym_text_interpolation, - ACTIONS(1107), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66854] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1155), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + STATE(2221), 1, + sym_heredoc_body, + [67730] = 6, + ACTIONS(5), 1, sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4119), 1, + sym__new_line, + ACTIONS(4121), 1, + sym_heredoc_end, STATE(1963), 1, sym_text_interpolation, - ACTIONS(1153), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66871] = 5, + STATE(2220), 1, + sym_nowdoc_body, + [67749] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1175), 1, + ACTIONS(1182), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1964), 1, sym_text_interpolation, - ACTIONS(1173), 2, + ACTIONS(1180), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66888] = 5, + [67766] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1521), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(813), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4123), 1, + anon_sym_COMMA, STATE(1965), 1, sym_text_interpolation, - ACTIONS(1519), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66905] = 6, + STATE(2165), 1, + aux_sym_arguments_repeat1, + [67785] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(832), 1, - anon_sym_RPAREN, - ACTIONS(1587), 1, + ACTIONS(1186), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4097), 1, - anon_sym_COMMA, - STATE(1936), 1, - aux_sym_array_creation_expression_repeat1, STATE(1966), 1, sym_text_interpolation, - [66924] = 5, + ACTIONS(1184), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67802] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1201), 1, + ACTIONS(1198), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1967), 1, sym_text_interpolation, - ACTIONS(1199), 2, + ACTIONS(1196), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66941] = 6, + [67819] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1198), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(4099), 1, - anon_sym_EQ_GT, STATE(1968), 1, sym_text_interpolation, - STATE(2464), 1, - sym__return_type, - [66960] = 5, + ACTIONS(1196), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67836] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1505), 1, + ACTIONS(1214), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1969), 1, sym_text_interpolation, - ACTIONS(1503), 2, + ACTIONS(1212), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66977] = 5, + [67853] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1509), 1, + ACTIONS(1222), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1970), 1, sym_text_interpolation, - ACTIONS(1507), 2, + ACTIONS(1220), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66994] = 5, + [67870] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1517), 1, + ACTIONS(1222), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1971), 1, sym_text_interpolation, - ACTIONS(1515), 2, + ACTIONS(1220), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67011] = 5, + [67887] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1151), 1, + ACTIONS(1230), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1972), 1, sym_text_interpolation, - ACTIONS(1149), 2, + ACTIONS(1228), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67028] = 5, + [67904] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1525), 1, + ACTIONS(1230), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1973), 1, sym_text_interpolation, - ACTIONS(1523), 2, + ACTIONS(1228), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67045] = 5, + [67921] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1213), 1, + ACTIONS(1294), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1974), 1, sym_text_interpolation, - ACTIONS(1211), 2, + ACTIONS(1292), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67062] = 6, + [67938] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(328), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4101), 1, - anon_sym_COMMA, - ACTIONS(4103), 1, - anon_sym_RBRACE, STATE(1975), 1, sym_text_interpolation, - STATE(2021), 1, - aux_sym_match_block_repeat1, - [67081] = 4, + STATE(1830), 2, + sym_dynamic_variable_name, + sym_variable_name, + [67955] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1330), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, STATE(1976), 1, sym_text_interpolation, - ACTIONS(4105), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [67096] = 5, + ACTIONS(1328), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [67972] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1229), 1, + ACTIONS(1402), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1977), 1, sym_text_interpolation, - ACTIONS(1227), 2, + ACTIONS(1400), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67113] = 5, + [67989] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1229), 1, + ACTIONS(1410), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1978), 1, sym_text_interpolation, - ACTIONS(1227), 2, + ACTIONS(1408), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67130] = 6, + [68006] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1414), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4107), 1, - anon_sym_LBRACE, - ACTIONS(4109), 1, - anon_sym_COLON, - STATE(564), 1, - sym_switch_block, STATE(1979), 1, sym_text_interpolation, - [67149] = 4, + ACTIONS(1412), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68023] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1418), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, STATE(1980), 1, sym_text_interpolation, - ACTIONS(3452), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [67164] = 5, + ACTIONS(1416), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68040] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1245), 1, + ACTIONS(1442), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1981), 1, sym_text_interpolation, - ACTIONS(1243), 2, + ACTIONS(1440), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67181] = 5, + [68057] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1446), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3944), 1, - anon_sym_EQ, STATE(1982), 1, sym_text_interpolation, - ACTIONS(4111), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [67198] = 6, + ACTIONS(1444), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68074] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1490), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4113), 1, - anon_sym_COMMA, - ACTIONS(4115), 1, - anon_sym_RBRACK, STATE(1983), 1, sym_text_interpolation, - STATE(2043), 1, - aux_sym__array_destructing_repeat1, - [67217] = 5, + ACTIONS(1488), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68091] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1518), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4119), 1, - anon_sym_EQ, STATE(1984), 1, sym_text_interpolation, - ACTIONS(4117), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [67234] = 6, + ACTIONS(1516), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68108] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1518), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4121), 1, - anon_sym_COMMA, - ACTIONS(4123), 1, - anon_sym_RBRACK, STATE(1985), 1, sym_text_interpolation, - STATE(2046), 1, - aux_sym_array_creation_expression_repeat1, - [67253] = 6, + ACTIONS(1516), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68125] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1430), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4113), 1, - anon_sym_COMMA, - ACTIONS(4115), 1, - anon_sym_RBRACK, STATE(1986), 1, sym_text_interpolation, - STATE(2047), 1, - aux_sym__array_destructing_repeat1, - [67272] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + ACTIONS(1428), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68142] = 5, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(4034), 1, - sym__new_line, - ACTIONS(4125), 1, - sym_heredoc_end, + ACTIONS(1274), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, + sym_comment, STATE(1987), 1, sym_text_interpolation, - STATE(2451), 1, - sym_heredoc_body, - [67291] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + ACTIONS(1272), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68159] = 5, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(4127), 1, - sym__new_line, - ACTIONS(4129), 1, - sym_heredoc_end, + ACTIONS(1166), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, + sym_comment, STATE(1988), 1, sym_text_interpolation, - STATE(2449), 1, - sym_nowdoc_body, - [67310] = 5, + ACTIONS(1164), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68176] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1245), 1, + ACTIONS(1166), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1989), 1, sym_text_interpolation, - ACTIONS(1243), 2, + ACTIONS(1164), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67327] = 6, + [68193] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(784), 1, - anon_sym_RPAREN, - ACTIONS(1587), 1, + ACTIONS(1438), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4131), 1, - anon_sym_COMMA, STATE(1990), 1, sym_text_interpolation, - STATE(2075), 1, - aux_sym_arguments_repeat1, - [67346] = 5, + ACTIONS(1436), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68210] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1265), 1, + ACTIONS(1474), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1991), 1, sym_text_interpolation, - ACTIONS(1263), 2, + ACTIONS(1472), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67363] = 6, + [68227] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1350), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COMMA, - ACTIONS(4135), 1, - anon_sym_RBRACK, STATE(1992), 1, sym_text_interpolation, - STATE(2048), 1, - aux_sym_attribute_group_repeat1, - [67382] = 5, + ACTIONS(1348), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68244] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1297), 1, + ACTIONS(1422), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1993), 1, sym_text_interpolation, - ACTIONS(1295), 2, + ACTIONS(1420), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67399] = 5, + [68261] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1297), 1, + ACTIONS(1342), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1994), 1, sym_text_interpolation, - ACTIONS(1295), 2, + ACTIONS(1340), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67416] = 4, + [68278] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(875), 1, + anon_sym_RBRACE, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4125), 1, + anon_sym_COMMA, STATE(1995), 1, sym_text_interpolation, - ACTIONS(4137), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [67431] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + STATE(2138), 1, + aux_sym_match_block_repeat1, + [68297] = 5, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(4141), 1, - sym_string_value, + ACTIONS(1286), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, + sym_comment, STATE(1996), 1, sym_text_interpolation, - ACTIONS(4139), 2, - anon_sym_SQUOTE, - aux_sym_string_token2, - [67448] = 5, + ACTIONS(1284), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68314] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1233), 1, + ACTIONS(1262), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1997), 1, sym_text_interpolation, - ACTIONS(1231), 2, + ACTIONS(1260), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67465] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + [68331] = 5, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(4034), 1, - sym__new_line, - ACTIONS(4143), 1, - sym_heredoc_end, + ACTIONS(1194), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, + sym_comment, STATE(1998), 1, sym_text_interpolation, - STATE(2413), 1, - sym_heredoc_body, - [67484] = 5, + ACTIONS(1192), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68348] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1337), 1, + ACTIONS(1334), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(1999), 1, sym_text_interpolation, - ACTIONS(1335), 2, + ACTIONS(1332), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67501] = 5, + [68365] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1341), 1, + ACTIONS(1374), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2000), 1, sym_text_interpolation, - ACTIONS(1339), 2, + ACTIONS(1372), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67518] = 5, + [68382] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1261), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4127), 1, + anon_sym_COMMA, + ACTIONS(4129), 1, + anon_sym_RPAREN, STATE(2001), 1, sym_text_interpolation, - ACTIONS(1259), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67535] = 5, + STATE(2115), 1, + aux_sym_arguments_repeat1, + [68401] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1365), 1, + ACTIONS(1226), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2002), 1, sym_text_interpolation, - ACTIONS(1363), 2, + ACTIONS(1224), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67552] = 6, + [68418] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1478), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2529), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(4145), 1, - aux_sym_class_declaration_token1, STATE(2003), 1, sym_text_interpolation, - STATE(2508), 1, - sym_readonly_modifier, - [67571] = 6, + ACTIONS(1476), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68435] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1510), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - STATE(1847), 1, - sym_variable_name, STATE(2004), 1, sym_text_interpolation, - STATE(2070), 1, - sym_static_variable_declaration, - [67590] = 5, + ACTIONS(1508), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68452] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1369), 1, + ACTIONS(1358), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2005), 1, sym_text_interpolation, - ACTIONS(1367), 2, + ACTIONS(1356), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67607] = 5, + [68469] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(323), 1, - anon_sym_DOLLAR, - ACTIONS(1587), 1, + ACTIONS(1482), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, STATE(2006), 1, sym_text_interpolation, - STATE(2072), 2, - sym_dynamic_variable_name, - sym_variable_name, - [67624] = 5, + ACTIONS(1480), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68486] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1373), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(799), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4131), 1, + anon_sym_COMMA, STATE(2007), 1, sym_text_interpolation, - ACTIONS(1371), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67641] = 5, + STATE(2165), 1, + aux_sym_arguments_repeat1, + [68505] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4149), 1, + ACTIONS(1146), 1, aux_sym_else_clause_token1, + ACTIONS(1540), 1, + sym_comment, STATE(2008), 1, sym_text_interpolation, - ACTIONS(4147), 2, - aux_sym_if_statement_token2, + ACTIONS(1144), 2, + aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67658] = 5, + [68522] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1489), 1, + ACTIONS(1146), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2009), 1, sym_text_interpolation, - ACTIONS(1487), 2, + ACTIONS(1144), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67675] = 4, + [68539] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1270), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, STATE(2010), 1, sym_text_interpolation, - ACTIONS(4151), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [67690] = 6, + ACTIONS(1268), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68556] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4153), 1, - anon_sym_LBRACE, - ACTIONS(4155), 1, - anon_sym_COLON, + ACTIONS(4133), 1, + anon_sym_COMMA, + ACTIONS(4135), 1, + anon_sym_RPAREN, + STATE(2007), 1, + aux_sym_arguments_repeat1, STATE(2011), 1, sym_text_interpolation, - STATE(2068), 1, - sym_switch_block, - [67709] = 6, + [68575] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1174), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4157), 1, - sym_name, - ACTIONS(4159), 1, - anon_sym_LBRACE, STATE(2012), 1, sym_text_interpolation, - STATE(2367), 1, - sym_namespace_use_group, - [67728] = 5, + ACTIONS(1172), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68592] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1529), 1, + ACTIONS(1170), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2013), 1, sym_text_interpolation, - ACTIONS(1527), 2, + ACTIONS(1168), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67745] = 6, + [68609] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1202), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(4161), 1, - anon_sym_DOT_DOT_DOT, STATE(2014), 1, sym_text_interpolation, - STATE(2085), 1, - sym_variable_name, - [67764] = 6, + ACTIONS(1200), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68626] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1206), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4163), 1, - anon_sym_COMMA, - ACTIONS(4165), 1, - anon_sym_RPAREN, STATE(2015), 1, sym_text_interpolation, - STATE(2087), 1, - aux_sym_formal_parameters_repeat1, - [67783] = 5, + ACTIONS(1204), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68643] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1557), 1, + ACTIONS(1434), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2016), 1, sym_text_interpolation, - ACTIONS(1555), 2, + ACTIONS(1432), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67800] = 5, + [68660] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4169), 1, - anon_sym_EQ, STATE(2017), 1, sym_text_interpolation, - ACTIONS(4167), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67817] = 6, + ACTIONS(4137), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [68675] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1458), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(3732), 1, - anon_sym_LBRACE, STATE(2018), 1, sym_text_interpolation, - STATE(2542), 1, - sym__return_type, - [67836] = 5, + ACTIONS(1456), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68692] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1197), 1, + ACTIONS(1426), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2019), 1, sym_text_interpolation, - ACTIONS(1195), 2, + ACTIONS(1424), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67853] = 5, + [68709] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1197), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(4139), 1, + anon_sym_EQ_GT, STATE(2020), 1, sym_text_interpolation, - ACTIONS(1195), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67870] = 6, + STATE(2453), 1, + sym__return_type, + [68728] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(870), 1, - anon_sym_RBRACE, - ACTIONS(1587), 1, + ACTIONS(1162), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4171), 1, - anon_sym_COMMA, STATE(2021), 1, sym_text_interpolation, - STATE(2033), 1, - aux_sym_match_block_repeat1, - [67889] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3090), 1, - anon_sym_AMP, - ACTIONS(4173), 1, - anon_sym_RPAREN, - STATE(1441), 1, - aux_sym_intersection_type_repeat1, + ACTIONS(1160), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68745] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1210), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, + sym_comment, STATE(2022), 1, sym_text_interpolation, - [67908] = 5, + ACTIONS(1208), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68762] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1541), 1, + ACTIONS(1218), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2023), 1, sym_text_interpolation, - ACTIONS(1539), 2, + ACTIONS(1216), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67925] = 5, + [68779] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1537), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3731), 1, + anon_sym_BSLASH, + ACTIONS(3851), 1, + sym_name, STATE(2024), 1, sym_text_interpolation, - ACTIONS(1535), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67942] = 5, + STATE(2589), 1, + sym_namespace_name, + [68798] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1533), 1, + ACTIONS(1322), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2025), 1, sym_text_interpolation, - ACTIONS(1531), 2, + ACTIONS(1320), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67959] = 5, + [68815] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1481), 1, + ACTIONS(1370), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2026), 1, sym_text_interpolation, - ACTIONS(1479), 2, + ACTIONS(1368), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67976] = 6, + [68832] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1154), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(4175), 1, - anon_sym_EQ_GT, STATE(2027), 1, sym_text_interpolation, - STATE(2574), 1, - sym__return_type, - [67995] = 5, + ACTIONS(1152), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68849] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1481), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(797), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4141), 1, + anon_sym_COMMA, STATE(2028), 1, sym_text_interpolation, - ACTIONS(1479), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68012] = 5, + STATE(2165), 1, + aux_sym_arguments_repeat1, + [68868] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1469), 1, + ACTIONS(1362), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2029), 1, sym_text_interpolation, - ACTIONS(1467), 2, + ACTIONS(1360), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68029] = 6, + [68885] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4177), 1, + ACTIONS(4143), 1, anon_sym_COMMA, - ACTIONS(4179), 1, + ACTIONS(4145), 1, anon_sym_RPAREN, + STATE(2028), 1, + aux_sym_arguments_repeat1, STATE(2030), 1, sym_text_interpolation, - STATE(2133), 1, - aux_sym_array_creation_expression_repeat1, - [68048] = 5, + [68904] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1465), 1, + ACTIONS(1398), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2031), 1, sym_text_interpolation, - ACTIONS(1463), 2, + ACTIONS(1396), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68065] = 5, + [68921] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1453), 1, + ACTIONS(1494), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2032), 1, sym_text_interpolation, - ACTIONS(1451), 2, + ACTIONS(1492), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68082] = 5, + [68938] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1486), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4181), 1, - anon_sym_COMMA, - ACTIONS(4184), 1, - anon_sym_RBRACE, - STATE(2033), 2, + STATE(2033), 1, sym_text_interpolation, - aux_sym_match_block_repeat1, - [68099] = 5, + ACTIONS(1484), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [68955] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1441), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2034), 1, sym_text_interpolation, - ACTIONS(1439), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68116] = 5, + ACTIONS(4147), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [68970] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2589), 1, - anon_sym_EQ_GT, - ACTIONS(4186), 1, - anon_sym_COMMA, - STATE(2035), 2, + STATE(2035), 1, sym_text_interpolation, - aux_sym_match_condition_list_repeat1, - [68133] = 5, + ACTIONS(4149), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [68985] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1433), 1, + ACTIONS(1406), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2036), 1, sym_text_interpolation, - ACTIONS(1431), 2, + ACTIONS(1404), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68150] = 5, + [69002] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1417), 1, + ACTIONS(1394), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2037), 1, sym_text_interpolation, - ACTIONS(1415), 2, + ACTIONS(1392), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68167] = 4, + [69019] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1386), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, STATE(2038), 1, sym_text_interpolation, - ACTIONS(4189), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [68182] = 5, + ACTIONS(1384), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69036] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1561), 1, + ACTIONS(1306), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2039), 1, sym_text_interpolation, - ACTIONS(1559), 2, + ACTIONS(1304), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68199] = 6, + [69053] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(852), 1, - anon_sym_COMMA, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1703), 1, - anon_sym_RPAREN, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(4151), 1, + anon_sym_EQ_GT, STATE(2040), 1, sym_text_interpolation, - STATE(2154), 1, - aux_sym__list_destructing_repeat1, - [68218] = 6, + STATE(2448), 1, + sym__return_type, + [69072] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(852), 1, - anon_sym_COMMA, - ACTIONS(1587), 1, + ACTIONS(1266), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1703), 1, - anon_sym_RPAREN, STATE(2041), 1, sym_text_interpolation, - STATE(2161), 1, - aux_sym__list_destructing_repeat1, - [68237] = 5, + ACTIONS(1264), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69089] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1301), 1, + ACTIONS(1302), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2042), 1, sym_text_interpolation, - ACTIONS(1299), 2, + ACTIONS(1300), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68254] = 6, + [69106] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1310), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4113), 1, - anon_sym_COMMA, - ACTIONS(4191), 1, - anon_sym_RBRACK, STATE(2043), 1, sym_text_interpolation, - STATE(2047), 1, - aux_sym__array_destructing_repeat1, - [68273] = 4, + ACTIONS(1308), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69123] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(819), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4153), 1, + anon_sym_COMMA, STATE(2044), 1, sym_text_interpolation, - ACTIONS(4193), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [68288] = 5, + STATE(2165), 1, + aux_sym_arguments_repeat1, + [69142] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1314), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4195), 1, - anon_sym_COMMA, - ACTIONS(4198), 1, - anon_sym_RBRACE, - STATE(2045), 2, + STATE(2045), 1, sym_text_interpolation, - aux_sym_namespace_use_group_repeat1, - [68305] = 6, + ACTIONS(1312), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69159] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(830), 1, - anon_sym_RBRACK, - ACTIONS(1587), 1, + ACTIONS(1318), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4200), 1, - anon_sym_COMMA, STATE(2046), 1, sym_text_interpolation, - STATE(2167), 1, - aux_sym_array_creation_expression_repeat1, - [68324] = 5, + ACTIONS(1316), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69176] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1326), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4202), 1, - anon_sym_COMMA, - ACTIONS(4205), 1, - anon_sym_RBRACK, - STATE(2047), 2, + STATE(2047), 1, sym_text_interpolation, - aux_sym__array_destructing_repeat1, - [68341] = 6, + ACTIONS(1324), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69193] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1338), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3101), 1, - anon_sym_RBRACK, - ACTIONS(4207), 1, - anon_sym_COMMA, STATE(2048), 1, sym_text_interpolation, - STATE(2170), 1, - aux_sym_attribute_group_repeat1, - [68360] = 5, + ACTIONS(1336), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69210] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1549), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2049), 1, sym_text_interpolation, - ACTIONS(1547), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68377] = 5, + ACTIONS(3982), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [69225] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1209), 1, + ACTIONS(1354), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2050), 1, sym_text_interpolation, - ACTIONS(1207), 2, + ACTIONS(1352), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68394] = 5, + [69242] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1237), 1, + ACTIONS(1378), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2051), 1, sym_text_interpolation, - ACTIONS(1235), 2, + ACTIONS(1376), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68411] = 6, + [69259] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(852), 1, - anon_sym_COMMA, - ACTIONS(1587), 1, + ACTIONS(1382), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4209), 1, - anon_sym_RPAREN, STATE(2052), 1, sym_text_interpolation, - STATE(2161), 1, - aux_sym__list_destructing_repeat1, - [68430] = 5, + ACTIONS(1380), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69276] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1241), 1, + ACTIONS(1390), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2053), 1, sym_text_interpolation, - ACTIONS(1239), 2, + ACTIONS(1388), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68447] = 5, + [69293] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1171), 1, + ACTIONS(1142), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2054), 1, sym_text_interpolation, - ACTIONS(1169), 2, + ACTIONS(1140), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68464] = 5, + [69310] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1131), 1, + ACTIONS(1450), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2055), 1, sym_text_interpolation, - ACTIONS(1129), 2, + ACTIONS(1448), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68481] = 5, + [69327] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1437), 1, + ACTIONS(1454), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2056), 1, sym_text_interpolation, - ACTIONS(1435), 2, + ACTIONS(1452), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68498] = 6, + [69344] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1462), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4211), 1, - anon_sym_COMMA, - ACTIONS(4213), 1, - anon_sym_RPAREN, STATE(2057), 1, sym_text_interpolation, - STATE(2178), 1, - aux_sym_arguments_repeat1, - [68517] = 4, + ACTIONS(1460), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69361] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1466), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, STATE(2058), 1, sym_text_interpolation, - ACTIONS(4215), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [68532] = 4, + ACTIONS(1464), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69378] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2059), 1, sym_text_interpolation, - ACTIONS(4217), 3, + ACTIONS(3991), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [68547] = 6, + anon_sym_COMMA, + [69393] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(4219), 1, - anon_sym_EQ_GT, + ACTIONS(3999), 1, + sym_name, + ACTIONS(4001), 1, + anon_sym_LBRACE, STATE(2060), 1, sym_text_interpolation, - STATE(2558), 1, - sym__return_type, - [68566] = 5, + STATE(2401), 1, + sym_namespace_use_group, + [69412] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1461), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4001), 1, + anon_sym_LBRACE, + ACTIONS(4038), 1, + sym_name, STATE(2061), 1, sym_text_interpolation, - ACTIONS(1459), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68583] = 5, + STATE(2401), 1, + sym_namespace_use_group, + [69431] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1445), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2062), 1, sym_text_interpolation, - ACTIONS(1443), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68600] = 4, + ACTIONS(4155), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [69446] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2063), 1, sym_text_interpolation, - ACTIONS(4221), 3, + ACTIONS(3965), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [68615] = 5, + [69461] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1333), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4159), 1, + anon_sym_EQ, STATE(2064), 1, sym_text_interpolation, - ACTIONS(1331), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68632] = 5, + ACTIONS(4157), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [69478] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1421), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4163), 1, + anon_sym_EQ, STATE(2065), 1, sym_text_interpolation, - ACTIONS(1419), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68649] = 6, + ACTIONS(4161), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [69495] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(852), 1, - anon_sym_COMMA, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4223), 1, + ACTIONS(1817), 1, anon_sym_RPAREN, + ACTIONS(4165), 1, + anon_sym_COMMA, STATE(2066), 1, sym_text_interpolation, - STATE(2161), 1, - aux_sym__list_destructing_repeat1, - [68668] = 6, + STATE(2125), 1, + aux_sym_formal_parameters_repeat1, + [69514] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1498), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(4225), 1, - anon_sym_EQ_GT, STATE(2067), 1, sym_text_interpolation, - STATE(2669), 1, - sym__return_type, - [68687] = 5, + ACTIONS(1496), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69531] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1553), 1, + ACTIONS(1502), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2068), 1, sym_text_interpolation, - ACTIONS(1551), 2, + ACTIONS(1500), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68704] = 5, + [69548] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1389), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(4167), 1, + anon_sym_DOT_DOT_DOT, STATE(2069), 1, sym_text_interpolation, - ACTIONS(1387), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68721] = 4, + STATE(2127), 1, + sym_variable_name, + [69567] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4171), 1, + anon_sym_EQ, STATE(2070), 1, sym_text_interpolation, - ACTIONS(3897), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4169), 2, anon_sym_COMMA, - [68736] = 5, + anon_sym_RPAREN, + [69584] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1473), 1, + ACTIONS(1506), 1, aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2071), 1, sym_text_interpolation, - ACTIONS(1471), 2, + ACTIONS(1504), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68753] = 4, + [69601] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(4173), 1, + anon_sym_DOT_DOT_DOT, STATE(2072), 1, sym_text_interpolation, - ACTIONS(3892), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [68768] = 5, + STATE(2128), 1, + sym_variable_name, + [69620] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1397), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4175), 1, + anon_sym_COMMA, + ACTIONS(4177), 1, + anon_sym_RPAREN, + STATE(2044), 1, + aux_sym_arguments_repeat1, STATE(2073), 1, sym_text_interpolation, - ACTIONS(1395), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68785] = 5, + [69639] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1401), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4181), 1, + anon_sym_EQ, STATE(2074), 1, sym_text_interpolation, - ACTIONS(1399), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68802] = 5, + ACTIONS(4179), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [69656] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4227), 1, - anon_sym_COMMA, - ACTIONS(4230), 1, - anon_sym_RPAREN, - STATE(2075), 2, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(3684), 1, + anon_sym_LBRACE, + STATE(2075), 1, sym_text_interpolation, - aux_sym_arguments_repeat1, - [68819] = 6, + STATE(2446), 1, + sym__return_type, + [69675] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1246), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4157), 1, - sym_name, - ACTIONS(4159), 1, - anon_sym_LBRACE, STATE(2076), 1, sym_text_interpolation, - STATE(2351), 1, - sym_namespace_use_group, - [68838] = 6, + ACTIONS(1244), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69692] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4159), 1, - anon_sym_LBRACE, - ACTIONS(4232), 1, - sym_name, + ACTIONS(4183), 1, + anon_sym_DQUOTE, + ACTIONS(4185), 1, + anon_sym_SQUOTE, + ACTIONS(4187), 1, + sym_heredoc_start, STATE(2077), 1, sym_text_interpolation, - STATE(2351), 1, - sym_namespace_use_group, - [68857] = 4, + [69711] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1250), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, STATE(2078), 1, sym_text_interpolation, - ACTIONS(4234), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [68872] = 4, + ACTIONS(1248), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69728] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1254), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, STATE(2079), 1, sym_text_interpolation, - ACTIONS(3861), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [68887] = 5, + ACTIONS(1252), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69745] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1405), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(2080), 1, + ACTIONS(4189), 1, + anon_sym_COMMA, + ACTIONS(4192), 1, + anon_sym_RBRACK, + STATE(2080), 2, sym_text_interpolation, - ACTIONS(1403), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68904] = 5, + aux_sym_attribute_group_repeat1, + [69762] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1457), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2081), 1, sym_text_interpolation, - ACTIONS(1455), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68921] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + ACTIONS(3235), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [69777] = 5, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(3930), 1, - sym_nowdoc_string, - ACTIONS(4236), 1, - anon_sym_, - STATE(1823), 1, - aux_sym_nowdoc_body_repeat1, + ACTIONS(1150), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, + sym_comment, STATE(2082), 1, sym_text_interpolation, - [68940] = 5, + ACTIONS(1148), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69794] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1485), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4001), 1, + anon_sym_LBRACE, + ACTIONS(4038), 1, + sym_name, STATE(2083), 1, sym_text_interpolation, - ACTIONS(1483), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68957] = 5, + STATE(2210), 1, + sym_namespace_use_group, + [69813] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4240), 1, - anon_sym_LPAREN, STATE(2084), 1, sym_text_interpolation, - ACTIONS(4238), 2, + ACTIONS(3924), 3, sym__automatic_semicolon, anon_sym_SEMI, - [68974] = 5, + anon_sym_COMMA, + [69828] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1290), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4244), 1, - anon_sym_EQ, STATE(2085), 1, sym_text_interpolation, - ACTIONS(4242), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [68991] = 5, + ACTIONS(1288), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69845] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1238), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4248), 1, - anon_sym_EQ, STATE(2086), 1, sym_text_interpolation, - ACTIONS(4246), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [69008] = 6, + ACTIONS(1236), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69862] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1804), 1, - anon_sym_RPAREN, - ACTIONS(4250), 1, - anon_sym_COMMA, STATE(2087), 1, sym_text_interpolation, - STATE(2155), 1, - aux_sym_formal_parameters_repeat1, - [69027] = 4, + ACTIONS(2818), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + sym_name, + [69877] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1514), 1, + aux_sym_else_clause_token1, + ACTIONS(1540), 1, sym_comment, STATE(2088), 1, sym_text_interpolation, - ACTIONS(4252), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [69042] = 4, + ACTIONS(1512), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69894] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3501), 1, + anon_sym_COMMA, + ACTIONS(3737), 1, + anon_sym_LBRACE, STATE(2089), 1, sym_text_interpolation, - ACTIONS(4254), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [69057] = 6, + STATE(2150), 1, + aux_sym_base_clause_repeat1, + [69913] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(852), 1, - anon_sym_COMMA, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3172), 1, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(4194), 1, anon_sym_RPAREN, - STATE(2052), 1, - aux_sym__list_destructing_repeat1, STATE(2090), 1, sym_text_interpolation, - [69076] = 6, + STATE(2488), 1, + sym_variable_name, + [69932] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(852), 1, - anon_sym_COMMA, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4256), 1, - anon_sym_RPAREN, - STATE(2066), 1, - aux_sym__list_destructing_repeat1, + ACTIONS(4196), 1, + sym_name, STATE(2091), 1, sym_text_interpolation, - [69095] = 6, + ACTIONS(4198), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [69949] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(4258), 1, + ACTIONS(835), 1, anon_sym_RPAREN, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(4200), 1, + anon_sym_COMMA, + STATE(1907), 1, + aux_sym_array_creation_expression_repeat1, STATE(2092), 1, sym_text_interpolation, - STATE(2522), 1, - sym_variable_name, - [69114] = 6, + [69968] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(4260), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(1925), 1, + anon_sym_RPAREN, + ACTIONS(4202), 1, + anon_sym_COMMA, STATE(2093), 1, sym_text_interpolation, - STATE(2149), 1, - sym_variable_name, - [69133] = 5, + STATE(2152), 1, + aux_sym_unset_statement_repeat1, + [69987] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1497), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4206), 1, + aux_sym_else_clause_token1, STATE(2094), 1, sym_text_interpolation, - ACTIONS(1495), 2, - aux_sym_while_statement_token1, + ACTIONS(4204), 2, + aux_sym_if_statement_token2, aux_sym_else_if_clause_token1, - [69150] = 6, + [70004] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4159), 1, - anon_sym_LBRACE, - ACTIONS(4232), 1, - sym_name, + ACTIONS(4208), 1, + anon_sym_COMMA, + ACTIONS(4210), 1, + anon_sym_RPAREN, STATE(2095), 1, sym_text_interpolation, - STATE(2417), 1, - sym_namespace_use_group, - [69169] = 6, + STATE(2103), 1, + aux_sym_arguments_repeat1, + [70023] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(944), 1, - anon_sym_EQ_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(4212), 1, anon_sym_COMMA, - STATE(2035), 1, - aux_sym_match_condition_list_repeat1, + ACTIONS(4214), 1, + anon_sym_RBRACE, STATE(2096), 1, sym_text_interpolation, - [69188] = 6, + STATE(2160), 1, + aux_sym_match_block_repeat1, + [70042] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(850), 1, - anon_sym_RBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4264), 1, - anon_sym_COMMA, - STATE(2033), 1, - aux_sym_match_block_repeat1, STATE(2097), 1, sym_text_interpolation, - [69207] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + ACTIONS(4216), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [70057] = 4, + ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, STATE(2098), 1, sym_text_interpolation, - ACTIONS(4266), 3, - sym_heredoc_end, - sym_nowdoc_string, - sym__new_line, - [69222] = 5, + ACTIONS(4218), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [70072] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4270), 1, + ACTIONS(3953), 1, anon_sym_EQ, STATE(2099), 1, sym_text_interpolation, - ACTIONS(4268), 2, + ACTIONS(4220), 2, anon_sym_COMMA, anon_sym_RPAREN, - [69239] = 5, + [70089] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1501), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2100), 1, sym_text_interpolation, - ACTIONS(1499), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [69256] = 5, + ACTIONS(4222), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [70104] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1099), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4224), 1, + anon_sym_RPAREN, STATE(2101), 1, sym_text_interpolation, - ACTIONS(1097), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [69273] = 6, + STATE(2105), 1, + aux_sym__list_destructing_repeat1, + [70123] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(4272), 1, - anon_sym_DOT_DOT_DOT, STATE(2102), 1, sym_text_interpolation, - STATE(2146), 1, - sym_variable_name, - [69292] = 5, + ACTIONS(4226), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [70138] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1273), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(789), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4228), 1, + anon_sym_COMMA, STATE(2103), 1, sym_text_interpolation, - ACTIONS(1271), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [69309] = 5, + STATE(2165), 1, + aux_sym_arguments_repeat1, + [70157] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4276), 1, - anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_RPAREN, STATE(2104), 1, sym_text_interpolation, - ACTIONS(4274), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [69326] = 6, + STATE(2105), 1, + aux_sym__list_destructing_repeat1, + [70176] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3125), 1, - anon_sym_COMMA, - ACTIONS(4278), 1, + ACTIONS(1660), 1, anon_sym_RPAREN, - STATE(2105), 1, + ACTIONS(4232), 1, + anon_sym_COMMA, + STATE(2105), 2, sym_text_interpolation, - STATE(2117), 1, - aux_sym_unset_statement_repeat1, - [69345] = 5, + aux_sym__list_destructing_repeat1, + [70193] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1277), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3953), 1, + anon_sym_EQ, STATE(2106), 1, sym_text_interpolation, - ACTIONS(1275), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [69362] = 5, + ACTIONS(4235), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [70210] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1285), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2107), 1, sym_text_interpolation, - ACTIONS(1283), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [69379] = 5, + ACTIONS(4010), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [70225] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1321), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(2108), 1, + ACTIONS(4010), 1, + anon_sym_RBRACK, + ACTIONS(4237), 1, + anon_sym_COMMA, + STATE(2108), 2, sym_text_interpolation, - ACTIONS(1319), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [69396] = 6, + aux_sym_array_creation_expression_repeat1, + [70242] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(3667), 1, - anon_sym_LBRACE, + ACTIONS(4242), 1, + aux_sym_else_clause_token1, STATE(2109), 1, sym_text_interpolation, - STATE(2604), 1, - sym__return_type, - [69415] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4159), 1, - anon_sym_LBRACE, - ACTIONS(4232), 1, - sym_name, + ACTIONS(4240), 2, + aux_sym_if_statement_token2, + aux_sym_else_if_clause_token1, + [70259] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, STATE(2110), 1, sym_text_interpolation, - STATE(2412), 1, - sym_namespace_use_group, - [69434] = 6, + ACTIONS(3811), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + [70274] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4157), 1, - sym_name, - ACTIONS(4159), 1, - anon_sym_LBRACE, + ACTIONS(4246), 1, + anon_sym_LPAREN, STATE(2111), 1, sym_text_interpolation, - STATE(2412), 1, - sym_namespace_use_group, - [69453] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1329), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(4244), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [70291] = 6, + ACTIONS(5), 1, sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4016), 1, + sym__new_line, + ACTIONS(4248), 1, + sym_heredoc_end, STATE(2112), 1, sym_text_interpolation, - ACTIONS(1327), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [69470] = 5, + STATE(2398), 1, + sym_heredoc_body, + [70310] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1513), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2113), 1, sym_text_interpolation, - ACTIONS(1511), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [69487] = 6, + ACTIONS(3855), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [70325] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(4280), 1, + ACTIONS(4250), 1, + anon_sym_COMMA, + ACTIONS(4253), 1, anon_sym_RPAREN, - STATE(2114), 1, + STATE(2114), 2, sym_text_interpolation, - STATE(2518), 1, - sym_variable_name, - [69506] = 5, + aux_sym_anonymous_function_use_clause_repeat1, + [70342] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1493), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(801), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4255), 1, + anon_sym_COMMA, STATE(2115), 1, sym_text_interpolation, - ACTIONS(1491), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [69523] = 5, + STATE(2165), 1, + aux_sym_arguments_repeat1, + [70361] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1313), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4259), 1, + anon_sym_EQ, STATE(2116), 1, sym_text_interpolation, - ACTIONS(1311), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [69540] = 5, + ACTIONS(4257), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [70378] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3276), 1, - anon_sym_RPAREN, - ACTIONS(4282), 1, + ACTIONS(4261), 1, anon_sym_COMMA, + ACTIONS(4264), 1, + anon_sym_RBRACE, STATE(2117), 2, sym_text_interpolation, - aux_sym_unset_statement_repeat1, - [69557] = 5, + aux_sym_namespace_use_group_repeat1, + [70395] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1257), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(4266), 1, + anon_sym_EQ_GT, STATE(2118), 1, sym_text_interpolation, - ACTIONS(1255), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [69574] = 6, + STATE(2467), 1, + sym__return_type, + [70414] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3474), 1, - anon_sym_COMMA, - ACTIONS(4285), 1, - anon_sym_LBRACE, - STATE(1875), 1, - aux_sym_base_clause_repeat1, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(4268), 1, + anon_sym_EQ_GT, STATE(2119), 1, sym_text_interpolation, - [69593] = 5, + STATE(2473), 1, + sym__return_type, + [70433] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1281), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(4270), 1, + anon_sym_EQ_GT, STATE(2120), 1, sym_text_interpolation, - ACTIONS(1279), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [69610] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1289), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + STATE(2472), 1, + sym__return_type, + [70452] = 6, + ACTIONS(5), 1, sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4119), 1, + sym__new_line, + ACTIONS(4272), 1, + sym_heredoc_end, STATE(2121), 1, sym_text_interpolation, - ACTIONS(1287), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [69627] = 5, + STATE(2397), 1, + sym_nowdoc_body, + [70471] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4289), 1, - anon_sym_EQ, + ACTIONS(4274), 1, + anon_sym_COMMA, + ACTIONS(4276), 1, + anon_sym_RBRACE, STATE(2122), 1, sym_text_interpolation, - ACTIONS(4287), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69644] = 4, + STATE(2159), 1, + aux_sym_namespace_use_group_repeat1, + [70490] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4280), 1, + anon_sym_EQ, STATE(2123), 1, sym_text_interpolation, - ACTIONS(3822), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4278), 2, anon_sym_COMMA, - [69659] = 5, + anon_sym_RPAREN, + [70507] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1293), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4284), 1, + anon_sym_EQ, STATE(2124), 1, sym_text_interpolation, - ACTIONS(1291), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [69676] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - STATE(2125), 1, - sym_text_interpolation, - ACTIONS(3252), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [69691] = 6, + ACTIONS(4282), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [70524] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4291), 1, + ACTIONS(4286), 1, anon_sym_COMMA, - ACTIONS(4293), 1, + ACTIONS(4289), 1, anon_sym_RPAREN, + STATE(2125), 2, + sym_text_interpolation, + aux_sym_formal_parameters_repeat1, + [70541] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, STATE(2126), 1, sym_text_interpolation, - STATE(2134), 1, - aux_sym_arguments_repeat1, - [69710] = 5, + ACTIONS(4291), 3, + sym_heredoc_end, + sym_nowdoc_string, + sym__new_line, + [70556] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1377), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4295), 1, + anon_sym_EQ, STATE(2127), 1, sym_text_interpolation, - ACTIONS(1375), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [69727] = 6, + ACTIONS(4293), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [70573] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_DOLLAR, - STATE(1699), 1, - sym_variable_name, - STATE(1797), 1, - sym_property_element, + ACTIONS(4299), 1, + anon_sym_EQ, STATE(2128), 1, sym_text_interpolation, - [69746] = 6, + ACTIONS(4297), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [70590] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4157), 1, - sym_name, - ACTIONS(4159), 1, - anon_sym_LBRACE, + ACTIONS(4301), 1, + anon_sym_RPAREN, + STATE(2105), 1, + aux_sym__list_destructing_repeat1, STATE(2129), 1, sym_text_interpolation, - STATE(2298), 1, - sym_namespace_use_group, - [69765] = 4, + [70609] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2130), 1, sym_text_interpolation, - ACTIONS(2847), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - sym_name, - [69780] = 5, + ACTIONS(4303), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [70624] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1429), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4305), 1, + anon_sym_RPAREN, + STATE(2105), 1, + aux_sym__list_destructing_repeat1, STATE(2131), 1, sym_text_interpolation, - ACTIONS(1427), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [69797] = 6, + [70643] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3474), 1, - anon_sym_COMMA, - ACTIONS(3752), 1, - anon_sym_LBRACE, - STATE(2119), 1, - aux_sym_base_clause_repeat1, STATE(2132), 1, sym_text_interpolation, - [69816] = 6, + ACTIONS(4307), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [70658] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(826), 1, - anon_sym_RPAREN, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COMMA, - STATE(1936), 1, - aux_sym_array_creation_expression_repeat1, + ACTIONS(4311), 1, + anon_sym_EQ, STATE(2133), 1, sym_text_interpolation, - [69835] = 6, + ACTIONS(4309), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [70675] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(804), 1, - anon_sym_RPAREN, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4297), 1, + ACTIONS(4313), 1, anon_sym_COMMA, - STATE(2075), 1, - aux_sym_arguments_repeat1, + ACTIONS(4315), 1, + anon_sym_RPAREN, STATE(2134), 1, sym_text_interpolation, - [69854] = 6, + STATE(2140), 1, + aux_sym_arguments_repeat1, + [70694] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3125), 1, - anon_sym_COMMA, - ACTIONS(4299), 1, - anon_sym_RPAREN, - STATE(2117), 1, - aux_sym_unset_statement_repeat1, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(4317), 1, + anon_sym_DOT_DOT_DOT, STATE(2135), 1, sym_text_interpolation, - [69873] = 6, + STATE(2151), 1, + sym_variable_name, + [70713] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4301), 1, - anon_sym_DQUOTE, - ACTIONS(4303), 1, - anon_sym_SQUOTE, - ACTIONS(4305), 1, - sym_heredoc_start, + ACTIONS(4321), 1, + anon_sym_EQ, STATE(2136), 1, sym_text_interpolation, - [69892] = 6, + ACTIONS(4319), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [70730] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4307), 1, + ACTIONS(2608), 1, + anon_sym_EQ_GT, + ACTIONS(4323), 1, anon_sym_COMMA, - ACTIONS(4309), 1, - anon_sym_RPAREN, - STATE(1915), 1, - aux_sym_anonymous_function_use_clause_repeat1, - STATE(2137), 1, + STATE(2137), 2, sym_text_interpolation, - [69911] = 5, + aux_sym_match_condition_list_repeat1, + [70747] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(323), 1, - anon_sym_DOLLAR, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(2138), 1, + ACTIONS(4326), 1, + anon_sym_COMMA, + ACTIONS(4329), 1, + anon_sym_RBRACE, + STATE(2138), 2, sym_text_interpolation, - STATE(1855), 2, - sym_dynamic_variable_name, - sym_variable_name, - [69928] = 5, + aux_sym_match_block_repeat1, + [70764] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4313), 1, - aux_sym_else_clause_token1, + ACTIONS(4331), 1, + anon_sym_COMMA, + ACTIONS(4333), 1, + anon_sym_RPAREN, STATE(2139), 1, sym_text_interpolation, - ACTIONS(4311), 2, - aux_sym_if_statement_token2, - aux_sym_else_if_clause_token1, - [69945] = 5, + STATE(2149), 1, + aux_sym_anonymous_function_use_clause_repeat1, + [70783] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(823), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4315), 1, - sym_name, + ACTIONS(4335), 1, + anon_sym_COMMA, STATE(2140), 1, sym_text_interpolation, - ACTIONS(4317), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69962] = 5, + STATE(2165), 1, + aux_sym_arguments_repeat1, + [70802] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4321), 1, - anon_sym_EQ, + ACTIONS(4337), 1, + anon_sym_RPAREN, + STATE(2129), 1, + aux_sym__list_destructing_repeat1, STATE(2141), 1, sym_text_interpolation, - ACTIONS(4319), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [69979] = 6, + [70821] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1776), 1, + ACTIONS(1690), 1, anon_sym_DOLLAR, - ACTIONS(4323), 1, - anon_sym_DOT_DOT_DOT, - STATE(1921), 1, + STATE(1721), 1, sym_variable_name, + STATE(1829), 1, + sym_property_element, STATE(2142), 1, sym_text_interpolation, - [69998] = 6, + [70840] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4325), 1, - anon_sym_COMMA, - ACTIONS(4327), 1, - anon_sym_RBRACE, - STATE(2097), 1, - aux_sym_match_block_repeat1, + ACTIONS(4341), 1, + anon_sym_EQ, STATE(2143), 1, sym_text_interpolation, - [70017] = 5, + ACTIONS(4339), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [70857] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4331), 1, - anon_sym_EQ, STATE(2144), 1, sym_text_interpolation, - ACTIONS(4329), 2, + ACTIONS(3473), 3, anon_sym_COMMA, - anon_sym_RPAREN, - [70034] = 6, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [70872] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(778), 1, - anon_sym_RPAREN, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4333), 1, - anon_sym_COMMA, - STATE(2075), 1, - aux_sym_arguments_repeat1, STATE(2145), 1, sym_text_interpolation, - [70053] = 5, + ACTIONS(4343), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [70887] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4337), 1, - anon_sym_EQ, + ACTIONS(4001), 1, + anon_sym_LBRACE, + ACTIONS(4038), 1, + sym_name, STATE(2146), 1, sym_text_interpolation, - ACTIONS(4335), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [70070] = 6, + STATE(2383), 1, + sym_namespace_use_group, + [70906] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4339), 1, - anon_sym_COMMA, - ACTIONS(4341), 1, - anon_sym_RPAREN, - STATE(2145), 1, - aux_sym_arguments_repeat1, + ACTIONS(1690), 1, + anon_sym_DOLLAR, + STATE(1721), 1, + sym_variable_name, + STATE(2113), 1, + sym_property_element, STATE(2147), 1, sym_text_interpolation, - [70089] = 4, + [70925] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(1690), 1, + anon_sym_DOLLAR, + STATE(1721), 1, + sym_variable_name, + STATE(1801), 1, + sym_property_element, STATE(2148), 1, sym_text_interpolation, - ACTIONS(4343), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [70104] = 5, + [70944] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4347), 1, - anon_sym_EQ, + ACTIONS(3763), 1, + anon_sym_RPAREN, + ACTIONS(4345), 1, + anon_sym_COMMA, + STATE(2114), 1, + aux_sym_anonymous_function_use_clause_repeat1, STATE(2149), 1, sym_text_interpolation, - ACTIONS(4345), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [70121] = 5, + [70963] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3944), 1, - anon_sym_EQ, + ACTIONS(3501), 1, + anon_sym_COMMA, + ACTIONS(4347), 1, + anon_sym_LBRACE, + STATE(1798), 1, + aux_sym_base_clause_repeat1, STATE(2150), 1, sym_text_interpolation, - ACTIONS(4349), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [70138] = 6, + [70982] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(802), 1, - anon_sym_RPAREN, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, ACTIONS(4351), 1, - anon_sym_COMMA, - STATE(2075), 1, - aux_sym_arguments_repeat1, + anon_sym_EQ, STATE(2151), 1, sym_text_interpolation, - [70157] = 6, + ACTIONS(4349), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [70999] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3195), 1, + anon_sym_RPAREN, ACTIONS(4353), 1, anon_sym_COMMA, - ACTIONS(4355), 1, - anon_sym_RPAREN, - STATE(2151), 1, - aux_sym_arguments_repeat1, - STATE(2152), 1, + STATE(2152), 2, sym_text_interpolation, - [70176] = 4, + aux_sym_unset_statement_repeat1, + [71016] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(328), 1, + anon_sym_DOLLAR, + ACTIONS(1540), 1, sym_comment, STATE(2153), 1, sym_text_interpolation, - ACTIONS(4357), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [70191] = 6, + STATE(1833), 2, + sym_dynamic_variable_name, + sym_variable_name, + [71033] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(852), 1, - anon_sym_COMMA, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4359), 1, - anon_sym_RPAREN, + ACTIONS(4358), 1, + anon_sym_EQ, STATE(2154), 1, sym_text_interpolation, - STATE(2161), 1, - aux_sym__list_destructing_repeat1, - [70210] = 5, + ACTIONS(4356), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [71050] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4361), 1, + ACTIONS(4362), 1, + anon_sym_EQ, + STATE(2155), 1, + sym_text_interpolation, + ACTIONS(4360), 2, anon_sym_COMMA, - ACTIONS(4364), 1, anon_sym_RPAREN, - STATE(2155), 2, - sym_text_interpolation, - aux_sym_formal_parameters_repeat1, - [70227] = 4, + [71067] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + ACTIONS(4364), 1, + anon_sym_RPAREN, STATE(2156), 1, sym_text_interpolation, - ACTIONS(4366), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [70242] = 6, + STATE(2474), 1, + sym_variable_name, + [71086] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(852), 1, - anon_sym_COMMA, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, ACTIONS(4368), 1, - anon_sym_RPAREN, + anon_sym_EQ, STATE(2157), 1, sym_text_interpolation, - STATE(2161), 1, - aux_sym__list_destructing_repeat1, - [70261] = 5, + ACTIONS(4366), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [71103] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4370), 1, + anon_sym_COMMA, ACTIONS(4372), 1, - anon_sym_EQ, + anon_sym_RPAREN, STATE(2158), 1, sym_text_interpolation, - ACTIONS(4370), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [70278] = 5, + STATE(2163), 1, + aux_sym_arguments_repeat1, + [71122] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4376), 1, - anon_sym_EQ, + ACTIONS(4274), 1, + anon_sym_COMMA, + ACTIONS(4374), 1, + anon_sym_RBRACE, + STATE(2117), 1, + aux_sym_namespace_use_group_repeat1, STATE(2159), 1, sym_text_interpolation, - ACTIONS(4374), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [70295] = 4, + [71141] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(877), 1, + anon_sym_RBRACE, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4376), 1, + anon_sym_COMMA, + STATE(2138), 1, + aux_sym_match_block_repeat1, STATE(2160), 1, sym_text_interpolation, - ACTIONS(4378), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [70310] = 5, + [71160] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(957), 1, + anon_sym_EQ_GT, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1714), 1, - anon_sym_RPAREN, - ACTIONS(4380), 1, + ACTIONS(4378), 1, anon_sym_COMMA, - STATE(2161), 2, + STATE(2137), 1, + aux_sym_match_condition_list_repeat1, + STATE(2161), 1, sym_text_interpolation, - aux_sym__list_destructing_repeat1, - [70327] = 6, + [71179] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4079), 1, - anon_sym_COMMA, - ACTIONS(4383), 1, - anon_sym_RBRACE, - STATE(1947), 1, - aux_sym_namespace_use_group_repeat1, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_EQ_GT, STATE(2162), 1, sym_text_interpolation, - [70346] = 5, + STATE(2478), 1, + sym__return_type, + [71198] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(821), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3944), 1, - anon_sym_EQ, + ACTIONS(4382), 1, + anon_sym_COMMA, STATE(2163), 1, sym_text_interpolation, - ACTIONS(4385), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [70363] = 4, + STATE(2165), 1, + aux_sym_arguments_repeat1, + [71217] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4386), 1, + anon_sym_EQ, STATE(2164), 1, sym_text_interpolation, - ACTIONS(4069), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [70378] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(796), 1, - anon_sym_RPAREN, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4387), 1, - anon_sym_COMMA, - STATE(2075), 1, - aux_sym_arguments_repeat1, - STATE(2165), 1, - sym_text_interpolation, - [70397] = 6, + ACTIONS(4384), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [71234] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4389), 1, + ACTIONS(4388), 1, anon_sym_COMMA, ACTIONS(4391), 1, anon_sym_RPAREN, - STATE(2166), 1, + STATE(2165), 2, sym_text_interpolation, - STATE(2172), 1, aux_sym_arguments_repeat1, - [70416] = 5, + [71251] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_RBRACK, - ACTIONS(4393), 1, + STATE(2166), 1, + sym_text_interpolation, + ACTIONS(4393), 3, anon_sym_COMMA, - STATE(2167), 2, + anon_sym_EQ, + anon_sym_RPAREN, + [71266] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3980), 1, + sym_nowdoc_string, + ACTIONS(4395), 1, + anon_sym_, + STATE(1892), 1, + aux_sym_nowdoc_body_repeat1, + STATE(2167), 1, sym_text_interpolation, - aux_sym_array_creation_expression_repeat1, - [70433] = 6, + [71285] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4159), 1, - anon_sym_LBRACE, - ACTIONS(4232), 1, - sym_name, STATE(2168), 1, sym_text_interpolation, - STATE(2294), 1, - sym_namespace_use_group, - [70452] = 6, + ACTIONS(4397), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [71300] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(4396), 1, - anon_sym_EQ_GT, + ACTIONS(3155), 1, + anon_sym_RPAREN, + STATE(2131), 1, + aux_sym__list_destructing_repeat1, STATE(2169), 1, sym_text_interpolation, - STATE(2461), 1, - sym__return_type, - [70471] = 5, + [71319] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4398), 1, - anon_sym_COMMA, - ACTIONS(4401), 1, - anon_sym_RBRACK, - STATE(2170), 2, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1729), 1, + sym_declaration_list, + STATE(2170), 1, sym_text_interpolation, - aux_sym_attribute_group_repeat1, - [70488] = 5, + [71335] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1217), 1, - aux_sym_else_clause_token1, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2171), 1, sym_text_interpolation, - ACTIONS(1215), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [70505] = 6, + ACTIONS(4399), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [71349] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(786), 1, - anon_sym_RPAREN, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4403), 1, - anon_sym_COMMA, - STATE(2075), 1, - aux_sym_arguments_repeat1, + ACTIONS(563), 1, + ts_builtin_sym_end, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(4401), 1, + sym_php_tag, STATE(2172), 1, sym_text_interpolation, - [70524] = 6, + [71365] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4405), 1, - anon_sym_COMMA, - ACTIONS(4407), 1, - anon_sym_RPAREN, - STATE(2165), 1, - aux_sym_arguments_repeat1, STATE(2173), 1, sym_text_interpolation, - [70543] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + ACTIONS(4403), 2, + sym__eof, + sym_php_tag, + [71379] = 5, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(4034), 1, - sym__new_line, - ACTIONS(4409), 1, - sym_heredoc_end, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(4405), 1, + anon_sym_LPAREN, + STATE(53), 1, + sym_parenthesized_expression, STATE(2174), 1, sym_text_interpolation, - STATE(2366), 1, - sym_heredoc_body, - [70562] = 5, + [71395] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4413), 1, - anon_sym_EQ, + ACTIONS(4407), 1, + sym_name, STATE(2175), 1, sym_text_interpolation, - ACTIONS(4411), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [70579] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + STATE(2589), 1, + sym_namespace_name, + [71411] = 5, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(4127), 1, - sym__new_line, - ACTIONS(4415), 1, - sym_heredoc_end, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, + sym_comment, + STATE(1674), 1, + sym_compound_statement, STATE(2176), 1, sym_text_interpolation, - STATE(2368), 1, - sym_nowdoc_body, - [70598] = 6, + [71427] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(4417), 1, - anon_sym_EQ_GT, + ACTIONS(4407), 1, + sym_name, STATE(2177), 1, sym_text_interpolation, - STATE(2526), 1, - sym__return_type, - [70617] = 6, + STATE(2564), 1, + sym_namespace_name, + [71443] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(812), 1, - anon_sym_RPAREN, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4419), 1, - anon_sym_COMMA, - STATE(2075), 1, - aux_sym_arguments_repeat1, + ACTIONS(4405), 1, + anon_sym_LPAREN, + STATE(51), 1, + sym_parenthesized_expression, STATE(2178), 1, sym_text_interpolation, - [70636] = 6, + [71459] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(814), 1, - anon_sym_RPAREN, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_COMMA, - STATE(2075), 1, - aux_sym_arguments_repeat1, + ACTIONS(4407), 1, + sym_name, STATE(2179), 1, sym_text_interpolation, - [70655] = 4, + STATE(2556), 1, + sym_namespace_name, + [71475] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4405), 1, + anon_sym_LPAREN, + STATE(57), 1, + sym_parenthesized_expression, STATE(2180), 1, sym_text_interpolation, - ACTIONS(3866), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - [70670] = 6, + [71491] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4423), 1, - anon_sym_COMMA, - ACTIONS(4425), 1, - anon_sym_RPAREN, - STATE(2179), 1, - aux_sym_arguments_repeat1, + ACTIONS(4094), 1, + anon_sym_LPAREN, STATE(2181), 1, sym_text_interpolation, - [70689] = 6, + STATE(2240), 1, + sym_parenthesized_expression, + [71507] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(4427), 1, - anon_sym_EQ_GT, + ACTIONS(4094), 1, + anon_sym_LPAREN, + STATE(1915), 1, + sym_parenthesized_expression, STATE(2182), 1, sym_text_interpolation, - STATE(2480), 1, - sym__return_type, - [70708] = 4, + [71523] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(228), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, + STATE(557), 1, + sym_compound_statement, STATE(2183), 1, sym_text_interpolation, - ACTIONS(3879), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [70723] = 5, + [71539] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4429), 1, - anon_sym_COMMA, - ACTIONS(4432), 1, - anon_sym_RPAREN, - STATE(2184), 2, + STATE(2184), 1, sym_text_interpolation, - aux_sym_anonymous_function_use_clause_repeat1, - [70740] = 5, + ACTIONS(4410), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [71553] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3256), 1, - anon_sym_LPAREN, - STATE(1593), 1, - sym_formal_parameters, STATE(2185), 1, sym_text_interpolation, - [70756] = 4, + ACTIONS(4412), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [71567] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2186), 1, sym_text_interpolation, - ACTIONS(4215), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [70770] = 4, + ACTIONS(4414), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [71581] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2187), 1, sym_text_interpolation, - ACTIONS(4434), 2, + ACTIONS(4416), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70784] = 4, + [71595] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2188), 1, sym_text_interpolation, - ACTIONS(4436), 2, - anon_sym_string, - anon_sym_int, - [70798] = 4, + ACTIONS(4418), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [71609] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2189), 1, sym_text_interpolation, - ACTIONS(4438), 2, - anon_sym_LBRACE, - anon_sym_COLON, - [70812] = 5, + ACTIONS(503), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [71623] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(484), 1, - ts_builtin_sym_end, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4440), 1, - sym_php_tag, + STATE(931), 1, + sym_compound_statement, STATE(2190), 1, sym_text_interpolation, - [70828] = 4, + [71639] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2191), 1, sym_text_interpolation, - ACTIONS(4442), 2, - sym__eof, - sym_php_tag, - [70842] = 4, + ACTIONS(509), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [71653] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, + STATE(1668), 1, + sym_compound_statement, STATE(2192), 1, sym_text_interpolation, - ACTIONS(4444), 2, - anon_sym_LBRACE, - anon_sym_COLON, - [70856] = 4, + [71669] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2193), 1, sym_text_interpolation, - ACTIONS(4446), 2, + ACTIONS(4420), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70870] = 5, + [71683] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1133), 1, - sym_compound_statement, STATE(2194), 1, sym_text_interpolation, - [70886] = 4, + ACTIONS(3953), 2, + anon_sym_EQ, + anon_sym_RPAREN, + [71697] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1657), 1, + sym_declaration_list, STATE(2195), 1, sym_text_interpolation, - ACTIONS(4448), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70900] = 5, + [71713] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3675), 1, + ACTIONS(401), 1, anon_sym_LBRACE, - STATE(480), 1, - sym_enum_declaration_list, + ACTIONS(1540), 1, + sym_comment, + STATE(932), 1, + sym_compound_statement, STATE(2196), 1, sym_text_interpolation, - [70916] = 4, + [71729] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, + STATE(935), 1, + sym_compound_statement, STATE(2197), 1, sym_text_interpolation, - ACTIONS(4450), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [70930] = 5, + [71745] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3448), 1, + ACTIONS(3644), 1, anon_sym_LBRACE, - STATE(462), 1, - sym_declaration_list, + STATE(1966), 1, + sym_enum_declaration_list, STATE(2198), 1, sym_text_interpolation, - [70946] = 5, + [71761] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4452), 1, - anon_sym_LBRACE, - STATE(434), 1, - sym_compound_statement, + ACTIONS(4422), 1, + sym_name, STATE(2199), 1, sym_text_interpolation, - [70962] = 4, + STATE(2554), 1, + sym_namespace_name, + [71777] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, + STATE(936), 1, + sym_compound_statement, STATE(2200), 1, sym_text_interpolation, - ACTIONS(2565), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [70976] = 5, + [71793] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3448), 1, + ACTIONS(401), 1, anon_sym_LBRACE, - STATE(463), 1, - sym_declaration_list, + ACTIONS(1540), 1, + sym_comment, + STATE(938), 1, + sym_compound_statement, STATE(2201), 1, sym_text_interpolation, - [70992] = 4, + [71809] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4407), 1, + sym_name, STATE(2202), 1, sym_text_interpolation, - ACTIONS(2571), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71006] = 4, + STATE(2547), 1, + sym_namespace_name, + [71825] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1936), 1, + sym_formal_parameters, STATE(2203), 1, sym_text_interpolation, - ACTIONS(4454), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71020] = 5, + [71841] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - STATE(2197), 1, - sym_variable_name, + ACTIONS(3339), 1, + anon_sym_LBRACE, + STATE(940), 1, + sym_declaration_list, STATE(2204), 1, sym_text_interpolation, - [71036] = 4, + [71857] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4425), 1, + anon_sym_SEMI, + ACTIONS(4427), 1, + sym__automatic_semicolon, STATE(2205), 1, sym_text_interpolation, - ACTIONS(480), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71050] = 5, + [71873] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4456), 1, - sym_name, + STATE(1687), 1, + sym_compound_statement, STATE(2206), 1, sym_text_interpolation, - STATE(2563), 1, - sym_namespace_name, - [71066] = 5, + [71889] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4456), 1, - sym_name, STATE(2207), 1, sym_text_interpolation, - STATE(2599), 1, - sym_namespace_name, - [71082] = 4, + ACTIONS(4429), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [71903] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3951), 1, + anon_sym_LBRACE, + STATE(524), 1, + sym_declaration_list, STATE(2208), 1, sym_text_interpolation, - ACTIONS(4459), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71096] = 5, + [71919] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4456), 1, - sym_name, STATE(2209), 1, sym_text_interpolation, - STATE(2591), 1, - sym_namespace_name, - [71112] = 5, + ACTIONS(4431), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [71933] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(2065), 1, - sym_compound_statement, STATE(2210), 1, sym_text_interpolation, - [71128] = 5, + ACTIONS(4433), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [71947] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1722), 1, - sym_compound_statement, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1692), 1, + sym_declaration_list, STATE(2211), 1, sym_text_interpolation, - [71144] = 5, + [71963] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4461), 1, - anon_sym_LPAREN, - STATE(29), 1, - sym_parenthesized_expression, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1694), 1, + sym_declaration_list, STATE(2212), 1, sym_text_interpolation, - [71160] = 5, + [71979] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4461), 1, + ACTIONS(3243), 1, anon_sym_LPAREN, - STATE(33), 1, - sym_parenthesized_expression, + STATE(1938), 1, + sym_formal_parameters, STATE(2213), 1, sym_text_interpolation, - [71176] = 4, + [71995] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, + STATE(966), 1, + sym_compound_statement, STATE(2214), 1, sym_text_interpolation, - ACTIONS(4463), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71190] = 5, + [72011] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3256), 1, - anon_sym_LPAREN, - STATE(1958), 1, - sym_formal_parameters, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1698), 1, + sym_declaration_list, STATE(2215), 1, sym_text_interpolation, - [71206] = 4, + [72027] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, + STATE(969), 1, + sym_compound_statement, STATE(2216), 1, sym_text_interpolation, - ACTIONS(4401), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [71220] = 5, + [72043] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3256), 1, - anon_sym_LPAREN, - STATE(1585), 1, - sym_formal_parameters, + STATE(910), 1, + sym_compound_statement, STATE(2217), 1, sym_text_interpolation, - [71236] = 5, + [72059] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4026), 1, - anon_sym_LPAREN, + STATE(920), 1, + sym_compound_statement, STATE(2218), 1, sym_text_interpolation, - STATE(2340), 1, - sym_parenthesized_expression, - [71252] = 5, + [72075] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4465), 1, - sym_name, - STATE(1892), 1, - sym_namespace_name, + STATE(970), 1, + sym_compound_statement, STATE(2219), 1, sym_text_interpolation, - [71268] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, + [72091] = 5, + ACTIONS(5), 1, sym_comment, - ACTIONS(2771), 1, - anon_sym_RPAREN, - ACTIONS(4467), 1, - anon_sym_EQ, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4435), 1, + sym__new_line, + ACTIONS(4437), 1, + sym_heredoc_end, STATE(2220), 1, sym_text_interpolation, - [71284] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, + [72107] = 5, + ACTIONS(5), 1, sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4439), 1, + sym__new_line, + ACTIONS(4441), 1, + sym_heredoc_end, STATE(2221), 1, sym_text_interpolation, - ACTIONS(4469), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [71298] = 4, + [72123] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4445), 1, + anon_sym_RPAREN, STATE(2222), 1, sym_text_interpolation, - ACTIONS(4472), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71312] = 4, + [72139] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3339), 1, + anon_sym_LBRACE, + STATE(965), 1, + sym_declaration_list, STATE(2223), 1, sym_text_interpolation, - ACTIONS(4474), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71326] = 5, + [72155] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - STATE(1946), 1, - sym_variable_name, + ACTIONS(3339), 1, + anon_sym_LBRACE, + STATE(964), 1, + sym_declaration_list, STATE(2224), 1, sym_text_interpolation, - [71342] = 5, + [72171] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4026), 1, - anon_sym_LPAREN, - STATE(1979), 1, - sym_parenthesized_expression, STATE(2225), 1, sym_text_interpolation, - [71358] = 4, + ACTIONS(4447), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72185] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4449), 1, + anon_sym_SEMI, + ACTIONS(4451), 1, + sym__automatic_semicolon, STATE(2226), 1, sym_text_interpolation, - ACTIONS(4198), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [71372] = 4, + [72201] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2227), 1, sym_text_interpolation, - ACTIONS(4364), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71386] = 4, + ACTIONS(4453), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72215] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3076), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(4455), 1, + aux_sym_namespace_use_declaration_token2, STATE(2228), 1, sym_text_interpolation, - ACTIONS(4476), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [71400] = 5, + [72231] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4478), 1, - anon_sym_LPAREN, - STATE(1702), 1, - sym_formal_parameters, STATE(2229), 1, sym_text_interpolation, - [71416] = 5, + ACTIONS(4457), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72245] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(918), 1, - sym_compound_statement, + ACTIONS(3644), 1, + anon_sym_LBRACE, + STATE(1992), 1, + sym_enum_declaration_list, STATE(2230), 1, sym_text_interpolation, - [71432] = 5, + [72261] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3448), 1, - anon_sym_LBRACE, - STATE(449), 1, - sym_declaration_list, STATE(2231), 1, sym_text_interpolation, - [71448] = 4, + ACTIONS(4459), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72275] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, + STATE(959), 1, + sym_compound_statement, STATE(2232), 1, sym_text_interpolation, - ACTIONS(1714), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71462] = 4, + [72291] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2233), 1, sym_text_interpolation, - ACTIONS(4480), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71476] = 5, + ACTIONS(4461), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72305] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1736), 1, + sym_declaration_list, STATE(2234), 1, sym_text_interpolation, - STATE(2270), 1, - sym_variable_name, - [71492] = 4, + [72321] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3644), 1, + anon_sym_LBRACE, + STATE(1999), 1, + sym_enum_declaration_list, STATE(2235), 1, sym_text_interpolation, - ACTIONS(4482), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71506] = 5, + [72337] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3360), 1, + ACTIONS(401), 1, anon_sym_LBRACE, - STATE(1139), 1, - sym_declaration_list, + ACTIONS(1540), 1, + sym_comment, + STATE(951), 1, + sym_compound_statement, STATE(2236), 1, sym_text_interpolation, - [71522] = 5, + [72353] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3448), 1, - anon_sym_LBRACE, - STATE(443), 1, - sym_declaration_list, STATE(2237), 1, sym_text_interpolation, - [71538] = 5, + ACTIONS(2470), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72367] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1137), 1, - sym_compound_statement, + ACTIONS(2516), 1, + anon_sym_RPAREN, + ACTIONS(4463), 1, + anon_sym_EQ, STATE(2238), 1, sym_text_interpolation, - [71554] = 5, + [72383] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4484), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(4486), 1, - aux_sym__arrow_function_header_token1, STATE(2239), 1, sym_text_interpolation, - [71570] = 4, + ACTIONS(4465), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72397] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4467), 1, + anon_sym_LBRACE, + STATE(1135), 1, + sym_match_block, STATE(2240), 1, sym_text_interpolation, - ACTIONS(4488), 2, - anon_sym_LBRACE, - anon_sym_COLON, - [71584] = 5, + [72413] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3360), 1, + ACTIONS(401), 1, anon_sym_LBRACE, - STATE(1125), 1, - sym_declaration_list, + ACTIONS(1540), 1, + sym_comment, + STATE(946), 1, + sym_compound_statement, STATE(2241), 1, sym_text_interpolation, - [71600] = 5, + [72429] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(225), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(547), 1, - sym_compound_statement, STATE(2242), 1, sym_text_interpolation, - [71616] = 4, + ACTIONS(4469), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [72443] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4472), 1, + anon_sym_BSLASH, + STATE(1752), 1, + aux_sym_namespace_name_repeat1, STATE(2243), 1, sym_text_interpolation, - ACTIONS(3464), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71630] = 4, + [72459] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, + STATE(1689), 1, + sym_compound_statement, STATE(2244), 1, sym_text_interpolation, - ACTIONS(3944), 2, - anon_sym_EQ, - anon_sym_RPAREN, - [71644] = 5, + [72475] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, + ACTIONS(3090), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(3092), 1, + aux_sym__arrow_function_header_token1, STATE(2245), 1, sym_text_interpolation, - STATE(2254), 1, - sym_variable_name, - [71660] = 4, + [72491] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4405), 1, + anon_sym_LPAREN, + STATE(38), 1, + sym_parenthesized_expression, STATE(2246), 1, sym_text_interpolation, - ACTIONS(4490), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71674] = 5, + [72507] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - STATE(1924), 1, - sym_variable_name, + ACTIONS(4094), 1, + anon_sym_LPAREN, STATE(2247), 1, sym_text_interpolation, - [71690] = 4, + STATE(2297), 1, + sym_parenthesized_expression, + [72523] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4094), 1, + anon_sym_LPAREN, + STATE(1906), 1, + sym_parenthesized_expression, STATE(2248), 1, sym_text_interpolation, - ACTIONS(452), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71704] = 4, + [72539] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(228), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, + STATE(522), 1, + sym_compound_statement, STATE(2249), 1, sym_text_interpolation, - ACTIONS(4492), 2, - anon_sym_SEMI, - anon_sym_COLON, - [71718] = 5, + [72555] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - STATE(2208), 1, - sym_variable_name, + ACTIONS(4407), 1, + sym_name, STATE(2250), 1, sym_text_interpolation, - [71734] = 5, + STATE(2496), 1, + sym_namespace_name, + [72571] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2631), 1, - anon_sym_RPAREN, - ACTIONS(4467), 1, - anon_sym_EQ, + ACTIONS(3339), 1, + anon_sym_LBRACE, + STATE(939), 1, + sym_declaration_list, STATE(2251), 1, sym_text_interpolation, - [71750] = 4, + [72587] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3339), 1, + anon_sym_LBRACE, + STATE(937), 1, + sym_declaration_list, STATE(2252), 1, sym_text_interpolation, - ACTIONS(4494), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71764] = 5, + [72603] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3354), 1, - anon_sym_LBRACE, - STATE(2053), 1, - sym_declaration_list, STATE(2253), 1, sym_text_interpolation, - [71780] = 4, + ACTIONS(3497), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72617] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3074), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(3076), 1, + aux_sym__arrow_function_header_token1, STATE(2254), 1, sym_text_interpolation, - ACTIONS(4496), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71794] = 5, + [72633] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3544), 1, - anon_sym_LBRACE, - STATE(2050), 1, - sym_enum_declaration_list, STATE(2255), 1, sym_text_interpolation, - [71810] = 4, + ACTIONS(4475), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72647] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4405), 1, + anon_sym_LPAREN, + STATE(76), 1, + sym_parenthesized_expression, STATE(2256), 1, sym_text_interpolation, - ACTIONS(4317), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71824] = 5, + [72663] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3360), 1, - anon_sym_LBRACE, - STATE(1687), 1, - sym_declaration_list, STATE(2257), 1, sym_text_interpolation, - [71840] = 5, + ACTIONS(4477), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72677] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3256), 1, - anon_sym_LPAREN, - STATE(1648), 1, - sym_formal_parameters, STATE(2258), 1, sym_text_interpolation, - [71856] = 4, + ACTIONS(4479), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72691] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2259), 1, sym_text_interpolation, - ACTIONS(4498), 2, + ACTIONS(4481), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71870] = 5, + [72705] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1080), 1, - sym_compound_statement, + ACTIONS(4405), 1, + anon_sym_LPAREN, + STATE(19), 1, + sym_parenthesized_expression, STATE(2260), 1, sym_text_interpolation, - [71886] = 5, + [72721] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(398), 1, - anon_sym_COLON, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2261), 1, sym_text_interpolation, - STATE(2540), 1, - sym_colon_block, - [71902] = 4, + ACTIONS(3807), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72735] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1750), 1, + sym_declaration_list, STATE(2262), 1, - sym_text_interpolation, - ACTIONS(4500), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71916] = 4, + sym_text_interpolation, + [72751] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, + STATE(928), 1, + sym_compound_statement, STATE(2263), 1, sym_text_interpolation, - ACTIONS(4502), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71930] = 5, + [72767] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4026), 1, - anon_sym_LPAREN, + STATE(923), 1, + sym_compound_statement, STATE(2264), 1, sym_text_interpolation, - STATE(2339), 1, - sym_parenthesized_expression, - [71946] = 5, + [72783] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - STATE(2203), 1, - sym_variable_name, + ACTIONS(4405), 1, + anon_sym_LPAREN, + STATE(54), 1, + sym_parenthesized_expression, STATE(2265), 1, sym_text_interpolation, - [71962] = 4, + [72799] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(1723), 1, + anon_sym_DOLLAR, STATE(2266), 1, sym_text_interpolation, - ACTIONS(4504), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71976] = 5, + STATE(2309), 1, + sym_variable_name, + [72815] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4461), 1, + ACTIONS(3243), 1, anon_sym_LPAREN, - STATE(76), 1, - sym_parenthesized_expression, + STATE(2075), 1, + sym_formal_parameters, STATE(2267), 1, sym_text_interpolation, - [71992] = 5, + [72831] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4506), 1, - sym_name, + ACTIONS(3423), 1, + anon_sym_LBRACE, + STATE(1079), 1, + sym_compound_statement, STATE(2268), 1, sym_text_interpolation, - STATE(2496), 1, - sym_namespace_name, - [72008] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + [72847] = 5, + ACTIONS(5), 1, sym_comment, - STATE(1685), 1, - sym_compound_statement, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4483), 1, + sym__new_line, + ACTIONS(4485), 1, + sym_heredoc_end, STATE(2269), 1, sym_text_interpolation, - [72024] = 4, + [72863] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3951), 1, + anon_sym_LBRACE, + STATE(529), 1, + sym_declaration_list, STATE(2270), 1, sym_text_interpolation, - ACTIONS(4509), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [72038] = 5, + [72879] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3354), 1, - anon_sym_LBRACE, - STATE(941), 1, - sym_declaration_list, STATE(2271), 1, sym_text_interpolation, - [72054] = 5, + ACTIONS(4487), 2, + anon_sym_string, + anon_sym_int, + [72893] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4511), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(4513), 1, - aux_sym__arrow_function_header_token1, + ACTIONS(3339), 1, + anon_sym_LBRACE, + STATE(955), 1, + sym_declaration_list, STATE(2272), 1, sym_text_interpolation, - [72070] = 4, + [72909] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3592), 1, + anon_sym_LBRACE, + STATE(459), 1, + sym_enum_declaration_list, STATE(2273), 1, sym_text_interpolation, - ACTIONS(4515), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72084] = 4, + [72925] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2274), 1, sym_text_interpolation, - ACTIONS(4517), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72098] = 5, + ACTIONS(4489), 2, + anon_sym_string, + anon_sym_int, + [72939] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, + ACTIONS(401), 1, anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1670), 1, + STATE(1733), 1, sym_compound_statement, STATE(2275), 1, sym_text_interpolation, - [72114] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + [72955] = 4, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(4519), 1, - sym__new_line, - ACTIONS(4521), 1, - sym_heredoc_end, + ACTIONS(1540), 1, + sym_comment, STATE(2276), 1, sym_text_interpolation, - [72130] = 5, + ACTIONS(4491), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72969] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4461), 1, - anon_sym_LPAREN, - STATE(28), 1, - sym_parenthesized_expression, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(455), 1, + sym_declaration_list, STATE(2277), 1, sym_text_interpolation, - [72146] = 5, + [72985] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4026), 1, + ACTIONS(3243), 1, anon_sym_LPAREN, + STATE(1615), 1, + sym_formal_parameters, STATE(2278), 1, sym_text_interpolation, - STATE(2321), 1, - sym_parenthesized_expression, - [72162] = 5, + [73001] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4026), 1, + ACTIONS(3243), 1, anon_sym_LPAREN, - STATE(2011), 1, - sym_parenthesized_expression, + STATE(1594), 1, + sym_formal_parameters, STATE(2279), 1, sym_text_interpolation, - [72178] = 5, + [73017] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4486), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(4523), 1, - aux_sym_namespace_use_declaration_token2, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1724), 1, + sym_declaration_list, STATE(2280), 1, sym_text_interpolation, - [72194] = 4, + [73033] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3092), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(4493), 1, + aux_sym_namespace_use_declaration_token2, STATE(2281), 1, sym_text_interpolation, - ACTIONS(4012), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [72208] = 4, + [73049] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4495), 1, + anon_sym_LPAREN, + STATE(2257), 1, + sym_parenthesized_expression, STATE(2282), 1, sym_text_interpolation, - ACTIONS(4525), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72222] = 4, + [73065] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3644), 1, + anon_sym_LBRACE, + STATE(2027), 1, + sym_enum_declaration_list, STATE(2283), 1, sym_text_interpolation, - ACTIONS(4527), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72236] = 5, + [73081] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3339), 1, anon_sym_LBRACE, - STATE(1091), 1, - sym_compound_statement, + STATE(2031), 1, + sym_declaration_list, STATE(2284), 1, sym_text_interpolation, - [72252] = 4, + [73097] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2285), 1, sym_text_interpolation, - ACTIONS(4529), 2, + ACTIONS(4497), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72266] = 4, + [73111] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4499), 1, + anon_sym_LBRACE, + STATE(436), 1, + sym_compound_statement, STATE(2286), 1, sym_text_interpolation, - ACTIONS(4531), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72280] = 4, + [73127] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4495), 1, + anon_sym_LPAREN, STATE(2287), 1, sym_text_interpolation, - ACTIONS(4533), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72294] = 4, + STATE(2361), 1, + sym_parenthesized_expression, + [73143] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1092), 1, + sym_declaration_list, STATE(2288), 1, sym_text_interpolation, - ACTIONS(2497), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72308] = 5, + [73159] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1097), 1, - sym_compound_statement, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1624), 1, + sym_formal_parameters, STATE(2289), 1, sym_text_interpolation, - [72324] = 5, + [73175] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3256), 1, - anon_sym_LPAREN, - STATE(1595), 1, - sym_formal_parameters, + STATE(962), 1, + sym_compound_statement, STATE(2290), 1, sym_text_interpolation, - [72340] = 5, + [73191] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4461), 1, + ACTIONS(4501), 1, anon_sym_LPAREN, - STATE(46), 1, - sym_parenthesized_expression, + STATE(1710), 1, + sym_formal_parameters, STATE(2291), 1, sym_text_interpolation, - [72356] = 5, + [73207] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4456), 1, - sym_name, STATE(2292), 1, sym_text_interpolation, - STATE(2491), 1, - sym_namespace_name, - [72372] = 5, + ACTIONS(1658), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [73221] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3448), 1, - anon_sym_LBRACE, - STATE(439), 1, - sym_declaration_list, STATE(2293), 1, sym_text_interpolation, - [72388] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(4503), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [73235] = 5, + ACTIONS(5), 1, sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4505), 1, + sym__new_line, + ACTIONS(4507), 1, + sym_heredoc_end, STATE(2294), 1, sym_text_interpolation, - ACTIONS(4535), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72402] = 5, + [73251] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3256), 1, - anon_sym_LPAREN, - STATE(2018), 1, - sym_formal_parameters, + STATE(2000), 1, + sym_compound_statement, STATE(2295), 1, sym_text_interpolation, - [72418] = 5, + [73267] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3448), 1, - anon_sym_LBRACE, - STATE(436), 1, - sym_declaration_list, + ACTIONS(2456), 1, + anon_sym_COLON, + ACTIONS(4443), 1, + anon_sym_LPAREN, STATE(2296), 1, sym_text_interpolation, - [72434] = 5, + [73283] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3448), 1, + ACTIONS(4509), 1, anon_sym_LBRACE, - STATE(437), 1, - sym_declaration_list, + STATE(927), 1, + sym_match_block, STATE(2297), 1, sym_text_interpolation, - [72450] = 4, + [73299] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2298), 1, sym_text_interpolation, - ACTIONS(4016), 2, + ACTIONS(4511), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72464] = 5, + [73313] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(963), 1, - sym_compound_statement, STATE(2299), 1, sym_text_interpolation, - [72480] = 5, + ACTIONS(4513), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73327] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(956), 1, - sym_compound_statement, STATE(2300), 1, sym_text_interpolation, - [72496] = 5, + ACTIONS(2542), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [73341] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3339), 1, anon_sym_LBRACE, - STATE(1121), 1, - sym_compound_statement, + STATE(2052), 1, + sym_declaration_list, STATE(2301), 1, sym_text_interpolation, - [72512] = 5, + [73357] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3675), 1, - anon_sym_LBRACE, - STATE(513), 1, - sym_enum_declaration_list, + ACTIONS(4501), 1, + anon_sym_LPAREN, + STATE(1660), 1, + sym_formal_parameters, STATE(2302), 1, sym_text_interpolation, - [72528] = 5, + [73373] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1741), 1, - anon_sym_BSLASH, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1597), 1, + sym_formal_parameters, STATE(2303), 1, sym_text_interpolation, - STATE(2377), 1, - aux_sym_namespace_name_repeat1, - [72544] = 5, + [73389] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1102), 1, - sym_compound_statement, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1606), 1, + sym_formal_parameters, STATE(2304), 1, sym_text_interpolation, - [72560] = 4, + [73405] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(2118), 1, + sym_formal_parameters, STATE(2305), 1, sym_text_interpolation, - ACTIONS(4537), 2, - anon_sym_string, - anon_sym_int, - [72574] = 5, + [73421] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3835), 1, - anon_sym_LBRACE, - STATE(550), 1, - sym_declaration_list, STATE(2306), 1, sym_text_interpolation, - [72590] = 4, + ACTIONS(4103), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [73435] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2307), 1, sym_text_interpolation, - ACTIONS(2493), 2, + ACTIONS(3972), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_RPAREN, - [72604] = 5, + [73449] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(3438), 1, + ACTIONS(401), 1, anon_sym_LBRACE, - STATE(1103), 1, + ACTIONS(1540), 1, + sym_comment, + STATE(2068), 1, sym_compound_statement, STATE(2308), 1, sym_text_interpolation, - [72620] = 5, + [73465] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1114), 1, - sym_compound_statement, STATE(2309), 1, sym_text_interpolation, - [72636] = 4, + ACTIONS(4515), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [73479] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4405), 1, + anon_sym_LPAREN, + STATE(20), 1, + sym_parenthesized_expression, STATE(2310), 1, sym_text_interpolation, - ACTIONS(4539), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [72650] = 5, + [73495] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3360), 1, - anon_sym_LBRACE, - STATE(1728), 1, - sym_declaration_list, + ACTIONS(1723), 1, + anon_sym_DOLLAR, STATE(2311), 1, sym_text_interpolation, - [72666] = 4, + STATE(2434), 1, + sym_variable_name, + [73511] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2312), 1, sym_text_interpolation, - ACTIONS(4541), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72680] = 5, + ACTIONS(4155), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [73525] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4543), 1, - anon_sym_LPAREN, STATE(2313), 1, sym_text_interpolation, - STATE(2326), 1, - sym_parenthesized_expression, - [72696] = 5, + ACTIONS(2478), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [73539] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3675), 1, - anon_sym_LBRACE, - STATE(495), 1, - sym_enum_declaration_list, STATE(2314), 1, sym_text_interpolation, - [72712] = 4, + ACTIONS(2470), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [73553] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2315), 1, sym_text_interpolation, - ACTIONS(4545), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72726] = 4, + ACTIONS(4517), 2, + anon_sym_string, + anon_sym_int, + [73567] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1654), 1, + sym_formal_parameters, STATE(2316), 1, sym_text_interpolation, - ACTIONS(4547), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72740] = 5, + [73583] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1070), 1, - sym_compound_statement, STATE(2317), 1, sym_text_interpolation, - [72756] = 5, + ACTIONS(4519), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73597] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3256), 1, - anon_sym_LPAREN, - STATE(2027), 1, - sym_formal_parameters, + ACTIONS(1698), 1, + anon_sym_BSLASH, + STATE(2243), 1, + aux_sym_namespace_name_repeat1, STATE(2318), 1, sym_text_interpolation, - [72772] = 4, + [73613] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2319), 1, sym_text_interpolation, - ACTIONS(4549), 2, + ACTIONS(4521), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72786] = 5, + [73627] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - STATE(2175), 1, - sym_variable_name, STATE(2320), 1, sym_text_interpolation, - [72802] = 5, + ACTIONS(4523), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73641] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4551), 1, - anon_sym_LBRACE, - STATE(958), 1, - sym_match_block, STATE(2321), 1, sym_text_interpolation, - [72818] = 4, + ACTIONS(4525), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73655] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2322), 1, sym_text_interpolation, - ACTIONS(4432), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [72832] = 5, + ACTIONS(4527), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73669] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1099), 1, - sym_compound_statement, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(2124), 1, + sym_variable_name, STATE(2323), 1, sym_text_interpolation, - [72848] = 5, + [73685] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3448), 1, - anon_sym_LBRACE, - STATE(454), 1, - sym_declaration_list, STATE(2324), 1, sym_text_interpolation, - [72864] = 5, + ACTIONS(4529), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73699] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4553), 1, - anon_sym_LPAREN, - ACTIONS(4555), 1, - anon_sym_RPAREN, + ACTIONS(1723), 1, + anon_sym_DOLLAR, STATE(2325), 1, sym_text_interpolation, - [72880] = 4, + STATE(2435), 1, + sym_variable_name, + [73715] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2326), 1, sym_text_interpolation, - ACTIONS(4557), 2, + ACTIONS(4198), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72894] = 5, + [73729] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4461), 1, - anon_sym_LPAREN, - STATE(77), 1, - sym_parenthesized_expression, + ACTIONS(2556), 1, + anon_sym_RPAREN, + ACTIONS(4463), 1, + anon_sym_EQ, STATE(2327), 1, sym_text_interpolation, - [72910] = 4, + [73745] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(1723), 1, + anon_sym_DOLLAR, STATE(2328), 1, sym_text_interpolation, - ACTIONS(4559), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72924] = 4, + STATE(2432), 1, + sym_variable_name, + [73761] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2329), 1, sym_text_interpolation, - ACTIONS(4561), 2, + ACTIONS(4531), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72938] = 5, + [73775] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1143), 1, - sym_compound_statement, STATE(2330), 1, sym_text_interpolation, - [72954] = 4, + ACTIONS(493), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73789] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3423), 1, + anon_sym_LBRACE, + STATE(1062), 1, + sym_compound_statement, STATE(2331), 1, sym_text_interpolation, - ACTIONS(2493), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72968] = 4, + [73805] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2332), 1, sym_text_interpolation, - ACTIONS(3450), 2, + ACTIONS(4533), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72982] = 4, + [73819] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2333), 1, sym_text_interpolation, - ACTIONS(4563), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72996] = 5, + ACTIONS(4147), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [73833] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3448), 1, + ACTIONS(3423), 1, anon_sym_LBRACE, - STATE(442), 1, - sym_declaration_list, + STATE(1054), 1, + sym_compound_statement, STATE(2334), 1, sym_text_interpolation, - [73012] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + [73849] = 4, + ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(1540), 1, + sym_comment, STATE(2335), 1, sym_text_interpolation, - ACTIONS(3928), 2, - sym_heredoc_end, - sym__new_line, - [73026] = 5, + ACTIONS(4535), 2, + anon_sym_LBRACE, + anon_sym_COLON, + [73863] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3256), 1, - anon_sym_LPAREN, - STATE(1605), 1, - sym_formal_parameters, + ACTIONS(3423), 1, + anon_sym_LBRACE, + STATE(1139), 1, + sym_compound_statement, STATE(2336), 1, sym_text_interpolation, - [73042] = 5, + [73879] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2541), 1, - anon_sym_RPAREN, - ACTIONS(4467), 1, - anon_sym_EQ, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(446), 1, + sym_declaration_list, STATE(2337), 1, sym_text_interpolation, - [73058] = 5, + [73895] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4461), 1, - anon_sym_LPAREN, - STATE(55), 1, - sym_parenthesized_expression, + ACTIONS(2670), 1, + anon_sym_RPAREN, + ACTIONS(4463), 1, + anon_sym_EQ, STATE(2338), 1, sym_text_interpolation, - [73074] = 5, + [73911] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(2008), 1, - sym_colon_block, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1618), 1, + sym_formal_parameters, STATE(2339), 1, sym_text_interpolation, - [73090] = 5, + [73927] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4565), 1, - anon_sym_LBRACE, - STATE(1089), 1, - sym_match_block, STATE(2340), 1, sym_text_interpolation, - [73106] = 5, + ACTIONS(2478), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73941] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - STATE(2235), 1, - sym_variable_name, STATE(2341), 1, sym_text_interpolation, - [73122] = 5, + ACTIONS(4537), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73955] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3354), 1, - anon_sym_LBRACE, - STATE(922), 1, - sym_declaration_list, STATE(2342), 1, sym_text_interpolation, - [73138] = 4, + ACTIONS(4539), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73969] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2343), 1, sym_text_interpolation, - ACTIONS(4567), 2, + ACTIONS(551), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73152] = 5, + [73983] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4569), 1, - anon_sym_SEMI, - ACTIONS(4571), 1, - sym__automatic_semicolon, + ACTIONS(4499), 1, + anon_sym_LBRACE, + STATE(432), 1, + sym_compound_statement, STATE(2344), 1, sym_text_interpolation, - [73168] = 4, + [73999] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2345), 1, sym_text_interpolation, - ACTIONS(4573), 2, + ACTIONS(4541), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73182] = 4, + [74013] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2346), 1, sym_text_interpolation, - ACTIONS(4575), 2, - anon_sym_string, - anon_sym_int, - [73196] = 5, + ACTIONS(4543), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74027] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3354), 1, - anon_sym_LBRACE, - STATE(911), 1, - sym_declaration_list, STATE(2347), 1, sym_text_interpolation, - [73212] = 5, + ACTIONS(4545), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74041] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3256), 1, - anon_sym_LPAREN, - STATE(1598), 1, - sym_formal_parameters, STATE(2348), 1, sym_text_interpolation, - [73228] = 4, + ACTIONS(4253), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [74055] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2349), 1, sym_text_interpolation, - ACTIONS(4577), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73242] = 5, + ACTIONS(4547), 2, + anon_sym_LBRACE, + anon_sym_COLON, + [74069] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3360), 1, - anon_sym_LBRACE, - STATE(1071), 1, - sym_declaration_list, STATE(2350), 1, sym_text_interpolation, - [73258] = 4, + ACTIONS(4549), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [74083] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2351), 1, sym_text_interpolation, - ACTIONS(4579), 2, + ACTIONS(4551), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73272] = 4, + [74097] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2352), 1, sym_text_interpolation, - ACTIONS(4581), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73286] = 5, + ACTIONS(4264), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [74111] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - STATE(2233), 1, - sym_variable_name, STATE(2353), 1, sym_text_interpolation, - [73302] = 4, + ACTIONS(4553), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [74125] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(447), 1, + sym_declaration_list, STATE(2354), 1, sym_text_interpolation, - ACTIONS(4583), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [73316] = 4, + [74141] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2355), 1, sym_text_interpolation, - ACTIONS(4385), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [73330] = 4, + ACTIONS(4555), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74155] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3423), 1, + anon_sym_LBRACE, + STATE(1078), 1, + sym_compound_statement, STATE(2356), 1, sym_text_interpolation, - ACTIONS(4586), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73344] = 4, + [74171] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3423), 1, + anon_sym_LBRACE, + STATE(1095), 1, + sym_compound_statement, STATE(2357), 1, sym_text_interpolation, - ACTIONS(3240), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [73358] = 5, + [74187] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2651), 1, - anon_sym_RPAREN, - ACTIONS(4467), 1, - anon_sym_EQ, + ACTIONS(3592), 1, + anon_sym_LBRACE, + STATE(468), 1, + sym_enum_declaration_list, STATE(2358), 1, sym_text_interpolation, - [73374] = 5, + [74203] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3360), 1, + ACTIONS(3423), 1, anon_sym_LBRACE, - STATE(1713), 1, - sym_declaration_list, + STATE(1108), 1, + sym_compound_statement, STATE(2359), 1, sym_text_interpolation, - [73390] = 5, + [74219] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - STATE(2158), 1, - sym_variable_name, + ACTIONS(3423), 1, + anon_sym_LBRACE, + STATE(1109), 1, + sym_compound_statement, STATE(2360), 1, sym_text_interpolation, - [73406] = 5, + [74235] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3354), 1, - anon_sym_LBRACE, - STATE(2100), 1, - sym_declaration_list, - STATE(2361), 1, - sym_text_interpolation, - [73422] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + STATE(2361), 1, + sym_text_interpolation, + ACTIONS(4557), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74249] = 4, + ACTIONS(5), 1, sym_comment, - STATE(932), 1, - sym_compound_statement, + ACTIONS(11), 1, + anon_sym_QMARK_GT, STATE(2362), 1, sym_text_interpolation, - [73438] = 5, + ACTIONS(3978), 2, + sym_heredoc_end, + sym__new_line, + [74263] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - STATE(2223), 1, - sym_variable_name, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(2119), 1, + sym_formal_parameters, STATE(2363), 1, sym_text_interpolation, - [73454] = 4, + [74279] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2364), 1, sym_text_interpolation, - ACTIONS(4588), 2, + ACTIONS(3175), 2, anon_sym_COMMA, anon_sym_RPAREN, - [73468] = 5, + [74293] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4452), 1, - anon_sym_LBRACE, - STATE(429), 1, - sym_compound_statement, STATE(2365), 1, sym_text_interpolation, - [73484] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + ACTIONS(4559), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [74307] = 5, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(4590), 1, - sym__new_line, - ACTIONS(4592), 1, - sym_heredoc_end, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1113), 1, + sym_declaration_list, STATE(2366), 1, sym_text_interpolation, - [73500] = 4, + [74323] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2367), 1, sym_text_interpolation, - ACTIONS(3871), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73514] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + ACTIONS(4329), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [74337] = 5, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(4594), 1, - sym__new_line, - ACTIONS(4596), 1, - sym_heredoc_end, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(4561), 1, + anon_sym_SEMI, + ACTIONS(4563), 1, + sym__automatic_semicolon, STATE(2368), 1, sym_text_interpolation, - [73530] = 4, + [74353] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4405), 1, + anon_sym_LPAREN, + STATE(78), 1, + sym_parenthesized_expression, STATE(2369), 1, sym_text_interpolation, - ACTIONS(4230), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [73544] = 4, + [74369] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2370), 1, sym_text_interpolation, - ACTIONS(4598), 2, + ACTIONS(4565), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73558] = 5, + [74383] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4478), 1, - anon_sym_LPAREN, - STATE(1729), 1, - sym_formal_parameters, + ACTIONS(4499), 1, + anon_sym_LBRACE, + STATE(434), 1, + sym_compound_statement, STATE(2371), 1, sym_text_interpolation, - [73574] = 5, + [74399] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3448), 1, - anon_sym_LBRACE, - STATE(446), 1, - sym_declaration_list, STATE(2372), 1, sym_text_interpolation, - [73590] = 4, + ACTIONS(4567), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74413] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4094), 1, + anon_sym_LPAREN, STATE(2373), 1, sym_text_interpolation, - ACTIONS(4600), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73604] = 4, + STATE(2409), 1, + sym_parenthesized_expression, + [74429] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2374), 1, sym_text_interpolation, - ACTIONS(4602), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73618] = 4, + ACTIONS(4569), 2, + anon_sym_LBRACE, + anon_sym_COLON, + [74443] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2375), 1, sym_text_interpolation, - ACTIONS(4604), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73632] = 4, + ACTIONS(4571), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [74457] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(2350), 1, + sym_variable_name, STATE(2376), 1, sym_text_interpolation, - ACTIONS(524), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73646] = 5, + [74473] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4606), 1, - anon_sym_BSLASH, - STATE(1700), 1, - aux_sym_namespace_name_repeat1, STATE(2377), 1, sym_text_interpolation, - [73662] = 5, + ACTIONS(4573), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [74487] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1107), 1, - sym_compound_statement, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(2116), 1, + sym_variable_name, STATE(2378), 1, sym_text_interpolation, - [73678] = 5, + [74503] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(930), 1, - sym_compound_statement, STATE(2379), 1, sym_text_interpolation, - [73694] = 5, + ACTIONS(4575), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [74517] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3360), 1, - anon_sym_LBRACE, - STATE(1678), 1, - sym_declaration_list, STATE(2380), 1, sym_text_interpolation, - [73710] = 4, + ACTIONS(4577), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [74531] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2381), 1, sym_text_interpolation, - ACTIONS(2593), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [73724] = 4, + ACTIONS(4579), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74545] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2382), 1, sym_text_interpolation, - ACTIONS(540), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73738] = 5, + ACTIONS(3935), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [74559] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1673), 1, - sym_compound_statement, STATE(2383), 1, sym_text_interpolation, - [73754] = 4, + ACTIONS(4581), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74573] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(448), 1, + sym_declaration_list, STATE(2384), 1, sym_text_interpolation, - ACTIONS(4609), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73768] = 5, + [74589] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(955), 1, - sym_compound_statement, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(449), 1, + sym_declaration_list, STATE(2385), 1, sym_text_interpolation, - [73784] = 5, + [74605] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(383), 1, + anon_sym_COLON, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4513), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(4611), 1, - aux_sym_namespace_use_declaration_token2, STATE(2386), 1, sym_text_interpolation, - [73800] = 5, + STATE(2463), 1, + sym_colon_block, + [74621] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(933), 1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + STATE(1105), 1, sym_compound_statement, STATE(2387), 1, sym_text_interpolation, - [73816] = 5, + [74637] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3256), 1, - anon_sym_LPAREN, - STATE(2177), 1, - sym_formal_parameters, STATE(2388), 1, sym_text_interpolation, - [73832] = 5, + ACTIONS(4235), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [74651] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(973), 1, - sym_compound_statement, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(451), 1, + sym_declaration_list, STATE(2389), 1, sym_text_interpolation, - [73848] = 5, + [74667] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3360), 1, + ACTIONS(3423), 1, anon_sym_LBRACE, - STATE(1669), 1, - sym_declaration_list, + STATE(1097), 1, + sym_compound_statement, STATE(2390), 1, sym_text_interpolation, - [73864] = 4, + [74683] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3423), 1, + anon_sym_LBRACE, + STATE(1094), 1, + sym_compound_statement, STATE(2391), 1, sym_text_interpolation, - ACTIONS(1705), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [73878] = 5, + [74699] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3360), 1, - anon_sym_LBRACE, - STATE(1668), 1, - sym_declaration_list, STATE(2392), 1, sym_text_interpolation, - [73894] = 5, + ACTIONS(4583), 2, + anon_sym_SEMI, + anon_sym_COLON, + [74713] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3544), 1, + ACTIONS(3423), 1, anon_sym_LBRACE, - STATE(2002), 1, - sym_enum_declaration_list, + STATE(1090), 1, + sym_compound_statement, STATE(2393), 1, sym_text_interpolation, - [73910] = 5, + [74729] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(971), 1, + ACTIONS(3423), 1, + anon_sym_LBRACE, + STATE(1087), 1, sym_compound_statement, STATE(2394), 1, sym_text_interpolation, - [73926] = 5, + [74745] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3256), 1, - anon_sym_LPAREN, - STATE(2182), 1, - sym_formal_parameters, STATE(2395), 1, sym_text_interpolation, - [73942] = 4, + ACTIONS(2524), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [74759] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2396), 1, sym_text_interpolation, - ACTIONS(4234), 2, + ACTIONS(4391), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [73956] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, + anon_sym_RPAREN, + [74773] = 5, + ACTIONS(5), 1, sym_comment, - ACTIONS(3256), 1, - anon_sym_LPAREN, - STATE(1606), 1, - sym_formal_parameters, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4585), 1, + sym__new_line, + ACTIONS(4587), 1, + sym_heredoc_end, STATE(2397), 1, sym_text_interpolation, - [73972] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(225), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + [74789] = 5, + ACTIONS(5), 1, sym_comment, - STATE(528), 1, - sym_compound_statement, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4589), 1, + sym__new_line, + ACTIONS(4591), 1, + sym_heredoc_end, STATE(2398), 1, sym_text_interpolation, - [73988] = 5, + [74805] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(942), 1, - sym_compound_statement, STATE(2399), 1, sym_text_interpolation, - [74004] = 5, + ACTIONS(3435), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74819] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3360), 1, - anon_sym_LBRACE, - STATE(1662), 1, - sym_declaration_list, STATE(2400), 1, sym_text_interpolation, - [74020] = 4, + ACTIONS(3286), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [74833] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2401), 1, sym_text_interpolation, - ACTIONS(2551), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [74034] = 5, + ACTIONS(4593), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74847] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3544), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - STATE(1922), 1, - sym_enum_declaration_list, + STATE(1068), 1, + sym_declaration_list, STATE(2402), 1, sym_text_interpolation, - [74050] = 5, + [74863] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3360), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - STATE(1658), 1, + STATE(1067), 1, sym_declaration_list, STATE(2403), 1, sym_text_interpolation, - [74066] = 5, + [74879] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2485), 1, - anon_sym_COLON, - ACTIONS(4553), 1, - anon_sym_LPAREN, STATE(2404), 1, sym_text_interpolation, - [74082] = 5, + ACTIONS(4595), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74893] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3354), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, - STATE(914), 1, + STATE(1143), 1, sym_declaration_list, STATE(2405), 1, sym_text_interpolation, - [74098] = 5, + [74909] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3448), 1, - anon_sym_LBRACE, - STATE(452), 1, - sym_declaration_list, + ACTIONS(4597), 1, + anon_sym_SEMI, + ACTIONS(4599), 1, + sym__automatic_semicolon, STATE(2406), 1, sym_text_interpolation, - [74114] = 5, + [74925] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4613), 1, - anon_sym_SEMI, - ACTIONS(4615), 1, - sym__automatic_semicolon, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(1149), 1, + sym_declaration_list, STATE(2407), 1, sym_text_interpolation, - [74130] = 5, + [74941] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4456), 1, - sym_name, STATE(2408), 1, sym_text_interpolation, - STATE(2515), 1, - sym_namespace_name, - [74146] = 5, + ACTIONS(1660), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [74955] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(465), 1, + anon_sym_COLON, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3360), 1, - anon_sym_LBRACE, - STATE(1072), 1, - sym_declaration_list, + STATE(2109), 1, + sym_colon_block, STATE(2409), 1, sym_text_interpolation, - [74162] = 5, + [74971] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(1721), 1, - sym_compound_statement, + ACTIONS(2548), 1, + anon_sym_RPAREN, + ACTIONS(4463), 1, + anon_sym_EQ, STATE(2410), 1, sym_text_interpolation, - [74178] = 5, + [74987] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4617), 1, - anon_sym_SEMI, - ACTIONS(4619), 1, - sym__automatic_semicolon, STATE(2411), 1, sym_text_interpolation, - [74194] = 4, + ACTIONS(4601), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [75001] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4405), 1, + anon_sym_LPAREN, + STATE(65), 1, + sym_parenthesized_expression, STATE(2412), 1, sym_text_interpolation, - ACTIONS(4621), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [74208] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + [75017] = 4, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(4623), 1, - sym__new_line, - ACTIONS(4625), 1, - sym_heredoc_end, + ACTIONS(1540), 1, + sym_comment, STATE(2413), 1, sym_text_interpolation, - [74224] = 4, + ACTIONS(4192), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [75031] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2414), 1, sym_text_interpolation, - ACTIONS(4627), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [74238] = 5, + ACTIONS(2482), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [75045] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1104), 1, - sym_compound_statement, STATE(2415), 1, sym_text_interpolation, - [74254] = 4, + ACTIONS(2538), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [75059] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3423), 1, + anon_sym_LBRACE, + STATE(1125), 1, + sym_compound_statement, STATE(2416), 1, sym_text_interpolation, - ACTIONS(2497), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74268] = 4, + [75075] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3423), 1, + anon_sym_LBRACE, + STATE(1141), 1, + sym_compound_statement, STATE(2417), 1, sym_text_interpolation, - ACTIONS(4629), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [74282] = 4, + [75091] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2418), 1, sym_text_interpolation, - ACTIONS(4631), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [74296] = 5, + ACTIONS(4604), 2, + anon_sym_string, + anon_sym_int, + [75105] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4461), 1, - anon_sym_LPAREN, - STATE(58), 1, - sym_parenthesized_expression, + ACTIONS(3592), 1, + anon_sym_LBRACE, + STATE(510), 1, + sym_enum_declaration_list, STATE(2419), 1, sym_text_interpolation, - [74312] = 5, + [75121] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(909), 1, - sym_compound_statement, STATE(2420), 1, sym_text_interpolation, - [74328] = 5, + ACTIONS(4606), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [75135] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3360), 1, + ACTIONS(3592), 1, anon_sym_LBRACE, - STATE(1743), 1, - sym_declaration_list, + STATE(514), 1, + sym_enum_declaration_list, STATE(2421), 1, sym_text_interpolation, - [74344] = 4, + [75151] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(441), 1, + sym_declaration_list, STATE(2422), 1, sym_text_interpolation, - ACTIONS(3264), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [74358] = 5, + [75167] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(912), 1, - sym_compound_statement, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1642), 1, + sym_formal_parameters, STATE(2423), 1, sym_text_interpolation, - [74374] = 4, + [75183] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(2375), 1, + sym_variable_name, STATE(2424), 1, sym_text_interpolation, - ACTIONS(4205), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [74388] = 5, + [75199] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3360), 1, + ACTIONS(3423), 1, anon_sym_LBRACE, - STATE(1748), 1, - sym_declaration_list, + STATE(1102), 1, + sym_compound_statement, STATE(2425), 1, sym_text_interpolation, - [74404] = 5, + [75215] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4461), 1, + ACTIONS(3243), 1, anon_sym_LPAREN, - STATE(57), 1, - sym_parenthesized_expression, + STATE(2162), 1, + sym_formal_parameters, STATE(2426), 1, sym_text_interpolation, - [74420] = 5, + [75231] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(949), 1, - sym_compound_statement, + ACTIONS(3419), 1, + anon_sym_LBRACE, + STATE(438), 1, + sym_declaration_list, STATE(2427), 1, sym_text_interpolation, - [74436] = 5, + [75247] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3360), 1, - anon_sym_LBRACE, - STATE(1109), 1, - sym_declaration_list, + ACTIONS(4608), 1, + sym_name, + STATE(1846), 1, + sym_namespace_name, STATE(2428), 1, sym_text_interpolation, - [74452] = 5, + [75263] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(968), 1, - sym_compound_statement, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(2377), 1, + sym_variable_name, STATE(2429), 1, sym_text_interpolation, - [74468] = 5, + [75279] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3360), 1, - anon_sym_LBRACE, - STATE(1113), 1, - sym_declaration_list, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(2154), 1, + sym_variable_name, STATE(2430), 1, sym_text_interpolation, - [74484] = 5, + [75295] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1096), 1, - sym_compound_statement, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(2379), 1, + sym_variable_name, STATE(2431), 1, sym_text_interpolation, - [74500] = 5, + [75311] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - STATE(2364), 1, - sym_variable_name, STATE(2432), 1, sym_text_interpolation, - [74516] = 5, + ACTIONS(4610), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [75325] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3544), 1, - anon_sym_LBRACE, - STATE(1931), 1, - sym_enum_declaration_list, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(2380), 1, + sym_variable_name, STATE(2433), 1, sym_text_interpolation, - [74532] = 5, + [75341] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(924), 1, - sym_compound_statement, STATE(2434), 1, sym_text_interpolation, - [74548] = 5, + ACTIONS(4612), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [75355] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(910), 1, - sym_compound_statement, STATE(2435), 1, sym_text_interpolation, - [74564] = 5, + ACTIONS(4614), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [75369] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3360), 1, - anon_sym_LBRACE, - STATE(1706), 1, - sym_declaration_list, + ACTIONS(1723), 1, + anon_sym_DOLLAR, + STATE(2157), 1, + sym_variable_name, STATE(2436), 1, sym_text_interpolation, - [74580] = 4, + [75385] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, STATE(2437), 1, sym_text_interpolation, - ACTIONS(4633), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [74594] = 5, + ACTIONS(4289), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [75399] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4543), 1, - anon_sym_LPAREN, - STATE(2274), 1, - sym_parenthesized_expression, + ACTIONS(2620), 1, + anon_sym_RPAREN, + ACTIONS(4463), 1, + anon_sym_EQ, STATE(2438), 1, sym_text_interpolation, - [74610] = 4, + [75415] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4616), 1, + sym_name, STATE(2439), 1, sym_text_interpolation, - ACTIONS(4635), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [74624] = 5, + [75428] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4452), 1, - anon_sym_LBRACE, - STATE(430), 1, - sym_compound_statement, + ACTIONS(4618), 1, + anon_sym_BSLASH, STATE(2440), 1, sym_text_interpolation, - [74640] = 5, + [75441] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3256), 1, - anon_sym_LPAREN, - STATE(2109), 1, - sym_formal_parameters, + ACTIONS(4620), 1, + anon_sym_RPAREN, STATE(2441), 1, sym_text_interpolation, - [74656] = 5, + [75454] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(881), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4637), 1, - anon_sym_SEMI, - ACTIONS(4639), 1, - sym__automatic_semicolon, STATE(2442), 1, sym_text_interpolation, - [74672] = 5, + [75467] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4461), 1, - anon_sym_LPAREN, - STATE(18), 1, - sym_parenthesized_expression, + ACTIONS(4622), 1, + anon_sym_RPAREN, STATE(2443), 1, sym_text_interpolation, - [74688] = 5, + [75480] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(923), 1, + anon_sym_SEMI, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_LBRACE, - STATE(1087), 1, - sym_compound_statement, STATE(2444), 1, sym_text_interpolation, - [74704] = 4, + [75493] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4624), 1, + anon_sym_RPAREN, STATE(2445), 1, sym_text_interpolation, - ACTIONS(4641), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [74718] = 4, + [75506] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4137), 1, + anon_sym_LBRACE, STATE(2446), 1, sym_text_interpolation, - ACTIONS(4184), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [74732] = 5, + [75519] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3360), 1, - anon_sym_LBRACE, - STATE(1725), 1, - sym_declaration_list, + ACTIONS(4626), 1, + anon_sym_RPAREN, STATE(2447), 1, sym_text_interpolation, - [74748] = 5, + [75532] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3256), 1, - anon_sym_LPAREN, - STATE(1577), 1, - sym_formal_parameters, + ACTIONS(4628), 1, + anon_sym_EQ_GT, STATE(2448), 1, sym_text_interpolation, - [74764] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + [75545] = 4, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(4643), 1, - sym__new_line, - ACTIONS(4645), 1, - sym_heredoc_end, + ACTIONS(1540), 1, + sym_comment, + ACTIONS(4630), 1, + sym_name, STATE(2449), 1, sym_text_interpolation, - [74780] = 5, + [75558] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3448), 1, - anon_sym_LBRACE, - STATE(450), 1, - sym_declaration_list, + ACTIONS(4632), 1, + anon_sym_RPAREN, STATE(2450), 1, sym_text_interpolation, - [74796] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + [75571] = 4, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(4647), 1, - sym__new_line, - ACTIONS(4649), 1, - sym_heredoc_end, + ACTIONS(885), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, + sym_comment, STATE(2451), 1, sym_text_interpolation, - [74812] = 5, + [75584] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3675), 1, - anon_sym_LBRACE, - STATE(468), 1, - sym_enum_declaration_list, + ACTIONS(4634), 1, + anon_sym_SEMI, STATE(2452), 1, sym_text_interpolation, - [74828] = 4, + [75597] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4636), 1, + anon_sym_EQ_GT, STATE(2453), 1, sym_text_interpolation, - ACTIONS(4651), 2, - anon_sym_string, - anon_sym_int, - [74842] = 5, + [75610] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3835), 1, - anon_sym_LBRACE, - STATE(477), 1, - sym_declaration_list, + ACTIONS(4638), 1, + anon_sym_RPAREN, STATE(2454), 1, sym_text_interpolation, - [74858] = 5, + [75623] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - STATE(2115), 1, - sym_compound_statement, + ACTIONS(4640), 1, + anon_sym_COLON_COLON, STATE(2455), 1, sym_text_interpolation, - [74874] = 5, + [75636] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3354), 1, - anon_sym_LBRACE, - STATE(929), 1, - sym_declaration_list, + ACTIONS(4642), 1, + anon_sym_EQ, STATE(2456), 1, sym_text_interpolation, - [74890] = 5, + [75649] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3354), 1, - anon_sym_LBRACE, - STATE(928), 1, - sym_declaration_list, + ACTIONS(4644), 1, + sym_heredoc_end, STATE(2457), 1, sym_text_interpolation, - [74906] = 5, + [75662] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2587), 1, - anon_sym_RPAREN, - ACTIONS(4467), 1, - anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_RBRACK, STATE(2458), 1, sym_text_interpolation, - [74922] = 4, + [75675] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4648), 1, + sym_integer, STATE(2459), 1, sym_text_interpolation, - ACTIONS(4653), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [74936] = 4, + [75688] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4655), 1, - sym_name, + ACTIONS(4650), 1, + anon_sym_RBRACK, STATE(2460), 1, sym_text_interpolation, - [74949] = 4, + [75701] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4657), 1, + ACTIONS(4652), 1, anon_sym_EQ_GT, STATE(2461), 1, sym_text_interpolation, - [74962] = 4, + [75714] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4659), 1, - sym_name, + ACTIONS(2548), 1, + anon_sym_RPAREN, STATE(2462), 1, sym_text_interpolation, - [74975] = 4, + [75727] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4661), 1, - anon_sym_EQ, + ACTIONS(4654), 1, + aux_sym_if_statement_token2, STATE(2463), 1, sym_text_interpolation, - [74988] = 4, + [75740] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4663), 1, - anon_sym_EQ_GT, + ACTIONS(4656), 1, + anon_sym_COLON_COLON, STATE(2464), 1, sym_text_interpolation, - [75001] = 4, + [75753] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(892), 1, - anon_sym_RPAREN, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4658), 1, + aux_sym_if_statement_token2, STATE(2465), 1, sym_text_interpolation, - [75014] = 4, + [75766] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4665), 1, - anon_sym_EQ, + ACTIONS(4660), 1, + anon_sym_RBRACK, STATE(2466), 1, sym_text_interpolation, - [75027] = 4, + [75779] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2587), 1, - anon_sym_RPAREN, + ACTIONS(4662), 1, + anon_sym_EQ_GT, STATE(2467), 1, sym_text_interpolation, - [75040] = 4, + [75792] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4667), 1, - anon_sym_COLON_COLON, + ACTIONS(4664), 1, + anon_sym_EQ_GT, STATE(2468), 1, sym_text_interpolation, - [75053] = 4, + [75805] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4669), 1, - anon_sym_RPAREN, + ACTIONS(4666), 1, + anon_sym_EQ_GT, STATE(2469), 1, sym_text_interpolation, - [75066] = 4, + [75818] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(888), 1, - anon_sym_RPAREN, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4214), 1, + anon_sym_RBRACE, STATE(2470), 1, sym_text_interpolation, - [75079] = 4, + [75831] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4671), 1, - anon_sym_RPAREN, + ACTIONS(4668), 1, + aux_sym_if_statement_token2, STATE(2471), 1, sym_text_interpolation, - [75092] = 4, + [75844] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4673), 1, - anon_sym_RPAREN, + ACTIONS(4670), 1, + anon_sym_EQ_GT, STATE(2472), 1, sym_text_interpolation, - [75105] = 4, + [75857] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4675), 1, - anon_sym_RPAREN, + ACTIONS(4672), 1, + anon_sym_EQ_GT, STATE(2473), 1, sym_text_interpolation, - [75118] = 4, + [75870] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4179), 1, + ACTIONS(4674), 1, anon_sym_RPAREN, STATE(2474), 1, sym_text_interpolation, - [75131] = 4, + [75883] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4677), 1, + ACTIONS(893), 1, anon_sym_RPAREN, + ACTIONS(1540), 1, + sym_comment, STATE(2475), 1, sym_text_interpolation, - [75144] = 4, + [75896] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, + ACTIONS(4676), 1, + sym_heredoc_end, STATE(2476), 1, sym_text_interpolation, - [75157] = 4, + [75909] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4681), 1, - anon_sym_EQ_GT, + ACTIONS(4678), 1, + sym_heredoc_end, STATE(2477), 1, sym_text_interpolation, - [75170] = 4, + [75922] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4683), 1, - anon_sym_RPAREN, + ACTIONS(4680), 1, + anon_sym_EQ_GT, STATE(2478), 1, sym_text_interpolation, - [75183] = 4, + [75935] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4685), 1, - anon_sym_LPAREN, + ACTIONS(4682), 1, + anon_sym_RPAREN, STATE(2479), 1, sym_text_interpolation, - [75196] = 4, + [75948] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4687), 1, - anon_sym_EQ_GT, + ACTIONS(4684), 1, + aux_sym_foreach_statement_token2, STATE(2480), 1, sym_text_interpolation, - [75209] = 4, + [75961] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4689), 1, - sym_name, + ACTIONS(4686), 1, + anon_sym_RPAREN, STATE(2481), 1, sym_text_interpolation, - [75222] = 4, + [75974] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4691), 1, - anon_sym_EQ_GT, + ACTIONS(4688), 1, + aux_sym_foreach_statement_token2, STATE(2482), 1, sym_text_interpolation, - [75235] = 4, + [75987] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4693), 1, - anon_sym_SEMI, + ACTIONS(4690), 1, + anon_sym_EQ_GT, STATE(2483), 1, sym_text_interpolation, - [75248] = 4, + [76000] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4695), 1, + ACTIONS(2670), 1, anon_sym_RPAREN, STATE(2484), 1, sym_text_interpolation, - [75261] = 4, + [76013] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4697), 1, - anon_sym_RPAREN, + ACTIONS(4692), 1, + sym_name, STATE(2485), 1, sym_text_interpolation, - [75274] = 4, + [76026] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4165), 1, + ACTIONS(925), 1, anon_sym_RPAREN, + ACTIONS(1540), 1, + sym_comment, STATE(2486), 1, sym_text_interpolation, - [75287] = 4, + [76039] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4123), 1, - anon_sym_RBRACK, + ACTIONS(4694), 1, + sym_name, STATE(2487), 1, sym_text_interpolation, - [75300] = 4, + [76052] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_while_statement_token2, + ACTIONS(4696), 1, + anon_sym_RPAREN, STATE(2488), 1, sym_text_interpolation, - [75313] = 4, + [76065] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4701), 1, - sym_name, + ACTIONS(4149), 1, + anon_sym_LBRACE, STATE(2489), 1, sym_text_interpolation, - [75326] = 4, + [76078] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4703), 1, - sym_name, + ACTIONS(4698), 1, + aux_sym_if_statement_token2, STATE(2490), 1, sym_text_interpolation, - [75339] = 4, + [76091] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4705), 1, - anon_sym_BSLASH, + ACTIONS(2556), 1, + anon_sym_RPAREN, STATE(2491), 1, sym_text_interpolation, - [75352] = 4, + [76104] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(899), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4707), 1, - anon_sym_BSLASH, STATE(2492), 1, sym_text_interpolation, - [75365] = 4, + [76117] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4709), 1, - anon_sym_DQUOTE2, + ACTIONS(4700), 1, + aux_sym_if_statement_token2, STATE(2493), 1, sym_text_interpolation, - [75378] = 4, + [76130] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4711), 1, - anon_sym_SQUOTE2, + ACTIONS(4702), 1, + sym_name, STATE(2494), 1, sym_text_interpolation, - [75391] = 4, + [76143] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4232), 1, - sym_name, + ACTIONS(4704), 1, + anon_sym_EQ_GT, STATE(2495), 1, sym_text_interpolation, - [75404] = 4, + [76156] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4713), 1, + ACTIONS(4706), 1, anon_sym_BSLASH, STATE(2496), 1, sym_text_interpolation, - [75417] = 4, + [76169] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4213), 1, - anon_sym_RPAREN, + ACTIONS(4708), 1, + sym_name, STATE(2497), 1, sym_text_interpolation, - [75430] = 4, + [76182] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4467), 1, - anon_sym_EQ, + ACTIONS(4710), 1, + sym_name, STATE(2498), 1, sym_text_interpolation, - [75443] = 4, + [76195] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4715), 1, - sym_heredoc_end, + ACTIONS(4463), 1, + anon_sym_EQ, STATE(2499), 1, sym_text_interpolation, - [75456] = 4, + [76208] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4717), 1, + ACTIONS(4712), 1, anon_sym_COLON_COLON, STATE(2500), 1, sym_text_interpolation, - [75469] = 4, + [76221] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4719), 1, - sym_heredoc_end, + ACTIONS(3686), 1, + sym_name, STATE(2501), 1, sym_text_interpolation, - [75482] = 4, + [76234] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4721), 1, - sym_name, + ACTIONS(4714), 1, + anon_sym_EQ_GT, STATE(2502), 1, sym_text_interpolation, - [75495] = 4, + [76247] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4145), 1, - aux_sym_class_declaration_token1, + ACTIONS(4716), 1, + anon_sym_EQ, STATE(2503), 1, sym_text_interpolation, - [75508] = 4, + [76260] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4723), 1, - sym_name, + ACTIONS(4718), 1, + anon_sym_COLON_COLON, STATE(2504), 1, sym_text_interpolation, - [75521] = 4, + [76273] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(886), 1, - anon_sym_RPAREN, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4720), 1, + anon_sym_RPAREN, STATE(2505), 1, sym_text_interpolation, - [75534] = 4, + [76286] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4725), 1, - sym_name, + ACTIONS(4722), 1, + anon_sym_RPAREN, STATE(2506), 1, sym_text_interpolation, - [75547] = 4, + [76299] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4555), 1, - anon_sym_RPAREN, + ACTIONS(4724), 1, + sym_name, STATE(2507), 1, sym_text_interpolation, - [75560] = 4, + [76312] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4727), 1, - aux_sym_class_declaration_token1, + ACTIONS(4129), 1, + anon_sym_RPAREN, STATE(2508), 1, sym_text_interpolation, - [75573] = 4, + [76325] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3613), 1, - sym_name, + ACTIONS(4726), 1, + anon_sym_SQUOTE2, STATE(2509), 1, sym_text_interpolation, - [75586] = 4, + [76338] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4729), 1, - aux_sym_class_declaration_token1, + ACTIONS(4728), 1, + anon_sym_DQUOTE2, STATE(2510), 1, sym_text_interpolation, - [75599] = 4, + [76351] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4731), 1, + ACTIONS(4730), 1, sym_name, STATE(2511), 1, sym_text_interpolation, - [75612] = 4, + [76364] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4157), 1, - sym_name, + ACTIONS(4732), 1, + anon_sym_RPAREN, STATE(2512), 1, sym_text_interpolation, - [75625] = 4, + [76377] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4733), 1, + ACTIONS(4734), 1, sym_name, STATE(2513), 1, sym_text_interpolation, - [75638] = 4, + [76390] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4735), 1, + ACTIONS(4736), 1, sym_name, STATE(2514), 1, sym_text_interpolation, - [75651] = 4, + [76403] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4737), 1, - anon_sym_BSLASH, + ACTIONS(4022), 1, + anon_sym_RPAREN, STATE(2515), 1, sym_text_interpolation, - [75664] = 4, + [76416] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4739), 1, - sym_heredoc_start, + ACTIONS(4738), 1, + aux_sym_while_statement_token2, STATE(2516), 1, sym_text_interpolation, - [75677] = 4, + [76429] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4741), 1, - sym_heredoc_start, + ACTIONS(4740), 1, + anon_sym_SQUOTE2, STATE(2517), 1, sym_text_interpolation, - [75690] = 4, + [76442] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4743), 1, - anon_sym_RPAREN, + ACTIONS(4056), 1, + anon_sym_RBRACK, STATE(2518), 1, sym_text_interpolation, - [75703] = 4, + [76455] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(915), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4745), 1, - aux_sym_foreach_statement_token2, STATE(2519), 1, sym_text_interpolation, - [75716] = 4, + [76468] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4747), 1, + ACTIONS(4742), 1, anon_sym_RPAREN, STATE(2520), 1, sym_text_interpolation, - [75729] = 4, + [76481] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(922), 1, - anon_sym_RPAREN, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4744), 1, + anon_sym_SEMI, STATE(2521), 1, sym_text_interpolation, - [75742] = 4, + [76494] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4749), 1, - anon_sym_RPAREN, + ACTIONS(4746), 1, + anon_sym_DQUOTE2, STATE(2522), 1, sym_text_interpolation, - [75755] = 4, + [76507] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4751), 1, - anon_sym_RPAREN, + ACTIONS(4748), 1, + sym_name, STATE(2523), 1, sym_text_interpolation, - [75768] = 4, + [76520] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4753), 1, - anon_sym_RBRACK, + ACTIONS(4750), 1, + anon_sym_RPAREN, STATE(2524), 1, sym_text_interpolation, - [75781] = 4, + [76533] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4755), 1, - aux_sym_if_statement_token2, + ACTIONS(4752), 1, + anon_sym_LPAREN, STATE(2525), 1, sym_text_interpolation, - [75794] = 4, + [76546] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4757), 1, - anon_sym_EQ_GT, + ACTIONS(4754), 1, + anon_sym_RPAREN, STATE(2526), 1, sym_text_interpolation, - [75807] = 4, + [76559] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4759), 1, - sym_heredoc_end, + ACTIONS(4756), 1, + anon_sym_EQ, STATE(2527), 1, sym_text_interpolation, - [75820] = 4, + [76572] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4761), 1, - anon_sym_RBRACK, + ACTIONS(4758), 1, + anon_sym_RPAREN, STATE(2528), 1, sym_text_interpolation, - [75833] = 4, + [76585] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2651), 1, + ACTIONS(4088), 1, anon_sym_RPAREN, STATE(2529), 1, sym_text_interpolation, - [75846] = 4, + [76598] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(918), 1, - anon_sym_RPAREN, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4760), 1, + aux_sym_while_statement_token2, STATE(2530), 1, sym_text_interpolation, - [75859] = 4, + [76611] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4763), 1, - sym_heredoc_end, + ACTIONS(4762), 1, + anon_sym_RPAREN, STATE(2531), 1, sym_text_interpolation, - [75872] = 4, + [76624] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4765), 1, - aux_sym_class_declaration_token1, + ACTIONS(4764), 1, + anon_sym_EQ_GT, STATE(2532), 1, sym_text_interpolation, - [75885] = 4, + [76637] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4767), 1, - anon_sym_EQ_GT, + ACTIONS(4026), 1, + anon_sym_RPAREN, STATE(2533), 1, sym_text_interpolation, - [75898] = 4, + [76650] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4769), 1, - anon_sym_EQ, + ACTIONS(4014), 1, + anon_sym_RBRACK, STATE(2534), 1, sym_text_interpolation, - [75911] = 4, + [76663] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4771), 1, - anon_sym_COLON_COLON, + ACTIONS(4766), 1, + sym_name, STATE(2535), 1, sym_text_interpolation, - [75924] = 4, + [76676] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4773), 1, - anon_sym_RPAREN, + ACTIONS(4768), 1, + sym_name, STATE(2536), 1, sym_text_interpolation, - [75937] = 4, + [76689] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4775), 1, - sym_name, + ACTIONS(4770), 1, + anon_sym_RPAREN, STATE(2537), 1, sym_text_interpolation, - [75950] = 4, + [76702] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4777), 1, - aux_sym_if_statement_token2, + ACTIONS(4042), 1, + anon_sym_RPAREN, STATE(2538), 1, sym_text_interpolation, - [75963] = 4, + [76715] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4779), 1, - aux_sym_if_statement_token2, + ACTIONS(4772), 1, + anon_sym_LPAREN, STATE(2539), 1, sym_text_interpolation, - [75976] = 4, + [76728] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4781), 1, - aux_sym_if_statement_token2, + ACTIONS(4774), 1, + sym_name, STATE(2540), 1, sym_text_interpolation, - [75989] = 4, + [76741] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4783), 1, - aux_sym_while_statement_token1, + ACTIONS(4776), 1, + anon_sym_RPAREN, STATE(2541), 1, sym_text_interpolation, - [76002] = 4, + [76754] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4217), 1, - anon_sym_LBRACE, + ACTIONS(2620), 1, + anon_sym_RPAREN, STATE(2542), 1, sym_text_interpolation, - [76015] = 4, + [76767] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4785), 1, - anon_sym_RPAREN, + ACTIONS(4778), 1, + anon_sym_LPAREN, STATE(2543), 1, sym_text_interpolation, - [76028] = 4, + [76780] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4787), 1, + ACTIONS(4780), 1, sym_name, STATE(2544), 1, sym_text_interpolation, - [76041] = 4, + [76793] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4103), 1, - anon_sym_RBRACE, + ACTIONS(4076), 1, + anon_sym_RPAREN, STATE(2545), 1, sym_text_interpolation, - [76054] = 4, + [76806] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4789), 1, - anon_sym_COLON_COLON, + ACTIONS(4109), 1, + anon_sym_RBRACE, STATE(2546), 1, sym_text_interpolation, - [76067] = 4, + [76819] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4791), 1, - sym_heredoc_end, + ACTIONS(4782), 1, + anon_sym_BSLASH, STATE(2547), 1, sym_text_interpolation, - [76080] = 4, + [76832] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2541), 1, - anon_sym_RPAREN, + ACTIONS(4784), 1, + anon_sym_BSLASH, STATE(2548), 1, sym_text_interpolation, - [76093] = 4, + [76845] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4793), 1, - anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_COLON_COLON, STATE(2549), 1, sym_text_interpolation, - [76106] = 4, + [76858] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4795), 1, - anon_sym_RPAREN, + ACTIONS(4788), 1, + aux_sym_while_statement_token1, STATE(2550), 1, sym_text_interpolation, - [76119] = 4, + [76871] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4797), 1, - anon_sym_RPAREN, + ACTIONS(4038), 1, + sym_name, STATE(2551), 1, sym_text_interpolation, - [76132] = 4, + [76884] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4799), 1, - anon_sym_DQUOTE2, + ACTIONS(4790), 1, + sym_heredoc_start, STATE(2552), 1, sym_text_interpolation, - [76145] = 4, + [76897] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4801), 1, - sym_name, + ACTIONS(4792), 1, + sym_heredoc_start, STATE(2553), 1, sym_text_interpolation, - [76158] = 4, + [76910] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(882), 1, - anon_sym_RPAREN, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4794), 1, + anon_sym_BSLASH, STATE(2554), 1, sym_text_interpolation, - [76171] = 4, + [76923] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_RPAREN, + ACTIONS(4796), 1, + anon_sym_BSLASH, STATE(2555), 1, sym_text_interpolation, - [76184] = 4, + [76936] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4805), 1, - sym_name, + ACTIONS(4798), 1, + anon_sym_BSLASH, STATE(2556), 1, sym_text_interpolation, - [76197] = 4, + [76949] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4807), 1, - anon_sym_SQUOTE2, + ACTIONS(4800), 1, + sym_name, STATE(2557), 1, sym_text_interpolation, - [76210] = 4, + [76962] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4809), 1, - anon_sym_EQ_GT, + ACTIONS(4802), 1, + anon_sym_RBRACK, STATE(2558), 1, sym_text_interpolation, - [76223] = 4, + [76975] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4811), 1, - anon_sym_RPAREN, + ACTIONS(4804), 1, + sym_name, STATE(2559), 1, sym_text_interpolation, - [76236] = 4, + [76988] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4813), 1, - aux_sym_while_statement_token2, + ACTIONS(4806), 1, + anon_sym_RPAREN, STATE(2560), 1, sym_text_interpolation, - [76249] = 4, + [77001] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4815), 1, + ACTIONS(4808), 1, sym_name, STATE(2561), 1, sym_text_interpolation, - [76262] = 4, + [77014] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4817), 1, - anon_sym_RPAREN, + ACTIONS(3249), 1, + anon_sym_EQ, STATE(2562), 1, sym_text_interpolation, - [76275] = 4, + [77027] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3593), 1, - anon_sym_BSLASH, + ACTIONS(3999), 1, + sym_name, STATE(2563), 1, sym_text_interpolation, - [76288] = 4, + [77040] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3202), 1, - anon_sym_EQ, + ACTIONS(4810), 1, + anon_sym_BSLASH, STATE(2564), 1, sym_text_interpolation, - [76301] = 4, + [77053] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4293), 1, - anon_sym_RPAREN, + ACTIONS(4812), 1, + sym_heredoc_end, STATE(2565), 1, sym_text_interpolation, - [76314] = 4, + [77066] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4819), 1, + ACTIONS(4814), 1, sym_name, STATE(2566), 1, sym_text_interpolation, - [76327] = 4, + [77079] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4821), 1, - sym_name, + ACTIONS(4816), 1, + sym_heredoc_start, STATE(2567), 1, sym_text_interpolation, - [76340] = 4, + [77092] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(901), 1, + anon_sym_SEMI, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4823), 1, - sym_name, STATE(2568), 1, sym_text_interpolation, - [76353] = 4, + [77105] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2771), 1, - anon_sym_RPAREN, + ACTIONS(4818), 1, + sym_heredoc_start, STATE(2569), 1, sym_text_interpolation, - [76366] = 4, + [77118] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4825), 1, - anon_sym_BSLASH, + ACTIONS(4443), 1, + anon_sym_LPAREN, STATE(2570), 1, sym_text_interpolation, - [76379] = 4, + [77131] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4827), 1, - anon_sym_RPAREN, + ACTIONS(4820), 1, + aux_sym_class_declaration_token1, STATE(2571), 1, sym_text_interpolation, - [76392] = 4, + [77144] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4829), 1, + ACTIONS(4822), 1, sym_name, STATE(2572), 1, sym_text_interpolation, - [76405] = 4, + [77157] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(919), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4831), 1, - anon_sym_RBRACK, STATE(2573), 1, sym_text_interpolation, - [76418] = 4, + [77170] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4833), 1, - anon_sym_EQ_GT, + ACTIONS(4824), 1, + aux_sym_while_statement_token1, STATE(2574), 1, sym_text_interpolation, - [76431] = 4, + [77183] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4835), 1, - aux_sym_class_declaration_token1, + ACTIONS(4826), 1, + anon_sym_SEMI, STATE(2575), 1, sym_text_interpolation, - [76444] = 4, + [77196] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4091), 1, - aux_sym_class_declaration_token1, + ACTIONS(2516), 1, + anon_sym_RPAREN, STATE(2576), 1, sym_text_interpolation, - [76457] = 4, + [77209] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4837), 1, - anon_sym_COLON_COLON, + ACTIONS(4828), 1, + sym_name, STATE(2577), 1, sym_text_interpolation, - [76470] = 4, + [77222] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4839), 1, - aux_sym_namespace_use_declaration_token3, + ACTIONS(4830), 1, + sym_name, STATE(2578), 1, sym_text_interpolation, - [76483] = 4, + [77235] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(905), 1, + anon_sym_RPAREN, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4841), 1, - anon_sym_BSLASH, STATE(2579), 1, sym_text_interpolation, - [76496] = 4, + [77248] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4089), 1, - anon_sym_RPAREN, + ACTIONS(4832), 1, + sym_name, STATE(2580), 1, sym_text_interpolation, - [76509] = 4, + [77261] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4843), 1, + ACTIONS(4834), 1, anon_sym_RPAREN, STATE(2581), 1, sym_text_interpolation, - [76522] = 4, + [77274] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4845), 1, - sym_name, + ACTIONS(4836), 1, + anon_sym_RPAREN, STATE(2582), 1, sym_text_interpolation, - [76535] = 4, + [77287] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4847), 1, - aux_sym_while_statement_token1, + ACTIONS(4838), 1, + anon_sym_RPAREN, STATE(2583), 1, sym_text_interpolation, - [76548] = 4, + [77300] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4849), 1, - sym_heredoc_start, + ACTIONS(4840), 1, + anon_sym_COLON_COLON, STATE(2584), 1, sym_text_interpolation, - [76561] = 4, + [77313] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4851), 1, - sym_heredoc_start, + ACTIONS(4445), 1, + anon_sym_RPAREN, STATE(2585), 1, sym_text_interpolation, - [76574] = 4, + [77326] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4853), 1, - aux_sym_class_declaration_token1, + ACTIONS(4842), 1, + anon_sym_COLON_COLON, STATE(2586), 1, sym_text_interpolation, - [76587] = 4, + [77339] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4855), 1, - sym_name, + ACTIONS(4135), 1, + anon_sym_RPAREN, STATE(2587), 1, sym_text_interpolation, - [76600] = 4, + [77352] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4085), 1, - aux_sym_class_declaration_token1, + ACTIONS(4844), 1, + anon_sym_COLON_COLON, STATE(2588), 1, sym_text_interpolation, - [76613] = 4, + [77365] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4553), 1, - anon_sym_LPAREN, + ACTIONS(3659), 1, + anon_sym_BSLASH, STATE(2589), 1, sym_text_interpolation, - [76626] = 4, + [77378] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4857), 1, - anon_sym_BSLASH, + ACTIONS(4846), 1, + ts_builtin_sym_end, STATE(2590), 1, sym_text_interpolation, - [76639] = 4, + [77391] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4859), 1, - anon_sym_BSLASH, + ACTIONS(4848), 1, + sym_heredoc_end, STATE(2591), 1, sym_text_interpolation, - [76652] = 4, + [77404] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(878), 1, - anon_sym_SEMI, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4850), 1, + anon_sym_BSLASH, STATE(2592), 1, sym_text_interpolation, - [76665] = 4, + [77417] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4032), 1, - anon_sym_RBRACK, + ACTIONS(4852), 1, + sym_heredoc_end, STATE(2593), 1, sym_text_interpolation, - [76678] = 4, + [77430] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4861), 1, + ACTIONS(4145), 1, anon_sym_RPAREN, STATE(2594), 1, sym_text_interpolation, - [76691] = 4, + [77443] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4863), 1, + ACTIONS(3596), 1, sym_name, STATE(2595), 1, sym_text_interpolation, - [76704] = 4, + [77456] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(911), 1, + anon_sym_SEMI, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4865), 1, - sym_name, STATE(2596), 1, sym_text_interpolation, - [76717] = 4, + [77469] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4867), 1, - sym_name, + ACTIONS(3525), 1, + anon_sym_COLON_COLON, STATE(2597), 1, sym_text_interpolation, - [76730] = 4, + [77482] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4869), 1, - aux_sym_class_declaration_token1, + ACTIONS(4854), 1, + anon_sym_COLON_COLON, STATE(2598), 1, sym_text_interpolation, - [76743] = 4, + [77495] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4871), 1, - anon_sym_BSLASH, + ACTIONS(4856), 1, + anon_sym_SEMI, STATE(2599), 1, sym_text_interpolation, - [76756] = 4, + [77508] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4873), 1, - sym_name, + ACTIONS(4858), 1, + anon_sym_COLON_COLON, STATE(2600), 1, sym_text_interpolation, - [76769] = 4, + [77521] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4073), 1, - anon_sym_RPAREN, + ACTIONS(4860), 1, + anon_sym_EQ, STATE(2601), 1, sym_text_interpolation, - [76782] = 4, + [77534] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4875), 1, - anon_sym_COLON_COLON, + ACTIONS(4862), 1, + anon_sym_LPAREN, STATE(2602), 1, sym_text_interpolation, - [76795] = 4, + [77547] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(910), 1, - anon_sym_SEMI, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4864), 1, + anon_sym_EQ_GT, STATE(2603), 1, sym_text_interpolation, - [76808] = 4, + [77560] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4137), 1, - anon_sym_LBRACE, + ACTIONS(4866), 1, + sym_name, STATE(2604), 1, sym_text_interpolation, - [76821] = 4, + [77573] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3558), 1, - sym_name, + ACTIONS(4868), 1, + anon_sym_BSLASH, STATE(2605), 1, sym_text_interpolation, - [76834] = 4, + [77586] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4877), 1, - aux_sym_if_statement_token2, + ACTIONS(4870), 1, + sym_name, STATE(2606), 1, sym_text_interpolation, - [76847] = 4, + [77599] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(884), 1, - anon_sym_RPAREN, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4872), 1, + anon_sym_LPAREN, STATE(2607), 1, sym_text_interpolation, - [76860] = 4, + [77612] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4327), 1, - anon_sym_RBRACE, + ACTIONS(4177), 1, + anon_sym_RPAREN, STATE(2608), 1, sym_text_interpolation, - [76873] = 4, + [77625] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4879), 1, - anon_sym_SEMI, + ACTIONS(4874), 1, + anon_sym_COLON_COLON, STATE(2609), 1, sym_text_interpolation, - [76886] = 4, + [77638] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(2631), 1, + ACTIONS(4876), 1, anon_sym_RPAREN, STATE(2610), 1, sym_text_interpolation, - [76899] = 4, + [77651] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(4878), 1, anon_sym_LPAREN, STATE(2611), 1, sym_text_interpolation, - [76912] = 4, + [77664] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4883), 1, - anon_sym_EQ_GT, + ACTIONS(4880), 1, + anon_sym_LPAREN, STATE(2612), 1, sym_text_interpolation, - [76925] = 4, + [77677] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4885), 1, - anon_sym_COLON_COLON, + ACTIONS(4882), 1, + anon_sym_LPAREN, STATE(2613), 1, sym_text_interpolation, - [76938] = 4, + [77690] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(880), 1, - anon_sym_RPAREN, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4884), 1, + anon_sym_LPAREN, STATE(2614), 1, sym_text_interpolation, - [76951] = 4, + [77703] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(3573), 1, - anon_sym_COLON_COLON, + ACTIONS(4886), 1, + sym_name, STATE(2615), 1, sym_text_interpolation, - [76964] = 4, + [77716] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(4210), 1, anon_sym_RPAREN, STATE(2616), 1, sym_text_interpolation, - [76977] = 4, + [77729] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4889), 1, - anon_sym_COLON_COLON, + ACTIONS(4888), 1, + sym_name, STATE(2617), 1, sym_text_interpolation, - [76990] = 4, + [77742] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4891), 1, - anon_sym_EQ_GT, + ACTIONS(4890), 1, + anon_sym_RBRACK, STATE(2618), 1, sym_text_interpolation, - [77003] = 4, + [77755] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4893), 1, - anon_sym_EQ, + ACTIONS(4892), 1, + anon_sym_RPAREN, STATE(2619), 1, sym_text_interpolation, - [77016] = 4, + [77768] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4895), 1, - anon_sym_EQ_GT, + ACTIONS(4894), 1, + anon_sym_LPAREN, STATE(2620), 1, sym_text_interpolation, - [77029] = 4, + [77781] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4341), 1, - anon_sym_RPAREN, + ACTIONS(4896), 1, + anon_sym_COLON_COLON, STATE(2621), 1, sym_text_interpolation, - [77042] = 4, + [77794] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4897), 1, - aux_sym_namespace_use_declaration_token3, + ACTIONS(4898), 1, + anon_sym_SEMI, STATE(2622), 1, sym_text_interpolation, - [77055] = 4, + [77807] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4899), 1, - sym_name, + ACTIONS(4900), 1, + aux_sym_class_declaration_token1, STATE(2623), 1, sym_text_interpolation, - [77068] = 4, + [77820] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(903), 1, + anon_sym_SEMI, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4064), 1, - aux_sym_class_declaration_token1, STATE(2624), 1, sym_text_interpolation, - [77081] = 4, + [77833] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4901), 1, - anon_sym_COLON_COLON, + ACTIONS(4902), 1, + anon_sym_LPAREN, STATE(2625), 1, sym_text_interpolation, - [77094] = 4, + [77846] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4903), 1, - anon_sym_BSLASH, + ACTIONS(4904), 1, + anon_sym_LPAREN, STATE(2626), 1, sym_text_interpolation, - [77107] = 4, + [77859] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4905), 1, - sym_name, + ACTIONS(4906), 1, + anon_sym_SEMI, STATE(2627), 1, sym_text_interpolation, - [77120] = 4, + [77872] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4907), 1, - anon_sym_RPAREN, + ACTIONS(4908), 1, + anon_sym_LPAREN, STATE(2628), 1, sym_text_interpolation, - [77133] = 4, + [77885] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4909), 1, - anon_sym_EQ_GT, + ACTIONS(4910), 1, + sym_name, STATE(2629), 1, sym_text_interpolation, - [77146] = 4, + [77898] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4355), 1, - anon_sym_RPAREN, + ACTIONS(4912), 1, + anon_sym_SEMI, STATE(2630), 1, sym_text_interpolation, - [77159] = 4, + [77911] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(912), 1, - anon_sym_SEMI, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, + ACTIONS(4914), 1, + sym_name, STATE(2631), 1, sym_text_interpolation, - [77172] = 4, + [77924] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4056), 1, - anon_sym_RPAREN, + ACTIONS(4916), 1, + anon_sym_LPAREN, STATE(2632), 1, sym_text_interpolation, - [77185] = 4, + [77937] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4911), 1, + ACTIONS(4918), 1, anon_sym_LPAREN, STATE(2633), 1, sym_text_interpolation, - [77198] = 4, + [77950] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4913), 1, - anon_sym_COLON_COLON, + ACTIONS(4920), 1, + sym_name, STATE(2634), 1, sym_text_interpolation, - [77211] = 4, + [77963] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4915), 1, - anon_sym_SEMI, + ACTIONS(4922), 1, + sym_name, STATE(2635), 1, sym_text_interpolation, - [77224] = 4, + [77976] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4917), 1, + ACTIONS(4924), 1, anon_sym_COLON_COLON, STATE(2636), 1, sym_text_interpolation, - [77237] = 4, + [77989] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4391), 1, - anon_sym_RPAREN, + ACTIONS(4926), 1, + anon_sym_SEMI, STATE(2637), 1, sym_text_interpolation, - [77250] = 4, + [78002] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4919), 1, - anon_sym_LPAREN, + ACTIONS(4315), 1, + anon_sym_RPAREN, STATE(2638), 1, sym_text_interpolation, - [77263] = 4, + [78015] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4921), 1, + ACTIONS(4928), 1, anon_sym_LPAREN, STATE(2639), 1, sym_text_interpolation, - [77276] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4407), 1, - anon_sym_RPAREN, - STATE(2640), 1, - sym_text_interpolation, - [77289] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4923), 1, - sym_name, - STATE(2641), 1, - sym_text_interpolation, - [77302] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4925), 1, - aux_sym_foreach_statement_token2, - STATE(2642), 1, - sym_text_interpolation, - [77315] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4927), 1, - anon_sym_LPAREN, - STATE(2643), 1, - sym_text_interpolation, - [77328] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4929), 1, - anon_sym_LPAREN, - STATE(2644), 1, - sym_text_interpolation, - [77341] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4931), 1, - sym_name, - STATE(2645), 1, - sym_text_interpolation, - [77354] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4933), 1, - anon_sym_LPAREN, - STATE(2646), 1, - sym_text_interpolation, - [77367] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4935), 1, - anon_sym_LPAREN, - STATE(2647), 1, - sym_text_interpolation, - [77380] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4937), 1, - anon_sym_LPAREN, - STATE(2648), 1, - sym_text_interpolation, - [77393] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4939), 1, - anon_sym_RPAREN, - STATE(2649), 1, - sym_text_interpolation, - [77406] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4941), 1, - anon_sym_RBRACK, - STATE(2650), 1, - sym_text_interpolation, - [77419] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4943), 1, - sym_integer, - STATE(2651), 1, - sym_text_interpolation, - [77432] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4945), 1, - sym_name, - STATE(2652), 1, - sym_text_interpolation, - [77445] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4947), 1, - anon_sym_RBRACK, - STATE(2653), 1, - sym_text_interpolation, - [77458] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4949), 1, - anon_sym_RPAREN, - STATE(2654), 1, - sym_text_interpolation, - [77471] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4951), 1, - anon_sym_LPAREN, - STATE(2655), 1, - sym_text_interpolation, - [77484] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4953), 1, - sym_name, - STATE(2656), 1, - sym_text_interpolation, - [77497] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4955), 1, - anon_sym_SEMI, - STATE(2657), 1, - sym_text_interpolation, - [77510] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4957), 1, - sym_name, - STATE(2658), 1, - sym_text_interpolation, - [77523] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(908), 1, - anon_sym_SEMI, - ACTIONS(1587), 1, - sym_comment, - STATE(2659), 1, - sym_text_interpolation, - [77536] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4959), 1, - sym_name, - STATE(2660), 1, - sym_text_interpolation, - [77549] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4961), 1, - sym_heredoc_end, - STATE(2661), 1, - sym_text_interpolation, - [77562] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4963), 1, - anon_sym_SEMI, - STATE(2662), 1, - sym_text_interpolation, - [77575] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4965), 1, - anon_sym_LPAREN, - STATE(2663), 1, - sym_text_interpolation, - [77588] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4967), 1, - anon_sym_COLON_COLON, - STATE(2664), 1, - sym_text_interpolation, - [77601] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4969), 1, - anon_sym_SEMI, - STATE(2665), 1, - sym_text_interpolation, - [77614] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4971), 1, - sym_name, - STATE(2666), 1, - sym_text_interpolation, - [77627] = 4, + [78028] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4973), 1, + ACTIONS(4930), 1, anon_sym_LPAREN, - STATE(2667), 1, + STATE(2640), 1, sym_text_interpolation, - [77640] = 4, + [78041] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4975), 1, + ACTIONS(4932), 1, anon_sym_LPAREN, - STATE(2668), 1, - sym_text_interpolation, - [77653] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4977), 1, - anon_sym_EQ_GT, - STATE(2669), 1, + STATE(2641), 1, sym_text_interpolation, - [77666] = 4, + [78054] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4979), 1, + ACTIONS(4934), 1, anon_sym_LPAREN, - STATE(2670), 1, - sym_text_interpolation, - [77679] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4981), 1, - sym_name, - STATE(2671), 1, - sym_text_interpolation, - [77692] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4983), 1, - anon_sym_SEMI, - STATE(2672), 1, + STATE(2642), 1, sym_text_interpolation, - [77705] = 4, + [78067] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1587), 1, + ACTIONS(1540), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4372), 1, anon_sym_RPAREN, - STATE(2673), 1, - sym_text_interpolation, - [77718] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4985), 1, - anon_sym_LPAREN, - STATE(2674), 1, - sym_text_interpolation, - [77731] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4987), 1, - ts_builtin_sym_end, - STATE(2675), 1, - sym_text_interpolation, - [77744] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4989), 1, - anon_sym_LPAREN, - STATE(2676), 1, - sym_text_interpolation, - [77757] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4991), 1, - anon_sym_LPAREN, - STATE(2677), 1, - sym_text_interpolation, - [77770] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1587), 1, - sym_comment, - ACTIONS(4993), 1, - anon_sym_COLON_COLON, - STATE(2678), 1, + STATE(2643), 1, sym_text_interpolation, - [77783] = 1, - ACTIONS(4995), 1, + [78080] = 1, + ACTIONS(4936), 1, ts_builtin_sym_end, - [77787] = 1, - ACTIONS(4997), 1, + [78084] = 1, + ACTIONS(4938), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(581)] = 0, - [SMALL_STATE(582)] = 79, - [SMALL_STATE(583)] = 158, - [SMALL_STATE(584)] = 245, - [SMALL_STATE(585)] = 324, - [SMALL_STATE(586)] = 403, - [SMALL_STATE(587)] = 482, - [SMALL_STATE(588)] = 556, - [SMALL_STATE(589)] = 630, - [SMALL_STATE(590)] = 704, - [SMALL_STATE(591)] = 778, - [SMALL_STATE(592)] = 852, - [SMALL_STATE(593)] = 926, - [SMALL_STATE(594)] = 1000, - [SMALL_STATE(595)] = 1074, - [SMALL_STATE(596)] = 1148, - [SMALL_STATE(597)] = 1222, - [SMALL_STATE(598)] = 1296, - [SMALL_STATE(599)] = 1370, - [SMALL_STATE(600)] = 1444, - [SMALL_STATE(601)] = 1529, - [SMALL_STATE(602)] = 1610, - [SMALL_STATE(603)] = 1694, - [SMALL_STATE(604)] = 1769, - [SMALL_STATE(605)] = 1844, - [SMALL_STATE(606)] = 1927, - [SMALL_STATE(607)] = 2016, - [SMALL_STATE(608)] = 2091, - [SMALL_STATE(609)] = 2174, - [SMALL_STATE(610)] = 2253, - [SMALL_STATE(611)] = 2328, - [SMALL_STATE(612)] = 2411, - [SMALL_STATE(613)] = 2486, - [SMALL_STATE(614)] = 2556, - [SMALL_STATE(615)] = 2626, - [SMALL_STATE(616)] = 2710, - [SMALL_STATE(617)] = 2780, - [SMALL_STATE(618)] = 2850, - [SMALL_STATE(619)] = 2934, - [SMALL_STATE(620)] = 3004, - [SMALL_STATE(621)] = 3074, - [SMALL_STATE(622)] = 3144, - [SMALL_STATE(623)] = 3214, - [SMALL_STATE(624)] = 3296, - [SMALL_STATE(625)] = 3380, - [SMALL_STATE(626)] = 3450, - [SMALL_STATE(627)] = 3520, - [SMALL_STATE(628)] = 3590, - [SMALL_STATE(629)] = 3660, - [SMALL_STATE(630)] = 3730, - [SMALL_STATE(631)] = 3800, - [SMALL_STATE(632)] = 3870, - [SMALL_STATE(633)] = 3940, - [SMALL_STATE(634)] = 4018, - [SMALL_STATE(635)] = 4088, - [SMALL_STATE(636)] = 4165, - [SMALL_STATE(637)] = 4248, - [SMALL_STATE(638)] = 4325, - [SMALL_STATE(639)] = 4408, - [SMALL_STATE(640)] = 4485, - [SMALL_STATE(641)] = 4563, - [SMALL_STATE(642)] = 4639, - [SMALL_STATE(643)] = 4717, - [SMALL_STATE(644)] = 4795, - [SMALL_STATE(645)] = 4872, - [SMALL_STATE(646)] = 4936, - [SMALL_STATE(647)] = 5048, - [SMALL_STATE(648)] = 5160, - [SMALL_STATE(649)] = 5227, - [SMALL_STATE(650)] = 5292, - [SMALL_STATE(651)] = 5357, - [SMALL_STATE(652)] = 5418, - [SMALL_STATE(653)] = 5489, - [SMALL_STATE(654)] = 5560, - [SMALL_STATE(655)] = 5631, - [SMALL_STATE(656)] = 5696, - [SMALL_STATE(657)] = 5765, - [SMALL_STATE(658)] = 5830, - [SMALL_STATE(659)] = 5901, - [SMALL_STATE(660)] = 5966, - [SMALL_STATE(661)] = 6076, - [SMALL_STATE(662)] = 6136, - [SMALL_STATE(663)] = 6246, - [SMALL_STATE(664)] = 6356, - [SMALL_STATE(665)] = 6416, - [SMALL_STATE(666)] = 6476, - [SMALL_STATE(667)] = 6536, - [SMALL_STATE(668)] = 6600, - [SMALL_STATE(669)] = 6660, - [SMALL_STATE(670)] = 6720, - [SMALL_STATE(671)] = 6780, - [SMALL_STATE(672)] = 6840, - [SMALL_STATE(673)] = 6900, - [SMALL_STATE(674)] = 6960, - [SMALL_STATE(675)] = 7020, - [SMALL_STATE(676)] = 7130, - [SMALL_STATE(677)] = 7190, - [SMALL_STATE(678)] = 7250, - [SMALL_STATE(679)] = 7310, - [SMALL_STATE(680)] = 7370, - [SMALL_STATE(681)] = 7430, - [SMALL_STATE(682)] = 7494, - [SMALL_STATE(683)] = 7554, - [SMALL_STATE(684)] = 7619, - [SMALL_STATE(685)] = 7722, - [SMALL_STATE(686)] = 7829, - [SMALL_STATE(687)] = 7892, - [SMALL_STATE(688)] = 7953, - [SMALL_STATE(689)] = 8060, - [SMALL_STATE(690)] = 8123, - [SMALL_STATE(691)] = 8188, - [SMALL_STATE(692)] = 8251, - [SMALL_STATE(693)] = 8358, - [SMALL_STATE(694)] = 8423, - [SMALL_STATE(695)] = 8484, - [SMALL_STATE(696)] = 8549, - [SMALL_STATE(697)] = 8610, - [SMALL_STATE(698)] = 8675, - [SMALL_STATE(699)] = 8736, - [SMALL_STATE(700)] = 8797, - [SMALL_STATE(701)] = 8862, - [SMALL_STATE(702)] = 8927, - [SMALL_STATE(703)] = 8990, - [SMALL_STATE(704)] = 9053, - [SMALL_STATE(705)] = 9160, - [SMALL_STATE(706)] = 9223, - [SMALL_STATE(707)] = 9324, - [SMALL_STATE(708)] = 9431, - [SMALL_STATE(709)] = 9496, - [SMALL_STATE(710)] = 9559, - [SMALL_STATE(711)] = 9622, - [SMALL_STATE(712)] = 9685, - [SMALL_STATE(713)] = 9748, - [SMALL_STATE(714)] = 9813, - [SMALL_STATE(715)] = 9878, - [SMALL_STATE(716)] = 9943, - [SMALL_STATE(717)] = 10050, - [SMALL_STATE(718)] = 10115, - [SMALL_STATE(719)] = 10178, - [SMALL_STATE(720)] = 10281, - [SMALL_STATE(721)] = 10344, - [SMALL_STATE(722)] = 10407, - [SMALL_STATE(723)] = 10468, - [SMALL_STATE(724)] = 10531, - [SMALL_STATE(725)] = 10589, - [SMALL_STATE(726)] = 10647, - [SMALL_STATE(727)] = 10705, - [SMALL_STATE(728)] = 10763, - [SMALL_STATE(729)] = 10823, - [SMALL_STATE(730)] = 10881, - [SMALL_STATE(731)] = 10939, - [SMALL_STATE(732)] = 10997, - [SMALL_STATE(733)] = 11055, - [SMALL_STATE(734)] = 11113, - [SMALL_STATE(735)] = 11171, - [SMALL_STATE(736)] = 11229, - [SMALL_STATE(737)] = 11287, - [SMALL_STATE(738)] = 11345, - [SMALL_STATE(739)] = 11403, - [SMALL_STATE(740)] = 11461, - [SMALL_STATE(741)] = 11519, - [SMALL_STATE(742)] = 11577, - [SMALL_STATE(743)] = 11635, - [SMALL_STATE(744)] = 11695, - [SMALL_STATE(745)] = 11753, - [SMALL_STATE(746)] = 11811, - [SMALL_STATE(747)] = 11869, - [SMALL_STATE(748)] = 11927, - [SMALL_STATE(749)] = 12031, - [SMALL_STATE(750)] = 12089, - [SMALL_STATE(751)] = 12147, - [SMALL_STATE(752)] = 12205, - [SMALL_STATE(753)] = 12263, - [SMALL_STATE(754)] = 12321, - [SMALL_STATE(755)] = 12379, - [SMALL_STATE(756)] = 12437, - [SMALL_STATE(757)] = 12495, - [SMALL_STATE(758)] = 12553, - [SMALL_STATE(759)] = 12611, - [SMALL_STATE(760)] = 12669, - [SMALL_STATE(761)] = 12727, - [SMALL_STATE(762)] = 12785, - [SMALL_STATE(763)] = 12843, - [SMALL_STATE(764)] = 12901, - [SMALL_STATE(765)] = 13005, - [SMALL_STATE(766)] = 13063, - [SMALL_STATE(767)] = 13121, - [SMALL_STATE(768)] = 13188, - [SMALL_STATE(769)] = 13245, - [SMALL_STATE(770)] = 13302, - [SMALL_STATE(771)] = 13361, - [SMALL_STATE(772)] = 13420, - [SMALL_STATE(773)] = 13481, - [SMALL_STATE(774)] = 13540, - [SMALL_STATE(775)] = 13601, - [SMALL_STATE(776)] = 13662, - [SMALL_STATE(777)] = 13725, - [SMALL_STATE(778)] = 13782, - [SMALL_STATE(779)] = 13849, - [SMALL_STATE(780)] = 13916, - [SMALL_STATE(781)] = 13975, - [SMALL_STATE(782)] = 14034, - [SMALL_STATE(783)] = 14099, - [SMALL_STATE(784)] = 14160, - [SMALL_STATE(785)] = 14221, - [SMALL_STATE(786)] = 14282, - [SMALL_STATE(787)] = 14349, - [SMALL_STATE(788)] = 14417, - [SMALL_STATE(789)] = 14473, - [SMALL_STATE(790)] = 14529, - [SMALL_STATE(791)] = 14585, - [SMALL_STATE(792)] = 14641, - [SMALL_STATE(793)] = 14697, - [SMALL_STATE(794)] = 14753, - [SMALL_STATE(795)] = 14809, - [SMALL_STATE(796)] = 14865, - [SMALL_STATE(797)] = 14933, - [SMALL_STATE(798)] = 14989, - [SMALL_STATE(799)] = 15045, - [SMALL_STATE(800)] = 15101, - [SMALL_STATE(801)] = 15157, - [SMALL_STATE(802)] = 15225, - [SMALL_STATE(803)] = 15281, - [SMALL_STATE(804)] = 15337, - [SMALL_STATE(805)] = 15393, - [SMALL_STATE(806)] = 15449, - [SMALL_STATE(807)] = 15505, - [SMALL_STATE(808)] = 15561, - [SMALL_STATE(809)] = 15656, - [SMALL_STATE(810)] = 15751, - [SMALL_STATE(811)] = 15846, - [SMALL_STATE(812)] = 15907, - [SMALL_STATE(813)] = 16002, - [SMALL_STATE(814)] = 16097, - [SMALL_STATE(815)] = 16158, - [SMALL_STATE(816)] = 16213, - [SMALL_STATE(817)] = 16274, - [SMALL_STATE(818)] = 16329, - [SMALL_STATE(819)] = 16388, - [SMALL_STATE(820)] = 16483, - [SMALL_STATE(821)] = 16542, - [SMALL_STATE(822)] = 16601, - [SMALL_STATE(823)] = 16658, - [SMALL_STATE(824)] = 16717, - [SMALL_STATE(825)] = 16774, - [SMALL_STATE(826)] = 16831, - [SMALL_STATE(827)] = 16890, - [SMALL_STATE(828)] = 16949, - [SMALL_STATE(829)] = 17006, - [SMALL_STATE(830)] = 17065, - [SMALL_STATE(831)] = 17126, - [SMALL_STATE(832)] = 17221, - [SMALL_STATE(833)] = 17278, - [SMALL_STATE(834)] = 17337, - [SMALL_STATE(835)] = 17432, - [SMALL_STATE(836)] = 17527, - [SMALL_STATE(837)] = 17586, - [SMALL_STATE(838)] = 17645, - [SMALL_STATE(839)] = 17740, - [SMALL_STATE(840)] = 17801, - [SMALL_STATE(841)] = 17860, - [SMALL_STATE(842)] = 17919, - [SMALL_STATE(843)] = 17978, - [SMALL_STATE(844)] = 18037, - [SMALL_STATE(845)] = 18096, - [SMALL_STATE(846)] = 18191, - [SMALL_STATE(847)] = 18252, - [SMALL_STATE(848)] = 18307, - [SMALL_STATE(849)] = 18362, - [SMALL_STATE(850)] = 18457, - [SMALL_STATE(851)] = 18514, - [SMALL_STATE(852)] = 18575, - [SMALL_STATE(853)] = 18632, - [SMALL_STATE(854)] = 18727, - [SMALL_STATE(855)] = 18822, - [SMALL_STATE(856)] = 18883, - [SMALL_STATE(857)] = 18978, - [SMALL_STATE(858)] = 19039, - [SMALL_STATE(859)] = 19100, - [SMALL_STATE(860)] = 19161, - [SMALL_STATE(861)] = 19222, - [SMALL_STATE(862)] = 19276, - [SMALL_STATE(863)] = 19330, - [SMALL_STATE(864)] = 19384, - [SMALL_STATE(865)] = 19438, - [SMALL_STATE(866)] = 19492, - [SMALL_STATE(867)] = 19546, - [SMALL_STATE(868)] = 19600, - [SMALL_STATE(869)] = 19654, - [SMALL_STATE(870)] = 19712, - [SMALL_STATE(871)] = 19766, - [SMALL_STATE(872)] = 19820, - [SMALL_STATE(873)] = 19874, - [SMALL_STATE(874)] = 19928, - [SMALL_STATE(875)] = 19982, - [SMALL_STATE(876)] = 20036, - [SMALL_STATE(877)] = 20090, - [SMALL_STATE(878)] = 20144, - [SMALL_STATE(879)] = 20198, - [SMALL_STATE(880)] = 20252, - [SMALL_STATE(881)] = 20306, - [SMALL_STATE(882)] = 20360, - [SMALL_STATE(883)] = 20414, - [SMALL_STATE(884)] = 20468, - [SMALL_STATE(885)] = 20522, - [SMALL_STATE(886)] = 20576, - [SMALL_STATE(887)] = 20630, - [SMALL_STATE(888)] = 20684, - [SMALL_STATE(889)] = 20738, - [SMALL_STATE(890)] = 20792, - [SMALL_STATE(891)] = 20846, - [SMALL_STATE(892)] = 20902, - [SMALL_STATE(893)] = 20956, - [SMALL_STATE(894)] = 21010, - [SMALL_STATE(895)] = 21064, - [SMALL_STATE(896)] = 21118, - [SMALL_STATE(897)] = 21172, - [SMALL_STATE(898)] = 21226, - [SMALL_STATE(899)] = 21282, - [SMALL_STATE(900)] = 21336, - [SMALL_STATE(901)] = 21390, - [SMALL_STATE(902)] = 21446, - [SMALL_STATE(903)] = 21500, - [SMALL_STATE(904)] = 21554, - [SMALL_STATE(905)] = 21609, - [SMALL_STATE(906)] = 21664, - [SMALL_STATE(907)] = 21719, - [SMALL_STATE(908)] = 21774, - [SMALL_STATE(909)] = 21829, - [SMALL_STATE(910)] = 21881, - [SMALL_STATE(911)] = 21933, - [SMALL_STATE(912)] = 21985, - [SMALL_STATE(913)] = 22037, - [SMALL_STATE(914)] = 22089, - [SMALL_STATE(915)] = 22141, - [SMALL_STATE(916)] = 22193, - [SMALL_STATE(917)] = 22245, - [SMALL_STATE(918)] = 22297, - [SMALL_STATE(919)] = 22349, - [SMALL_STATE(920)] = 22401, - [SMALL_STATE(921)] = 22453, - [SMALL_STATE(922)] = 22505, - [SMALL_STATE(923)] = 22557, - [SMALL_STATE(924)] = 22609, - [SMALL_STATE(925)] = 22661, - [SMALL_STATE(926)] = 22713, - [SMALL_STATE(927)] = 22765, - [SMALL_STATE(928)] = 22817, - [SMALL_STATE(929)] = 22869, - [SMALL_STATE(930)] = 22921, - [SMALL_STATE(931)] = 22973, - [SMALL_STATE(932)] = 23025, - [SMALL_STATE(933)] = 23077, - [SMALL_STATE(934)] = 23129, - [SMALL_STATE(935)] = 23181, - [SMALL_STATE(936)] = 23233, - [SMALL_STATE(937)] = 23285, - [SMALL_STATE(938)] = 23337, - [SMALL_STATE(939)] = 23389, - [SMALL_STATE(940)] = 23441, - [SMALL_STATE(941)] = 23493, - [SMALL_STATE(942)] = 23545, - [SMALL_STATE(943)] = 23597, - [SMALL_STATE(944)] = 23649, - [SMALL_STATE(945)] = 23701, - [SMALL_STATE(946)] = 23753, - [SMALL_STATE(947)] = 23805, - [SMALL_STATE(948)] = 23857, - [SMALL_STATE(949)] = 23909, - [SMALL_STATE(950)] = 23961, - [SMALL_STATE(951)] = 24013, - [SMALL_STATE(952)] = 24065, - [SMALL_STATE(953)] = 24117, - [SMALL_STATE(954)] = 24169, - [SMALL_STATE(955)] = 24221, - [SMALL_STATE(956)] = 24273, - [SMALL_STATE(957)] = 24325, - [SMALL_STATE(958)] = 24377, - [SMALL_STATE(959)] = 24429, - [SMALL_STATE(960)] = 24481, - [SMALL_STATE(961)] = 24533, - [SMALL_STATE(962)] = 24585, - [SMALL_STATE(963)] = 24637, - [SMALL_STATE(964)] = 24689, - [SMALL_STATE(965)] = 24741, - [SMALL_STATE(966)] = 24793, - [SMALL_STATE(967)] = 24845, - [SMALL_STATE(968)] = 24897, - [SMALL_STATE(969)] = 24949, - [SMALL_STATE(970)] = 25001, - [SMALL_STATE(971)] = 25053, - [SMALL_STATE(972)] = 25105, - [SMALL_STATE(973)] = 25159, - [SMALL_STATE(974)] = 25211, - [SMALL_STATE(975)] = 25262, - [SMALL_STATE(976)] = 25319, - [SMALL_STATE(977)] = 25370, - [SMALL_STATE(978)] = 25425, - [SMALL_STATE(979)] = 25512, - [SMALL_STATE(980)] = 25598, - [SMALL_STATE(981)] = 25686, - [SMALL_STATE(982)] = 25768, - [SMALL_STATE(983)] = 25844, - [SMALL_STATE(984)] = 25916, - [SMALL_STATE(985)] = 25982, - [SMALL_STATE(986)] = 26070, - [SMALL_STATE(987)] = 26132, - [SMALL_STATE(988)] = 26220, - [SMALL_STATE(989)] = 26308, - [SMALL_STATE(990)] = 26396, - [SMALL_STATE(991)] = 26484, - [SMALL_STATE(992)] = 26574, - [SMALL_STATE(993)] = 26626, - [SMALL_STATE(994)] = 26714, - [SMALL_STATE(995)] = 26772, - [SMALL_STATE(996)] = 26854, - [SMALL_STATE(997)] = 26924, - [SMALL_STATE(998)] = 26998, - [SMALL_STATE(999)] = 27082, - [SMALL_STATE(1000)] = 27142, - [SMALL_STATE(1001)] = 27194, - [SMALL_STATE(1002)] = 27276, - [SMALL_STATE(1003)] = 27354, - [SMALL_STATE(1004)] = 27442, - [SMALL_STATE(1005)] = 27530, - [SMALL_STATE(1006)] = 27586, - [SMALL_STATE(1007)] = 27668, - [SMALL_STATE(1008)] = 27750, - [SMALL_STATE(1009)] = 27838, - [SMALL_STATE(1010)] = 27920, - [SMALL_STATE(1011)] = 28002, - [SMALL_STATE(1012)] = 28051, - [SMALL_STATE(1013)] = 28132, - [SMALL_STATE(1014)] = 28181, - [SMALL_STATE(1015)] = 28262, - [SMALL_STATE(1016)] = 28349, - [SMALL_STATE(1017)] = 28436, - [SMALL_STATE(1018)] = 28521, - [SMALL_STATE(1019)] = 28590, - [SMALL_STATE(1020)] = 28677, - [SMALL_STATE(1021)] = 28758, - [SMALL_STATE(1022)] = 28845, - [SMALL_STATE(1023)] = 28926, - [SMALL_STATE(1024)] = 28991, - [SMALL_STATE(1025)] = 29072, - [SMALL_STATE(1026)] = 29159, - [SMALL_STATE(1027)] = 29208, - [SMALL_STATE(1028)] = 29267, - [SMALL_STATE(1029)] = 29348, - [SMALL_STATE(1030)] = 29399, - [SMALL_STATE(1031)] = 29486, - [SMALL_STATE(1032)] = 29541, - [SMALL_STATE(1033)] = 29624, - [SMALL_STATE(1034)] = 29695, - [SMALL_STATE(1035)] = 29768, - [SMALL_STATE(1036)] = 29829, - [SMALL_STATE(1037)] = 29906, - [SMALL_STATE(1038)] = 29993, - [SMALL_STATE(1039)] = 30080, - [SMALL_STATE(1040)] = 30155, - [SMALL_STATE(1041)] = 30236, - [SMALL_STATE(1042)] = 30323, - [SMALL_STATE(1043)] = 30374, - [SMALL_STATE(1044)] = 30423, - [SMALL_STATE(1045)] = 30510, - [SMALL_STATE(1046)] = 30599, - [SMALL_STATE(1047)] = 30656, - [SMALL_STATE(1048)] = 30704, - [SMALL_STATE(1049)] = 30752, - [SMALL_STATE(1050)] = 30806, - [SMALL_STATE(1051)] = 30854, - [SMALL_STATE(1052)] = 30934, - [SMALL_STATE(1053)] = 30984, - [SMALL_STATE(1054)] = 31064, - [SMALL_STATE(1055)] = 31148, - [SMALL_STATE(1056)] = 31230, - [SMALL_STATE(1057)] = 31316, - [SMALL_STATE(1058)] = 31392, - [SMALL_STATE(1059)] = 31466, - [SMALL_STATE(1060)] = 31536, - [SMALL_STATE(1061)] = 31584, - [SMALL_STATE(1062)] = 31648, - [SMALL_STATE(1063)] = 31696, - [SMALL_STATE(1064)] = 31756, - [SMALL_STATE(1065)] = 31812, - [SMALL_STATE(1066)] = 31860, - [SMALL_STATE(1067)] = 31918, - [SMALL_STATE(1068)] = 31968, - [SMALL_STATE(1069)] = 32048, - [SMALL_STATE(1070)] = 32134, - [SMALL_STATE(1071)] = 32182, - [SMALL_STATE(1072)] = 32230, - [SMALL_STATE(1073)] = 32278, - [SMALL_STATE(1074)] = 32346, - [SMALL_STATE(1075)] = 32432, - [SMALL_STATE(1076)] = 32480, - [SMALL_STATE(1077)] = 32528, - [SMALL_STATE(1078)] = 32576, - [SMALL_STATE(1079)] = 32624, - [SMALL_STATE(1080)] = 32672, - [SMALL_STATE(1081)] = 32720, - [SMALL_STATE(1082)] = 32806, - [SMALL_STATE(1083)] = 32892, - [SMALL_STATE(1084)] = 32972, - [SMALL_STATE(1085)] = 33052, - [SMALL_STATE(1086)] = 33100, - [SMALL_STATE(1087)] = 33186, - [SMALL_STATE(1088)] = 33234, - [SMALL_STATE(1089)] = 33282, - [SMALL_STATE(1090)] = 33330, - [SMALL_STATE(1091)] = 33378, - [SMALL_STATE(1092)] = 33426, - [SMALL_STATE(1093)] = 33474, - [SMALL_STATE(1094)] = 33522, - [SMALL_STATE(1095)] = 33570, - [SMALL_STATE(1096)] = 33658, - [SMALL_STATE(1097)] = 33706, - [SMALL_STATE(1098)] = 33754, - [SMALL_STATE(1099)] = 33802, - [SMALL_STATE(1100)] = 33850, - [SMALL_STATE(1101)] = 33898, - [SMALL_STATE(1102)] = 33984, - [SMALL_STATE(1103)] = 34032, - [SMALL_STATE(1104)] = 34080, - [SMALL_STATE(1105)] = 34128, - [SMALL_STATE(1106)] = 34192, - [SMALL_STATE(1107)] = 34240, - [SMALL_STATE(1108)] = 34288, - [SMALL_STATE(1109)] = 34336, - [SMALL_STATE(1110)] = 34384, - [SMALL_STATE(1111)] = 34432, - [SMALL_STATE(1112)] = 34480, - [SMALL_STATE(1113)] = 34528, - [SMALL_STATE(1114)] = 34576, - [SMALL_STATE(1115)] = 34624, - [SMALL_STATE(1116)] = 34674, - [SMALL_STATE(1117)] = 34722, - [SMALL_STATE(1118)] = 34770, - [SMALL_STATE(1119)] = 34818, - [SMALL_STATE(1120)] = 34866, - [SMALL_STATE(1121)] = 34914, - [SMALL_STATE(1122)] = 34962, - [SMALL_STATE(1123)] = 35010, - [SMALL_STATE(1124)] = 35082, - [SMALL_STATE(1125)] = 35130, - [SMALL_STATE(1126)] = 35178, - [SMALL_STATE(1127)] = 35258, - [SMALL_STATE(1128)] = 35306, - [SMALL_STATE(1129)] = 35354, - [SMALL_STATE(1130)] = 35440, - [SMALL_STATE(1131)] = 35488, - [SMALL_STATE(1132)] = 35536, - [SMALL_STATE(1133)] = 35584, - [SMALL_STATE(1134)] = 35632, - [SMALL_STATE(1135)] = 35680, - [SMALL_STATE(1136)] = 35728, - [SMALL_STATE(1137)] = 35814, - [SMALL_STATE(1138)] = 35862, - [SMALL_STATE(1139)] = 35910, - [SMALL_STATE(1140)] = 35958, - [SMALL_STATE(1141)] = 36038, - [SMALL_STATE(1142)] = 36124, - [SMALL_STATE(1143)] = 36172, - [SMALL_STATE(1144)] = 36220, - [SMALL_STATE(1145)] = 36268, - [SMALL_STATE(1146)] = 36316, - [SMALL_STATE(1147)] = 36364, - [SMALL_STATE(1148)] = 36449, - [SMALL_STATE(1149)] = 36508, - [SMALL_STATE(1150)] = 36583, - [SMALL_STATE(1151)] = 36652, - [SMALL_STATE(1152)] = 36727, - [SMALL_STATE(1153)] = 36806, - [SMALL_STATE(1154)] = 36869, - [SMALL_STATE(1155)] = 36950, - [SMALL_STATE(1156)] = 37029, - [SMALL_STATE(1157)] = 37112, - [SMALL_STATE(1158)] = 37191, - [SMALL_STATE(1159)] = 37240, - [SMALL_STATE(1160)] = 37319, - [SMALL_STATE(1161)] = 37404, - [SMALL_STATE(1162)] = 37489, - [SMALL_STATE(1163)] = 37542, - [SMALL_STATE(1164)] = 37621, - [SMALL_STATE(1165)] = 37700, - [SMALL_STATE(1166)] = 37775, - [SMALL_STATE(1167)] = 37842, - [SMALL_STATE(1168)] = 37917, - [SMALL_STATE(1169)] = 38002, - [SMALL_STATE(1170)] = 38087, - [SMALL_STATE(1171)] = 38172, - [SMALL_STATE(1172)] = 38245, - [SMALL_STATE(1173)] = 38316, - [SMALL_STATE(1174)] = 38401, - [SMALL_STATE(1175)] = 38456, - [SMALL_STATE(1176)] = 38541, - [SMALL_STATE(1177)] = 38598, - [SMALL_STATE(1178)] = 38647, - [SMALL_STATE(1179)] = 38732, - [SMALL_STATE(1180)] = 38807, - [SMALL_STATE(1181)] = 38892, - [SMALL_STATE(1182)] = 38941, - [SMALL_STATE(1183)] = 38990, - [SMALL_STATE(1184)] = 39069, - [SMALL_STATE(1185)] = 39156, - [SMALL_STATE(1186)] = 39240, - [SMALL_STATE(1187)] = 39324, - [SMALL_STATE(1188)] = 39410, - [SMALL_STATE(1189)] = 39496, - [SMALL_STATE(1190)] = 39582, - [SMALL_STATE(1191)] = 39666, - [SMALL_STATE(1192)] = 39752, - [SMALL_STATE(1193)] = 39828, - [SMALL_STATE(1194)] = 39914, - [SMALL_STATE(1195)] = 39990, - [SMALL_STATE(1196)] = 40078, - [SMALL_STATE(1197)] = 40163, - [SMALL_STATE(1198)] = 40246, - [SMALL_STATE(1199)] = 40337, - [SMALL_STATE(1200)] = 40420, - [SMALL_STATE(1201)] = 40511, - [SMALL_STATE(1202)] = 40596, - [SMALL_STATE(1203)] = 40679, - [SMALL_STATE(1204)] = 40762, - [SMALL_STATE(1205)] = 40845, - [SMALL_STATE(1206)] = 40928, - [SMALL_STATE(1207)] = 41011, - [SMALL_STATE(1208)] = 41094, - [SMALL_STATE(1209)] = 41177, - [SMALL_STATE(1210)] = 41268, - [SMALL_STATE(1211)] = 41351, - [SMALL_STATE(1212)] = 41434, - [SMALL_STATE(1213)] = 41517, - [SMALL_STATE(1214)] = 41600, - [SMALL_STATE(1215)] = 41685, - [SMALL_STATE(1216)] = 41768, - [SMALL_STATE(1217)] = 41851, - [SMALL_STATE(1218)] = 41934, - [SMALL_STATE(1219)] = 42017, - [SMALL_STATE(1220)] = 42100, - [SMALL_STATE(1221)] = 42183, - [SMALL_STATE(1222)] = 42266, - [SMALL_STATE(1223)] = 42357, - [SMALL_STATE(1224)] = 42440, - [SMALL_STATE(1225)] = 42525, - [SMALL_STATE(1226)] = 42608, - [SMALL_STATE(1227)] = 42699, - [SMALL_STATE(1228)] = 42782, - [SMALL_STATE(1229)] = 42873, - [SMALL_STATE(1230)] = 42964, - [SMALL_STATE(1231)] = 43053, - [SMALL_STATE(1232)] = 43138, - [SMALL_STATE(1233)] = 43221, - [SMALL_STATE(1234)] = 43304, - [SMALL_STATE(1235)] = 43387, - [SMALL_STATE(1236)] = 43470, - [SMALL_STATE(1237)] = 43553, - [SMALL_STATE(1238)] = 43638, - [SMALL_STATE(1239)] = 43721, - [SMALL_STATE(1240)] = 43804, - [SMALL_STATE(1241)] = 43887, - [SMALL_STATE(1242)] = 43972, - [SMALL_STATE(1243)] = 44063, - [SMALL_STATE(1244)] = 44148, - [SMALL_STATE(1245)] = 44231, - [SMALL_STATE(1246)] = 44313, - [SMALL_STATE(1247)] = 44395, - [SMALL_STATE(1248)] = 44477, - [SMALL_STATE(1249)] = 44559, - [SMALL_STATE(1250)] = 44611, - [SMALL_STATE(1251)] = 44663, - [SMALL_STATE(1252)] = 44745, - [SMALL_STATE(1253)] = 44827, - [SMALL_STATE(1254)] = 44909, - [SMALL_STATE(1255)] = 44991, - [SMALL_STATE(1256)] = 45073, - [SMALL_STATE(1257)] = 45155, - [SMALL_STATE(1258)] = 45225, - [SMALL_STATE(1259)] = 45307, - [SMALL_STATE(1260)] = 45389, - [SMALL_STATE(1261)] = 45471, - [SMALL_STATE(1262)] = 45553, - [SMALL_STATE(1263)] = 45635, - [SMALL_STATE(1264)] = 45717, - [SMALL_STATE(1265)] = 45799, - [SMALL_STATE(1266)] = 45881, - [SMALL_STATE(1267)] = 45963, - [SMALL_STATE(1268)] = 46045, - [SMALL_STATE(1269)] = 46127, - [SMALL_STATE(1270)] = 46209, - [SMALL_STATE(1271)] = 46291, - [SMALL_STATE(1272)] = 46373, - [SMALL_STATE(1273)] = 46455, - [SMALL_STATE(1274)] = 46537, - [SMALL_STATE(1275)] = 46619, - [SMALL_STATE(1276)] = 46701, - [SMALL_STATE(1277)] = 46783, - [SMALL_STATE(1278)] = 46865, - [SMALL_STATE(1279)] = 46947, - [SMALL_STATE(1280)] = 47029, - [SMALL_STATE(1281)] = 47111, - [SMALL_STATE(1282)] = 47193, - [SMALL_STATE(1283)] = 47263, - [SMALL_STATE(1284)] = 47345, - [SMALL_STATE(1285)] = 47427, - [SMALL_STATE(1286)] = 47509, - [SMALL_STATE(1287)] = 47591, - [SMALL_STATE(1288)] = 47673, - [SMALL_STATE(1289)] = 47755, - [SMALL_STATE(1290)] = 47837, - [SMALL_STATE(1291)] = 47919, - [SMALL_STATE(1292)] = 48001, - [SMALL_STATE(1293)] = 48083, - [SMALL_STATE(1294)] = 48165, - [SMALL_STATE(1295)] = 48247, - [SMALL_STATE(1296)] = 48329, - [SMALL_STATE(1297)] = 48411, - [SMALL_STATE(1298)] = 48493, - [SMALL_STATE(1299)] = 48575, - [SMALL_STATE(1300)] = 48657, - [SMALL_STATE(1301)] = 48739, - [SMALL_STATE(1302)] = 48821, - [SMALL_STATE(1303)] = 48903, - [SMALL_STATE(1304)] = 48985, - [SMALL_STATE(1305)] = 49067, - [SMALL_STATE(1306)] = 49149, - [SMALL_STATE(1307)] = 49231, - [SMALL_STATE(1308)] = 49313, - [SMALL_STATE(1309)] = 49395, - [SMALL_STATE(1310)] = 49477, - [SMALL_STATE(1311)] = 49559, - [SMALL_STATE(1312)] = 49641, - [SMALL_STATE(1313)] = 49723, - [SMALL_STATE(1314)] = 49805, - [SMALL_STATE(1315)] = 49887, - [SMALL_STATE(1316)] = 49969, - [SMALL_STATE(1317)] = 50051, - [SMALL_STATE(1318)] = 50132, - [SMALL_STATE(1319)] = 50211, - [SMALL_STATE(1320)] = 50278, - [SMALL_STATE(1321)] = 50359, - [SMALL_STATE(1322)] = 50402, - [SMALL_STATE(1323)] = 50483, - [SMALL_STATE(1324)] = 50564, - [SMALL_STATE(1325)] = 50631, - [SMALL_STATE(1326)] = 50673, - [SMALL_STATE(1327)] = 50715, - [SMALL_STATE(1328)] = 50757, - [SMALL_STATE(1329)] = 50799, - [SMALL_STATE(1330)] = 50843, - [SMALL_STATE(1331)] = 50884, - [SMALL_STATE(1332)] = 50925, - [SMALL_STATE(1333)] = 50981, - [SMALL_STATE(1334)] = 51037, - [SMALL_STATE(1335)] = 51093, - [SMALL_STATE(1336)] = 51149, - [SMALL_STATE(1337)] = 51205, - [SMALL_STATE(1338)] = 51261, - [SMALL_STATE(1339)] = 51317, - [SMALL_STATE(1340)] = 51373, - [SMALL_STATE(1341)] = 51429, - [SMALL_STATE(1342)] = 51485, - [SMALL_STATE(1343)] = 51541, - [SMALL_STATE(1344)] = 51594, - [SMALL_STATE(1345)] = 51647, - [SMALL_STATE(1346)] = 51700, - [SMALL_STATE(1347)] = 51753, - [SMALL_STATE(1348)] = 51806, - [SMALL_STATE(1349)] = 51859, - [SMALL_STATE(1350)] = 51905, - [SMALL_STATE(1351)] = 51951, - [SMALL_STATE(1352)] = 51997, - [SMALL_STATE(1353)] = 52056, - [SMALL_STATE(1354)] = 52108, - [SMALL_STATE(1355)] = 52157, - [SMALL_STATE(1356)] = 52206, - [SMALL_STATE(1357)] = 52250, - [SMALL_STATE(1358)] = 52280, - [SMALL_STATE(1359)] = 52329, - [SMALL_STATE(1360)] = 52376, - [SMALL_STATE(1361)] = 52422, - [SMALL_STATE(1362)] = 52448, - [SMALL_STATE(1363)] = 52474, - [SMALL_STATE(1364)] = 52500, - [SMALL_STATE(1365)] = 52526, - [SMALL_STATE(1366)] = 52552, - [SMALL_STATE(1367)] = 52578, - [SMALL_STATE(1368)] = 52604, - [SMALL_STATE(1369)] = 52630, - [SMALL_STATE(1370)] = 52672, - [SMALL_STATE(1371)] = 52698, - [SMALL_STATE(1372)] = 52724, - [SMALL_STATE(1373)] = 52768, - [SMALL_STATE(1374)] = 52794, - [SMALL_STATE(1375)] = 52820, - [SMALL_STATE(1376)] = 52864, - [SMALL_STATE(1377)] = 52890, - [SMALL_STATE(1378)] = 52916, - [SMALL_STATE(1379)] = 52942, - [SMALL_STATE(1380)] = 52968, - [SMALL_STATE(1381)] = 52993, - [SMALL_STATE(1382)] = 53036, - [SMALL_STATE(1383)] = 53083, - [SMALL_STATE(1384)] = 53124, - [SMALL_STATE(1385)] = 53167, - [SMALL_STATE(1386)] = 53210, - [SMALL_STATE(1387)] = 53251, - [SMALL_STATE(1388)] = 53298, - [SMALL_STATE(1389)] = 53323, - [SMALL_STATE(1390)] = 53366, - [SMALL_STATE(1391)] = 53409, - [SMALL_STATE(1392)] = 53434, - [SMALL_STATE(1393)] = 53459, - [SMALL_STATE(1394)] = 53500, - [SMALL_STATE(1395)] = 53525, - [SMALL_STATE(1396)] = 53568, - [SMALL_STATE(1397)] = 53611, - [SMALL_STATE(1398)] = 53654, - [SMALL_STATE(1399)] = 53679, - [SMALL_STATE(1400)] = 53704, - [SMALL_STATE(1401)] = 53729, - [SMALL_STATE(1402)] = 53754, - [SMALL_STATE(1403)] = 53795, - [SMALL_STATE(1404)] = 53820, - [SMALL_STATE(1405)] = 53845, - [SMALL_STATE(1406)] = 53870, - [SMALL_STATE(1407)] = 53895, - [SMALL_STATE(1408)] = 53926, - [SMALL_STATE(1409)] = 53951, - [SMALL_STATE(1410)] = 53976, - [SMALL_STATE(1411)] = 54001, - [SMALL_STATE(1412)] = 54026, - [SMALL_STATE(1413)] = 54051, - [SMALL_STATE(1414)] = 54076, - [SMALL_STATE(1415)] = 54101, - [SMALL_STATE(1416)] = 54126, - [SMALL_STATE(1417)] = 54166, - [SMALL_STATE(1418)] = 54202, - [SMALL_STATE(1419)] = 54242, - [SMALL_STATE(1420)] = 54282, - [SMALL_STATE(1421)] = 54319, - [SMALL_STATE(1422)] = 54348, - [SMALL_STATE(1423)] = 54381, - [SMALL_STATE(1424)] = 54418, - [SMALL_STATE(1425)] = 54443, - [SMALL_STATE(1426)] = 54480, - [SMALL_STATE(1427)] = 54505, - [SMALL_STATE(1428)] = 54530, - [SMALL_STATE(1429)] = 54555, - [SMALL_STATE(1430)] = 54588, - [SMALL_STATE(1431)] = 54625, - [SMALL_STATE(1432)] = 54658, - [SMALL_STATE(1433)] = 54691, - [SMALL_STATE(1434)] = 54728, - [SMALL_STATE(1435)] = 54760, - [SMALL_STATE(1436)] = 54784, - [SMALL_STATE(1437)] = 54812, - [SMALL_STATE(1438)] = 54840, - [SMALL_STATE(1439)] = 54874, - [SMALL_STATE(1440)] = 54908, - [SMALL_STATE(1441)] = 54940, - [SMALL_STATE(1442)] = 54968, - [SMALL_STATE(1443)] = 54994, - [SMALL_STATE(1444)] = 55024, - [SMALL_STATE(1445)] = 55048, - [SMALL_STATE(1446)] = 55074, - [SMALL_STATE(1447)] = 55098, - [SMALL_STATE(1448)] = 55132, - [SMALL_STATE(1449)] = 55156, - [SMALL_STATE(1450)] = 55180, - [SMALL_STATE(1451)] = 55212, - [SMALL_STATE(1452)] = 55246, - [SMALL_STATE(1453)] = 55280, - [SMALL_STATE(1454)] = 55312, - [SMALL_STATE(1455)] = 55336, - [SMALL_STATE(1456)] = 55363, - [SMALL_STATE(1457)] = 55394, - [SMALL_STATE(1458)] = 55425, - [SMALL_STATE(1459)] = 55454, - [SMALL_STATE(1460)] = 55483, - [SMALL_STATE(1461)] = 55508, - [SMALL_STATE(1462)] = 55535, - [SMALL_STATE(1463)] = 55564, - [SMALL_STATE(1464)] = 55595, - [SMALL_STATE(1465)] = 55624, - [SMALL_STATE(1466)] = 55653, - [SMALL_STATE(1467)] = 55682, - [SMALL_STATE(1468)] = 55709, - [SMALL_STATE(1469)] = 55732, - [SMALL_STATE(1470)] = 55759, - [SMALL_STATE(1471)] = 55786, - [SMALL_STATE(1472)] = 55809, - [SMALL_STATE(1473)] = 55840, - [SMALL_STATE(1474)] = 55869, - [SMALL_STATE(1475)] = 55896, - [SMALL_STATE(1476)] = 55925, - [SMALL_STATE(1477)] = 55952, - [SMALL_STATE(1478)] = 55975, - [SMALL_STATE(1479)] = 56008, - [SMALL_STATE(1480)] = 56033, - [SMALL_STATE(1481)] = 56058, - [SMALL_STATE(1482)] = 56085, - [SMALL_STATE(1483)] = 56118, - [SMALL_STATE(1484)] = 56147, - [SMALL_STATE(1485)] = 56176, - [SMALL_STATE(1486)] = 56207, - [SMALL_STATE(1487)] = 56236, - [SMALL_STATE(1488)] = 56263, - [SMALL_STATE(1489)] = 56294, - [SMALL_STATE(1490)] = 56323, - [SMALL_STATE(1491)] = 56354, - [SMALL_STATE(1492)] = 56383, - [SMALL_STATE(1493)] = 56412, - [SMALL_STATE(1494)] = 56441, - [SMALL_STATE(1495)] = 56470, - [SMALL_STATE(1496)] = 56501, - [SMALL_STATE(1497)] = 56530, - [SMALL_STATE(1498)] = 56561, - [SMALL_STATE(1499)] = 56590, - [SMALL_STATE(1500)] = 56621, - [SMALL_STATE(1501)] = 56650, - [SMALL_STATE(1502)] = 56679, - [SMALL_STATE(1503)] = 56708, - [SMALL_STATE(1504)] = 56739, - [SMALL_STATE(1505)] = 56768, - [SMALL_STATE(1506)] = 56797, - [SMALL_STATE(1507)] = 56826, - [SMALL_STATE(1508)] = 56855, - [SMALL_STATE(1509)] = 56884, - [SMALL_STATE(1510)] = 56915, - [SMALL_STATE(1511)] = 56944, - [SMALL_STATE(1512)] = 56975, - [SMALL_STATE(1513)] = 57002, - [SMALL_STATE(1514)] = 57029, - [SMALL_STATE(1515)] = 57058, - [SMALL_STATE(1516)] = 57087, - [SMALL_STATE(1517)] = 57116, - [SMALL_STATE(1518)] = 57150, - [SMALL_STATE(1519)] = 57184, - [SMALL_STATE(1520)] = 57218, - [SMALL_STATE(1521)] = 57252, - [SMALL_STATE(1522)] = 57286, - [SMALL_STATE(1523)] = 57316, - [SMALL_STATE(1524)] = 57342, - [SMALL_STATE(1525)] = 57368, - [SMALL_STATE(1526)] = 57394, - [SMALL_STATE(1527)] = 57422, - [SMALL_STATE(1528)] = 57452, - [SMALL_STATE(1529)] = 57484, - [SMALL_STATE(1530)] = 57518, - [SMALL_STATE(1531)] = 57541, - [SMALL_STATE(1532)] = 57564, - [SMALL_STATE(1533)] = 57587, - [SMALL_STATE(1534)] = 57610, - [SMALL_STATE(1535)] = 57633, - [SMALL_STATE(1536)] = 57654, - [SMALL_STATE(1537)] = 57675, - [SMALL_STATE(1538)] = 57696, - [SMALL_STATE(1539)] = 57717, - [SMALL_STATE(1540)] = 57744, - [SMALL_STATE(1541)] = 57767, - [SMALL_STATE(1542)] = 57790, - [SMALL_STATE(1543)] = 57815, - [SMALL_STATE(1544)] = 57838, - [SMALL_STATE(1545)] = 57865, - [SMALL_STATE(1546)] = 57888, - [SMALL_STATE(1547)] = 57909, - [SMALL_STATE(1548)] = 57936, - [SMALL_STATE(1549)] = 57957, - [SMALL_STATE(1550)] = 57980, - [SMALL_STATE(1551)] = 58003, - [SMALL_STATE(1552)] = 58024, - [SMALL_STATE(1553)] = 58047, - [SMALL_STATE(1554)] = 58070, - [SMALL_STATE(1555)] = 58091, - [SMALL_STATE(1556)] = 58114, - [SMALL_STATE(1557)] = 58135, - [SMALL_STATE(1558)] = 58162, - [SMALL_STATE(1559)] = 58183, - [SMALL_STATE(1560)] = 58206, - [SMALL_STATE(1561)] = 58235, - [SMALL_STATE(1562)] = 58256, - [SMALL_STATE(1563)] = 58277, - [SMALL_STATE(1564)] = 58300, - [SMALL_STATE(1565)] = 58327, - [SMALL_STATE(1566)] = 58350, - [SMALL_STATE(1567)] = 58371, - [SMALL_STATE(1568)] = 58398, - [SMALL_STATE(1569)] = 58419, - [SMALL_STATE(1570)] = 58442, - [SMALL_STATE(1571)] = 58465, - [SMALL_STATE(1572)] = 58488, - [SMALL_STATE(1573)] = 58511, - [SMALL_STATE(1574)] = 58542, - [SMALL_STATE(1575)] = 58569, - [SMALL_STATE(1576)] = 58597, - [SMALL_STATE(1577)] = 58625, - [SMALL_STATE(1578)] = 58653, - [SMALL_STATE(1579)] = 58681, - [SMALL_STATE(1580)] = 58707, - [SMALL_STATE(1581)] = 58735, - [SMALL_STATE(1582)] = 58763, - [SMALL_STATE(1583)] = 58791, - [SMALL_STATE(1584)] = 58817, - [SMALL_STATE(1585)] = 58845, - [SMALL_STATE(1586)] = 58873, - [SMALL_STATE(1587)] = 58901, - [SMALL_STATE(1588)] = 58927, - [SMALL_STATE(1589)] = 58947, - [SMALL_STATE(1590)] = 58975, - [SMALL_STATE(1591)] = 58997, - [SMALL_STATE(1592)] = 59025, - [SMALL_STATE(1593)] = 59053, - [SMALL_STATE(1594)] = 59081, - [SMALL_STATE(1595)] = 59109, - [SMALL_STATE(1596)] = 59137, - [SMALL_STATE(1597)] = 59165, - [SMALL_STATE(1598)] = 59193, - [SMALL_STATE(1599)] = 59221, - [SMALL_STATE(1600)] = 59241, - [SMALL_STATE(1601)] = 59261, - [SMALL_STATE(1602)] = 59281, - [SMALL_STATE(1603)] = 59307, - [SMALL_STATE(1604)] = 59335, - [SMALL_STATE(1605)] = 59363, - [SMALL_STATE(1606)] = 59391, - [SMALL_STATE(1607)] = 59419, - [SMALL_STATE(1608)] = 59447, - [SMALL_STATE(1609)] = 59467, - [SMALL_STATE(1610)] = 59487, - [SMALL_STATE(1611)] = 59515, - [SMALL_STATE(1612)] = 59535, - [SMALL_STATE(1613)] = 59563, - [SMALL_STATE(1614)] = 59591, - [SMALL_STATE(1615)] = 59611, - [SMALL_STATE(1616)] = 59637, - [SMALL_STATE(1617)] = 59663, - [SMALL_STATE(1618)] = 59691, - [SMALL_STATE(1619)] = 59711, - [SMALL_STATE(1620)] = 59735, - [SMALL_STATE(1621)] = 59763, - [SMALL_STATE(1622)] = 59791, - [SMALL_STATE(1623)] = 59811, - [SMALL_STATE(1624)] = 59831, - [SMALL_STATE(1625)] = 59857, - [SMALL_STATE(1626)] = 59881, - [SMALL_STATE(1627)] = 59909, - [SMALL_STATE(1628)] = 59929, - [SMALL_STATE(1629)] = 59949, - [SMALL_STATE(1630)] = 59975, - [SMALL_STATE(1631)] = 59999, - [SMALL_STATE(1632)] = 60027, - [SMALL_STATE(1633)] = 60055, - [SMALL_STATE(1634)] = 60083, - [SMALL_STATE(1635)] = 60109, - [SMALL_STATE(1636)] = 60137, - [SMALL_STATE(1637)] = 60165, - [SMALL_STATE(1638)] = 60185, - [SMALL_STATE(1639)] = 60211, - [SMALL_STATE(1640)] = 60239, - [SMALL_STATE(1641)] = 60259, - [SMALL_STATE(1642)] = 60279, - [SMALL_STATE(1643)] = 60299, - [SMALL_STATE(1644)] = 60327, - [SMALL_STATE(1645)] = 60351, - [SMALL_STATE(1646)] = 60371, - [SMALL_STATE(1647)] = 60391, - [SMALL_STATE(1648)] = 60419, - [SMALL_STATE(1649)] = 60447, - [SMALL_STATE(1650)] = 60473, - [SMALL_STATE(1651)] = 60499, - [SMALL_STATE(1652)] = 60519, - [SMALL_STATE(1653)] = 60543, - [SMALL_STATE(1654)] = 60571, - [SMALL_STATE(1655)] = 60596, - [SMALL_STATE(1656)] = 60619, - [SMALL_STATE(1657)] = 60644, - [SMALL_STATE(1658)] = 60669, - [SMALL_STATE(1659)] = 60690, - [SMALL_STATE(1660)] = 60711, - [SMALL_STATE(1661)] = 60734, - [SMALL_STATE(1662)] = 60759, - [SMALL_STATE(1663)] = 60780, - [SMALL_STATE(1664)] = 60803, - [SMALL_STATE(1665)] = 60824, - [SMALL_STATE(1666)] = 60845, - [SMALL_STATE(1667)] = 60868, - [SMALL_STATE(1668)] = 60889, - [SMALL_STATE(1669)] = 60910, - [SMALL_STATE(1670)] = 60931, - [SMALL_STATE(1671)] = 60954, - [SMALL_STATE(1672)] = 60973, - [SMALL_STATE(1673)] = 60998, - [SMALL_STATE(1674)] = 61017, - [SMALL_STATE(1675)] = 61042, - [SMALL_STATE(1676)] = 61065, - [SMALL_STATE(1677)] = 61088, - [SMALL_STATE(1678)] = 61113, - [SMALL_STATE(1679)] = 61134, - [SMALL_STATE(1680)] = 61159, - [SMALL_STATE(1681)] = 61182, - [SMALL_STATE(1682)] = 61203, - [SMALL_STATE(1683)] = 61224, - [SMALL_STATE(1684)] = 61245, - [SMALL_STATE(1685)] = 61270, - [SMALL_STATE(1686)] = 61289, - [SMALL_STATE(1687)] = 61312, - [SMALL_STATE(1688)] = 61333, - [SMALL_STATE(1689)] = 61356, - [SMALL_STATE(1690)] = 61379, - [SMALL_STATE(1691)] = 61400, - [SMALL_STATE(1692)] = 61421, - [SMALL_STATE(1693)] = 61442, - [SMALL_STATE(1694)] = 61467, - [SMALL_STATE(1695)] = 61492, - [SMALL_STATE(1696)] = 61511, - [SMALL_STATE(1697)] = 61530, - [SMALL_STATE(1698)] = 61549, - [SMALL_STATE(1699)] = 61574, - [SMALL_STATE(1700)] = 61595, - [SMALL_STATE(1701)] = 61614, - [SMALL_STATE(1702)] = 61635, - [SMALL_STATE(1703)] = 61656, - [SMALL_STATE(1704)] = 61677, - [SMALL_STATE(1705)] = 61698, - [SMALL_STATE(1706)] = 61723, - [SMALL_STATE(1707)] = 61744, - [SMALL_STATE(1708)] = 61767, - [SMALL_STATE(1709)] = 61786, - [SMALL_STATE(1710)] = 61811, - [SMALL_STATE(1711)] = 61834, - [SMALL_STATE(1712)] = 61859, - [SMALL_STATE(1713)] = 61882, - [SMALL_STATE(1714)] = 61903, - [SMALL_STATE(1715)] = 61924, - [SMALL_STATE(1716)] = 61947, - [SMALL_STATE(1717)] = 61970, - [SMALL_STATE(1718)] = 61989, - [SMALL_STATE(1719)] = 62010, - [SMALL_STATE(1720)] = 62031, - [SMALL_STATE(1721)] = 62052, - [SMALL_STATE(1722)] = 62071, - [SMALL_STATE(1723)] = 62094, - [SMALL_STATE(1724)] = 62119, - [SMALL_STATE(1725)] = 62140, - [SMALL_STATE(1726)] = 62161, - [SMALL_STATE(1727)] = 62182, - [SMALL_STATE(1728)] = 62199, - [SMALL_STATE(1729)] = 62220, - [SMALL_STATE(1730)] = 62241, - [SMALL_STATE(1731)] = 62258, - [SMALL_STATE(1732)] = 62277, - [SMALL_STATE(1733)] = 62302, - [SMALL_STATE(1734)] = 62321, - [SMALL_STATE(1735)] = 62346, - [SMALL_STATE(1736)] = 62367, - [SMALL_STATE(1737)] = 62392, - [SMALL_STATE(1738)] = 62417, - [SMALL_STATE(1739)] = 62442, - [SMALL_STATE(1740)] = 62463, - [SMALL_STATE(1741)] = 62488, - [SMALL_STATE(1742)] = 62509, - [SMALL_STATE(1743)] = 62534, - [SMALL_STATE(1744)] = 62555, - [SMALL_STATE(1745)] = 62578, - [SMALL_STATE(1746)] = 62601, - [SMALL_STATE(1747)] = 62624, - [SMALL_STATE(1748)] = 62645, - [SMALL_STATE(1749)] = 62666, - [SMALL_STATE(1750)] = 62683, - [SMALL_STATE(1751)] = 62700, - [SMALL_STATE(1752)] = 62717, - [SMALL_STATE(1753)] = 62740, - [SMALL_STATE(1754)] = 62763, - [SMALL_STATE(1755)] = 62786, - [SMALL_STATE(1756)] = 62811, - [SMALL_STATE(1757)] = 62834, - [SMALL_STATE(1758)] = 62850, - [SMALL_STATE(1759)] = 62870, - [SMALL_STATE(1760)] = 62892, - [SMALL_STATE(1761)] = 62914, - [SMALL_STATE(1762)] = 62934, - [SMALL_STATE(1763)] = 62950, - [SMALL_STATE(1764)] = 62972, - [SMALL_STATE(1765)] = 62992, - [SMALL_STATE(1766)] = 63010, - [SMALL_STATE(1767)] = 63032, - [SMALL_STATE(1768)] = 63054, - [SMALL_STATE(1769)] = 63074, - [SMALL_STATE(1770)] = 63096, - [SMALL_STATE(1771)] = 63118, - [SMALL_STATE(1772)] = 63134, - [SMALL_STATE(1773)] = 63156, - [SMALL_STATE(1774)] = 63174, - [SMALL_STATE(1775)] = 63196, - [SMALL_STATE(1776)] = 63212, - [SMALL_STATE(1777)] = 63232, - [SMALL_STATE(1778)] = 63254, - [SMALL_STATE(1779)] = 63274, - [SMALL_STATE(1780)] = 63296, - [SMALL_STATE(1781)] = 63316, - [SMALL_STATE(1782)] = 63334, - [SMALL_STATE(1783)] = 63354, - [SMALL_STATE(1784)] = 63374, - [SMALL_STATE(1785)] = 63390, - [SMALL_STATE(1786)] = 63408, - [SMALL_STATE(1787)] = 63428, - [SMALL_STATE(1788)] = 63444, - [SMALL_STATE(1789)] = 63466, - [SMALL_STATE(1790)] = 63484, - [SMALL_STATE(1791)] = 63502, - [SMALL_STATE(1792)] = 63522, - [SMALL_STATE(1793)] = 63544, - [SMALL_STATE(1794)] = 63564, - [SMALL_STATE(1795)] = 63584, - [SMALL_STATE(1796)] = 63602, - [SMALL_STATE(1797)] = 63622, - [SMALL_STATE(1798)] = 63642, - [SMALL_STATE(1799)] = 63662, - [SMALL_STATE(1800)] = 63682, - [SMALL_STATE(1801)] = 63704, - [SMALL_STATE(1802)] = 63722, - [SMALL_STATE(1803)] = 63740, - [SMALL_STATE(1804)] = 63762, - [SMALL_STATE(1805)] = 63784, - [SMALL_STATE(1806)] = 63802, - [SMALL_STATE(1807)] = 63822, - [SMALL_STATE(1808)] = 63838, - [SMALL_STATE(1809)] = 63860, - [SMALL_STATE(1810)] = 63876, - [SMALL_STATE(1811)] = 63898, - [SMALL_STATE(1812)] = 63918, - [SMALL_STATE(1813)] = 63940, - [SMALL_STATE(1814)] = 63962, - [SMALL_STATE(1815)] = 63982, - [SMALL_STATE(1816)] = 64004, - [SMALL_STATE(1817)] = 64026, - [SMALL_STATE(1818)] = 64042, - [SMALL_STATE(1819)] = 64062, - [SMALL_STATE(1820)] = 64082, - [SMALL_STATE(1821)] = 64098, - [SMALL_STATE(1822)] = 64114, - [SMALL_STATE(1823)] = 64130, - [SMALL_STATE(1824)] = 64150, - [SMALL_STATE(1825)] = 64172, - [SMALL_STATE(1826)] = 64188, - [SMALL_STATE(1827)] = 64210, - [SMALL_STATE(1828)] = 64230, - [SMALL_STATE(1829)] = 64246, - [SMALL_STATE(1830)] = 64268, - [SMALL_STATE(1831)] = 64290, - [SMALL_STATE(1832)] = 64312, - [SMALL_STATE(1833)] = 64334, - [SMALL_STATE(1834)] = 64356, - [SMALL_STATE(1835)] = 64374, - [SMALL_STATE(1836)] = 64396, - [SMALL_STATE(1837)] = 64418, - [SMALL_STATE(1838)] = 64440, - [SMALL_STATE(1839)] = 64460, - [SMALL_STATE(1840)] = 64482, - [SMALL_STATE(1841)] = 64504, - [SMALL_STATE(1842)] = 64526, - [SMALL_STATE(1843)] = 64548, - [SMALL_STATE(1844)] = 64570, - [SMALL_STATE(1845)] = 64592, - [SMALL_STATE(1846)] = 64612, - [SMALL_STATE(1847)] = 64634, - [SMALL_STATE(1848)] = 64652, - [SMALL_STATE(1849)] = 64674, - [SMALL_STATE(1850)] = 64696, - [SMALL_STATE(1851)] = 64716, - [SMALL_STATE(1852)] = 64738, - [SMALL_STATE(1853)] = 64760, - [SMALL_STATE(1854)] = 64780, - [SMALL_STATE(1855)] = 64800, - [SMALL_STATE(1856)] = 64820, - [SMALL_STATE(1857)] = 64842, - [SMALL_STATE(1858)] = 64862, - [SMALL_STATE(1859)] = 64882, - [SMALL_STATE(1860)] = 64904, - [SMALL_STATE(1861)] = 64924, - [SMALL_STATE(1862)] = 64944, - [SMALL_STATE(1863)] = 64964, - [SMALL_STATE(1864)] = 64982, - [SMALL_STATE(1865)] = 65004, - [SMALL_STATE(1866)] = 65026, - [SMALL_STATE(1867)] = 65046, - [SMALL_STATE(1868)] = 65068, - [SMALL_STATE(1869)] = 65088, - [SMALL_STATE(1870)] = 65110, - [SMALL_STATE(1871)] = 65132, - [SMALL_STATE(1872)] = 65148, - [SMALL_STATE(1873)] = 65170, - [SMALL_STATE(1874)] = 65186, - [SMALL_STATE(1875)] = 65208, - [SMALL_STATE(1876)] = 65226, - [SMALL_STATE(1877)] = 65242, - [SMALL_STATE(1878)] = 65262, - [SMALL_STATE(1879)] = 65278, - [SMALL_STATE(1880)] = 65298, - [SMALL_STATE(1881)] = 65320, - [SMALL_STATE(1882)] = 65342, - [SMALL_STATE(1883)] = 65362, - [SMALL_STATE(1884)] = 65384, - [SMALL_STATE(1885)] = 65404, - [SMALL_STATE(1886)] = 65426, - [SMALL_STATE(1887)] = 65446, - [SMALL_STATE(1888)] = 65466, - [SMALL_STATE(1889)] = 65486, - [SMALL_STATE(1890)] = 65502, - [SMALL_STATE(1891)] = 65522, - [SMALL_STATE(1892)] = 65544, - [SMALL_STATE(1893)] = 65564, - [SMALL_STATE(1894)] = 65584, - [SMALL_STATE(1895)] = 65606, - [SMALL_STATE(1896)] = 65628, - [SMALL_STATE(1897)] = 65650, - [SMALL_STATE(1898)] = 65672, - [SMALL_STATE(1899)] = 65694, - [SMALL_STATE(1900)] = 65716, - [SMALL_STATE(1901)] = 65738, - [SMALL_STATE(1902)] = 65758, - [SMALL_STATE(1903)] = 65778, - [SMALL_STATE(1904)] = 65798, - [SMALL_STATE(1905)] = 65818, - [SMALL_STATE(1906)] = 65836, - [SMALL_STATE(1907)] = 65856, - [SMALL_STATE(1908)] = 65872, - [SMALL_STATE(1909)] = 65894, - [SMALL_STATE(1910)] = 65916, - [SMALL_STATE(1911)] = 65934, - [SMALL_STATE(1912)] = 65953, - [SMALL_STATE(1913)] = 65970, - [SMALL_STATE(1914)] = 65989, - [SMALL_STATE(1915)] = 66008, - [SMALL_STATE(1916)] = 66027, - [SMALL_STATE(1917)] = 66046, - [SMALL_STATE(1918)] = 66063, - [SMALL_STATE(1919)] = 66082, - [SMALL_STATE(1920)] = 66099, - [SMALL_STATE(1921)] = 66116, - [SMALL_STATE(1922)] = 66133, - [SMALL_STATE(1923)] = 66150, - [SMALL_STATE(1924)] = 66167, - [SMALL_STATE(1925)] = 66184, - [SMALL_STATE(1926)] = 66201, - [SMALL_STATE(1927)] = 66218, - [SMALL_STATE(1928)] = 66235, - [SMALL_STATE(1929)] = 66252, - [SMALL_STATE(1930)] = 66271, - [SMALL_STATE(1931)] = 66290, - [SMALL_STATE(1932)] = 66307, - [SMALL_STATE(1933)] = 66324, - [SMALL_STATE(1934)] = 66343, - [SMALL_STATE(1935)] = 66360, - [SMALL_STATE(1936)] = 66377, - [SMALL_STATE(1937)] = 66394, - [SMALL_STATE(1938)] = 66411, - [SMALL_STATE(1939)] = 66428, - [SMALL_STATE(1940)] = 66445, - [SMALL_STATE(1941)] = 66464, - [SMALL_STATE(1942)] = 66481, - [SMALL_STATE(1943)] = 66498, - [SMALL_STATE(1944)] = 66515, - [SMALL_STATE(1945)] = 66532, - [SMALL_STATE(1946)] = 66549, - [SMALL_STATE(1947)] = 66566, - [SMALL_STATE(1948)] = 66585, - [SMALL_STATE(1949)] = 66604, - [SMALL_STATE(1950)] = 66623, - [SMALL_STATE(1951)] = 66640, - [SMALL_STATE(1952)] = 66659, - [SMALL_STATE(1953)] = 66676, - [SMALL_STATE(1954)] = 66695, - [SMALL_STATE(1955)] = 66714, - [SMALL_STATE(1956)] = 66731, - [SMALL_STATE(1957)] = 66748, - [SMALL_STATE(1958)] = 66765, - [SMALL_STATE(1959)] = 66784, - [SMALL_STATE(1960)] = 66803, - [SMALL_STATE(1961)] = 66820, - [SMALL_STATE(1962)] = 66837, - [SMALL_STATE(1963)] = 66854, - [SMALL_STATE(1964)] = 66871, - [SMALL_STATE(1965)] = 66888, - [SMALL_STATE(1966)] = 66905, - [SMALL_STATE(1967)] = 66924, - [SMALL_STATE(1968)] = 66941, - [SMALL_STATE(1969)] = 66960, - [SMALL_STATE(1970)] = 66977, - [SMALL_STATE(1971)] = 66994, - [SMALL_STATE(1972)] = 67011, - [SMALL_STATE(1973)] = 67028, - [SMALL_STATE(1974)] = 67045, - [SMALL_STATE(1975)] = 67062, - [SMALL_STATE(1976)] = 67081, - [SMALL_STATE(1977)] = 67096, - [SMALL_STATE(1978)] = 67113, - [SMALL_STATE(1979)] = 67130, - [SMALL_STATE(1980)] = 67149, - [SMALL_STATE(1981)] = 67164, - [SMALL_STATE(1982)] = 67181, - [SMALL_STATE(1983)] = 67198, - [SMALL_STATE(1984)] = 67217, - [SMALL_STATE(1985)] = 67234, - [SMALL_STATE(1986)] = 67253, - [SMALL_STATE(1987)] = 67272, - [SMALL_STATE(1988)] = 67291, - [SMALL_STATE(1989)] = 67310, - [SMALL_STATE(1990)] = 67327, - [SMALL_STATE(1991)] = 67346, - [SMALL_STATE(1992)] = 67363, - [SMALL_STATE(1993)] = 67382, - [SMALL_STATE(1994)] = 67399, - [SMALL_STATE(1995)] = 67416, - [SMALL_STATE(1996)] = 67431, - [SMALL_STATE(1997)] = 67448, - [SMALL_STATE(1998)] = 67465, - [SMALL_STATE(1999)] = 67484, - [SMALL_STATE(2000)] = 67501, - [SMALL_STATE(2001)] = 67518, - [SMALL_STATE(2002)] = 67535, - [SMALL_STATE(2003)] = 67552, - [SMALL_STATE(2004)] = 67571, - [SMALL_STATE(2005)] = 67590, - [SMALL_STATE(2006)] = 67607, - [SMALL_STATE(2007)] = 67624, - [SMALL_STATE(2008)] = 67641, - [SMALL_STATE(2009)] = 67658, - [SMALL_STATE(2010)] = 67675, - [SMALL_STATE(2011)] = 67690, - [SMALL_STATE(2012)] = 67709, - [SMALL_STATE(2013)] = 67728, - [SMALL_STATE(2014)] = 67745, - [SMALL_STATE(2015)] = 67764, - [SMALL_STATE(2016)] = 67783, - [SMALL_STATE(2017)] = 67800, - [SMALL_STATE(2018)] = 67817, - [SMALL_STATE(2019)] = 67836, - [SMALL_STATE(2020)] = 67853, - [SMALL_STATE(2021)] = 67870, - [SMALL_STATE(2022)] = 67889, - [SMALL_STATE(2023)] = 67908, - [SMALL_STATE(2024)] = 67925, - [SMALL_STATE(2025)] = 67942, - [SMALL_STATE(2026)] = 67959, - [SMALL_STATE(2027)] = 67976, - [SMALL_STATE(2028)] = 67995, - [SMALL_STATE(2029)] = 68012, - [SMALL_STATE(2030)] = 68029, - [SMALL_STATE(2031)] = 68048, - [SMALL_STATE(2032)] = 68065, - [SMALL_STATE(2033)] = 68082, - [SMALL_STATE(2034)] = 68099, - [SMALL_STATE(2035)] = 68116, - [SMALL_STATE(2036)] = 68133, - [SMALL_STATE(2037)] = 68150, - [SMALL_STATE(2038)] = 68167, - [SMALL_STATE(2039)] = 68182, - [SMALL_STATE(2040)] = 68199, - [SMALL_STATE(2041)] = 68218, - [SMALL_STATE(2042)] = 68237, - [SMALL_STATE(2043)] = 68254, - [SMALL_STATE(2044)] = 68273, - [SMALL_STATE(2045)] = 68288, - [SMALL_STATE(2046)] = 68305, - [SMALL_STATE(2047)] = 68324, - [SMALL_STATE(2048)] = 68341, - [SMALL_STATE(2049)] = 68360, - [SMALL_STATE(2050)] = 68377, - [SMALL_STATE(2051)] = 68394, - [SMALL_STATE(2052)] = 68411, - [SMALL_STATE(2053)] = 68430, - [SMALL_STATE(2054)] = 68447, - [SMALL_STATE(2055)] = 68464, - [SMALL_STATE(2056)] = 68481, - [SMALL_STATE(2057)] = 68498, - [SMALL_STATE(2058)] = 68517, - [SMALL_STATE(2059)] = 68532, - [SMALL_STATE(2060)] = 68547, - [SMALL_STATE(2061)] = 68566, - [SMALL_STATE(2062)] = 68583, - [SMALL_STATE(2063)] = 68600, - [SMALL_STATE(2064)] = 68615, - [SMALL_STATE(2065)] = 68632, - [SMALL_STATE(2066)] = 68649, - [SMALL_STATE(2067)] = 68668, - [SMALL_STATE(2068)] = 68687, - [SMALL_STATE(2069)] = 68704, - [SMALL_STATE(2070)] = 68721, - [SMALL_STATE(2071)] = 68736, - [SMALL_STATE(2072)] = 68753, - [SMALL_STATE(2073)] = 68768, - [SMALL_STATE(2074)] = 68785, - [SMALL_STATE(2075)] = 68802, - [SMALL_STATE(2076)] = 68819, - [SMALL_STATE(2077)] = 68838, - [SMALL_STATE(2078)] = 68857, - [SMALL_STATE(2079)] = 68872, - [SMALL_STATE(2080)] = 68887, - [SMALL_STATE(2081)] = 68904, - [SMALL_STATE(2082)] = 68921, - [SMALL_STATE(2083)] = 68940, - [SMALL_STATE(2084)] = 68957, - [SMALL_STATE(2085)] = 68974, - [SMALL_STATE(2086)] = 68991, - [SMALL_STATE(2087)] = 69008, - [SMALL_STATE(2088)] = 69027, - [SMALL_STATE(2089)] = 69042, - [SMALL_STATE(2090)] = 69057, - [SMALL_STATE(2091)] = 69076, - [SMALL_STATE(2092)] = 69095, - [SMALL_STATE(2093)] = 69114, - [SMALL_STATE(2094)] = 69133, - [SMALL_STATE(2095)] = 69150, - [SMALL_STATE(2096)] = 69169, - [SMALL_STATE(2097)] = 69188, - [SMALL_STATE(2098)] = 69207, - [SMALL_STATE(2099)] = 69222, - [SMALL_STATE(2100)] = 69239, - [SMALL_STATE(2101)] = 69256, - [SMALL_STATE(2102)] = 69273, - [SMALL_STATE(2103)] = 69292, - [SMALL_STATE(2104)] = 69309, - [SMALL_STATE(2105)] = 69326, - [SMALL_STATE(2106)] = 69345, - [SMALL_STATE(2107)] = 69362, - [SMALL_STATE(2108)] = 69379, - [SMALL_STATE(2109)] = 69396, - [SMALL_STATE(2110)] = 69415, - [SMALL_STATE(2111)] = 69434, - [SMALL_STATE(2112)] = 69453, - [SMALL_STATE(2113)] = 69470, - [SMALL_STATE(2114)] = 69487, - [SMALL_STATE(2115)] = 69506, - [SMALL_STATE(2116)] = 69523, - [SMALL_STATE(2117)] = 69540, - [SMALL_STATE(2118)] = 69557, - [SMALL_STATE(2119)] = 69574, - [SMALL_STATE(2120)] = 69593, - [SMALL_STATE(2121)] = 69610, - [SMALL_STATE(2122)] = 69627, - [SMALL_STATE(2123)] = 69644, - [SMALL_STATE(2124)] = 69659, - [SMALL_STATE(2125)] = 69676, - [SMALL_STATE(2126)] = 69691, - [SMALL_STATE(2127)] = 69710, - [SMALL_STATE(2128)] = 69727, - [SMALL_STATE(2129)] = 69746, - [SMALL_STATE(2130)] = 69765, - [SMALL_STATE(2131)] = 69780, - [SMALL_STATE(2132)] = 69797, - [SMALL_STATE(2133)] = 69816, - [SMALL_STATE(2134)] = 69835, - [SMALL_STATE(2135)] = 69854, - [SMALL_STATE(2136)] = 69873, - [SMALL_STATE(2137)] = 69892, - [SMALL_STATE(2138)] = 69911, - [SMALL_STATE(2139)] = 69928, - [SMALL_STATE(2140)] = 69945, - [SMALL_STATE(2141)] = 69962, - [SMALL_STATE(2142)] = 69979, - [SMALL_STATE(2143)] = 69998, - [SMALL_STATE(2144)] = 70017, - [SMALL_STATE(2145)] = 70034, - [SMALL_STATE(2146)] = 70053, - [SMALL_STATE(2147)] = 70070, - [SMALL_STATE(2148)] = 70089, - [SMALL_STATE(2149)] = 70104, - [SMALL_STATE(2150)] = 70121, - [SMALL_STATE(2151)] = 70138, - [SMALL_STATE(2152)] = 70157, - [SMALL_STATE(2153)] = 70176, - [SMALL_STATE(2154)] = 70191, - [SMALL_STATE(2155)] = 70210, - [SMALL_STATE(2156)] = 70227, - [SMALL_STATE(2157)] = 70242, - [SMALL_STATE(2158)] = 70261, - [SMALL_STATE(2159)] = 70278, - [SMALL_STATE(2160)] = 70295, - [SMALL_STATE(2161)] = 70310, - [SMALL_STATE(2162)] = 70327, - [SMALL_STATE(2163)] = 70346, - [SMALL_STATE(2164)] = 70363, - [SMALL_STATE(2165)] = 70378, - [SMALL_STATE(2166)] = 70397, - [SMALL_STATE(2167)] = 70416, - [SMALL_STATE(2168)] = 70433, - [SMALL_STATE(2169)] = 70452, - [SMALL_STATE(2170)] = 70471, - [SMALL_STATE(2171)] = 70488, - [SMALL_STATE(2172)] = 70505, - [SMALL_STATE(2173)] = 70524, - [SMALL_STATE(2174)] = 70543, - [SMALL_STATE(2175)] = 70562, - [SMALL_STATE(2176)] = 70579, - [SMALL_STATE(2177)] = 70598, - [SMALL_STATE(2178)] = 70617, - [SMALL_STATE(2179)] = 70636, - [SMALL_STATE(2180)] = 70655, - [SMALL_STATE(2181)] = 70670, - [SMALL_STATE(2182)] = 70689, - [SMALL_STATE(2183)] = 70708, - [SMALL_STATE(2184)] = 70723, - [SMALL_STATE(2185)] = 70740, - [SMALL_STATE(2186)] = 70756, - [SMALL_STATE(2187)] = 70770, - [SMALL_STATE(2188)] = 70784, - [SMALL_STATE(2189)] = 70798, - [SMALL_STATE(2190)] = 70812, - [SMALL_STATE(2191)] = 70828, - [SMALL_STATE(2192)] = 70842, - [SMALL_STATE(2193)] = 70856, - [SMALL_STATE(2194)] = 70870, - [SMALL_STATE(2195)] = 70886, - [SMALL_STATE(2196)] = 70900, - [SMALL_STATE(2197)] = 70916, - [SMALL_STATE(2198)] = 70930, - [SMALL_STATE(2199)] = 70946, - [SMALL_STATE(2200)] = 70962, - [SMALL_STATE(2201)] = 70976, - [SMALL_STATE(2202)] = 70992, - [SMALL_STATE(2203)] = 71006, - [SMALL_STATE(2204)] = 71020, - [SMALL_STATE(2205)] = 71036, - [SMALL_STATE(2206)] = 71050, - [SMALL_STATE(2207)] = 71066, - [SMALL_STATE(2208)] = 71082, - [SMALL_STATE(2209)] = 71096, - [SMALL_STATE(2210)] = 71112, - [SMALL_STATE(2211)] = 71128, - [SMALL_STATE(2212)] = 71144, - [SMALL_STATE(2213)] = 71160, - [SMALL_STATE(2214)] = 71176, - [SMALL_STATE(2215)] = 71190, - [SMALL_STATE(2216)] = 71206, - [SMALL_STATE(2217)] = 71220, - [SMALL_STATE(2218)] = 71236, - [SMALL_STATE(2219)] = 71252, - [SMALL_STATE(2220)] = 71268, - [SMALL_STATE(2221)] = 71284, - [SMALL_STATE(2222)] = 71298, - [SMALL_STATE(2223)] = 71312, - [SMALL_STATE(2224)] = 71326, - [SMALL_STATE(2225)] = 71342, - [SMALL_STATE(2226)] = 71358, - [SMALL_STATE(2227)] = 71372, - [SMALL_STATE(2228)] = 71386, - [SMALL_STATE(2229)] = 71400, - [SMALL_STATE(2230)] = 71416, - [SMALL_STATE(2231)] = 71432, - [SMALL_STATE(2232)] = 71448, - [SMALL_STATE(2233)] = 71462, - [SMALL_STATE(2234)] = 71476, - [SMALL_STATE(2235)] = 71492, - [SMALL_STATE(2236)] = 71506, - [SMALL_STATE(2237)] = 71522, - [SMALL_STATE(2238)] = 71538, - [SMALL_STATE(2239)] = 71554, - [SMALL_STATE(2240)] = 71570, - [SMALL_STATE(2241)] = 71584, - [SMALL_STATE(2242)] = 71600, - [SMALL_STATE(2243)] = 71616, - [SMALL_STATE(2244)] = 71630, - [SMALL_STATE(2245)] = 71644, - [SMALL_STATE(2246)] = 71660, - [SMALL_STATE(2247)] = 71674, - [SMALL_STATE(2248)] = 71690, - [SMALL_STATE(2249)] = 71704, - [SMALL_STATE(2250)] = 71718, - [SMALL_STATE(2251)] = 71734, - [SMALL_STATE(2252)] = 71750, - [SMALL_STATE(2253)] = 71764, - [SMALL_STATE(2254)] = 71780, - [SMALL_STATE(2255)] = 71794, - [SMALL_STATE(2256)] = 71810, - [SMALL_STATE(2257)] = 71824, - [SMALL_STATE(2258)] = 71840, - [SMALL_STATE(2259)] = 71856, - [SMALL_STATE(2260)] = 71870, - [SMALL_STATE(2261)] = 71886, - [SMALL_STATE(2262)] = 71902, - [SMALL_STATE(2263)] = 71916, - [SMALL_STATE(2264)] = 71930, - [SMALL_STATE(2265)] = 71946, - [SMALL_STATE(2266)] = 71962, - [SMALL_STATE(2267)] = 71976, - [SMALL_STATE(2268)] = 71992, - [SMALL_STATE(2269)] = 72008, - [SMALL_STATE(2270)] = 72024, - [SMALL_STATE(2271)] = 72038, - [SMALL_STATE(2272)] = 72054, - [SMALL_STATE(2273)] = 72070, - [SMALL_STATE(2274)] = 72084, - [SMALL_STATE(2275)] = 72098, - [SMALL_STATE(2276)] = 72114, - [SMALL_STATE(2277)] = 72130, - [SMALL_STATE(2278)] = 72146, - [SMALL_STATE(2279)] = 72162, - [SMALL_STATE(2280)] = 72178, - [SMALL_STATE(2281)] = 72194, - [SMALL_STATE(2282)] = 72208, - [SMALL_STATE(2283)] = 72222, - [SMALL_STATE(2284)] = 72236, - [SMALL_STATE(2285)] = 72252, - [SMALL_STATE(2286)] = 72266, - [SMALL_STATE(2287)] = 72280, - [SMALL_STATE(2288)] = 72294, - [SMALL_STATE(2289)] = 72308, - [SMALL_STATE(2290)] = 72324, - [SMALL_STATE(2291)] = 72340, - [SMALL_STATE(2292)] = 72356, - [SMALL_STATE(2293)] = 72372, - [SMALL_STATE(2294)] = 72388, - [SMALL_STATE(2295)] = 72402, - [SMALL_STATE(2296)] = 72418, - [SMALL_STATE(2297)] = 72434, - [SMALL_STATE(2298)] = 72450, - [SMALL_STATE(2299)] = 72464, - [SMALL_STATE(2300)] = 72480, - [SMALL_STATE(2301)] = 72496, - [SMALL_STATE(2302)] = 72512, - [SMALL_STATE(2303)] = 72528, - [SMALL_STATE(2304)] = 72544, - [SMALL_STATE(2305)] = 72560, - [SMALL_STATE(2306)] = 72574, - [SMALL_STATE(2307)] = 72590, - [SMALL_STATE(2308)] = 72604, - [SMALL_STATE(2309)] = 72620, - [SMALL_STATE(2310)] = 72636, - [SMALL_STATE(2311)] = 72650, - [SMALL_STATE(2312)] = 72666, - [SMALL_STATE(2313)] = 72680, - [SMALL_STATE(2314)] = 72696, - [SMALL_STATE(2315)] = 72712, - [SMALL_STATE(2316)] = 72726, - [SMALL_STATE(2317)] = 72740, - [SMALL_STATE(2318)] = 72756, - [SMALL_STATE(2319)] = 72772, - [SMALL_STATE(2320)] = 72786, - [SMALL_STATE(2321)] = 72802, - [SMALL_STATE(2322)] = 72818, - [SMALL_STATE(2323)] = 72832, - [SMALL_STATE(2324)] = 72848, - [SMALL_STATE(2325)] = 72864, - [SMALL_STATE(2326)] = 72880, - [SMALL_STATE(2327)] = 72894, - [SMALL_STATE(2328)] = 72910, - [SMALL_STATE(2329)] = 72924, - [SMALL_STATE(2330)] = 72938, - [SMALL_STATE(2331)] = 72954, - [SMALL_STATE(2332)] = 72968, - [SMALL_STATE(2333)] = 72982, - [SMALL_STATE(2334)] = 72996, - [SMALL_STATE(2335)] = 73012, - [SMALL_STATE(2336)] = 73026, - [SMALL_STATE(2337)] = 73042, - [SMALL_STATE(2338)] = 73058, - [SMALL_STATE(2339)] = 73074, - [SMALL_STATE(2340)] = 73090, - [SMALL_STATE(2341)] = 73106, - [SMALL_STATE(2342)] = 73122, - [SMALL_STATE(2343)] = 73138, - [SMALL_STATE(2344)] = 73152, - [SMALL_STATE(2345)] = 73168, - [SMALL_STATE(2346)] = 73182, - [SMALL_STATE(2347)] = 73196, - [SMALL_STATE(2348)] = 73212, - [SMALL_STATE(2349)] = 73228, - [SMALL_STATE(2350)] = 73242, - [SMALL_STATE(2351)] = 73258, - [SMALL_STATE(2352)] = 73272, - [SMALL_STATE(2353)] = 73286, - [SMALL_STATE(2354)] = 73302, - [SMALL_STATE(2355)] = 73316, - [SMALL_STATE(2356)] = 73330, - [SMALL_STATE(2357)] = 73344, - [SMALL_STATE(2358)] = 73358, - [SMALL_STATE(2359)] = 73374, - [SMALL_STATE(2360)] = 73390, - [SMALL_STATE(2361)] = 73406, - [SMALL_STATE(2362)] = 73422, - [SMALL_STATE(2363)] = 73438, - [SMALL_STATE(2364)] = 73454, - [SMALL_STATE(2365)] = 73468, - [SMALL_STATE(2366)] = 73484, - [SMALL_STATE(2367)] = 73500, - [SMALL_STATE(2368)] = 73514, - [SMALL_STATE(2369)] = 73530, - [SMALL_STATE(2370)] = 73544, - [SMALL_STATE(2371)] = 73558, - [SMALL_STATE(2372)] = 73574, - [SMALL_STATE(2373)] = 73590, - [SMALL_STATE(2374)] = 73604, - [SMALL_STATE(2375)] = 73618, - [SMALL_STATE(2376)] = 73632, - [SMALL_STATE(2377)] = 73646, - [SMALL_STATE(2378)] = 73662, - [SMALL_STATE(2379)] = 73678, - [SMALL_STATE(2380)] = 73694, - [SMALL_STATE(2381)] = 73710, - [SMALL_STATE(2382)] = 73724, - [SMALL_STATE(2383)] = 73738, - [SMALL_STATE(2384)] = 73754, - [SMALL_STATE(2385)] = 73768, - [SMALL_STATE(2386)] = 73784, - [SMALL_STATE(2387)] = 73800, - [SMALL_STATE(2388)] = 73816, - [SMALL_STATE(2389)] = 73832, - [SMALL_STATE(2390)] = 73848, - [SMALL_STATE(2391)] = 73864, - [SMALL_STATE(2392)] = 73878, - [SMALL_STATE(2393)] = 73894, - [SMALL_STATE(2394)] = 73910, - [SMALL_STATE(2395)] = 73926, - [SMALL_STATE(2396)] = 73942, - [SMALL_STATE(2397)] = 73956, - [SMALL_STATE(2398)] = 73972, - [SMALL_STATE(2399)] = 73988, - [SMALL_STATE(2400)] = 74004, - [SMALL_STATE(2401)] = 74020, - [SMALL_STATE(2402)] = 74034, - [SMALL_STATE(2403)] = 74050, - [SMALL_STATE(2404)] = 74066, - [SMALL_STATE(2405)] = 74082, - [SMALL_STATE(2406)] = 74098, - [SMALL_STATE(2407)] = 74114, - [SMALL_STATE(2408)] = 74130, - [SMALL_STATE(2409)] = 74146, - [SMALL_STATE(2410)] = 74162, - [SMALL_STATE(2411)] = 74178, - [SMALL_STATE(2412)] = 74194, - [SMALL_STATE(2413)] = 74208, - [SMALL_STATE(2414)] = 74224, - [SMALL_STATE(2415)] = 74238, - [SMALL_STATE(2416)] = 74254, - [SMALL_STATE(2417)] = 74268, - [SMALL_STATE(2418)] = 74282, - [SMALL_STATE(2419)] = 74296, - [SMALL_STATE(2420)] = 74312, - [SMALL_STATE(2421)] = 74328, - [SMALL_STATE(2422)] = 74344, - [SMALL_STATE(2423)] = 74358, - [SMALL_STATE(2424)] = 74374, - [SMALL_STATE(2425)] = 74388, - [SMALL_STATE(2426)] = 74404, - [SMALL_STATE(2427)] = 74420, - [SMALL_STATE(2428)] = 74436, - [SMALL_STATE(2429)] = 74452, - [SMALL_STATE(2430)] = 74468, - [SMALL_STATE(2431)] = 74484, - [SMALL_STATE(2432)] = 74500, - [SMALL_STATE(2433)] = 74516, - [SMALL_STATE(2434)] = 74532, - [SMALL_STATE(2435)] = 74548, - [SMALL_STATE(2436)] = 74564, - [SMALL_STATE(2437)] = 74580, - [SMALL_STATE(2438)] = 74594, - [SMALL_STATE(2439)] = 74610, - [SMALL_STATE(2440)] = 74624, - [SMALL_STATE(2441)] = 74640, - [SMALL_STATE(2442)] = 74656, - [SMALL_STATE(2443)] = 74672, - [SMALL_STATE(2444)] = 74688, - [SMALL_STATE(2445)] = 74704, - [SMALL_STATE(2446)] = 74718, - [SMALL_STATE(2447)] = 74732, - [SMALL_STATE(2448)] = 74748, - [SMALL_STATE(2449)] = 74764, - [SMALL_STATE(2450)] = 74780, - [SMALL_STATE(2451)] = 74796, - [SMALL_STATE(2452)] = 74812, - [SMALL_STATE(2453)] = 74828, - [SMALL_STATE(2454)] = 74842, - [SMALL_STATE(2455)] = 74858, - [SMALL_STATE(2456)] = 74874, - [SMALL_STATE(2457)] = 74890, - [SMALL_STATE(2458)] = 74906, - [SMALL_STATE(2459)] = 74922, - [SMALL_STATE(2460)] = 74936, - [SMALL_STATE(2461)] = 74949, - [SMALL_STATE(2462)] = 74962, - [SMALL_STATE(2463)] = 74975, - [SMALL_STATE(2464)] = 74988, - [SMALL_STATE(2465)] = 75001, - [SMALL_STATE(2466)] = 75014, - [SMALL_STATE(2467)] = 75027, - [SMALL_STATE(2468)] = 75040, - [SMALL_STATE(2469)] = 75053, - [SMALL_STATE(2470)] = 75066, - [SMALL_STATE(2471)] = 75079, - [SMALL_STATE(2472)] = 75092, - [SMALL_STATE(2473)] = 75105, - [SMALL_STATE(2474)] = 75118, - [SMALL_STATE(2475)] = 75131, - [SMALL_STATE(2476)] = 75144, - [SMALL_STATE(2477)] = 75157, - [SMALL_STATE(2478)] = 75170, - [SMALL_STATE(2479)] = 75183, - [SMALL_STATE(2480)] = 75196, - [SMALL_STATE(2481)] = 75209, - [SMALL_STATE(2482)] = 75222, - [SMALL_STATE(2483)] = 75235, - [SMALL_STATE(2484)] = 75248, - [SMALL_STATE(2485)] = 75261, - [SMALL_STATE(2486)] = 75274, - [SMALL_STATE(2487)] = 75287, - [SMALL_STATE(2488)] = 75300, - [SMALL_STATE(2489)] = 75313, - [SMALL_STATE(2490)] = 75326, - [SMALL_STATE(2491)] = 75339, - [SMALL_STATE(2492)] = 75352, - [SMALL_STATE(2493)] = 75365, - [SMALL_STATE(2494)] = 75378, - [SMALL_STATE(2495)] = 75391, - [SMALL_STATE(2496)] = 75404, - [SMALL_STATE(2497)] = 75417, - [SMALL_STATE(2498)] = 75430, - [SMALL_STATE(2499)] = 75443, - [SMALL_STATE(2500)] = 75456, - [SMALL_STATE(2501)] = 75469, - [SMALL_STATE(2502)] = 75482, - [SMALL_STATE(2503)] = 75495, - [SMALL_STATE(2504)] = 75508, - [SMALL_STATE(2505)] = 75521, - [SMALL_STATE(2506)] = 75534, - [SMALL_STATE(2507)] = 75547, - [SMALL_STATE(2508)] = 75560, - [SMALL_STATE(2509)] = 75573, - [SMALL_STATE(2510)] = 75586, - [SMALL_STATE(2511)] = 75599, - [SMALL_STATE(2512)] = 75612, - [SMALL_STATE(2513)] = 75625, - [SMALL_STATE(2514)] = 75638, - [SMALL_STATE(2515)] = 75651, - [SMALL_STATE(2516)] = 75664, - [SMALL_STATE(2517)] = 75677, - [SMALL_STATE(2518)] = 75690, - [SMALL_STATE(2519)] = 75703, - [SMALL_STATE(2520)] = 75716, - [SMALL_STATE(2521)] = 75729, - [SMALL_STATE(2522)] = 75742, - [SMALL_STATE(2523)] = 75755, - [SMALL_STATE(2524)] = 75768, - [SMALL_STATE(2525)] = 75781, - [SMALL_STATE(2526)] = 75794, - [SMALL_STATE(2527)] = 75807, - [SMALL_STATE(2528)] = 75820, - [SMALL_STATE(2529)] = 75833, - [SMALL_STATE(2530)] = 75846, - [SMALL_STATE(2531)] = 75859, - [SMALL_STATE(2532)] = 75872, - [SMALL_STATE(2533)] = 75885, - [SMALL_STATE(2534)] = 75898, - [SMALL_STATE(2535)] = 75911, - [SMALL_STATE(2536)] = 75924, - [SMALL_STATE(2537)] = 75937, - [SMALL_STATE(2538)] = 75950, - [SMALL_STATE(2539)] = 75963, - [SMALL_STATE(2540)] = 75976, - [SMALL_STATE(2541)] = 75989, - [SMALL_STATE(2542)] = 76002, - [SMALL_STATE(2543)] = 76015, - [SMALL_STATE(2544)] = 76028, - [SMALL_STATE(2545)] = 76041, - [SMALL_STATE(2546)] = 76054, - [SMALL_STATE(2547)] = 76067, - [SMALL_STATE(2548)] = 76080, - [SMALL_STATE(2549)] = 76093, - [SMALL_STATE(2550)] = 76106, - [SMALL_STATE(2551)] = 76119, - [SMALL_STATE(2552)] = 76132, - [SMALL_STATE(2553)] = 76145, - [SMALL_STATE(2554)] = 76158, - [SMALL_STATE(2555)] = 76171, - [SMALL_STATE(2556)] = 76184, - [SMALL_STATE(2557)] = 76197, - [SMALL_STATE(2558)] = 76210, - [SMALL_STATE(2559)] = 76223, - [SMALL_STATE(2560)] = 76236, - [SMALL_STATE(2561)] = 76249, - [SMALL_STATE(2562)] = 76262, - [SMALL_STATE(2563)] = 76275, - [SMALL_STATE(2564)] = 76288, - [SMALL_STATE(2565)] = 76301, - [SMALL_STATE(2566)] = 76314, - [SMALL_STATE(2567)] = 76327, - [SMALL_STATE(2568)] = 76340, - [SMALL_STATE(2569)] = 76353, - [SMALL_STATE(2570)] = 76366, - [SMALL_STATE(2571)] = 76379, - [SMALL_STATE(2572)] = 76392, - [SMALL_STATE(2573)] = 76405, - [SMALL_STATE(2574)] = 76418, - [SMALL_STATE(2575)] = 76431, - [SMALL_STATE(2576)] = 76444, - [SMALL_STATE(2577)] = 76457, - [SMALL_STATE(2578)] = 76470, - [SMALL_STATE(2579)] = 76483, - [SMALL_STATE(2580)] = 76496, - [SMALL_STATE(2581)] = 76509, - [SMALL_STATE(2582)] = 76522, - [SMALL_STATE(2583)] = 76535, - [SMALL_STATE(2584)] = 76548, - [SMALL_STATE(2585)] = 76561, - [SMALL_STATE(2586)] = 76574, - [SMALL_STATE(2587)] = 76587, - [SMALL_STATE(2588)] = 76600, - [SMALL_STATE(2589)] = 76613, - [SMALL_STATE(2590)] = 76626, - [SMALL_STATE(2591)] = 76639, - [SMALL_STATE(2592)] = 76652, - [SMALL_STATE(2593)] = 76665, - [SMALL_STATE(2594)] = 76678, - [SMALL_STATE(2595)] = 76691, - [SMALL_STATE(2596)] = 76704, - [SMALL_STATE(2597)] = 76717, - [SMALL_STATE(2598)] = 76730, - [SMALL_STATE(2599)] = 76743, - [SMALL_STATE(2600)] = 76756, - [SMALL_STATE(2601)] = 76769, - [SMALL_STATE(2602)] = 76782, - [SMALL_STATE(2603)] = 76795, - [SMALL_STATE(2604)] = 76808, - [SMALL_STATE(2605)] = 76821, - [SMALL_STATE(2606)] = 76834, - [SMALL_STATE(2607)] = 76847, - [SMALL_STATE(2608)] = 76860, - [SMALL_STATE(2609)] = 76873, - [SMALL_STATE(2610)] = 76886, - [SMALL_STATE(2611)] = 76899, - [SMALL_STATE(2612)] = 76912, - [SMALL_STATE(2613)] = 76925, - [SMALL_STATE(2614)] = 76938, - [SMALL_STATE(2615)] = 76951, - [SMALL_STATE(2616)] = 76964, - [SMALL_STATE(2617)] = 76977, - [SMALL_STATE(2618)] = 76990, - [SMALL_STATE(2619)] = 77003, - [SMALL_STATE(2620)] = 77016, - [SMALL_STATE(2621)] = 77029, - [SMALL_STATE(2622)] = 77042, - [SMALL_STATE(2623)] = 77055, - [SMALL_STATE(2624)] = 77068, - [SMALL_STATE(2625)] = 77081, - [SMALL_STATE(2626)] = 77094, - [SMALL_STATE(2627)] = 77107, - [SMALL_STATE(2628)] = 77120, - [SMALL_STATE(2629)] = 77133, - [SMALL_STATE(2630)] = 77146, - [SMALL_STATE(2631)] = 77159, - [SMALL_STATE(2632)] = 77172, - [SMALL_STATE(2633)] = 77185, - [SMALL_STATE(2634)] = 77198, - [SMALL_STATE(2635)] = 77211, - [SMALL_STATE(2636)] = 77224, - [SMALL_STATE(2637)] = 77237, - [SMALL_STATE(2638)] = 77250, - [SMALL_STATE(2639)] = 77263, - [SMALL_STATE(2640)] = 77276, - [SMALL_STATE(2641)] = 77289, - [SMALL_STATE(2642)] = 77302, - [SMALL_STATE(2643)] = 77315, - [SMALL_STATE(2644)] = 77328, - [SMALL_STATE(2645)] = 77341, - [SMALL_STATE(2646)] = 77354, - [SMALL_STATE(2647)] = 77367, - [SMALL_STATE(2648)] = 77380, - [SMALL_STATE(2649)] = 77393, - [SMALL_STATE(2650)] = 77406, - [SMALL_STATE(2651)] = 77419, - [SMALL_STATE(2652)] = 77432, - [SMALL_STATE(2653)] = 77445, - [SMALL_STATE(2654)] = 77458, - [SMALL_STATE(2655)] = 77471, - [SMALL_STATE(2656)] = 77484, - [SMALL_STATE(2657)] = 77497, - [SMALL_STATE(2658)] = 77510, - [SMALL_STATE(2659)] = 77523, - [SMALL_STATE(2660)] = 77536, - [SMALL_STATE(2661)] = 77549, - [SMALL_STATE(2662)] = 77562, - [SMALL_STATE(2663)] = 77575, - [SMALL_STATE(2664)] = 77588, - [SMALL_STATE(2665)] = 77601, - [SMALL_STATE(2666)] = 77614, - [SMALL_STATE(2667)] = 77627, - [SMALL_STATE(2668)] = 77640, - [SMALL_STATE(2669)] = 77653, - [SMALL_STATE(2670)] = 77666, - [SMALL_STATE(2671)] = 77679, - [SMALL_STATE(2672)] = 77692, - [SMALL_STATE(2673)] = 77705, - [SMALL_STATE(2674)] = 77718, - [SMALL_STATE(2675)] = 77731, - [SMALL_STATE(2676)] = 77744, - [SMALL_STATE(2677)] = 77757, - [SMALL_STATE(2678)] = 77770, - [SMALL_STATE(2679)] = 77783, - [SMALL_STATE(2680)] = 77787, + [SMALL_STATE(572)] = 0, + [SMALL_STATE(573)] = 79, + [SMALL_STATE(574)] = 158, + [SMALL_STATE(575)] = 237, + [SMALL_STATE(576)] = 324, + [SMALL_STATE(577)] = 403, + [SMALL_STATE(578)] = 482, + [SMALL_STATE(579)] = 556, + [SMALL_STATE(580)] = 630, + [SMALL_STATE(581)] = 704, + [SMALL_STATE(582)] = 778, + [SMALL_STATE(583)] = 852, + [SMALL_STATE(584)] = 926, + [SMALL_STATE(585)] = 1000, + [SMALL_STATE(586)] = 1074, + [SMALL_STATE(587)] = 1148, + [SMALL_STATE(588)] = 1222, + [SMALL_STATE(589)] = 1296, + [SMALL_STATE(590)] = 1370, + [SMALL_STATE(591)] = 1444, + [SMALL_STATE(592)] = 1529, + [SMALL_STATE(593)] = 1610, + [SMALL_STATE(594)] = 1694, + [SMALL_STATE(595)] = 1783, + [SMALL_STATE(596)] = 1866, + [SMALL_STATE(597)] = 1945, + [SMALL_STATE(598)] = 2020, + [SMALL_STATE(599)] = 2095, + [SMALL_STATE(600)] = 2170, + [SMALL_STATE(601)] = 2245, + [SMALL_STATE(602)] = 2328, + [SMALL_STATE(603)] = 2411, + [SMALL_STATE(604)] = 2486, + [SMALL_STATE(605)] = 2556, + [SMALL_STATE(606)] = 2626, + [SMALL_STATE(607)] = 2696, + [SMALL_STATE(608)] = 2780, + [SMALL_STATE(609)] = 2850, + [SMALL_STATE(610)] = 2920, + [SMALL_STATE(611)] = 2998, + [SMALL_STATE(612)] = 3068, + [SMALL_STATE(613)] = 3152, + [SMALL_STATE(614)] = 3236, + [SMALL_STATE(615)] = 3306, + [SMALL_STATE(616)] = 3376, + [SMALL_STATE(617)] = 3446, + [SMALL_STATE(618)] = 3528, + [SMALL_STATE(619)] = 3598, + [SMALL_STATE(620)] = 3668, + [SMALL_STATE(621)] = 3738, + [SMALL_STATE(622)] = 3808, + [SMALL_STATE(623)] = 3878, + [SMALL_STATE(624)] = 3948, + [SMALL_STATE(625)] = 4018, + [SMALL_STATE(626)] = 4088, + [SMALL_STATE(627)] = 4165, + [SMALL_STATE(628)] = 4242, + [SMALL_STATE(629)] = 4325, + [SMALL_STATE(630)] = 4408, + [SMALL_STATE(631)] = 4485, + [SMALL_STATE(632)] = 4561, + [SMALL_STATE(633)] = 4639, + [SMALL_STATE(634)] = 4717, + [SMALL_STATE(635)] = 4795, + [SMALL_STATE(636)] = 4872, + [SMALL_STATE(637)] = 4936, + [SMALL_STATE(638)] = 5051, + [SMALL_STATE(639)] = 5166, + [SMALL_STATE(640)] = 5231, + [SMALL_STATE(641)] = 5302, + [SMALL_STATE(642)] = 5373, + [SMALL_STATE(643)] = 5438, + [SMALL_STATE(644)] = 5509, + [SMALL_STATE(645)] = 5578, + [SMALL_STATE(646)] = 5649, + [SMALL_STATE(647)] = 5714, + [SMALL_STATE(648)] = 5779, + [SMALL_STATE(649)] = 5844, + [SMALL_STATE(650)] = 5905, + [SMALL_STATE(651)] = 5972, + [SMALL_STATE(652)] = 6036, + [SMALL_STATE(653)] = 6146, + [SMALL_STATE(654)] = 6206, + [SMALL_STATE(655)] = 6266, + [SMALL_STATE(656)] = 6326, + [SMALL_STATE(657)] = 6386, + [SMALL_STATE(658)] = 6446, + [SMALL_STATE(659)] = 6506, + [SMALL_STATE(660)] = 6566, + [SMALL_STATE(661)] = 6630, + [SMALL_STATE(662)] = 6690, + [SMALL_STATE(663)] = 6750, + [SMALL_STATE(664)] = 6810, + [SMALL_STATE(665)] = 6870, + [SMALL_STATE(666)] = 6930, + [SMALL_STATE(667)] = 6990, + [SMALL_STATE(668)] = 7050, + [SMALL_STATE(669)] = 7110, + [SMALL_STATE(670)] = 7170, + [SMALL_STATE(671)] = 7230, + [SMALL_STATE(672)] = 7340, + [SMALL_STATE(673)] = 7450, + [SMALL_STATE(674)] = 7560, + [SMALL_STATE(675)] = 7625, + [SMALL_STATE(676)] = 7688, + [SMALL_STATE(677)] = 7753, + [SMALL_STATE(678)] = 7816, + [SMALL_STATE(679)] = 7881, + [SMALL_STATE(680)] = 7946, + [SMALL_STATE(681)] = 8011, + [SMALL_STATE(682)] = 8118, + [SMALL_STATE(683)] = 8225, + [SMALL_STATE(684)] = 8286, + [SMALL_STATE(685)] = 8349, + [SMALL_STATE(686)] = 8412, + [SMALL_STATE(687)] = 8475, + [SMALL_STATE(688)] = 8538, + [SMALL_STATE(689)] = 8601, + [SMALL_STATE(690)] = 8664, + [SMALL_STATE(691)] = 8729, + [SMALL_STATE(692)] = 8792, + [SMALL_STATE(693)] = 8899, + [SMALL_STATE(694)] = 9006, + [SMALL_STATE(695)] = 9107, + [SMALL_STATE(696)] = 9172, + [SMALL_STATE(697)] = 9233, + [SMALL_STATE(698)] = 9294, + [SMALL_STATE(699)] = 9355, + [SMALL_STATE(700)] = 9416, + [SMALL_STATE(701)] = 9481, + [SMALL_STATE(702)] = 9542, + [SMALL_STATE(703)] = 9607, + [SMALL_STATE(704)] = 9672, + [SMALL_STATE(705)] = 9779, + [SMALL_STATE(706)] = 9844, + [SMALL_STATE(707)] = 9909, + [SMALL_STATE(708)] = 9974, + [SMALL_STATE(709)] = 10081, + [SMALL_STATE(710)] = 10144, + [SMALL_STATE(711)] = 10207, + [SMALL_STATE(712)] = 10270, + [SMALL_STATE(713)] = 10333, + [SMALL_STATE(714)] = 10436, + [SMALL_STATE(715)] = 10539, + [SMALL_STATE(716)] = 10602, + [SMALL_STATE(717)] = 10667, + [SMALL_STATE(718)] = 10725, + [SMALL_STATE(719)] = 10783, + [SMALL_STATE(720)] = 10841, + [SMALL_STATE(721)] = 10899, + [SMALL_STATE(722)] = 10957, + [SMALL_STATE(723)] = 11015, + [SMALL_STATE(724)] = 11073, + [SMALL_STATE(725)] = 11131, + [SMALL_STATE(726)] = 11189, + [SMALL_STATE(727)] = 11247, + [SMALL_STATE(728)] = 11305, + [SMALL_STATE(729)] = 11363, + [SMALL_STATE(730)] = 11467, + [SMALL_STATE(731)] = 11525, + [SMALL_STATE(732)] = 11583, + [SMALL_STATE(733)] = 11641, + [SMALL_STATE(734)] = 11699, + [SMALL_STATE(735)] = 11757, + [SMALL_STATE(736)] = 11815, + [SMALL_STATE(737)] = 11873, + [SMALL_STATE(738)] = 11977, + [SMALL_STATE(739)] = 12035, + [SMALL_STATE(740)] = 12093, + [SMALL_STATE(741)] = 12151, + [SMALL_STATE(742)] = 12209, + [SMALL_STATE(743)] = 12267, + [SMALL_STATE(744)] = 12325, + [SMALL_STATE(745)] = 12383, + [SMALL_STATE(746)] = 12441, + [SMALL_STATE(747)] = 12499, + [SMALL_STATE(748)] = 12557, + [SMALL_STATE(749)] = 12615, + [SMALL_STATE(750)] = 12673, + [SMALL_STATE(751)] = 12731, + [SMALL_STATE(752)] = 12789, + [SMALL_STATE(753)] = 12847, + [SMALL_STATE(754)] = 12905, + [SMALL_STATE(755)] = 12963, + [SMALL_STATE(756)] = 13023, + [SMALL_STATE(757)] = 13083, + [SMALL_STATE(758)] = 13141, + [SMALL_STATE(759)] = 13199, + [SMALL_STATE(760)] = 13257, + [SMALL_STATE(761)] = 13320, + [SMALL_STATE(762)] = 13381, + [SMALL_STATE(763)] = 13438, + [SMALL_STATE(764)] = 13497, + [SMALL_STATE(765)] = 13558, + [SMALL_STATE(766)] = 13619, + [SMALL_STATE(767)] = 13680, + [SMALL_STATE(768)] = 13739, + [SMALL_STATE(769)] = 13798, + [SMALL_STATE(770)] = 13857, + [SMALL_STATE(771)] = 13924, + [SMALL_STATE(772)] = 13989, + [SMALL_STATE(773)] = 14056, + [SMALL_STATE(774)] = 14117, + [SMALL_STATE(775)] = 14178, + [SMALL_STATE(776)] = 14235, + [SMALL_STATE(777)] = 14292, + [SMALL_STATE(778)] = 14351, + [SMALL_STATE(779)] = 14418, + [SMALL_STATE(780)] = 14485, + [SMALL_STATE(781)] = 14583, + [SMALL_STATE(782)] = 14639, + [SMALL_STATE(783)] = 14695, + [SMALL_STATE(784)] = 14793, + [SMALL_STATE(785)] = 14861, + [SMALL_STATE(786)] = 14917, + [SMALL_STATE(787)] = 14985, + [SMALL_STATE(788)] = 15041, + [SMALL_STATE(789)] = 15097, + [SMALL_STATE(790)] = 15153, + [SMALL_STATE(791)] = 15209, + [SMALL_STATE(792)] = 15265, + [SMALL_STATE(793)] = 15321, + [SMALL_STATE(794)] = 15377, + [SMALL_STATE(795)] = 15433, + [SMALL_STATE(796)] = 15489, + [SMALL_STATE(797)] = 15545, + [SMALL_STATE(798)] = 15601, + [SMALL_STATE(799)] = 15699, + [SMALL_STATE(800)] = 15755, + [SMALL_STATE(801)] = 15811, + [SMALL_STATE(802)] = 15867, + [SMALL_STATE(803)] = 15935, + [SMALL_STATE(804)] = 16033, + [SMALL_STATE(805)] = 16089, + [SMALL_STATE(806)] = 16150, + [SMALL_STATE(807)] = 16209, + [SMALL_STATE(808)] = 16270, + [SMALL_STATE(809)] = 16329, + [SMALL_STATE(810)] = 16424, + [SMALL_STATE(811)] = 16485, + [SMALL_STATE(812)] = 16580, + [SMALL_STATE(813)] = 16675, + [SMALL_STATE(814)] = 16730, + [SMALL_STATE(815)] = 16825, + [SMALL_STATE(816)] = 16882, + [SMALL_STATE(817)] = 16939, + [SMALL_STATE(818)] = 16996, + [SMALL_STATE(819)] = 17091, + [SMALL_STATE(820)] = 17186, + [SMALL_STATE(821)] = 17245, + [SMALL_STATE(822)] = 17302, + [SMALL_STATE(823)] = 17397, + [SMALL_STATE(824)] = 17456, + [SMALL_STATE(825)] = 17517, + [SMALL_STATE(826)] = 17576, + [SMALL_STATE(827)] = 17635, + [SMALL_STATE(828)] = 17694, + [SMALL_STATE(829)] = 17753, + [SMALL_STATE(830)] = 17812, + [SMALL_STATE(831)] = 17907, + [SMALL_STATE(832)] = 18002, + [SMALL_STATE(833)] = 18061, + [SMALL_STATE(834)] = 18122, + [SMALL_STATE(835)] = 18181, + [SMALL_STATE(836)] = 18238, + [SMALL_STATE(837)] = 18333, + [SMALL_STATE(838)] = 18394, + [SMALL_STATE(839)] = 18453, + [SMALL_STATE(840)] = 18514, + [SMALL_STATE(841)] = 18575, + [SMALL_STATE(842)] = 18636, + [SMALL_STATE(843)] = 18697, + [SMALL_STATE(844)] = 18758, + [SMALL_STATE(845)] = 18819, + [SMALL_STATE(846)] = 18880, + [SMALL_STATE(847)] = 18935, + [SMALL_STATE(848)] = 18990, + [SMALL_STATE(849)] = 19049, + [SMALL_STATE(850)] = 19104, + [SMALL_STATE(851)] = 19199, + [SMALL_STATE(852)] = 19258, + [SMALL_STATE(853)] = 19353, + [SMALL_STATE(854)] = 19448, + [SMALL_STATE(855)] = 19509, + [SMALL_STATE(856)] = 19566, + [SMALL_STATE(857)] = 19623, + [SMALL_STATE(858)] = 19682, + [SMALL_STATE(859)] = 19777, + [SMALL_STATE(860)] = 19872, + [SMALL_STATE(861)] = 19926, + [SMALL_STATE(862)] = 19980, + [SMALL_STATE(863)] = 20034, + [SMALL_STATE(864)] = 20088, + [SMALL_STATE(865)] = 20142, + [SMALL_STATE(866)] = 20196, + [SMALL_STATE(867)] = 20250, + [SMALL_STATE(868)] = 20304, + [SMALL_STATE(869)] = 20358, + [SMALL_STATE(870)] = 20414, + [SMALL_STATE(871)] = 20468, + [SMALL_STATE(872)] = 20522, + [SMALL_STATE(873)] = 20576, + [SMALL_STATE(874)] = 20634, + [SMALL_STATE(875)] = 20688, + [SMALL_STATE(876)] = 20742, + [SMALL_STATE(877)] = 20796, + [SMALL_STATE(878)] = 20850, + [SMALL_STATE(879)] = 20904, + [SMALL_STATE(880)] = 20960, + [SMALL_STATE(881)] = 21016, + [SMALL_STATE(882)] = 21070, + [SMALL_STATE(883)] = 21124, + [SMALL_STATE(884)] = 21178, + [SMALL_STATE(885)] = 21232, + [SMALL_STATE(886)] = 21286, + [SMALL_STATE(887)] = 21340, + [SMALL_STATE(888)] = 21394, + [SMALL_STATE(889)] = 21448, + [SMALL_STATE(890)] = 21502, + [SMALL_STATE(891)] = 21556, + [SMALL_STATE(892)] = 21610, + [SMALL_STATE(893)] = 21664, + [SMALL_STATE(894)] = 21718, + [SMALL_STATE(895)] = 21772, + [SMALL_STATE(896)] = 21826, + [SMALL_STATE(897)] = 21880, + [SMALL_STATE(898)] = 21934, + [SMALL_STATE(899)] = 21988, + [SMALL_STATE(900)] = 22042, + [SMALL_STATE(901)] = 22096, + [SMALL_STATE(902)] = 22150, + [SMALL_STATE(903)] = 22204, + [SMALL_STATE(904)] = 22259, + [SMALL_STATE(905)] = 22314, + [SMALL_STATE(906)] = 22369, + [SMALL_STATE(907)] = 22424, + [SMALL_STATE(908)] = 22479, + [SMALL_STATE(909)] = 22531, + [SMALL_STATE(910)] = 22583, + [SMALL_STATE(911)] = 22635, + [SMALL_STATE(912)] = 22687, + [SMALL_STATE(913)] = 22739, + [SMALL_STATE(914)] = 22791, + [SMALL_STATE(915)] = 22843, + [SMALL_STATE(916)] = 22895, + [SMALL_STATE(917)] = 22947, + [SMALL_STATE(918)] = 22999, + [SMALL_STATE(919)] = 23051, + [SMALL_STATE(920)] = 23103, + [SMALL_STATE(921)] = 23155, + [SMALL_STATE(922)] = 23207, + [SMALL_STATE(923)] = 23259, + [SMALL_STATE(924)] = 23311, + [SMALL_STATE(925)] = 23365, + [SMALL_STATE(926)] = 23417, + [SMALL_STATE(927)] = 23469, + [SMALL_STATE(928)] = 23521, + [SMALL_STATE(929)] = 23573, + [SMALL_STATE(930)] = 23625, + [SMALL_STATE(931)] = 23677, + [SMALL_STATE(932)] = 23729, + [SMALL_STATE(933)] = 23781, + [SMALL_STATE(934)] = 23833, + [SMALL_STATE(935)] = 23885, + [SMALL_STATE(936)] = 23937, + [SMALL_STATE(937)] = 23989, + [SMALL_STATE(938)] = 24041, + [SMALL_STATE(939)] = 24093, + [SMALL_STATE(940)] = 24145, + [SMALL_STATE(941)] = 24197, + [SMALL_STATE(942)] = 24249, + [SMALL_STATE(943)] = 24301, + [SMALL_STATE(944)] = 24353, + [SMALL_STATE(945)] = 24405, + [SMALL_STATE(946)] = 24457, + [SMALL_STATE(947)] = 24509, + [SMALL_STATE(948)] = 24561, + [SMALL_STATE(949)] = 24613, + [SMALL_STATE(950)] = 24665, + [SMALL_STATE(951)] = 24717, + [SMALL_STATE(952)] = 24769, + [SMALL_STATE(953)] = 24821, + [SMALL_STATE(954)] = 24873, + [SMALL_STATE(955)] = 24925, + [SMALL_STATE(956)] = 24977, + [SMALL_STATE(957)] = 25029, + [SMALL_STATE(958)] = 25081, + [SMALL_STATE(959)] = 25133, + [SMALL_STATE(960)] = 25185, + [SMALL_STATE(961)] = 25237, + [SMALL_STATE(962)] = 25289, + [SMALL_STATE(963)] = 25341, + [SMALL_STATE(964)] = 25393, + [SMALL_STATE(965)] = 25445, + [SMALL_STATE(966)] = 25497, + [SMALL_STATE(967)] = 25549, + [SMALL_STATE(968)] = 25601, + [SMALL_STATE(969)] = 25653, + [SMALL_STATE(970)] = 25705, + [SMALL_STATE(971)] = 25757, + [SMALL_STATE(972)] = 25809, + [SMALL_STATE(973)] = 25861, + [SMALL_STATE(974)] = 25913, + [SMALL_STATE(975)] = 25968, + [SMALL_STATE(976)] = 26055, + [SMALL_STATE(977)] = 26112, + [SMALL_STATE(978)] = 26163, + [SMALL_STATE(979)] = 26214, + [SMALL_STATE(980)] = 26302, + [SMALL_STATE(981)] = 26376, + [SMALL_STATE(982)] = 26452, + [SMALL_STATE(983)] = 26542, + [SMALL_STATE(984)] = 26620, + [SMALL_STATE(985)] = 26704, + [SMALL_STATE(986)] = 26762, + [SMALL_STATE(987)] = 26850, + [SMALL_STATE(988)] = 26922, + [SMALL_STATE(989)] = 27010, + [SMALL_STATE(990)] = 27096, + [SMALL_STATE(991)] = 27184, + [SMALL_STATE(992)] = 27272, + [SMALL_STATE(993)] = 27354, + [SMALL_STATE(994)] = 27442, + [SMALL_STATE(995)] = 27494, + [SMALL_STATE(996)] = 27576, + [SMALL_STATE(997)] = 27664, + [SMALL_STATE(998)] = 27752, + [SMALL_STATE(999)] = 27808, + [SMALL_STATE(1000)] = 27890, + [SMALL_STATE(1001)] = 27972, + [SMALL_STATE(1002)] = 28042, + [SMALL_STATE(1003)] = 28108, + [SMALL_STATE(1004)] = 28190, + [SMALL_STATE(1005)] = 28252, + [SMALL_STATE(1006)] = 28310, + [SMALL_STATE(1007)] = 28370, + [SMALL_STATE(1008)] = 28422, + [SMALL_STATE(1009)] = 28510, + [SMALL_STATE(1010)] = 28576, + [SMALL_STATE(1011)] = 28664, + [SMALL_STATE(1012)] = 28746, + [SMALL_STATE(1013)] = 28804, + [SMALL_STATE(1014)] = 28886, + [SMALL_STATE(1015)] = 28971, + [SMALL_STATE(1016)] = 29058, + [SMALL_STATE(1017)] = 29107, + [SMALL_STATE(1018)] = 29190, + [SMALL_STATE(1019)] = 29277, + [SMALL_STATE(1020)] = 29364, + [SMALL_STATE(1021)] = 29441, + [SMALL_STATE(1022)] = 29528, + [SMALL_STATE(1023)] = 29603, + [SMALL_STATE(1024)] = 29684, + [SMALL_STATE(1025)] = 29735, + [SMALL_STATE(1026)] = 29792, + [SMALL_STATE(1027)] = 29863, + [SMALL_STATE(1028)] = 29924, + [SMALL_STATE(1029)] = 30005, + [SMALL_STATE(1030)] = 30054, + [SMALL_STATE(1031)] = 30141, + [SMALL_STATE(1032)] = 30196, + [SMALL_STATE(1033)] = 30277, + [SMALL_STATE(1034)] = 30350, + [SMALL_STATE(1035)] = 30409, + [SMALL_STATE(1036)] = 30478, + [SMALL_STATE(1037)] = 30565, + [SMALL_STATE(1038)] = 30616, + [SMALL_STATE(1039)] = 30703, + [SMALL_STATE(1040)] = 30784, + [SMALL_STATE(1041)] = 30865, + [SMALL_STATE(1042)] = 30930, + [SMALL_STATE(1043)] = 31011, + [SMALL_STATE(1044)] = 31092, + [SMALL_STATE(1045)] = 31181, + [SMALL_STATE(1046)] = 31268, + [SMALL_STATE(1047)] = 31317, + [SMALL_STATE(1048)] = 31404, + [SMALL_STATE(1049)] = 31453, + [SMALL_STATE(1050)] = 31540, + [SMALL_STATE(1051)] = 31626, + [SMALL_STATE(1052)] = 31712, + [SMALL_STATE(1053)] = 31760, + [SMALL_STATE(1054)] = 31814, + [SMALL_STATE(1055)] = 31862, + [SMALL_STATE(1056)] = 31910, + [SMALL_STATE(1057)] = 31958, + [SMALL_STATE(1058)] = 32006, + [SMALL_STATE(1059)] = 32078, + [SMALL_STATE(1060)] = 32126, + [SMALL_STATE(1061)] = 32174, + [SMALL_STATE(1062)] = 32222, + [SMALL_STATE(1063)] = 32270, + [SMALL_STATE(1064)] = 32338, + [SMALL_STATE(1065)] = 32418, + [SMALL_STATE(1066)] = 32498, + [SMALL_STATE(1067)] = 32548, + [SMALL_STATE(1068)] = 32596, + [SMALL_STATE(1069)] = 32644, + [SMALL_STATE(1070)] = 32692, + [SMALL_STATE(1071)] = 32740, + [SMALL_STATE(1072)] = 32788, + [SMALL_STATE(1073)] = 32836, + [SMALL_STATE(1074)] = 32884, + [SMALL_STATE(1075)] = 32932, + [SMALL_STATE(1076)] = 32990, + [SMALL_STATE(1077)] = 33038, + [SMALL_STATE(1078)] = 33124, + [SMALL_STATE(1079)] = 33172, + [SMALL_STATE(1080)] = 33220, + [SMALL_STATE(1081)] = 33276, + [SMALL_STATE(1082)] = 33324, + [SMALL_STATE(1083)] = 33410, + [SMALL_STATE(1084)] = 33496, + [SMALL_STATE(1085)] = 33544, + [SMALL_STATE(1086)] = 33630, + [SMALL_STATE(1087)] = 33716, + [SMALL_STATE(1088)] = 33764, + [SMALL_STATE(1089)] = 33824, + [SMALL_STATE(1090)] = 33872, + [SMALL_STATE(1091)] = 33920, + [SMALL_STATE(1092)] = 33968, + [SMALL_STATE(1093)] = 34016, + [SMALL_STATE(1094)] = 34080, + [SMALL_STATE(1095)] = 34128, + [SMALL_STATE(1096)] = 34176, + [SMALL_STATE(1097)] = 34224, + [SMALL_STATE(1098)] = 34272, + [SMALL_STATE(1099)] = 34342, + [SMALL_STATE(1100)] = 34390, + [SMALL_STATE(1101)] = 34478, + [SMALL_STATE(1102)] = 34552, + [SMALL_STATE(1103)] = 34600, + [SMALL_STATE(1104)] = 34648, + [SMALL_STATE(1105)] = 34696, + [SMALL_STATE(1106)] = 34744, + [SMALL_STATE(1107)] = 34792, + [SMALL_STATE(1108)] = 34840, + [SMALL_STATE(1109)] = 34888, + [SMALL_STATE(1110)] = 34936, + [SMALL_STATE(1111)] = 34984, + [SMALL_STATE(1112)] = 35032, + [SMALL_STATE(1113)] = 35080, + [SMALL_STATE(1114)] = 35128, + [SMALL_STATE(1115)] = 35214, + [SMALL_STATE(1116)] = 35294, + [SMALL_STATE(1117)] = 35374, + [SMALL_STATE(1118)] = 35454, + [SMALL_STATE(1119)] = 35502, + [SMALL_STATE(1120)] = 35578, + [SMALL_STATE(1121)] = 35626, + [SMALL_STATE(1122)] = 35674, + [SMALL_STATE(1123)] = 35756, + [SMALL_STATE(1124)] = 35840, + [SMALL_STATE(1125)] = 35890, + [SMALL_STATE(1126)] = 35938, + [SMALL_STATE(1127)] = 35986, + [SMALL_STATE(1128)] = 36066, + [SMALL_STATE(1129)] = 36114, + [SMALL_STATE(1130)] = 36162, + [SMALL_STATE(1131)] = 36210, + [SMALL_STATE(1132)] = 36290, + [SMALL_STATE(1133)] = 36338, + [SMALL_STATE(1134)] = 36424, + [SMALL_STATE(1135)] = 36472, + [SMALL_STATE(1136)] = 36520, + [SMALL_STATE(1137)] = 36606, + [SMALL_STATE(1138)] = 36654, + [SMALL_STATE(1139)] = 36702, + [SMALL_STATE(1140)] = 36750, + [SMALL_STATE(1141)] = 36798, + [SMALL_STATE(1142)] = 36846, + [SMALL_STATE(1143)] = 36894, + [SMALL_STATE(1144)] = 36942, + [SMALL_STATE(1145)] = 36992, + [SMALL_STATE(1146)] = 37040, + [SMALL_STATE(1147)] = 37088, + [SMALL_STATE(1148)] = 37136, + [SMALL_STATE(1149)] = 37184, + [SMALL_STATE(1150)] = 37232, + [SMALL_STATE(1151)] = 37317, + [SMALL_STATE(1152)] = 37396, + [SMALL_STATE(1153)] = 37455, + [SMALL_STATE(1154)] = 37530, + [SMALL_STATE(1155)] = 37615, + [SMALL_STATE(1156)] = 37682, + [SMALL_STATE(1157)] = 37757, + [SMALL_STATE(1158)] = 37842, + [SMALL_STATE(1159)] = 37913, + [SMALL_STATE(1160)] = 37962, + [SMALL_STATE(1161)] = 38015, + [SMALL_STATE(1162)] = 38064, + [SMALL_STATE(1163)] = 38143, + [SMALL_STATE(1164)] = 38228, + [SMALL_STATE(1165)] = 38297, + [SMALL_STATE(1166)] = 38376, + [SMALL_STATE(1167)] = 38455, + [SMALL_STATE(1168)] = 38504, + [SMALL_STATE(1169)] = 38589, + [SMALL_STATE(1170)] = 38676, + [SMALL_STATE(1171)] = 38731, + [SMALL_STATE(1172)] = 38816, + [SMALL_STATE(1173)] = 38901, + [SMALL_STATE(1174)] = 38980, + [SMALL_STATE(1175)] = 39065, + [SMALL_STATE(1176)] = 39144, + [SMALL_STATE(1177)] = 39207, + [SMALL_STATE(1178)] = 39256, + [SMALL_STATE(1179)] = 39335, + [SMALL_STATE(1180)] = 39420, + [SMALL_STATE(1181)] = 39493, + [SMALL_STATE(1182)] = 39568, + [SMALL_STATE(1183)] = 39653, + [SMALL_STATE(1184)] = 39728, + [SMALL_STATE(1185)] = 39809, + [SMALL_STATE(1186)] = 39884, + [SMALL_STATE(1187)] = 39967, + [SMALL_STATE(1188)] = 40024, + [SMALL_STATE(1189)] = 40110, + [SMALL_STATE(1190)] = 40196, + [SMALL_STATE(1191)] = 40284, + [SMALL_STATE(1192)] = 40368, + [SMALL_STATE(1193)] = 40444, + [SMALL_STATE(1194)] = 40530, + [SMALL_STATE(1195)] = 40614, + [SMALL_STATE(1196)] = 40700, + [SMALL_STATE(1197)] = 40786, + [SMALL_STATE(1198)] = 40870, + [SMALL_STATE(1199)] = 40946, + [SMALL_STATE(1200)] = 41029, + [SMALL_STATE(1201)] = 41118, + [SMALL_STATE(1202)] = 41201, + [SMALL_STATE(1203)] = 41290, + [SMALL_STATE(1204)] = 41373, + [SMALL_STATE(1205)] = 41456, + [SMALL_STATE(1206)] = 41539, + [SMALL_STATE(1207)] = 41624, + [SMALL_STATE(1208)] = 41707, + [SMALL_STATE(1209)] = 41796, + [SMALL_STATE(1210)] = 41879, + [SMALL_STATE(1211)] = 41962, + [SMALL_STATE(1212)] = 42047, + [SMALL_STATE(1213)] = 42130, + [SMALL_STATE(1214)] = 42213, + [SMALL_STATE(1215)] = 42296, + [SMALL_STATE(1216)] = 42379, + [SMALL_STATE(1217)] = 42462, + [SMALL_STATE(1218)] = 42545, + [SMALL_STATE(1219)] = 42628, + [SMALL_STATE(1220)] = 42711, + [SMALL_STATE(1221)] = 42794, + [SMALL_STATE(1222)] = 42879, + [SMALL_STATE(1223)] = 42962, + [SMALL_STATE(1224)] = 43047, + [SMALL_STATE(1225)] = 43130, + [SMALL_STATE(1226)] = 43213, + [SMALL_STATE(1227)] = 43296, + [SMALL_STATE(1228)] = 43381, + [SMALL_STATE(1229)] = 43470, + [SMALL_STATE(1230)] = 43557, + [SMALL_STATE(1231)] = 43640, + [SMALL_STATE(1232)] = 43729, + [SMALL_STATE(1233)] = 43818, + [SMALL_STATE(1234)] = 43903, + [SMALL_STATE(1235)] = 43988, + [SMALL_STATE(1236)] = 44071, + [SMALL_STATE(1237)] = 44154, + [SMALL_STATE(1238)] = 44237, + [SMALL_STATE(1239)] = 44320, + [SMALL_STATE(1240)] = 44403, + [SMALL_STATE(1241)] = 44486, + [SMALL_STATE(1242)] = 44569, + [SMALL_STATE(1243)] = 44652, + [SMALL_STATE(1244)] = 44735, + [SMALL_STATE(1245)] = 44824, + [SMALL_STATE(1246)] = 44909, + [SMALL_STATE(1247)] = 44998, + [SMALL_STATE(1248)] = 45081, + [SMALL_STATE(1249)] = 45163, + [SMALL_STATE(1250)] = 45245, + [SMALL_STATE(1251)] = 45327, + [SMALL_STATE(1252)] = 45409, + [SMALL_STATE(1253)] = 45491, + [SMALL_STATE(1254)] = 45573, + [SMALL_STATE(1255)] = 45655, + [SMALL_STATE(1256)] = 45737, + [SMALL_STATE(1257)] = 45819, + [SMALL_STATE(1258)] = 45901, + [SMALL_STATE(1259)] = 45983, + [SMALL_STATE(1260)] = 46065, + [SMALL_STATE(1261)] = 46147, + [SMALL_STATE(1262)] = 46229, + [SMALL_STATE(1263)] = 46311, + [SMALL_STATE(1264)] = 46393, + [SMALL_STATE(1265)] = 46475, + [SMALL_STATE(1266)] = 46557, + [SMALL_STATE(1267)] = 46639, + [SMALL_STATE(1268)] = 46721, + [SMALL_STATE(1269)] = 46803, + [SMALL_STATE(1270)] = 46885, + [SMALL_STATE(1271)] = 46967, + [SMALL_STATE(1272)] = 47049, + [SMALL_STATE(1273)] = 47119, + [SMALL_STATE(1274)] = 47201, + [SMALL_STATE(1275)] = 47283, + [SMALL_STATE(1276)] = 47365, + [SMALL_STATE(1277)] = 47447, + [SMALL_STATE(1278)] = 47529, + [SMALL_STATE(1279)] = 47599, + [SMALL_STATE(1280)] = 47681, + [SMALL_STATE(1281)] = 47763, + [SMALL_STATE(1282)] = 47845, + [SMALL_STATE(1283)] = 47927, + [SMALL_STATE(1284)] = 48009, + [SMALL_STATE(1285)] = 48091, + [SMALL_STATE(1286)] = 48173, + [SMALL_STATE(1287)] = 48255, + [SMALL_STATE(1288)] = 48337, + [SMALL_STATE(1289)] = 48419, + [SMALL_STATE(1290)] = 48501, + [SMALL_STATE(1291)] = 48583, + [SMALL_STATE(1292)] = 48665, + [SMALL_STATE(1293)] = 48747, + [SMALL_STATE(1294)] = 48829, + [SMALL_STATE(1295)] = 48911, + [SMALL_STATE(1296)] = 48993, + [SMALL_STATE(1297)] = 49075, + [SMALL_STATE(1298)] = 49157, + [SMALL_STATE(1299)] = 49239, + [SMALL_STATE(1300)] = 49321, + [SMALL_STATE(1301)] = 49403, + [SMALL_STATE(1302)] = 49485, + [SMALL_STATE(1303)] = 49567, + [SMALL_STATE(1304)] = 49649, + [SMALL_STATE(1305)] = 49731, + [SMALL_STATE(1306)] = 49813, + [SMALL_STATE(1307)] = 49895, + [SMALL_STATE(1308)] = 49977, + [SMALL_STATE(1309)] = 50059, + [SMALL_STATE(1310)] = 50141, + [SMALL_STATE(1311)] = 50223, + [SMALL_STATE(1312)] = 50267, + [SMALL_STATE(1313)] = 50349, + [SMALL_STATE(1314)] = 50431, + [SMALL_STATE(1315)] = 50513, + [SMALL_STATE(1316)] = 50595, + [SMALL_STATE(1317)] = 50677, + [SMALL_STATE(1318)] = 50759, + [SMALL_STATE(1319)] = 50841, + [SMALL_STATE(1320)] = 50922, + [SMALL_STATE(1321)] = 51003, + [SMALL_STATE(1322)] = 51082, + [SMALL_STATE(1323)] = 51125, + [SMALL_STATE(1324)] = 51168, + [SMALL_STATE(1325)] = 51235, + [SMALL_STATE(1326)] = 51278, + [SMALL_STATE(1327)] = 51345, + [SMALL_STATE(1328)] = 51388, + [SMALL_STATE(1329)] = 51431, + [SMALL_STATE(1330)] = 51474, + [SMALL_STATE(1331)] = 51555, + [SMALL_STATE(1332)] = 51636, + [SMALL_STATE(1333)] = 51692, + [SMALL_STATE(1334)] = 51748, + [SMALL_STATE(1335)] = 51804, + [SMALL_STATE(1336)] = 51860, + [SMALL_STATE(1337)] = 51916, + [SMALL_STATE(1338)] = 51972, + [SMALL_STATE(1339)] = 52028, + [SMALL_STATE(1340)] = 52084, + [SMALL_STATE(1341)] = 52140, + [SMALL_STATE(1342)] = 52196, + [SMALL_STATE(1343)] = 52252, + [SMALL_STATE(1344)] = 52305, + [SMALL_STATE(1345)] = 52358, + [SMALL_STATE(1346)] = 52411, + [SMALL_STATE(1347)] = 52464, + [SMALL_STATE(1348)] = 52517, + [SMALL_STATE(1349)] = 52570, + [SMALL_STATE(1350)] = 52613, + [SMALL_STATE(1351)] = 52656, + [SMALL_STATE(1352)] = 52702, + [SMALL_STATE(1353)] = 52748, + [SMALL_STATE(1354)] = 52808, + [SMALL_STATE(1355)] = 52868, + [SMALL_STATE(1356)] = 52914, + [SMALL_STATE(1357)] = 52971, + [SMALL_STATE(1358)] = 53023, + [SMALL_STATE(1359)] = 53072, + [SMALL_STATE(1360)] = 53121, + [SMALL_STATE(1361)] = 53170, + [SMALL_STATE(1362)] = 53219, + [SMALL_STATE(1363)] = 53266, + [SMALL_STATE(1364)] = 53296, + [SMALL_STATE(1365)] = 53342, + [SMALL_STATE(1366)] = 53388, + [SMALL_STATE(1367)] = 53434, + [SMALL_STATE(1368)] = 53483, + [SMALL_STATE(1369)] = 53530, + [SMALL_STATE(1370)] = 53556, + [SMALL_STATE(1371)] = 53582, + [SMALL_STATE(1372)] = 53608, + [SMALL_STATE(1373)] = 53634, + [SMALL_STATE(1374)] = 53660, + [SMALL_STATE(1375)] = 53686, + [SMALL_STATE(1376)] = 53712, + [SMALL_STATE(1377)] = 53756, + [SMALL_STATE(1378)] = 53782, + [SMALL_STATE(1379)] = 53808, + [SMALL_STATE(1380)] = 53834, + [SMALL_STATE(1381)] = 53878, + [SMALL_STATE(1382)] = 53920, + [SMALL_STATE(1383)] = 53946, + [SMALL_STATE(1384)] = 53972, + [SMALL_STATE(1385)] = 53998, + [SMALL_STATE(1386)] = 54024, + [SMALL_STATE(1387)] = 54050, + [SMALL_STATE(1388)] = 54096, + [SMALL_STATE(1389)] = 54122, + [SMALL_STATE(1390)] = 54147, + [SMALL_STATE(1391)] = 54172, + [SMALL_STATE(1392)] = 54197, + [SMALL_STATE(1393)] = 54238, + [SMALL_STATE(1394)] = 54281, + [SMALL_STATE(1395)] = 54324, + [SMALL_STATE(1396)] = 54349, + [SMALL_STATE(1397)] = 54390, + [SMALL_STATE(1398)] = 54433, + [SMALL_STATE(1399)] = 54458, + [SMALL_STATE(1400)] = 54483, + [SMALL_STATE(1401)] = 54508, + [SMALL_STATE(1402)] = 54533, + [SMALL_STATE(1403)] = 54558, + [SMALL_STATE(1404)] = 54583, + [SMALL_STATE(1405)] = 54608, + [SMALL_STATE(1406)] = 54633, + [SMALL_STATE(1407)] = 54658, + [SMALL_STATE(1408)] = 54683, + [SMALL_STATE(1409)] = 54708, + [SMALL_STATE(1410)] = 54751, + [SMALL_STATE(1411)] = 54776, + [SMALL_STATE(1412)] = 54819, + [SMALL_STATE(1413)] = 54844, + [SMALL_STATE(1414)] = 54875, + [SMALL_STATE(1415)] = 54900, + [SMALL_STATE(1416)] = 54941, + [SMALL_STATE(1417)] = 54984, + [SMALL_STATE(1418)] = 55009, + [SMALL_STATE(1419)] = 55034, + [SMALL_STATE(1420)] = 55059, + [SMALL_STATE(1421)] = 55102, + [SMALL_STATE(1422)] = 55145, + [SMALL_STATE(1423)] = 55186, + [SMALL_STATE(1424)] = 55222, + [SMALL_STATE(1425)] = 55262, + [SMALL_STATE(1426)] = 55290, + [SMALL_STATE(1427)] = 55330, + [SMALL_STATE(1428)] = 55370, + [SMALL_STATE(1429)] = 55403, + [SMALL_STATE(1430)] = 55428, + [SMALL_STATE(1431)] = 55457, + [SMALL_STATE(1432)] = 55484, + [SMALL_STATE(1433)] = 55521, + [SMALL_STATE(1434)] = 55546, + [SMALL_STATE(1435)] = 55571, + [SMALL_STATE(1436)] = 55596, + [SMALL_STATE(1437)] = 55633, + [SMALL_STATE(1438)] = 55670, + [SMALL_STATE(1439)] = 55707, + [SMALL_STATE(1440)] = 55744, + [SMALL_STATE(1441)] = 55777, + [SMALL_STATE(1442)] = 55801, + [SMALL_STATE(1443)] = 55825, + [SMALL_STATE(1444)] = 55855, + [SMALL_STATE(1445)] = 55879, + [SMALL_STATE(1446)] = 55907, + [SMALL_STATE(1447)] = 55939, + [SMALL_STATE(1448)] = 55967, + [SMALL_STATE(1449)] = 56001, + [SMALL_STATE(1450)] = 56027, + [SMALL_STATE(1451)] = 56055, + [SMALL_STATE(1452)] = 56079, + [SMALL_STATE(1453)] = 56105, + [SMALL_STATE(1454)] = 56129, + [SMALL_STATE(1455)] = 56163, + [SMALL_STATE(1456)] = 56197, + [SMALL_STATE(1457)] = 56229, + [SMALL_STATE(1458)] = 56261, + [SMALL_STATE(1459)] = 56295, + [SMALL_STATE(1460)] = 56319, + [SMALL_STATE(1461)] = 56353, + [SMALL_STATE(1462)] = 56385, + [SMALL_STATE(1463)] = 56414, + [SMALL_STATE(1464)] = 56441, + [SMALL_STATE(1465)] = 56468, + [SMALL_STATE(1466)] = 56497, + [SMALL_STATE(1467)] = 56526, + [SMALL_STATE(1468)] = 56555, + [SMALL_STATE(1469)] = 56584, + [SMALL_STATE(1470)] = 56615, + [SMALL_STATE(1471)] = 56642, + [SMALL_STATE(1472)] = 56671, + [SMALL_STATE(1473)] = 56700, + [SMALL_STATE(1474)] = 56729, + [SMALL_STATE(1475)] = 56756, + [SMALL_STATE(1476)] = 56785, + [SMALL_STATE(1477)] = 56814, + [SMALL_STATE(1478)] = 56841, + [SMALL_STATE(1479)] = 56870, + [SMALL_STATE(1480)] = 56893, + [SMALL_STATE(1481)] = 56922, + [SMALL_STATE(1482)] = 56955, + [SMALL_STATE(1483)] = 56986, + [SMALL_STATE(1484)] = 57015, + [SMALL_STATE(1485)] = 57044, + [SMALL_STATE(1486)] = 57073, + [SMALL_STATE(1487)] = 57102, + [SMALL_STATE(1488)] = 57133, + [SMALL_STATE(1489)] = 57164, + [SMALL_STATE(1490)] = 57187, + [SMALL_STATE(1491)] = 57216, + [SMALL_STATE(1492)] = 57247, + [SMALL_STATE(1493)] = 57272, + [SMALL_STATE(1494)] = 57303, + [SMALL_STATE(1495)] = 57332, + [SMALL_STATE(1496)] = 57363, + [SMALL_STATE(1497)] = 57390, + [SMALL_STATE(1498)] = 57419, + [SMALL_STATE(1499)] = 57448, + [SMALL_STATE(1500)] = 57475, + [SMALL_STATE(1501)] = 57506, + [SMALL_STATE(1502)] = 57535, + [SMALL_STATE(1503)] = 57566, + [SMALL_STATE(1504)] = 57593, + [SMALL_STATE(1505)] = 57624, + [SMALL_STATE(1506)] = 57653, + [SMALL_STATE(1507)] = 57682, + [SMALL_STATE(1508)] = 57709, + [SMALL_STATE(1509)] = 57738, + [SMALL_STATE(1510)] = 57769, + [SMALL_STATE(1511)] = 57798, + [SMALL_STATE(1512)] = 57827, + [SMALL_STATE(1513)] = 57854, + [SMALL_STATE(1514)] = 57883, + [SMALL_STATE(1515)] = 57910, + [SMALL_STATE(1516)] = 57943, + [SMALL_STATE(1517)] = 57974, + [SMALL_STATE(1518)] = 57999, + [SMALL_STATE(1519)] = 58022, + [SMALL_STATE(1520)] = 58053, + [SMALL_STATE(1521)] = 58082, + [SMALL_STATE(1522)] = 58111, + [SMALL_STATE(1523)] = 58140, + [SMALL_STATE(1524)] = 58165, + [SMALL_STATE(1525)] = 58191, + [SMALL_STATE(1526)] = 58225, + [SMALL_STATE(1527)] = 58259, + [SMALL_STATE(1528)] = 58293, + [SMALL_STATE(1529)] = 58323, + [SMALL_STATE(1530)] = 58357, + [SMALL_STATE(1531)] = 58383, + [SMALL_STATE(1532)] = 58417, + [SMALL_STATE(1533)] = 58443, + [SMALL_STATE(1534)] = 58471, + [SMALL_STATE(1535)] = 58503, + [SMALL_STATE(1536)] = 58537, + [SMALL_STATE(1537)] = 58567, + [SMALL_STATE(1538)] = 58594, + [SMALL_STATE(1539)] = 58625, + [SMALL_STATE(1540)] = 58646, + [SMALL_STATE(1541)] = 58667, + [SMALL_STATE(1542)] = 58690, + [SMALL_STATE(1543)] = 58713, + [SMALL_STATE(1544)] = 58736, + [SMALL_STATE(1545)] = 58759, + [SMALL_STATE(1546)] = 58786, + [SMALL_STATE(1547)] = 58807, + [SMALL_STATE(1548)] = 58828, + [SMALL_STATE(1549)] = 58857, + [SMALL_STATE(1550)] = 58880, + [SMALL_STATE(1551)] = 58903, + [SMALL_STATE(1552)] = 58924, + [SMALL_STATE(1553)] = 58949, + [SMALL_STATE(1554)] = 58976, + [SMALL_STATE(1555)] = 58999, + [SMALL_STATE(1556)] = 59020, + [SMALL_STATE(1557)] = 59041, + [SMALL_STATE(1558)] = 59062, + [SMALL_STATE(1559)] = 59085, + [SMALL_STATE(1560)] = 59112, + [SMALL_STATE(1561)] = 59135, + [SMALL_STATE(1562)] = 59156, + [SMALL_STATE(1563)] = 59177, + [SMALL_STATE(1564)] = 59204, + [SMALL_STATE(1565)] = 59227, + [SMALL_STATE(1566)] = 59248, + [SMALL_STATE(1567)] = 59271, + [SMALL_STATE(1568)] = 59298, + [SMALL_STATE(1569)] = 59321, + [SMALL_STATE(1570)] = 59342, + [SMALL_STATE(1571)] = 59365, + [SMALL_STATE(1572)] = 59386, + [SMALL_STATE(1573)] = 59413, + [SMALL_STATE(1574)] = 59436, + [SMALL_STATE(1575)] = 59459, + [SMALL_STATE(1576)] = 59480, + [SMALL_STATE(1577)] = 59503, + [SMALL_STATE(1578)] = 59526, + [SMALL_STATE(1579)] = 59549, + [SMALL_STATE(1580)] = 59572, + [SMALL_STATE(1581)] = 59595, + [SMALL_STATE(1582)] = 59618, + [SMALL_STATE(1583)] = 59646, + [SMALL_STATE(1584)] = 59674, + [SMALL_STATE(1585)] = 59702, + [SMALL_STATE(1586)] = 59726, + [SMALL_STATE(1587)] = 59752, + [SMALL_STATE(1588)] = 59778, + [SMALL_STATE(1589)] = 59806, + [SMALL_STATE(1590)] = 59830, + [SMALL_STATE(1591)] = 59858, + [SMALL_STATE(1592)] = 59886, + [SMALL_STATE(1593)] = 59914, + [SMALL_STATE(1594)] = 59934, + [SMALL_STATE(1595)] = 59962, + [SMALL_STATE(1596)] = 59990, + [SMALL_STATE(1597)] = 60018, + [SMALL_STATE(1598)] = 60046, + [SMALL_STATE(1599)] = 60066, + [SMALL_STATE(1600)] = 60086, + [SMALL_STATE(1601)] = 60106, + [SMALL_STATE(1602)] = 60134, + [SMALL_STATE(1603)] = 60154, + [SMALL_STATE(1604)] = 60176, + [SMALL_STATE(1605)] = 60196, + [SMALL_STATE(1606)] = 60222, + [SMALL_STATE(1607)] = 60250, + [SMALL_STATE(1608)] = 60278, + [SMALL_STATE(1609)] = 60306, + [SMALL_STATE(1610)] = 60334, + [SMALL_STATE(1611)] = 60362, + [SMALL_STATE(1612)] = 60390, + [SMALL_STATE(1613)] = 60416, + [SMALL_STATE(1614)] = 60442, + [SMALL_STATE(1615)] = 60466, + [SMALL_STATE(1616)] = 60494, + [SMALL_STATE(1617)] = 60514, + [SMALL_STATE(1618)] = 60542, + [SMALL_STATE(1619)] = 60570, + [SMALL_STATE(1620)] = 60596, + [SMALL_STATE(1621)] = 60624, + [SMALL_STATE(1622)] = 60652, + [SMALL_STATE(1623)] = 60680, + [SMALL_STATE(1624)] = 60706, + [SMALL_STATE(1625)] = 60734, + [SMALL_STATE(1626)] = 60754, + [SMALL_STATE(1627)] = 60774, + [SMALL_STATE(1628)] = 60794, + [SMALL_STATE(1629)] = 60822, + [SMALL_STATE(1630)] = 60850, + [SMALL_STATE(1631)] = 60870, + [SMALL_STATE(1632)] = 60896, + [SMALL_STATE(1633)] = 60924, + [SMALL_STATE(1634)] = 60944, + [SMALL_STATE(1635)] = 60972, + [SMALL_STATE(1636)] = 60992, + [SMALL_STATE(1637)] = 61016, + [SMALL_STATE(1638)] = 61036, + [SMALL_STATE(1639)] = 61062, + [SMALL_STATE(1640)] = 61090, + [SMALL_STATE(1641)] = 61110, + [SMALL_STATE(1642)] = 61134, + [SMALL_STATE(1643)] = 61162, + [SMALL_STATE(1644)] = 61182, + [SMALL_STATE(1645)] = 61210, + [SMALL_STATE(1646)] = 61238, + [SMALL_STATE(1647)] = 61258, + [SMALL_STATE(1648)] = 61284, + [SMALL_STATE(1649)] = 61310, + [SMALL_STATE(1650)] = 61330, + [SMALL_STATE(1651)] = 61358, + [SMALL_STATE(1652)] = 61386, + [SMALL_STATE(1653)] = 61412, + [SMALL_STATE(1654)] = 61432, + [SMALL_STATE(1655)] = 61460, + [SMALL_STATE(1656)] = 61488, + [SMALL_STATE(1657)] = 61508, + [SMALL_STATE(1658)] = 61529, + [SMALL_STATE(1659)] = 61550, + [SMALL_STATE(1660)] = 61571, + [SMALL_STATE(1661)] = 61592, + [SMALL_STATE(1662)] = 61613, + [SMALL_STATE(1663)] = 61630, + [SMALL_STATE(1664)] = 61651, + [SMALL_STATE(1665)] = 61674, + [SMALL_STATE(1666)] = 61699, + [SMALL_STATE(1667)] = 61720, + [SMALL_STATE(1668)] = 61741, + [SMALL_STATE(1669)] = 61760, + [SMALL_STATE(1670)] = 61781, + [SMALL_STATE(1671)] = 61804, + [SMALL_STATE(1672)] = 61829, + [SMALL_STATE(1673)] = 61848, + [SMALL_STATE(1674)] = 61871, + [SMALL_STATE(1675)] = 61894, + [SMALL_STATE(1676)] = 61919, + [SMALL_STATE(1677)] = 61942, + [SMALL_STATE(1678)] = 61963, + [SMALL_STATE(1679)] = 61988, + [SMALL_STATE(1680)] = 62013, + [SMALL_STATE(1681)] = 62038, + [SMALL_STATE(1682)] = 62061, + [SMALL_STATE(1683)] = 62082, + [SMALL_STATE(1684)] = 62101, + [SMALL_STATE(1685)] = 62124, + [SMALL_STATE(1686)] = 62149, + [SMALL_STATE(1687)] = 62174, + [SMALL_STATE(1688)] = 62193, + [SMALL_STATE(1689)] = 62210, + [SMALL_STATE(1690)] = 62233, + [SMALL_STATE(1691)] = 62258, + [SMALL_STATE(1692)] = 62281, + [SMALL_STATE(1693)] = 62302, + [SMALL_STATE(1694)] = 62325, + [SMALL_STATE(1695)] = 62346, + [SMALL_STATE(1696)] = 62363, + [SMALL_STATE(1697)] = 62388, + [SMALL_STATE(1698)] = 62405, + [SMALL_STATE(1699)] = 62426, + [SMALL_STATE(1700)] = 62451, + [SMALL_STATE(1701)] = 62470, + [SMALL_STATE(1702)] = 62493, + [SMALL_STATE(1703)] = 62516, + [SMALL_STATE(1704)] = 62541, + [SMALL_STATE(1705)] = 62564, + [SMALL_STATE(1706)] = 62581, + [SMALL_STATE(1707)] = 62604, + [SMALL_STATE(1708)] = 62629, + [SMALL_STATE(1709)] = 62654, + [SMALL_STATE(1710)] = 62673, + [SMALL_STATE(1711)] = 62694, + [SMALL_STATE(1712)] = 62715, + [SMALL_STATE(1713)] = 62738, + [SMALL_STATE(1714)] = 62761, + [SMALL_STATE(1715)] = 62784, + [SMALL_STATE(1716)] = 62803, + [SMALL_STATE(1717)] = 62826, + [SMALL_STATE(1718)] = 62845, + [SMALL_STATE(1719)] = 62864, + [SMALL_STATE(1720)] = 62889, + [SMALL_STATE(1721)] = 62908, + [SMALL_STATE(1722)] = 62929, + [SMALL_STATE(1723)] = 62950, + [SMALL_STATE(1724)] = 62973, + [SMALL_STATE(1725)] = 62994, + [SMALL_STATE(1726)] = 63019, + [SMALL_STATE(1727)] = 63040, + [SMALL_STATE(1728)] = 63065, + [SMALL_STATE(1729)] = 63090, + [SMALL_STATE(1730)] = 63111, + [SMALL_STATE(1731)] = 63132, + [SMALL_STATE(1732)] = 63157, + [SMALL_STATE(1733)] = 63182, + [SMALL_STATE(1734)] = 63201, + [SMALL_STATE(1735)] = 63224, + [SMALL_STATE(1736)] = 63249, + [SMALL_STATE(1737)] = 63270, + [SMALL_STATE(1738)] = 63291, + [SMALL_STATE(1739)] = 63314, + [SMALL_STATE(1740)] = 63337, + [SMALL_STATE(1741)] = 63360, + [SMALL_STATE(1742)] = 63385, + [SMALL_STATE(1743)] = 63406, + [SMALL_STATE(1744)] = 63431, + [SMALL_STATE(1745)] = 63452, + [SMALL_STATE(1746)] = 63473, + [SMALL_STATE(1747)] = 63498, + [SMALL_STATE(1748)] = 63519, + [SMALL_STATE(1749)] = 63542, + [SMALL_STATE(1750)] = 63563, + [SMALL_STATE(1751)] = 63584, + [SMALL_STATE(1752)] = 63605, + [SMALL_STATE(1753)] = 63624, + [SMALL_STATE(1754)] = 63645, + [SMALL_STATE(1755)] = 63667, + [SMALL_STATE(1756)] = 63687, + [SMALL_STATE(1757)] = 63709, + [SMALL_STATE(1758)] = 63729, + [SMALL_STATE(1759)] = 63747, + [SMALL_STATE(1760)] = 63767, + [SMALL_STATE(1761)] = 63789, + [SMALL_STATE(1762)] = 63809, + [SMALL_STATE(1763)] = 63829, + [SMALL_STATE(1764)] = 63849, + [SMALL_STATE(1765)] = 63867, + [SMALL_STATE(1766)] = 63885, + [SMALL_STATE(1767)] = 63907, + [SMALL_STATE(1768)] = 63927, + [SMALL_STATE(1769)] = 63943, + [SMALL_STATE(1770)] = 63965, + [SMALL_STATE(1771)] = 63987, + [SMALL_STATE(1772)] = 64009, + [SMALL_STATE(1773)] = 64031, + [SMALL_STATE(1774)] = 64047, + [SMALL_STATE(1775)] = 64069, + [SMALL_STATE(1776)] = 64091, + [SMALL_STATE(1777)] = 64113, + [SMALL_STATE(1778)] = 64133, + [SMALL_STATE(1779)] = 64155, + [SMALL_STATE(1780)] = 64173, + [SMALL_STATE(1781)] = 64195, + [SMALL_STATE(1782)] = 64217, + [SMALL_STATE(1783)] = 64233, + [SMALL_STATE(1784)] = 64253, + [SMALL_STATE(1785)] = 64275, + [SMALL_STATE(1786)] = 64295, + [SMALL_STATE(1787)] = 64317, + [SMALL_STATE(1788)] = 64337, + [SMALL_STATE(1789)] = 64357, + [SMALL_STATE(1790)] = 64379, + [SMALL_STATE(1791)] = 64401, + [SMALL_STATE(1792)] = 64421, + [SMALL_STATE(1793)] = 64437, + [SMALL_STATE(1794)] = 64457, + [SMALL_STATE(1795)] = 64475, + [SMALL_STATE(1796)] = 64491, + [SMALL_STATE(1797)] = 64511, + [SMALL_STATE(1798)] = 64533, + [SMALL_STATE(1799)] = 64551, + [SMALL_STATE(1800)] = 64573, + [SMALL_STATE(1801)] = 64595, + [SMALL_STATE(1802)] = 64615, + [SMALL_STATE(1803)] = 64631, + [SMALL_STATE(1804)] = 64651, + [SMALL_STATE(1805)] = 64667, + [SMALL_STATE(1806)] = 64687, + [SMALL_STATE(1807)] = 64703, + [SMALL_STATE(1808)] = 64721, + [SMALL_STATE(1809)] = 64741, + [SMALL_STATE(1810)] = 64763, + [SMALL_STATE(1811)] = 64783, + [SMALL_STATE(1812)] = 64803, + [SMALL_STATE(1813)] = 64823, + [SMALL_STATE(1814)] = 64845, + [SMALL_STATE(1815)] = 64861, + [SMALL_STATE(1816)] = 64881, + [SMALL_STATE(1817)] = 64897, + [SMALL_STATE(1818)] = 64917, + [SMALL_STATE(1819)] = 64937, + [SMALL_STATE(1820)] = 64959, + [SMALL_STATE(1821)] = 64981, + [SMALL_STATE(1822)] = 65003, + [SMALL_STATE(1823)] = 65019, + [SMALL_STATE(1824)] = 65037, + [SMALL_STATE(1825)] = 65055, + [SMALL_STATE(1826)] = 65077, + [SMALL_STATE(1827)] = 65093, + [SMALL_STATE(1828)] = 65115, + [SMALL_STATE(1829)] = 65135, + [SMALL_STATE(1830)] = 65155, + [SMALL_STATE(1831)] = 65175, + [SMALL_STATE(1832)] = 65197, + [SMALL_STATE(1833)] = 65217, + [SMALL_STATE(1834)] = 65237, + [SMALL_STATE(1835)] = 65255, + [SMALL_STATE(1836)] = 65273, + [SMALL_STATE(1837)] = 65293, + [SMALL_STATE(1838)] = 65313, + [SMALL_STATE(1839)] = 65335, + [SMALL_STATE(1840)] = 65357, + [SMALL_STATE(1841)] = 65379, + [SMALL_STATE(1842)] = 65399, + [SMALL_STATE(1843)] = 65421, + [SMALL_STATE(1844)] = 65437, + [SMALL_STATE(1845)] = 65459, + [SMALL_STATE(1846)] = 65481, + [SMALL_STATE(1847)] = 65501, + [SMALL_STATE(1848)] = 65523, + [SMALL_STATE(1849)] = 65545, + [SMALL_STATE(1850)] = 65565, + [SMALL_STATE(1851)] = 65587, + [SMALL_STATE(1852)] = 65609, + [SMALL_STATE(1853)] = 65631, + [SMALL_STATE(1854)] = 65653, + [SMALL_STATE(1855)] = 65675, + [SMALL_STATE(1856)] = 65697, + [SMALL_STATE(1857)] = 65719, + [SMALL_STATE(1858)] = 65741, + [SMALL_STATE(1859)] = 65761, + [SMALL_STATE(1860)] = 65783, + [SMALL_STATE(1861)] = 65803, + [SMALL_STATE(1862)] = 65823, + [SMALL_STATE(1863)] = 65845, + [SMALL_STATE(1864)] = 65867, + [SMALL_STATE(1865)] = 65887, + [SMALL_STATE(1866)] = 65903, + [SMALL_STATE(1867)] = 65925, + [SMALL_STATE(1868)] = 65947, + [SMALL_STATE(1869)] = 65969, + [SMALL_STATE(1870)] = 65991, + [SMALL_STATE(1871)] = 66013, + [SMALL_STATE(1872)] = 66033, + [SMALL_STATE(1873)] = 66055, + [SMALL_STATE(1874)] = 66077, + [SMALL_STATE(1875)] = 66093, + [SMALL_STATE(1876)] = 66109, + [SMALL_STATE(1877)] = 66131, + [SMALL_STATE(1878)] = 66151, + [SMALL_STATE(1879)] = 66171, + [SMALL_STATE(1880)] = 66191, + [SMALL_STATE(1881)] = 66209, + [SMALL_STATE(1882)] = 66229, + [SMALL_STATE(1883)] = 66247, + [SMALL_STATE(1884)] = 66263, + [SMALL_STATE(1885)] = 66281, + [SMALL_STATE(1886)] = 66301, + [SMALL_STATE(1887)] = 66321, + [SMALL_STATE(1888)] = 66343, + [SMALL_STATE(1889)] = 66359, + [SMALL_STATE(1890)] = 66379, + [SMALL_STATE(1891)] = 66399, + [SMALL_STATE(1892)] = 66419, + [SMALL_STATE(1893)] = 66439, + [SMALL_STATE(1894)] = 66457, + [SMALL_STATE(1895)] = 66479, + [SMALL_STATE(1896)] = 66501, + [SMALL_STATE(1897)] = 66521, + [SMALL_STATE(1898)] = 66539, + [SMALL_STATE(1899)] = 66559, + [SMALL_STATE(1900)] = 66581, + [SMALL_STATE(1901)] = 66603, + [SMALL_STATE(1902)] = 66625, + [SMALL_STATE(1903)] = 66641, + [SMALL_STATE(1904)] = 66657, + [SMALL_STATE(1905)] = 66674, + [SMALL_STATE(1906)] = 66693, + [SMALL_STATE(1907)] = 66712, + [SMALL_STATE(1908)] = 66729, + [SMALL_STATE(1909)] = 66748, + [SMALL_STATE(1910)] = 66767, + [SMALL_STATE(1911)] = 66786, + [SMALL_STATE(1912)] = 66805, + [SMALL_STATE(1913)] = 66824, + [SMALL_STATE(1914)] = 66843, + [SMALL_STATE(1915)] = 66862, + [SMALL_STATE(1916)] = 66881, + [SMALL_STATE(1917)] = 66900, + [SMALL_STATE(1918)] = 66919, + [SMALL_STATE(1919)] = 66938, + [SMALL_STATE(1920)] = 66955, + [SMALL_STATE(1921)] = 66974, + [SMALL_STATE(1922)] = 66993, + [SMALL_STATE(1923)] = 67012, + [SMALL_STATE(1924)] = 67031, + [SMALL_STATE(1925)] = 67050, + [SMALL_STATE(1926)] = 67067, + [SMALL_STATE(1927)] = 67084, + [SMALL_STATE(1928)] = 67103, + [SMALL_STATE(1929)] = 67122, + [SMALL_STATE(1930)] = 67139, + [SMALL_STATE(1931)] = 67154, + [SMALL_STATE(1932)] = 67173, + [SMALL_STATE(1933)] = 67192, + [SMALL_STATE(1934)] = 67211, + [SMALL_STATE(1935)] = 67230, + [SMALL_STATE(1936)] = 67247, + [SMALL_STATE(1937)] = 67266, + [SMALL_STATE(1938)] = 67285, + [SMALL_STATE(1939)] = 67304, + [SMALL_STATE(1940)] = 67323, + [SMALL_STATE(1941)] = 67338, + [SMALL_STATE(1942)] = 67357, + [SMALL_STATE(1943)] = 67376, + [SMALL_STATE(1944)] = 67395, + [SMALL_STATE(1945)] = 67414, + [SMALL_STATE(1946)] = 67433, + [SMALL_STATE(1947)] = 67450, + [SMALL_STATE(1948)] = 67469, + [SMALL_STATE(1949)] = 67486, + [SMALL_STATE(1950)] = 67503, + [SMALL_STATE(1951)] = 67522, + [SMALL_STATE(1952)] = 67539, + [SMALL_STATE(1953)] = 67556, + [SMALL_STATE(1954)] = 67573, + [SMALL_STATE(1955)] = 67590, + [SMALL_STATE(1956)] = 67607, + [SMALL_STATE(1957)] = 67624, + [SMALL_STATE(1958)] = 67643, + [SMALL_STATE(1959)] = 67660, + [SMALL_STATE(1960)] = 67677, + [SMALL_STATE(1961)] = 67694, + [SMALL_STATE(1962)] = 67711, + [SMALL_STATE(1963)] = 67730, + [SMALL_STATE(1964)] = 67749, + [SMALL_STATE(1965)] = 67766, + [SMALL_STATE(1966)] = 67785, + [SMALL_STATE(1967)] = 67802, + [SMALL_STATE(1968)] = 67819, + [SMALL_STATE(1969)] = 67836, + [SMALL_STATE(1970)] = 67853, + [SMALL_STATE(1971)] = 67870, + [SMALL_STATE(1972)] = 67887, + [SMALL_STATE(1973)] = 67904, + [SMALL_STATE(1974)] = 67921, + [SMALL_STATE(1975)] = 67938, + [SMALL_STATE(1976)] = 67955, + [SMALL_STATE(1977)] = 67972, + [SMALL_STATE(1978)] = 67989, + [SMALL_STATE(1979)] = 68006, + [SMALL_STATE(1980)] = 68023, + [SMALL_STATE(1981)] = 68040, + [SMALL_STATE(1982)] = 68057, + [SMALL_STATE(1983)] = 68074, + [SMALL_STATE(1984)] = 68091, + [SMALL_STATE(1985)] = 68108, + [SMALL_STATE(1986)] = 68125, + [SMALL_STATE(1987)] = 68142, + [SMALL_STATE(1988)] = 68159, + [SMALL_STATE(1989)] = 68176, + [SMALL_STATE(1990)] = 68193, + [SMALL_STATE(1991)] = 68210, + [SMALL_STATE(1992)] = 68227, + [SMALL_STATE(1993)] = 68244, + [SMALL_STATE(1994)] = 68261, + [SMALL_STATE(1995)] = 68278, + [SMALL_STATE(1996)] = 68297, + [SMALL_STATE(1997)] = 68314, + [SMALL_STATE(1998)] = 68331, + [SMALL_STATE(1999)] = 68348, + [SMALL_STATE(2000)] = 68365, + [SMALL_STATE(2001)] = 68382, + [SMALL_STATE(2002)] = 68401, + [SMALL_STATE(2003)] = 68418, + [SMALL_STATE(2004)] = 68435, + [SMALL_STATE(2005)] = 68452, + [SMALL_STATE(2006)] = 68469, + [SMALL_STATE(2007)] = 68486, + [SMALL_STATE(2008)] = 68505, + [SMALL_STATE(2009)] = 68522, + [SMALL_STATE(2010)] = 68539, + [SMALL_STATE(2011)] = 68556, + [SMALL_STATE(2012)] = 68575, + [SMALL_STATE(2013)] = 68592, + [SMALL_STATE(2014)] = 68609, + [SMALL_STATE(2015)] = 68626, + [SMALL_STATE(2016)] = 68643, + [SMALL_STATE(2017)] = 68660, + [SMALL_STATE(2018)] = 68675, + [SMALL_STATE(2019)] = 68692, + [SMALL_STATE(2020)] = 68709, + [SMALL_STATE(2021)] = 68728, + [SMALL_STATE(2022)] = 68745, + [SMALL_STATE(2023)] = 68762, + [SMALL_STATE(2024)] = 68779, + [SMALL_STATE(2025)] = 68798, + [SMALL_STATE(2026)] = 68815, + [SMALL_STATE(2027)] = 68832, + [SMALL_STATE(2028)] = 68849, + [SMALL_STATE(2029)] = 68868, + [SMALL_STATE(2030)] = 68885, + [SMALL_STATE(2031)] = 68904, + [SMALL_STATE(2032)] = 68921, + [SMALL_STATE(2033)] = 68938, + [SMALL_STATE(2034)] = 68955, + [SMALL_STATE(2035)] = 68970, + [SMALL_STATE(2036)] = 68985, + [SMALL_STATE(2037)] = 69002, + [SMALL_STATE(2038)] = 69019, + [SMALL_STATE(2039)] = 69036, + [SMALL_STATE(2040)] = 69053, + [SMALL_STATE(2041)] = 69072, + [SMALL_STATE(2042)] = 69089, + [SMALL_STATE(2043)] = 69106, + [SMALL_STATE(2044)] = 69123, + [SMALL_STATE(2045)] = 69142, + [SMALL_STATE(2046)] = 69159, + [SMALL_STATE(2047)] = 69176, + [SMALL_STATE(2048)] = 69193, + [SMALL_STATE(2049)] = 69210, + [SMALL_STATE(2050)] = 69225, + [SMALL_STATE(2051)] = 69242, + [SMALL_STATE(2052)] = 69259, + [SMALL_STATE(2053)] = 69276, + [SMALL_STATE(2054)] = 69293, + [SMALL_STATE(2055)] = 69310, + [SMALL_STATE(2056)] = 69327, + [SMALL_STATE(2057)] = 69344, + [SMALL_STATE(2058)] = 69361, + [SMALL_STATE(2059)] = 69378, + [SMALL_STATE(2060)] = 69393, + [SMALL_STATE(2061)] = 69412, + [SMALL_STATE(2062)] = 69431, + [SMALL_STATE(2063)] = 69446, + [SMALL_STATE(2064)] = 69461, + [SMALL_STATE(2065)] = 69478, + [SMALL_STATE(2066)] = 69495, + [SMALL_STATE(2067)] = 69514, + [SMALL_STATE(2068)] = 69531, + [SMALL_STATE(2069)] = 69548, + [SMALL_STATE(2070)] = 69567, + [SMALL_STATE(2071)] = 69584, + [SMALL_STATE(2072)] = 69601, + [SMALL_STATE(2073)] = 69620, + [SMALL_STATE(2074)] = 69639, + [SMALL_STATE(2075)] = 69656, + [SMALL_STATE(2076)] = 69675, + [SMALL_STATE(2077)] = 69692, + [SMALL_STATE(2078)] = 69711, + [SMALL_STATE(2079)] = 69728, + [SMALL_STATE(2080)] = 69745, + [SMALL_STATE(2081)] = 69762, + [SMALL_STATE(2082)] = 69777, + [SMALL_STATE(2083)] = 69794, + [SMALL_STATE(2084)] = 69813, + [SMALL_STATE(2085)] = 69828, + [SMALL_STATE(2086)] = 69845, + [SMALL_STATE(2087)] = 69862, + [SMALL_STATE(2088)] = 69877, + [SMALL_STATE(2089)] = 69894, + [SMALL_STATE(2090)] = 69913, + [SMALL_STATE(2091)] = 69932, + [SMALL_STATE(2092)] = 69949, + [SMALL_STATE(2093)] = 69968, + [SMALL_STATE(2094)] = 69987, + [SMALL_STATE(2095)] = 70004, + [SMALL_STATE(2096)] = 70023, + [SMALL_STATE(2097)] = 70042, + [SMALL_STATE(2098)] = 70057, + [SMALL_STATE(2099)] = 70072, + [SMALL_STATE(2100)] = 70089, + [SMALL_STATE(2101)] = 70104, + [SMALL_STATE(2102)] = 70123, + [SMALL_STATE(2103)] = 70138, + [SMALL_STATE(2104)] = 70157, + [SMALL_STATE(2105)] = 70176, + [SMALL_STATE(2106)] = 70193, + [SMALL_STATE(2107)] = 70210, + [SMALL_STATE(2108)] = 70225, + [SMALL_STATE(2109)] = 70242, + [SMALL_STATE(2110)] = 70259, + [SMALL_STATE(2111)] = 70274, + [SMALL_STATE(2112)] = 70291, + [SMALL_STATE(2113)] = 70310, + [SMALL_STATE(2114)] = 70325, + [SMALL_STATE(2115)] = 70342, + [SMALL_STATE(2116)] = 70361, + [SMALL_STATE(2117)] = 70378, + [SMALL_STATE(2118)] = 70395, + [SMALL_STATE(2119)] = 70414, + [SMALL_STATE(2120)] = 70433, + [SMALL_STATE(2121)] = 70452, + [SMALL_STATE(2122)] = 70471, + [SMALL_STATE(2123)] = 70490, + [SMALL_STATE(2124)] = 70507, + [SMALL_STATE(2125)] = 70524, + [SMALL_STATE(2126)] = 70541, + [SMALL_STATE(2127)] = 70556, + [SMALL_STATE(2128)] = 70573, + [SMALL_STATE(2129)] = 70590, + [SMALL_STATE(2130)] = 70609, + [SMALL_STATE(2131)] = 70624, + [SMALL_STATE(2132)] = 70643, + [SMALL_STATE(2133)] = 70658, + [SMALL_STATE(2134)] = 70675, + [SMALL_STATE(2135)] = 70694, + [SMALL_STATE(2136)] = 70713, + [SMALL_STATE(2137)] = 70730, + [SMALL_STATE(2138)] = 70747, + [SMALL_STATE(2139)] = 70764, + [SMALL_STATE(2140)] = 70783, + [SMALL_STATE(2141)] = 70802, + [SMALL_STATE(2142)] = 70821, + [SMALL_STATE(2143)] = 70840, + [SMALL_STATE(2144)] = 70857, + [SMALL_STATE(2145)] = 70872, + [SMALL_STATE(2146)] = 70887, + [SMALL_STATE(2147)] = 70906, + [SMALL_STATE(2148)] = 70925, + [SMALL_STATE(2149)] = 70944, + [SMALL_STATE(2150)] = 70963, + [SMALL_STATE(2151)] = 70982, + [SMALL_STATE(2152)] = 70999, + [SMALL_STATE(2153)] = 71016, + [SMALL_STATE(2154)] = 71033, + [SMALL_STATE(2155)] = 71050, + [SMALL_STATE(2156)] = 71067, + [SMALL_STATE(2157)] = 71086, + [SMALL_STATE(2158)] = 71103, + [SMALL_STATE(2159)] = 71122, + [SMALL_STATE(2160)] = 71141, + [SMALL_STATE(2161)] = 71160, + [SMALL_STATE(2162)] = 71179, + [SMALL_STATE(2163)] = 71198, + [SMALL_STATE(2164)] = 71217, + [SMALL_STATE(2165)] = 71234, + [SMALL_STATE(2166)] = 71251, + [SMALL_STATE(2167)] = 71266, + [SMALL_STATE(2168)] = 71285, + [SMALL_STATE(2169)] = 71300, + [SMALL_STATE(2170)] = 71319, + [SMALL_STATE(2171)] = 71335, + [SMALL_STATE(2172)] = 71349, + [SMALL_STATE(2173)] = 71365, + [SMALL_STATE(2174)] = 71379, + [SMALL_STATE(2175)] = 71395, + [SMALL_STATE(2176)] = 71411, + [SMALL_STATE(2177)] = 71427, + [SMALL_STATE(2178)] = 71443, + [SMALL_STATE(2179)] = 71459, + [SMALL_STATE(2180)] = 71475, + [SMALL_STATE(2181)] = 71491, + [SMALL_STATE(2182)] = 71507, + [SMALL_STATE(2183)] = 71523, + [SMALL_STATE(2184)] = 71539, + [SMALL_STATE(2185)] = 71553, + [SMALL_STATE(2186)] = 71567, + [SMALL_STATE(2187)] = 71581, + [SMALL_STATE(2188)] = 71595, + [SMALL_STATE(2189)] = 71609, + [SMALL_STATE(2190)] = 71623, + [SMALL_STATE(2191)] = 71639, + [SMALL_STATE(2192)] = 71653, + [SMALL_STATE(2193)] = 71669, + [SMALL_STATE(2194)] = 71683, + [SMALL_STATE(2195)] = 71697, + [SMALL_STATE(2196)] = 71713, + [SMALL_STATE(2197)] = 71729, + [SMALL_STATE(2198)] = 71745, + [SMALL_STATE(2199)] = 71761, + [SMALL_STATE(2200)] = 71777, + [SMALL_STATE(2201)] = 71793, + [SMALL_STATE(2202)] = 71809, + [SMALL_STATE(2203)] = 71825, + [SMALL_STATE(2204)] = 71841, + [SMALL_STATE(2205)] = 71857, + [SMALL_STATE(2206)] = 71873, + [SMALL_STATE(2207)] = 71889, + [SMALL_STATE(2208)] = 71903, + [SMALL_STATE(2209)] = 71919, + [SMALL_STATE(2210)] = 71933, + [SMALL_STATE(2211)] = 71947, + [SMALL_STATE(2212)] = 71963, + [SMALL_STATE(2213)] = 71979, + [SMALL_STATE(2214)] = 71995, + [SMALL_STATE(2215)] = 72011, + [SMALL_STATE(2216)] = 72027, + [SMALL_STATE(2217)] = 72043, + [SMALL_STATE(2218)] = 72059, + [SMALL_STATE(2219)] = 72075, + [SMALL_STATE(2220)] = 72091, + [SMALL_STATE(2221)] = 72107, + [SMALL_STATE(2222)] = 72123, + [SMALL_STATE(2223)] = 72139, + [SMALL_STATE(2224)] = 72155, + [SMALL_STATE(2225)] = 72171, + [SMALL_STATE(2226)] = 72185, + [SMALL_STATE(2227)] = 72201, + [SMALL_STATE(2228)] = 72215, + [SMALL_STATE(2229)] = 72231, + [SMALL_STATE(2230)] = 72245, + [SMALL_STATE(2231)] = 72261, + [SMALL_STATE(2232)] = 72275, + [SMALL_STATE(2233)] = 72291, + [SMALL_STATE(2234)] = 72305, + [SMALL_STATE(2235)] = 72321, + [SMALL_STATE(2236)] = 72337, + [SMALL_STATE(2237)] = 72353, + [SMALL_STATE(2238)] = 72367, + [SMALL_STATE(2239)] = 72383, + [SMALL_STATE(2240)] = 72397, + [SMALL_STATE(2241)] = 72413, + [SMALL_STATE(2242)] = 72429, + [SMALL_STATE(2243)] = 72443, + [SMALL_STATE(2244)] = 72459, + [SMALL_STATE(2245)] = 72475, + [SMALL_STATE(2246)] = 72491, + [SMALL_STATE(2247)] = 72507, + [SMALL_STATE(2248)] = 72523, + [SMALL_STATE(2249)] = 72539, + [SMALL_STATE(2250)] = 72555, + [SMALL_STATE(2251)] = 72571, + [SMALL_STATE(2252)] = 72587, + [SMALL_STATE(2253)] = 72603, + [SMALL_STATE(2254)] = 72617, + [SMALL_STATE(2255)] = 72633, + [SMALL_STATE(2256)] = 72647, + [SMALL_STATE(2257)] = 72663, + [SMALL_STATE(2258)] = 72677, + [SMALL_STATE(2259)] = 72691, + [SMALL_STATE(2260)] = 72705, + [SMALL_STATE(2261)] = 72721, + [SMALL_STATE(2262)] = 72735, + [SMALL_STATE(2263)] = 72751, + [SMALL_STATE(2264)] = 72767, + [SMALL_STATE(2265)] = 72783, + [SMALL_STATE(2266)] = 72799, + [SMALL_STATE(2267)] = 72815, + [SMALL_STATE(2268)] = 72831, + [SMALL_STATE(2269)] = 72847, + [SMALL_STATE(2270)] = 72863, + [SMALL_STATE(2271)] = 72879, + [SMALL_STATE(2272)] = 72893, + [SMALL_STATE(2273)] = 72909, + [SMALL_STATE(2274)] = 72925, + [SMALL_STATE(2275)] = 72939, + [SMALL_STATE(2276)] = 72955, + [SMALL_STATE(2277)] = 72969, + [SMALL_STATE(2278)] = 72985, + [SMALL_STATE(2279)] = 73001, + [SMALL_STATE(2280)] = 73017, + [SMALL_STATE(2281)] = 73033, + [SMALL_STATE(2282)] = 73049, + [SMALL_STATE(2283)] = 73065, + [SMALL_STATE(2284)] = 73081, + [SMALL_STATE(2285)] = 73097, + [SMALL_STATE(2286)] = 73111, + [SMALL_STATE(2287)] = 73127, + [SMALL_STATE(2288)] = 73143, + [SMALL_STATE(2289)] = 73159, + [SMALL_STATE(2290)] = 73175, + [SMALL_STATE(2291)] = 73191, + [SMALL_STATE(2292)] = 73207, + [SMALL_STATE(2293)] = 73221, + [SMALL_STATE(2294)] = 73235, + [SMALL_STATE(2295)] = 73251, + [SMALL_STATE(2296)] = 73267, + [SMALL_STATE(2297)] = 73283, + [SMALL_STATE(2298)] = 73299, + [SMALL_STATE(2299)] = 73313, + [SMALL_STATE(2300)] = 73327, + [SMALL_STATE(2301)] = 73341, + [SMALL_STATE(2302)] = 73357, + [SMALL_STATE(2303)] = 73373, + [SMALL_STATE(2304)] = 73389, + [SMALL_STATE(2305)] = 73405, + [SMALL_STATE(2306)] = 73421, + [SMALL_STATE(2307)] = 73435, + [SMALL_STATE(2308)] = 73449, + [SMALL_STATE(2309)] = 73465, + [SMALL_STATE(2310)] = 73479, + [SMALL_STATE(2311)] = 73495, + [SMALL_STATE(2312)] = 73511, + [SMALL_STATE(2313)] = 73525, + [SMALL_STATE(2314)] = 73539, + [SMALL_STATE(2315)] = 73553, + [SMALL_STATE(2316)] = 73567, + [SMALL_STATE(2317)] = 73583, + [SMALL_STATE(2318)] = 73597, + [SMALL_STATE(2319)] = 73613, + [SMALL_STATE(2320)] = 73627, + [SMALL_STATE(2321)] = 73641, + [SMALL_STATE(2322)] = 73655, + [SMALL_STATE(2323)] = 73669, + [SMALL_STATE(2324)] = 73685, + [SMALL_STATE(2325)] = 73699, + [SMALL_STATE(2326)] = 73715, + [SMALL_STATE(2327)] = 73729, + [SMALL_STATE(2328)] = 73745, + [SMALL_STATE(2329)] = 73761, + [SMALL_STATE(2330)] = 73775, + [SMALL_STATE(2331)] = 73789, + [SMALL_STATE(2332)] = 73805, + [SMALL_STATE(2333)] = 73819, + [SMALL_STATE(2334)] = 73833, + [SMALL_STATE(2335)] = 73849, + [SMALL_STATE(2336)] = 73863, + [SMALL_STATE(2337)] = 73879, + [SMALL_STATE(2338)] = 73895, + [SMALL_STATE(2339)] = 73911, + [SMALL_STATE(2340)] = 73927, + [SMALL_STATE(2341)] = 73941, + [SMALL_STATE(2342)] = 73955, + [SMALL_STATE(2343)] = 73969, + [SMALL_STATE(2344)] = 73983, + [SMALL_STATE(2345)] = 73999, + [SMALL_STATE(2346)] = 74013, + [SMALL_STATE(2347)] = 74027, + [SMALL_STATE(2348)] = 74041, + [SMALL_STATE(2349)] = 74055, + [SMALL_STATE(2350)] = 74069, + [SMALL_STATE(2351)] = 74083, + [SMALL_STATE(2352)] = 74097, + [SMALL_STATE(2353)] = 74111, + [SMALL_STATE(2354)] = 74125, + [SMALL_STATE(2355)] = 74141, + [SMALL_STATE(2356)] = 74155, + [SMALL_STATE(2357)] = 74171, + [SMALL_STATE(2358)] = 74187, + [SMALL_STATE(2359)] = 74203, + [SMALL_STATE(2360)] = 74219, + [SMALL_STATE(2361)] = 74235, + [SMALL_STATE(2362)] = 74249, + [SMALL_STATE(2363)] = 74263, + [SMALL_STATE(2364)] = 74279, + [SMALL_STATE(2365)] = 74293, + [SMALL_STATE(2366)] = 74307, + [SMALL_STATE(2367)] = 74323, + [SMALL_STATE(2368)] = 74337, + [SMALL_STATE(2369)] = 74353, + [SMALL_STATE(2370)] = 74369, + [SMALL_STATE(2371)] = 74383, + [SMALL_STATE(2372)] = 74399, + [SMALL_STATE(2373)] = 74413, + [SMALL_STATE(2374)] = 74429, + [SMALL_STATE(2375)] = 74443, + [SMALL_STATE(2376)] = 74457, + [SMALL_STATE(2377)] = 74473, + [SMALL_STATE(2378)] = 74487, + [SMALL_STATE(2379)] = 74503, + [SMALL_STATE(2380)] = 74517, + [SMALL_STATE(2381)] = 74531, + [SMALL_STATE(2382)] = 74545, + [SMALL_STATE(2383)] = 74559, + [SMALL_STATE(2384)] = 74573, + [SMALL_STATE(2385)] = 74589, + [SMALL_STATE(2386)] = 74605, + [SMALL_STATE(2387)] = 74621, + [SMALL_STATE(2388)] = 74637, + [SMALL_STATE(2389)] = 74651, + [SMALL_STATE(2390)] = 74667, + [SMALL_STATE(2391)] = 74683, + [SMALL_STATE(2392)] = 74699, + [SMALL_STATE(2393)] = 74713, + [SMALL_STATE(2394)] = 74729, + [SMALL_STATE(2395)] = 74745, + [SMALL_STATE(2396)] = 74759, + [SMALL_STATE(2397)] = 74773, + [SMALL_STATE(2398)] = 74789, + [SMALL_STATE(2399)] = 74805, + [SMALL_STATE(2400)] = 74819, + [SMALL_STATE(2401)] = 74833, + [SMALL_STATE(2402)] = 74847, + [SMALL_STATE(2403)] = 74863, + [SMALL_STATE(2404)] = 74879, + [SMALL_STATE(2405)] = 74893, + [SMALL_STATE(2406)] = 74909, + [SMALL_STATE(2407)] = 74925, + [SMALL_STATE(2408)] = 74941, + [SMALL_STATE(2409)] = 74955, + [SMALL_STATE(2410)] = 74971, + [SMALL_STATE(2411)] = 74987, + [SMALL_STATE(2412)] = 75001, + [SMALL_STATE(2413)] = 75017, + [SMALL_STATE(2414)] = 75031, + [SMALL_STATE(2415)] = 75045, + [SMALL_STATE(2416)] = 75059, + [SMALL_STATE(2417)] = 75075, + [SMALL_STATE(2418)] = 75091, + [SMALL_STATE(2419)] = 75105, + [SMALL_STATE(2420)] = 75121, + [SMALL_STATE(2421)] = 75135, + [SMALL_STATE(2422)] = 75151, + [SMALL_STATE(2423)] = 75167, + [SMALL_STATE(2424)] = 75183, + [SMALL_STATE(2425)] = 75199, + [SMALL_STATE(2426)] = 75215, + [SMALL_STATE(2427)] = 75231, + [SMALL_STATE(2428)] = 75247, + [SMALL_STATE(2429)] = 75263, + [SMALL_STATE(2430)] = 75279, + [SMALL_STATE(2431)] = 75295, + [SMALL_STATE(2432)] = 75311, + [SMALL_STATE(2433)] = 75325, + [SMALL_STATE(2434)] = 75341, + [SMALL_STATE(2435)] = 75355, + [SMALL_STATE(2436)] = 75369, + [SMALL_STATE(2437)] = 75385, + [SMALL_STATE(2438)] = 75399, + [SMALL_STATE(2439)] = 75415, + [SMALL_STATE(2440)] = 75428, + [SMALL_STATE(2441)] = 75441, + [SMALL_STATE(2442)] = 75454, + [SMALL_STATE(2443)] = 75467, + [SMALL_STATE(2444)] = 75480, + [SMALL_STATE(2445)] = 75493, + [SMALL_STATE(2446)] = 75506, + [SMALL_STATE(2447)] = 75519, + [SMALL_STATE(2448)] = 75532, + [SMALL_STATE(2449)] = 75545, + [SMALL_STATE(2450)] = 75558, + [SMALL_STATE(2451)] = 75571, + [SMALL_STATE(2452)] = 75584, + [SMALL_STATE(2453)] = 75597, + [SMALL_STATE(2454)] = 75610, + [SMALL_STATE(2455)] = 75623, + [SMALL_STATE(2456)] = 75636, + [SMALL_STATE(2457)] = 75649, + [SMALL_STATE(2458)] = 75662, + [SMALL_STATE(2459)] = 75675, + [SMALL_STATE(2460)] = 75688, + [SMALL_STATE(2461)] = 75701, + [SMALL_STATE(2462)] = 75714, + [SMALL_STATE(2463)] = 75727, + [SMALL_STATE(2464)] = 75740, + [SMALL_STATE(2465)] = 75753, + [SMALL_STATE(2466)] = 75766, + [SMALL_STATE(2467)] = 75779, + [SMALL_STATE(2468)] = 75792, + [SMALL_STATE(2469)] = 75805, + [SMALL_STATE(2470)] = 75818, + [SMALL_STATE(2471)] = 75831, + [SMALL_STATE(2472)] = 75844, + [SMALL_STATE(2473)] = 75857, + [SMALL_STATE(2474)] = 75870, + [SMALL_STATE(2475)] = 75883, + [SMALL_STATE(2476)] = 75896, + [SMALL_STATE(2477)] = 75909, + [SMALL_STATE(2478)] = 75922, + [SMALL_STATE(2479)] = 75935, + [SMALL_STATE(2480)] = 75948, + [SMALL_STATE(2481)] = 75961, + [SMALL_STATE(2482)] = 75974, + [SMALL_STATE(2483)] = 75987, + [SMALL_STATE(2484)] = 76000, + [SMALL_STATE(2485)] = 76013, + [SMALL_STATE(2486)] = 76026, + [SMALL_STATE(2487)] = 76039, + [SMALL_STATE(2488)] = 76052, + [SMALL_STATE(2489)] = 76065, + [SMALL_STATE(2490)] = 76078, + [SMALL_STATE(2491)] = 76091, + [SMALL_STATE(2492)] = 76104, + [SMALL_STATE(2493)] = 76117, + [SMALL_STATE(2494)] = 76130, + [SMALL_STATE(2495)] = 76143, + [SMALL_STATE(2496)] = 76156, + [SMALL_STATE(2497)] = 76169, + [SMALL_STATE(2498)] = 76182, + [SMALL_STATE(2499)] = 76195, + [SMALL_STATE(2500)] = 76208, + [SMALL_STATE(2501)] = 76221, + [SMALL_STATE(2502)] = 76234, + [SMALL_STATE(2503)] = 76247, + [SMALL_STATE(2504)] = 76260, + [SMALL_STATE(2505)] = 76273, + [SMALL_STATE(2506)] = 76286, + [SMALL_STATE(2507)] = 76299, + [SMALL_STATE(2508)] = 76312, + [SMALL_STATE(2509)] = 76325, + [SMALL_STATE(2510)] = 76338, + [SMALL_STATE(2511)] = 76351, + [SMALL_STATE(2512)] = 76364, + [SMALL_STATE(2513)] = 76377, + [SMALL_STATE(2514)] = 76390, + [SMALL_STATE(2515)] = 76403, + [SMALL_STATE(2516)] = 76416, + [SMALL_STATE(2517)] = 76429, + [SMALL_STATE(2518)] = 76442, + [SMALL_STATE(2519)] = 76455, + [SMALL_STATE(2520)] = 76468, + [SMALL_STATE(2521)] = 76481, + [SMALL_STATE(2522)] = 76494, + [SMALL_STATE(2523)] = 76507, + [SMALL_STATE(2524)] = 76520, + [SMALL_STATE(2525)] = 76533, + [SMALL_STATE(2526)] = 76546, + [SMALL_STATE(2527)] = 76559, + [SMALL_STATE(2528)] = 76572, + [SMALL_STATE(2529)] = 76585, + [SMALL_STATE(2530)] = 76598, + [SMALL_STATE(2531)] = 76611, + [SMALL_STATE(2532)] = 76624, + [SMALL_STATE(2533)] = 76637, + [SMALL_STATE(2534)] = 76650, + [SMALL_STATE(2535)] = 76663, + [SMALL_STATE(2536)] = 76676, + [SMALL_STATE(2537)] = 76689, + [SMALL_STATE(2538)] = 76702, + [SMALL_STATE(2539)] = 76715, + [SMALL_STATE(2540)] = 76728, + [SMALL_STATE(2541)] = 76741, + [SMALL_STATE(2542)] = 76754, + [SMALL_STATE(2543)] = 76767, + [SMALL_STATE(2544)] = 76780, + [SMALL_STATE(2545)] = 76793, + [SMALL_STATE(2546)] = 76806, + [SMALL_STATE(2547)] = 76819, + [SMALL_STATE(2548)] = 76832, + [SMALL_STATE(2549)] = 76845, + [SMALL_STATE(2550)] = 76858, + [SMALL_STATE(2551)] = 76871, + [SMALL_STATE(2552)] = 76884, + [SMALL_STATE(2553)] = 76897, + [SMALL_STATE(2554)] = 76910, + [SMALL_STATE(2555)] = 76923, + [SMALL_STATE(2556)] = 76936, + [SMALL_STATE(2557)] = 76949, + [SMALL_STATE(2558)] = 76962, + [SMALL_STATE(2559)] = 76975, + [SMALL_STATE(2560)] = 76988, + [SMALL_STATE(2561)] = 77001, + [SMALL_STATE(2562)] = 77014, + [SMALL_STATE(2563)] = 77027, + [SMALL_STATE(2564)] = 77040, + [SMALL_STATE(2565)] = 77053, + [SMALL_STATE(2566)] = 77066, + [SMALL_STATE(2567)] = 77079, + [SMALL_STATE(2568)] = 77092, + [SMALL_STATE(2569)] = 77105, + [SMALL_STATE(2570)] = 77118, + [SMALL_STATE(2571)] = 77131, + [SMALL_STATE(2572)] = 77144, + [SMALL_STATE(2573)] = 77157, + [SMALL_STATE(2574)] = 77170, + [SMALL_STATE(2575)] = 77183, + [SMALL_STATE(2576)] = 77196, + [SMALL_STATE(2577)] = 77209, + [SMALL_STATE(2578)] = 77222, + [SMALL_STATE(2579)] = 77235, + [SMALL_STATE(2580)] = 77248, + [SMALL_STATE(2581)] = 77261, + [SMALL_STATE(2582)] = 77274, + [SMALL_STATE(2583)] = 77287, + [SMALL_STATE(2584)] = 77300, + [SMALL_STATE(2585)] = 77313, + [SMALL_STATE(2586)] = 77326, + [SMALL_STATE(2587)] = 77339, + [SMALL_STATE(2588)] = 77352, + [SMALL_STATE(2589)] = 77365, + [SMALL_STATE(2590)] = 77378, + [SMALL_STATE(2591)] = 77391, + [SMALL_STATE(2592)] = 77404, + [SMALL_STATE(2593)] = 77417, + [SMALL_STATE(2594)] = 77430, + [SMALL_STATE(2595)] = 77443, + [SMALL_STATE(2596)] = 77456, + [SMALL_STATE(2597)] = 77469, + [SMALL_STATE(2598)] = 77482, + [SMALL_STATE(2599)] = 77495, + [SMALL_STATE(2600)] = 77508, + [SMALL_STATE(2601)] = 77521, + [SMALL_STATE(2602)] = 77534, + [SMALL_STATE(2603)] = 77547, + [SMALL_STATE(2604)] = 77560, + [SMALL_STATE(2605)] = 77573, + [SMALL_STATE(2606)] = 77586, + [SMALL_STATE(2607)] = 77599, + [SMALL_STATE(2608)] = 77612, + [SMALL_STATE(2609)] = 77625, + [SMALL_STATE(2610)] = 77638, + [SMALL_STATE(2611)] = 77651, + [SMALL_STATE(2612)] = 77664, + [SMALL_STATE(2613)] = 77677, + [SMALL_STATE(2614)] = 77690, + [SMALL_STATE(2615)] = 77703, + [SMALL_STATE(2616)] = 77716, + [SMALL_STATE(2617)] = 77729, + [SMALL_STATE(2618)] = 77742, + [SMALL_STATE(2619)] = 77755, + [SMALL_STATE(2620)] = 77768, + [SMALL_STATE(2621)] = 77781, + [SMALL_STATE(2622)] = 77794, + [SMALL_STATE(2623)] = 77807, + [SMALL_STATE(2624)] = 77820, + [SMALL_STATE(2625)] = 77833, + [SMALL_STATE(2626)] = 77846, + [SMALL_STATE(2627)] = 77859, + [SMALL_STATE(2628)] = 77872, + [SMALL_STATE(2629)] = 77885, + [SMALL_STATE(2630)] = 77898, + [SMALL_STATE(2631)] = 77911, + [SMALL_STATE(2632)] = 77924, + [SMALL_STATE(2633)] = 77937, + [SMALL_STATE(2634)] = 77950, + [SMALL_STATE(2635)] = 77963, + [SMALL_STATE(2636)] = 77976, + [SMALL_STATE(2637)] = 77989, + [SMALL_STATE(2638)] = 78002, + [SMALL_STATE(2639)] = 78015, + [SMALL_STATE(2640)] = 78028, + [SMALL_STATE(2641)] = 78041, + [SMALL_STATE(2642)] = 78054, + [SMALL_STATE(2643)] = 78067, + [SMALL_STATE(2644)] = 78080, + [SMALL_STATE(2645)] = 78084, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [17] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [19] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(801), - [22] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(470), - [25] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1422), - [28] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1920), - [31] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1657), - [34] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1383), - [37] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1478), - [40] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1167), - [43] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2206), - [46] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(24), - [49] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2660), - [52] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2658), - [55] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2656), - [58] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2652), - [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1321), - [66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1327), - [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1325), - [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1326), - [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1897), - [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(96), - [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2646), - [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(184), - [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1927), - [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2644), - [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2643), - [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1112), - [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2211), - [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2641), - [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(187), - [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(188), - [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(190), - [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(338), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2212), - [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(81), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2639), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2638), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2213), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2218), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2225), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(293), - [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(293), - [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(224), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(573), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(284), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(660), - [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(810), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2633), - [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(106), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(743), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1077), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1050), - [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1425), - [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1395), - [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1883), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1930), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1385), - [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1666), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(86), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(255), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(254), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(253), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(252), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 2), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 2), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 131), - [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 131), - [339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 3), - [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 3), - [343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 131), - [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 131), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2667), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2291), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2676), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2611), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2277), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 1), - [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 2), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(872), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(737), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 1), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 2), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 3), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_placeholder, 1), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 3), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 3), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2479), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2440), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 18), - [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 18), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 46), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 46), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 46), SHIFT(2267), - [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 46), SHIFT(82), - [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 18), SHIFT(2267), - [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 18), SHIFT(82), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 165), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 165), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 3), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 3), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 184), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 184), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 88), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 88), - [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 88), SHIFT_REPEAT(2267), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 174), - [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 174), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 173), - [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 173), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 94), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 94), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 85), - [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 85), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 149), - [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 149), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 148), - [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 148), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 185), - [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 185), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 3), - [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 3), - [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 147), - [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 147), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 6, .production_id = 99), - [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 6, .production_id = 99), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 12), - [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 12), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 137), - [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 137), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 41), - [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 41), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4, .production_id = 39), - [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4, .production_id = 39), - [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 136), - [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 136), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 169), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 169), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5, .production_id = 39), - [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5, .production_id = 39), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5, .production_id = 99), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5, .production_id = 99), - [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 108), - [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 108), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 54), - [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 54), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4), - [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4), - [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5), - [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5), - [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 63), - [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 63), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 93), - [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 93), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 106), - [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 106), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), - [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8), - [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 41), - [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 41), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 18), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 18), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 41), - [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 41), - [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 7), - [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 7), - [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 54), - [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 54), - [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 5), - [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 5), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), - [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), - [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 5), - [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 5), - [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 2), - [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 2), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 41), - [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 41), - [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7), - [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 106), - [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 106), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 63), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 63), - [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 63), - [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 63), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, .production_id = 166), - [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, .production_id = 166), - [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 6), - [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 6), - [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 3), - [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 3), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 12), - [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 12), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 11), - [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 11), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), - [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), - [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 87), - [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 87), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4), - [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 4), - [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 128), - [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 128), - [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 85), - [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 85), - [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_label_statement, 2), - [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_label_statement, 2), - [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 6), - [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 6), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3), - [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3), - [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), - [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 3), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 3), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 44), - [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 44), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 136), - [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 136), - [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 137), - [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 137), - [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 3, .production_id = 18), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 3, .production_id = 18), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 45), - [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 45), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 5), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 5), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 46), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 46), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, .production_id = 172), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, .production_id = 172), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 147), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 147), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 148), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 148), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 3), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 3), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 4), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 4), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 5), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 18), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 18), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 86), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 86), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 93), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 93), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 45), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 45), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 27), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 27), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, .production_id = 3), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, .production_id = 3), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 4), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 4), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 94), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 94), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 3), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 3), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 4), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 4), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 185), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 185), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, .production_id = 166), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, .production_id = 166), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 1, .production_id = 1), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 1, .production_id = 1), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 87), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 87), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 12), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 12), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 149), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 149), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 2, .production_id = 9), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 2, .production_id = 9), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 12), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 12), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 3, .production_id = 12), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 3, .production_id = 12), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 146), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 146), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 106), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 106), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 3), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 3), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 18), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 18), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 7), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 7), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 174), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 174), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 173), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 173), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 169), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 169), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 84), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 84), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 12), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 12), - [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 18), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 18), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 8), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 8), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 108), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 108), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 102), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 102), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, .production_id = 102), - [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, .production_id = 102), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), - [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, .production_id = 43), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, .production_id = 43), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 25), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 25), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 25), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 25), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 24), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 24), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 60), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 60), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 141), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 141), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), - [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, .production_id = 61), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, .production_id = 61), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 61), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 61), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, .production_id = 142), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, .production_id = 142), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 8), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 8), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 142), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 142), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), - [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 1), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), - [1716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 3), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2514), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2), - [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 22), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 22), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 3), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 3), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 5, .production_id = 101), - [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 5, .production_id = 101), - [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_by_ref, 2), - [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_by_ref, 2), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 2), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 2), - [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing, 2), REDUCE(sym_array_creation_expression, 2), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__array_destructing, 2), - [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1440), - [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(743), - [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1951), - [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2206), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(89), - [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2589), - [1847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(131), - [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1389), - [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1839), - [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2136), - [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1680), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 3, .production_id = 19), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 3, .production_id = 19), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 17), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 17), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, .production_id = 89), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, .production_id = 89), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, .production_id = 90), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, .production_id = 90), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 3), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 3), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 5, .production_id = 91), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 5, .production_id = 91), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 17), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 17), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_scope, 1), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 7, .production_id = 168), - [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 7, .production_id = 168), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4), - [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 7, .production_id = 167), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 7, .production_id = 167), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 17), - [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 17), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 6, .production_id = 134), - [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 6, .production_id = 134), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 2), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 2), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 6, .production_id = 135), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 6, .production_id = 135), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 4, .production_id = 50), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 4, .production_id = 50), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5), - [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 6, .production_id = 17), - [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 6, .production_id = 17), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_name, 2, .production_id = 51), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_name, 2, .production_id = 51), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_modifier, 1), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_modifier, 1), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 2), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 151), - [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 151), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 138), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 138), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5, .production_id = 47), - [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5, .production_id = 47), - [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 123), - [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 123), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 1), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 1), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 7, .production_id = 47), - [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 7, .production_id = 47), - [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 14), - [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 14), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 38), - [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 38), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 37), - [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 37), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 103), - [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 103), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 35), - [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 35), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 62), - [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 62), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5), - [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 97), - [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 97), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 140), - [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 140), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_op_expression, 2, .production_id = 5), - [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_op_expression, 2, .production_id = 5), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_suppression_expression, 2), - [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_suppression_expression, 2), - [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6, .production_id = 47), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6, .production_id = 47), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 186), - [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 186), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clone_expression, 2), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clone_expression, 2), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 96), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 96), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 177), - [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 177), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 95), - [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 95), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 43), - [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 43), - [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 55), - [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 55), - [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 176), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 176), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4), - [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 170), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 170), - [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 10), - [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 10), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 105), - [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 105), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, .production_id = 47), - [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, .production_id = 47), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 144), - [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 144), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 145), - [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 145), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 2), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 2), - [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 150), - [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 150), - [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 3), - [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 3), - [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 104), - [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 104), - [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 80), - [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 80), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 79), - [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 79), - [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 18), - [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 18), - [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 3), - [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 3), - [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 78), - [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 78), - [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 152), - [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 152), - [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 139), - [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 139), - [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 5), - [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 5), - [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 143), - [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 143), - [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 109), - [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 109), - [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_expression, 1), - [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_expression, 1), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 171), - [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 171), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 175), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 175), - [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 1), - [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1), - [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 2), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), - [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), SHIFT_REPEAT(1425), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_assignment_expression, 4, .production_id = 59), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_once_expression, 2), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_expression, 2), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_once_expression, 2), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_expression, 2), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 21), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 100), - [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 100), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 58), - [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 58), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_unpacking, 2), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_intrinsic, 2), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 23), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 22), - [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 1), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 1), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 5), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 5), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 3), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 3), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 4), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 4), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), - [2419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1328), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), - [2424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1321), - [2427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1327), - [2430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1325), - [2433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1330), - [2436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1326), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_initializer, 2), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_element, 3), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 1), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 3, .production_id = 28), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 1), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 161), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 112), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 114), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 116), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 122), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 53), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 178), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 52), - [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 179), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 180), - [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 6, .production_id = 181), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_default_expression, 3, .production_id = 129), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_conditional_expression, 3, .production_id = 130), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 92), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1328), - [2602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1438), - [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1547), - [2608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1167), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [2613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1321), - [2616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1327), - [2619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1325), - [2622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1330), - [2625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1326), - [2628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1425), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 154), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 155), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 156), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 157), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 159), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 7, .production_id = 187), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 76), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifier, 1), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 3), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [2787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1328), - [2790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1438), - [2793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1547), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), - [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(2566), - [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1321), - [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1327), - [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1325), - [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1330), - [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1326), - [2816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1425), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_final_modifier, 1), - [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final_modifier, 1), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_modifier, 1), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_modifier, 1), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_modifier, 1), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_modifier, 1), - [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_modifier, 1), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_modifier, 1), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 1), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 1), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [2885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_heredoc_body, 2), SHIFT(1416), - [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), - [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(360), - [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1568), - [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1568), - [2901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1416), - [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1745), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 27), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 125), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 126), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 9), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 82), - [2925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(360), - [2928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1568), - [2931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1568), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), - [2936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1745), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 164), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 1), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 163), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 127), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 162), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 3, .production_id = 124), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 6, .production_id = 188), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 182), - [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(316), - [3012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1645), - [3015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1645), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), - [3020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1715), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 81), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 3, .production_id = 11), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 83), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1), - [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(234), - [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1640), - [3045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1640), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), - [3050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1710), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 4, .production_id = 72), - [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 39), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 5, .production_id = 183), - [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 39), - [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 1), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 182), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 162), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1, .production_id = 40), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 1, .production_id = 1), - [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 1), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_member_declaration, 1), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [3085] = {.entry = {.count = 4, .reusable = false}}, REDUCE(sym__type, 1), REDUCE(sym_union_type, 1), REDUCE(sym_intersection_type, 1), REDUCE(sym_disjunctive_normal_form_type, 1, .dynamic_precedence = -1), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [3092] = {.entry = {.count = 4, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym_union_type, 1), REDUCE(sym_intersection_type, 1), REDUCE(sym_disjunctive_normal_form_type, 1, .dynamic_precedence = -1), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types, 1), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__types, 1), - [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_type, 2), - [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), - [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), - [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), - [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_intersection_type_repeat1, 2), - [3141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1344), - [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), - [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 4), - [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 4), - [3160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), - [3163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), - [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), - [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), - [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 4, .dynamic_precedence = -1), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 4, .dynamic_precedence = -1), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 2, .dynamic_precedence = -1), - [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 2, .dynamic_precedence = -1), - [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), - [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 3, .dynamic_precedence = -1), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 3, .dynamic_precedence = -1), - [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1347), - [3261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), SHIFT_REPEAT(1339), - [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [3366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2655), - [3369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2269), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1, .production_id = 7), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1, .production_id = 7), - [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 1), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), - [3394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(279), - [3397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2249), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), - [3410] = {.entry = {.count = 5, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym_union_type, 1), REDUCE(sym_intersection_type, 1), REDUCE(sym_disjunctive_normal_form_type, 1, .dynamic_precedence = -1), SHIFT(1348), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__complex_string_part, 3), - [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__complex_string_part, 3), - [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 25), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 25), - [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_subscript_expression, 4), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_expression, 4), - [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 2), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [3482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 46), SHIFT(2327), - [3485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 46), SHIFT(80), - [3488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 18), SHIFT(2327), - [3491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 18), SHIFT(80), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [3502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), - [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), - [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 1), - [3508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 1), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 1), - [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 1), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), - [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [3566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1439), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution_qualifier, 1), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), - [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), - [3585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1910), - [3588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1910), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 1), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [3623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2671), - [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 88), - [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 88), SHIFT_REPEAT(2264), - [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 88), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 2), - [3643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), SHIFT_REPEAT(1332), - [3646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1345), - [3649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1346), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 1), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), - [3662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2514), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 34), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2671), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 3, .production_id = 13), - [3734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), SHIFT_REPEAT(1340), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1343), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 2), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2671), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1773), - [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1773), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 88), SHIFT_REPEAT(2327), - [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 4), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), - [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), SHIFT_REPEAT(1652), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 1), - [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 1), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 1), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), - [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), SHIFT_REPEAT(2098), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [3856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_intersection_type, 2), SHIFT(1348), - [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), - [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), SHIFT_REPEAT(1433), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), - [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(1573), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), - [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), SHIFT_REPEAT(1913), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), - [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), SHIFT_REPEAT(2006), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), - [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), SHIFT_REPEAT(2004), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 1), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 3), - [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc_body, 2), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [3936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1996), - [3939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1996), - [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 3), - [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 1), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [3948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1348), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 1, .production_id = 2), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), - [3987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1447), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 2), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 121), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 119), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 118), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [4066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(143), - [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 113), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 110), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 2, .production_id = 4), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 2), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1, .production_id = 6), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 5, .production_id = 77), - [4139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), - [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 18), - [4149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 18), - [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 2), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 1, .production_id = 2), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 1), - [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 15), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(154), - [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), - [4186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), SHIFT_REPEAT(244), - [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 3), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6), - [4195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), SHIFT_REPEAT(1660), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), SHIFT_REPEAT(149), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_type, 2, .production_id = 36), - [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 33), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 20), - [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6, .production_id = 133), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 26), - [4227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(137), - [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 3), - [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_aliasing_clause, 2), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 29), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 2, .production_id = 30), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5, .production_id = 49), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 1), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 31), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 32), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [4282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), SHIFT_REPEAT(812), - [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 3), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 44), - [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 44), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 75), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 74), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 73), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7, .production_id = 133), - [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 71), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, .production_id = 48), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [4361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(748), - [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4, .production_id = 49), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 69), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 68), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7), - [4380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), SHIFT_REPEAT(155), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3, .production_id = 49), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(152), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 66), - [4398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2), SHIFT_REPEAT(1423), - [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 158), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 64), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 56), - [4429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), SHIFT_REPEAT(1778), - [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [4438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 4), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 5), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 5, .production_id = 160), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_reference, 2), - [4456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 1), SHIFT(2303), - [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 120), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [4469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), REDUCE(sym_array_element_initializer, 3), - [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 4), - [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 67), - [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 3), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 70), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 72), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 6), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 117), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_instead_of_clause, 3), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), SHIFT(2303), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 115), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 3), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 4), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4, .production_id = 132), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_type, 1), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [4583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), REDUCE(sym_array_element_initializer, 1), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, .production_id = 11), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2514), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 4), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [4657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 111), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 16), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 98), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 4), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_unary_expression, 2), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 107), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause_2, 2, .production_id = 3), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_directive, 3), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 57), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [4833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 42), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [4909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 6, .production_id = 153), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_array_access_argument, 1), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 65), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4987] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 2), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 3), + [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [17] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [19] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(786), + [22] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [25] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1350), + [28] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2153), + [31] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1741), + [34] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1415), + [37] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1481), + [40] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1153), + [43] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2175), + [46] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [49] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2635), + [52] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2634), + [55] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2631), + [58] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2629), + [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1322), + [66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), + [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1325), + [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), + [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1328), + [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), + [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(91), + [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2626), + [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(196), + [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2111), + [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2625), + [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2543), + [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1137), + [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2176), + [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2617), + [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(423), + [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2178), + [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2614), + [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2611), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2180), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2181), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2182), + [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(228), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(384), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(673), + [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(819), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2607), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(107), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(756), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1069), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1128), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1436), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1853), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2077), + [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1416), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(415), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(413), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(412), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 2, 0, 0), + [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 2, 0, 0), + [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 3, 0, 0), + [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 3, 0, 0), + [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 130), + [346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 130), + [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 130), + [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 130), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 2, 0, 0), + [364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 1, 0, 0), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2632), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2260), + [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2641), + [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2602), + [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2246), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3, 0, 0), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1, 0, 0), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1, 0, 0), SHIFT(872), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1, 0, 0), SHIFT(722), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 1, 0, 0), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 2, 0, 0), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_placeholder, 1, 0, 0), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 3, 0, 0), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 3), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 3), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2525), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2286), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 46), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 46), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 46), SHIFT(2369), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 46), SHIFT(79), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 18), + [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 18), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 18), SHIFT(2369), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 18), SHIFT(79), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 88), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 88), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 88), SHIFT_REPEAT(2369), + [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 179), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 179), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 162), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 162), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1, 0, 0), + [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1, 0, 0), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 3), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 3), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 110), + [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 110), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 108), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 108), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 103), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 103), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 12), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 12), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 85), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 85), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 172), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 172), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 150), + [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 150), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 149), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 149), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 62), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 62), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 144), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 144), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 66), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 66), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 41), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 41), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 3, 0, 0), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 3, 0, 0), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 5, 0, 0), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 5, 0, 0), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, 0, 3), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, 0, 3), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 41), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 41), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 0), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 0), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2, 0, 0), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2, 0, 0), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 41), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 41), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5, 0, 0), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 5, 0, 0), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 149), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 149), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 144), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 144), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, 0, 168), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, 0, 168), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, 0, 163), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, 0, 163), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 62), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 62), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 87), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 87), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 84), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 84), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 3, 0, 0), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 3, 0, 0), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 45), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 45), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, 0, 163), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, 0, 163), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 44), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 44), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, 0, 0), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, 0, 0), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3, 0, 0), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3, 0, 0), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 0), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 0), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 8, 0, 0), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 8, 0, 0), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 0), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 0), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5, 0, 109), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5, 0, 109), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 18), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 18), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 5, 0, 0), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 5, 0, 0), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 3, 0, 18), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 3, 0, 18), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 0), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 0), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 0), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 0), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5, 0, 0), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5, 0, 0), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 1, 0, 1), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 1, 0, 1), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 7, 0, 0), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 7, 0, 0), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 0), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 0), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2, 0, 0), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2, 0, 0), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 18), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 18), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 0), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 0), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 0), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 0), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4, 0, 0), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 4, 0, 0), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 0), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 0), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 7, 0, 0), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 7, 0, 0), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 103), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 103), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 3, 0, 0), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 3, 0, 0), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 66), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 66), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 172), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 172), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, 0, 127), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, 0, 127), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 12), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 12), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 86), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 86), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 2, 0, 0), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 2, 0, 0), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 150), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 150), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 12), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 12), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 27), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 27), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 12), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 12), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 3, 0, 12), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 3, 0, 12), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 4, 0, 0), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 4, 0, 0), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 3, 0, 0), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 3, 0, 0), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 0), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 0), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 41), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 41), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 7, 0, 0), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 7, 0, 0), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 4, 0, 0), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 4, 0, 0), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 110), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 110), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 6, 0, 109), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 6, 0, 109), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 108), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 108), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 6, 0, 0), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 6, 0, 0), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 62), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 62), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 45), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 45), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5, 0, 39), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5, 0, 39), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 6, 0, 0), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 6, 0, 0), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 103), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 103), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, 0, 143), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, 0, 143), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 12), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 12), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 11), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 11), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 5, 0, 0), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 5, 0, 0), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 0), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 0), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 3, 0, 0), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 3, 0, 0), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 18), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 18), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 85), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 85), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 87), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 18), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 18), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4, 0, 39), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4, 0, 39), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 4, 0, 0), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 4, 0, 0), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4, 0, 0), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4, 0, 0), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 2, 0, 9), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 2, 0, 9), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_label_statement, 2, 0, 0), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_label_statement, 2, 0, 0), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 3), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 3), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 46), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 46), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, 0, 24), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, 0, 24), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, 0, 25), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, 0, 25), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 3, 0, 25), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 3, 0, 25), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, 0, 43), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1, 0, 0), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, 0, 43), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, 0, 99), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, 0, 99), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 5, 0, 99), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 5, 0, 99), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, 0, 138), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, 0, 138), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, 0, 8), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, 0, 8), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 0), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2, 0, 0), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2, 0, 0), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2, 0, 0), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2, 0, 0), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 0), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 0), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, 0, 59), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, 0, 59), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4, 0, 0), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4, 0, 0), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, 0, 60), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, 0, 60), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 4, 0, 60), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 4, 0, 60), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, 0, 139), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, 0, 139), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 6, 0, 139), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 6, 0, 139), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3, 0, 0), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3, 0, 0), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1, 0, 0), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, 0, 0), + [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__array_destructing_element, 1, 0, 0), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__array_destructing_element, 3, 0, 0), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2, 0, 0), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2, 0, 0), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 22), + [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 22), + [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1, 0, 0), SHIFT(2566), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2, 0, 0), + [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2, 0, 0), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 5, 0, 98), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 5, 0, 98), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 3, 0, 0), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 3, 0, 0), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1, 0, 0), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1, 0, 0), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 2, 0, 0), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 2, 0, 0), + [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing, 2, 0, 0), REDUCE(sym_array_creation_expression, 2, 0, 0), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__array_destructing, 2, 0, 0), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1456), + [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(756), + [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2024), + [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2175), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(96), + [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2570), + [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(115), + [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1393), + [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1813), + [1805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1957), + [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1712), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_by_ref, 2, 0, 0), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_by_ref, 2, 0, 0), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 4, 0, 50), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 4, 0, 50), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, 0, 17), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, 0, 17), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, 0, 0), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, 0, 0), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 6, 0, 17), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 6, 0, 17), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 6, 0, 133), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 6, 0, 133), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 2, 0, 0), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 2, 0, 0), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, 0, 90), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, 0, 90), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 6, 0, 134), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 6, 0, 134), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, 0, 89), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, 0, 89), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 7, 0, 164), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 7, 0, 164), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 7, 0, 165), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 7, 0, 165), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 3, 0, 0), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 3, 0, 0), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 3, 0, 19), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 3, 0, 19), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 17), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 17), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 0), + [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 0), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, 0, 0), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, 0, 0), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 5, 0, 91), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 5, 0, 91), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, 0, 0), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, 0, 0), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_scope, 1, 0, 0), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, 0, 17), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, 0, 17), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_name, 2, 0, 51), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_name, 2, 0, 51), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_modifier, 1, 0, 0), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_modifier, 1, 0, 0), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 2, 0, 0), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 5, 0, 0), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 5, 0, 0), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 140), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 140), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 43), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 43), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 3, 0, 0), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 3, 0, 0), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_op_expression, 2, 0, 5), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_op_expression, 2, 0, 5), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 54), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 54), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 3, 0, 14), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 3, 0, 14), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 2, 0, 0), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 2, 0, 0), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 10), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 10), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_suppression_expression, 2, 0, 0), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_suppression_expression, 2, 0, 0), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clone_expression, 2, 0, 0), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clone_expression, 2, 0, 0), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 137), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 137), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_expression, 1, 0, 0), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_expression, 1, 0, 0), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 61), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 61), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 78), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 78), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 79), + [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 79), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 18), + [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 18), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 80), + [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 80), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 8, 0, 180), + [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 8, 0, 180), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 171), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 171), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 170), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 170), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 169), + [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 169), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 167), + [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 167), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5, 0, 0), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5, 0, 0), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 166), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 166), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5, 0, 47), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5, 0, 47), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 7, 0, 47), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 7, 0, 47), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, 0, 47), + [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, 0, 47), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1, 0, 0), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1, 0, 0), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 141), + [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 141), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 93), + [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 93), + [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 94), + [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 94), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 95), + [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 95), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 100), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 100), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 101), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 101), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 35), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 35), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 102), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 102), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, 0, 0), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, 0, 0), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 147), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 147), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 105), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 105), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 122), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 122), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 1, 0, 0), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 1, 0, 0), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 37), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 37), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6, 0, 0), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6, 0, 0), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6, 0, 47), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6, 0, 47), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 146), + [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 146), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 145), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 145), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 3, 0, 0), + [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 3, 0, 0), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 142), + [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 142), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 135), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 135), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 136), + [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 136), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 38), + [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 38), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), + [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1436), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 1, 0, 0), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1, 0, 0), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifier, 1, 0, 0), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_expression, 2, 0, 0), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_once_expression, 2, 0, 0), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_expression, 2, 0, 0), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_once_expression, 2, 0, 0), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2, 0, 0), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 21), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 97), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 97), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 57), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 57), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_assignment_expression, 4, 0, 58), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_intrinsic, 2, 0, 0), + [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), + [2284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), + [2289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1322), + [2292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), + [2295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1325), + [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), + [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1328), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_unpacking, 2, 0, 0), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 23), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 22), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 4, 0, 0), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 4, 0, 0), + [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 3, 0, 0), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 3, 0, 0), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 1, 0, 0), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 1, 0, 0), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 5, 0, 0), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 5, 0, 0), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 1, 0, 0), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 3, 0, 28), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 1, 0, 0), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_element, 3, 0, 0), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, 0, 0), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_initializer, 2, 0, 0), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, 0, 52), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, 0, 173), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, 0, 174), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, 0, 175), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 6, 0, 176), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, 0, 92), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, 0, 53), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, 0, 0), + [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, 0, 111), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, 0, 113), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, 0, 115), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, 0, 121), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), + [2563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1455), + [2566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1537), + [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1153), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [2574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1322), + [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), + [2580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1325), + [2583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), + [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1328), + [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1436), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 7, 0, 181), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_default_expression, 3, 0, 128), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, 0, 158), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_conditional_expression, 3, 0, 129), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, 0, 156), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2, 0, 0), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, 0, 154), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, 0, 153), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, 0, 152), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, 0, 76), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, 0, 151), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 3, 0, 0), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_modifier, 1, 0, 0), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_modifier, 1, 0, 0), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), + [2763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1455), + [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1537), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), + [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2485), + [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1322), + [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), + [2780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1325), + [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), + [2786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1328), + [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1436), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_final_modifier, 1, 0, 0), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final_modifier, 1, 0, 0), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_modifier, 1, 0, 0), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_modifier, 1, 0, 0), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_modifier, 1, 0, 0), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_modifier, 1, 0, 0), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 1, 0, 0), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 1, 0, 0), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_heredoc_body, 2, 0, 0), SHIFT(1424), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2, 0, 0), + [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(250), + [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1551), + [2885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1551), + [2888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), + [2891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1714), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, 0, 160), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 0), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, 0, 124), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, 0, 125), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 1, 0, 0), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, 0, 126), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, 0, 27), + [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2, 0, 0), SHIFT_REPEAT(250), + [2917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2, 0, 0), SHIFT_REPEAT(1551), + [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2, 0, 0), SHIFT_REPEAT(1551), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2, 0, 0), + [2925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2, 0, 0), SHIFT_REPEAT(1714), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, 0, 161), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 0), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, 0, 82), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, 0, 9), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 39), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1, 0, 0), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, 0, 81), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, 0, 83), + [2974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2, 0, 0), SHIFT_REPEAT(260), + [2977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2, 0, 0), SHIFT_REPEAT(1593), + [2980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2, 0, 0), SHIFT_REPEAT(1593), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2, 0, 0), + [2985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2, 0, 0), SHIFT_REPEAT(1676), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 1, 0, 0), + [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 6, 0, 182), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 177), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 5, 0, 178), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 159), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_member_declaration, 1, 0, 0), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 39), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 3, 0, 123), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 177), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 159), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3, 0, 0), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 3, 0, 11), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 0), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 1, 0, 0), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1, 0, 0), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 1, 0, 1), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1, 0, 40), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 4, 0, 72), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2, 0, 0), SHIFT_REPEAT(231), + [3045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2, 0, 0), SHIFT_REPEAT(1640), + [3048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2, 0, 0), SHIFT_REPEAT(1640), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2, 0, 0), + [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2, 0, 0), SHIFT_REPEAT(1739), + [3056] = {.entry = {.count = 4, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_union_type, 1, 0, 0), REDUCE(sym_intersection_type, 1, 0, 0), REDUCE(sym_disjunctive_normal_form_type, 1, -1, 0), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3063] = {.entry = {.count = 4, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_union_type, 1, 0, 0), REDUCE(sym_intersection_type, 1, 0, 0), REDUCE(sym_disjunctive_normal_form_type, 1, -1, 0), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1, 0, 0), + [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1, 0, 0), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_type, 2, 0, 0), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types, 1, 0, 0), + [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__types, 1, 0, 0), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_intersection_type_repeat1, 2, 0, 0), + [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2, 0, 0), + [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 4, 0, 0), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 4, 0, 0), + [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1, 0, 0), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1, 0, 0), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [3126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2, 0, 0), + [3129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2, 0, 0), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [3138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1347), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), + [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2, 0, 0), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2, 0, 0), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4, 0, 0), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2, 0, 0), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 3, -1, 0), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 3, -1, 0), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 4, -1, 0), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 4, -1, 0), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1344), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3, 0, 0), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 2, -1, 0), + [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 2, -1, 0), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1335), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [3351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2620), + [3354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2275), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1, 0, 7), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1, 0, 7), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [3377] = {.entry = {.count = 5, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_union_type, 1, 0, 0), REDUCE(sym_intersection_type, 1, 0, 0), REDUCE(sym_disjunctive_normal_form_type, 1, -1, 0), SHIFT(1346), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1, 0, 0), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1, 0, 0), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), + [3391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(316), + [3394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2392), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__complex_string_part, 3, 0, 0), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__complex_string_part, 3, 0, 0), + [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_member_access_expression, 3, 0, 25), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_member_access_expression, 3, 0, 25), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 1, 0, 0), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_subscript_expression, 4, 0, 0), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_expression, 4, 0, 0), + [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2, 0, 0), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 46), SHIFT(2256), + [3448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 46), SHIFT(83), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 1, 0, 0), + [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 1, 0, 0), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2, 0, 0), + [3467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 18), SHIFT(2256), + [3470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 18), SHIFT(83), + [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2, 0, 0), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 1, 0, 0), + [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 1, 0, 0), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 2, 0, 0), + [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2, 0, 0), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 1, 0, 0), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 3, 0, 13), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 2, 0, 0), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution_qualifier, 1, 0, 0), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, 0, 0), + [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, 0, 0), + [3543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), + [3546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [3579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2, 0, 0), SHIFT(2507), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2, 0, 0), + [3604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2507), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1, 0, 0), + [3617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1, 0, 0), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, 0, 88), + [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, 0, 88), SHIFT_REPEAT(2373), + [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 2, 0, 88), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [3648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1348), + [3651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, 0, 0), SHIFT_REPEAT(1807), + [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, 0, 0), SHIFT_REPEAT(1807), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1334), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, 0, 34), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1343), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [3703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1345), + [3706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), + [3709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1458), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 1, 0, 0), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1, 0, 0), SHIFT(2507), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 2, 0, 0), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [3773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 88), SHIFT_REPEAT(2256), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [3778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2566), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2, 0, 0), + [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1538), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 4, 0, 0), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2, 0, 0), + [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2126), + [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2, 0, 0), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 1, 0, 0), + [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2, 0, 0), + [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2147), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1448), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 3, 0, 0), + [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 1, 0, 0), + [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 1, 0, 0), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [3883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), + [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 1, 0, 2), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1, 0, 0), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1346), + [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2, 0, 0), + [3926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1589), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 2, 0, 0), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 1, 0, 0), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 1, 0, 0), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2, 0, 0), + [3967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1437), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 3, 0, 0), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc_body, 2, 0, 0), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2, 0, 0), + [3984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1928), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2, 0, 0), + [3993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1929), + [3996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), SHIFT(1346), + [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2, 0, 0), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [4007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(149), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 3, 0, 0), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1, 0, 6), + [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 2, 0, 4), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 2, 0, 0), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 1, 0, 2), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 1, 0, 0), + [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, 0, 15), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 3, 0, 0), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2, 0, 0), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 5, 0, 77), + [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, 0, 20), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_type, 2, 0, 36), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, 0, 33), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, 0, 26), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_aliasing_clause, 2, 0, 0), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, 0, 29), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 2, 0, 30), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, 0, 31), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, 0, 32), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2, 0, 0), SHIFT_REPEAT(1438), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2, 0, 0), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 0), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 1, 0, 44), + [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 1, 0, 44), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7, 0, 132), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7, 0, 0), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, 0, 48), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4, 0, 0), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4, 0, 49), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [4232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3, 0, 49), + [4237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(147), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause_2, 3, 0, 18), + [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause_2, 3, 0, 18), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1793), + [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2, 0, 0), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, 0, 155), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2, 0, 0), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, 0, 55), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, 0, 63), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, 0, 65), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, 0, 68), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, 0, 69), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(729), + [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 1, 0, 0), + [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, 0, 71), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, 0, 73), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6, 0, 132), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6, 0, 0), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, 0, 74), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, 0, 75), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2, 0, 0), SHIFT_REPEAT(390), + [4326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(155), + [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 2, 0, 0), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 3, 0, 0), + [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, 0, 120), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(830), + [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, 0, 118), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, 0, 117), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, 0, 112), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, 0, 106), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(137), + [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5, 0, 49), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5, 0, 0), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 1, 0, 0), SHIFT(2318), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2, 0, 0), SHIFT(2318), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_type, 1, 0, 0), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 1, 0, 0), REDUCE(sym_array_element_initializer, 1, 0, 0), + [4472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2, 0, 0), SHIFT(2566), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 4), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 11), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 4, 0, 0), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_instead_of_clause, 3, 0, 0), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 6, 0, 0), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 5, 0, 0), + [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 5, 0, 157), + [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 4, 0, 0), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 3, 0, 0), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4, 0, 131), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 4, 0, 0), + [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_reference, 2, 0, 0), + [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 119), + [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 116), + [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 114), + [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 3, 0, 0), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 3, 0, 0), REDUCE(sym_array_element_initializer, 3, 0, 0), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 72), + [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 67), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 70), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, 0, 64), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [4632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_directive, 3, 0, 0), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, 0, 56), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_array_access_argument, 1, 0, 0), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause_2, 2, 0, 3), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_unary_expression, 2, 0, 0), + [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, 0, 96), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, 0, 107), + [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, 0, 104), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 6, 0, 148), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, 0, 42), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 4, 0, 0), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, 0, 16), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4846] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 2, 0, 0), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 3, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -143621,11 +143857,15 @@ bool tree_sitter_php_external_scanner_scan(void *, TSLexer *, const bool *); unsigned tree_sitter_php_external_scanner_serialize(void *, char *); void tree_sitter_php_external_scanner_deserialize(void *, const char *, unsigned); -#ifdef _WIN32 -#define extern __declspec(dllexport) +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) #endif -extern const TSLanguage *tree_sitter_php(void) { +TS_PUBLIC const TSLanguage *tree_sitter_php(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/php/src/tree_sitter/alloc.h b/php/src/tree_sitter/alloc.h new file mode 100644 index 00000000..1f4466d7 --- /dev/null +++ b/php/src/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t); +extern void *(*ts_current_calloc)(size_t, size_t); +extern void *(*ts_current_realloc)(void *, size_t); +extern void (*ts_current_free)(void *); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/php/src/tree_sitter/array.h b/php/src/tree_sitter/array.h new file mode 100644 index 00000000..15a3b233 --- /dev/null +++ b/php/src/tree_sitter/array.h @@ -0,0 +1,290 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((Array *)(self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((Array *)(self), array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) + +/// Swap one array with another +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (self->size - index - 1) * element_size); + self->size--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); + } else { + self->contents = ts_malloc(new_capacity * element_size); + } + self->capacity = new_capacity; + } +} + +/// This is not what you're looking for, see `array_assign`. +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + _array__reserve(self, element_size, new_capacity); + } +} + +/// This is not what you're looking for, see `array_splice`. +static inline void _array__splice(Array *self, size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = self->size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= self->size); + + _array__reserve(self, element_size, new_size); + + char *contents = (char *)self->contents; + if (self->size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (self->size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + self->size += new_count - old_count; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(default : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/php/src/tree_sitter/parser.h b/php/src/tree_sitter/parser.h index 17b4fde9..17f0e94b 100644 --- a/php/src/tree_sitter/parser.h +++ b/php/src/tree_sitter/parser.h @@ -86,6 +86,11 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { uint32_t version; uint32_t symbol_count; @@ -125,6 +130,24 @@ struct TSLanguage { const TSStateId *primary_state_ids; }; +static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + /* * Lexer Macros */ @@ -154,6 +177,17 @@ struct TSLanguage { goto next_state; \ } +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + #define SKIP(state_value) \ { \ skip = true; \ @@ -203,14 +237,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ }} #define RECOVER() \ diff --git a/php/test/corpus/common b/php/test/corpus/common deleted file mode 120000 index d3a2b72c..00000000 --- a/php/test/corpus/common +++ /dev/null @@ -1 +0,0 @@ -../../../common/test/corpus \ No newline at end of file diff --git a/php/test/highlight b/php/test/highlight deleted file mode 120000 index 222e29f4..00000000 --- a/php/test/highlight +++ /dev/null @@ -1 +0,0 @@ -../../common/test/highlight \ No newline at end of file diff --git a/php_only/Makefile b/php_only/Makefile new file mode 100644 index 00000000..457be293 --- /dev/null +++ b/php_only/Makefile @@ -0,0 +1,3 @@ +LANGUAGE_NAME := tree-sitter-php_only + +include ../common/common.mak diff --git a/php_only/src/grammar.json b/php_only/src/grammar.json index 7a9d9abc..fe3136e5 100644 --- a/php_only/src/grammar.json +++ b/php_only/src/grammar.json @@ -21,7 +21,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } }, { @@ -106,7 +106,7 @@ ] } }, - "_statement": { + "statement": { "type": "CHOICE", "members": [ { @@ -309,7 +309,7 @@ "name": "value", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -1208,45 +1208,11 @@ ] }, { - "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": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_modifier" + } }, { "type": "ALIAS", @@ -1470,65 +1436,52 @@ "name": "_const_declaration" }, "_class_const_declaration": { - "type": "PREC", - "value": 1, - "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": "SYMBOL", - "name": "final_modifier" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_const_declaration" - } - ] - } - }, - "_const_declaration": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" + } + ] + }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "visibility_modifier" + "name": "final_modifier" }, { "type": "BLANK" } ] }, + { + "type": "SYMBOL", + "name": "_const_declaration" + } + ] + }, + "_const_declaration": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_modifier" + } + }, { "type": "ALIAS", "content": { @@ -1547,7 +1500,7 @@ "name": "type", "content": { "type": "SYMBOL", - "name": "_type" + "name": "type" } }, { @@ -1620,7 +1573,7 @@ "name": "type", "content": { "type": "SYMBOL", - "name": "_type" + "name": "type" } }, { @@ -1722,7 +1675,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -2104,12 +2057,8 @@ "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "reference_modifier", - "content": { - "type": "SYMBOL", - "name": "reference_modifier" - } + "type": "SYMBOL", + "name": "reference_modifier" }, { "type": "BLANK" @@ -2255,7 +2204,7 @@ "name": "body", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -2395,7 +2344,7 @@ "members": [ { "type": "SYMBOL", - "name": "_type" + "name": "type" }, { "type": "BLANK" @@ -2426,7 +2375,7 @@ "name": "default_value", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -2465,7 +2414,7 @@ "members": [ { "type": "SYMBOL", - "name": "_type" + "name": "type" }, { "type": "BLANK" @@ -2512,7 +2461,7 @@ "name": "default_value", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -2551,7 +2500,7 @@ "members": [ { "type": "SYMBOL", - "name": "_type" + "name": "type" }, { "type": "BLANK" @@ -2589,7 +2538,7 @@ } ] }, - "_type": { + "type": { "type": "CHOICE", "members": [ { @@ -2931,7 +2880,7 @@ "members": [ { "type": "SYMBOL", - "name": "_type" + "name": "type" }, { "type": "SYMBOL", @@ -2969,7 +2918,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -3024,7 +2973,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "BLANK" @@ -3084,6 +3033,18 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": ")" @@ -3124,7 +3085,11 @@ "members": [ { "type": "SYMBOL", - "name": "_statement" + "name": "statement" + }, + { + "type": "SYMBOL", + "name": "_semicolon" }, { "type": "SEQ", @@ -3137,7 +3102,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } }, { @@ -3155,10 +3120,6 @@ "name": "_semicolon" } ] - }, - { - "type": "SYMBOL", - "name": "_semicolon" } ] } @@ -3190,11 +3151,11 @@ }, { "type": "SYMBOL", - "name": "_literal" + "name": "literal" } ] }, - "_literal": { + "literal": { "type": "CHOICE", "members": [ { @@ -3406,7 +3367,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "BLANK" @@ -3437,7 +3398,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "BLANK" @@ -3492,7 +3453,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "BLANK" @@ -3520,7 +3481,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -3553,7 +3514,7 @@ "name": "body", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } }, { @@ -3605,7 +3566,7 @@ "name": "body", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } }, { @@ -3706,7 +3667,7 @@ }, { "type": "SYMBOL", - "name": "_statement" + "name": "statement" }, { "type": "SEQ", @@ -3719,7 +3680,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } }, { @@ -3747,7 +3708,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -3763,7 +3724,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -3778,7 +3739,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] } @@ -3804,7 +3765,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "ALIAS", @@ -3850,7 +3811,7 @@ "name": "body", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } }, { @@ -3889,7 +3850,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -3910,7 +3871,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -3950,7 +3911,7 @@ "name": "body", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } }, { @@ -4061,7 +4022,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } } ] @@ -4092,7 +4053,7 @@ "name": "body", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } } ] @@ -4115,7 +4076,7 @@ "name": "body", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } } ] @@ -4293,7 +4254,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "REPEAT", @@ -4306,7 +4267,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] } @@ -4347,7 +4308,7 @@ "name": "return_expression", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -4374,7 +4335,7 @@ "name": "return_expression", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -4501,7 +4462,7 @@ "name": "value", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -4521,7 +4482,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } } ] @@ -4556,7 +4517,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } } ] @@ -4572,7 +4533,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } }, { @@ -4599,7 +4560,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -4607,7 +4568,7 @@ } ] }, - "_expression": { + "expression": { "type": "CHOICE", "members": [ { @@ -4673,7 +4634,7 @@ }, { "type": "SYMBOL", - "name": "_primary_expression" + "name": "primary_expression" }, { "type": "SYMBOL", @@ -4721,7 +4682,7 @@ "name": "argument", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -4739,7 +4700,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] } @@ -4759,11 +4720,11 @@ }, { "type": "SYMBOL", - "name": "_primary_expression" + "name": "primary_expression" } ] }, - "_primary_expression": { + "primary_expression": { "type": "CHOICE", "members": [ { @@ -4772,7 +4733,7 @@ }, { "type": "SYMBOL", - "name": "_literal" + "name": "literal" }, { "type": "SYMBOL", @@ -4837,7 +4798,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -4883,7 +4844,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, "named": true, "value": "name" @@ -4913,7 +4874,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -5268,6 +5229,10 @@ { "type": "SYMBOL", "name": "_variable_name" + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" } ] }, @@ -5379,6 +5344,10 @@ { "type": "SYMBOL", "name": "include_once_expression" + }, + { + "type": "SYMBOL", + "name": "error_suppression_expression" } ] } @@ -5451,7 +5420,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -5493,7 +5462,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -5510,7 +5479,7 @@ "name": "condition", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -5525,7 +5494,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "BLANK" @@ -5542,7 +5511,7 @@ "name": "alternative", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -5628,7 +5597,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -5783,33 +5752,28 @@ "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": "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" + "name": "expression" }, { "type": "STRING", @@ -5862,33 +5826,28 @@ "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": "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" + "name": "expression" }, { "type": "STRING", @@ -6020,7 +5979,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -6364,7 +6323,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] } @@ -6520,7 +6479,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -6565,7 +6524,7 @@ "name": "name", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -6598,7 +6557,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "BLANK" @@ -6620,7 +6579,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -6918,7 +6877,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -7147,7 +7106,7 @@ "name": "encapsed_string_chars_after_variable" }, "named": true, - "value": "string_value" + "value": "string_content" } ] }, @@ -7158,7 +7117,7 @@ "name": "encapsed_string_chars" }, "named": true, - "value": "string_value" + "value": "string_content" }, { "type": "SYMBOL", @@ -7175,7 +7134,7 @@ "value": "\\u" }, "named": true, - "value": "string_value" + "value": "string_content" } ] } @@ -7203,7 +7162,7 @@ "name": "encapsed_string_chars_after_variable_heredoc" }, "named": true, - "value": "string_value" + "value": "string_content" } ] }, @@ -7214,7 +7173,7 @@ "name": "encapsed_string_chars_heredoc" }, "named": true, - "value": "string_value" + "value": "string_content" }, { "type": "SYMBOL", @@ -7231,7 +7190,7 @@ "value": "\\u" }, "named": true, - "value": "string_value" + "value": "string_content" } ] } @@ -7318,7 +7277,7 @@ }, { "type": "SYMBOL", - "name": "string_value" + "name": "string_content" } ] } @@ -7329,17 +7288,14 @@ } ] }, - "string_value": { - "type": "TOKEN", + "string_content": { + "type": "IMMEDIATE_TOKEN", "content": { "type": "PREC", "value": 1, "content": { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "\\\\?[^'\\\\]" - } + "type": "PATTERN", + "value": "\\\\?[^'\\\\]+" } } }, @@ -7631,7 +7587,7 @@ "name": "execution_string_chars_after_variable" }, "named": true, - "value": "string_value" + "value": "string_content" } ] }, @@ -7642,7 +7598,7 @@ "name": "execution_string_chars" }, "named": true, - "value": "string_value" + "value": "string_content" }, { "type": "SYMBOL", @@ -7659,7 +7615,7 @@ "value": "\\u" }, "named": true, - "value": "string_value" + "value": "string_content" } ] } @@ -7749,7 +7705,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -7865,7 +7821,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] } @@ -7894,7 +7850,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -7903,7 +7859,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -7918,7 +7874,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] } @@ -7984,7 +7940,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8000,7 +7956,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8017,7 +7973,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8033,7 +7989,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8050,7 +8006,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8072,7 +8028,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8089,7 +8045,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8111,7 +8067,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8128,7 +8084,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8150,7 +8106,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8167,7 +8123,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8183,7 +8139,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8200,7 +8156,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8216,7 +8172,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8233,7 +8189,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8249,7 +8205,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8266,7 +8222,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8282,7 +8238,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8299,7 +8255,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8315,7 +8271,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8332,7 +8288,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8348,7 +8304,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8365,7 +8321,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8381,7 +8337,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8398,7 +8354,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8414,7 +8370,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8431,7 +8387,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8447,7 +8403,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8464,7 +8420,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8480,7 +8436,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8497,7 +8453,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8513,7 +8469,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8530,7 +8486,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8546,7 +8502,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8563,7 +8519,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8579,7 +8535,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8596,7 +8552,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8612,7 +8568,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8629,7 +8585,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8645,7 +8601,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8662,7 +8618,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8678,7 +8634,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8695,7 +8651,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8711,7 +8667,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8728,7 +8684,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8744,7 +8700,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8761,7 +8717,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8777,7 +8733,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8794,7 +8750,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8810,7 +8766,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8827,7 +8783,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8843,7 +8799,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8860,7 +8816,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8876,7 +8832,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8893,7 +8849,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8909,7 +8865,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -8932,7 +8888,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -8951,7 +8907,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -8970,7 +8926,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -8989,7 +8945,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -9120,11 +9076,11 @@ "array_element_initializer" ], [ - "_primary_expression", + "primary_expression", "_array_destructing_element" ], [ - "_type", + "type", "union_type", "intersection_type", "disjunctive_normal_form_type" @@ -9205,22 +9161,20 @@ } ], "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" + "statement", + "expression", + "primary_expression", + "type", + "literal" ] } diff --git a/php_only/src/node-types.json b/php_only/src/node-types.json index f30f419e..2e324d06 100644 --- a/php_only/src/node-types.json +++ b/php_only/src/node-types.json @@ -1,12 +1,8 @@ [ { - "type": "_expression", + "type": "expression", "named": true, "subtypes": [ - { - "type": "_primary_expression", - "named": true - }, { "type": "assignment_expression", "named": true @@ -47,6 +43,10 @@ "type": "match_expression", "named": true }, + { + "type": "primary_expression", + "named": true + }, { "type": "reference_assignment_expression", "named": true @@ -70,7 +70,7 @@ ] }, { - "type": "_literal", + "type": "literal", "named": true, "subtypes": [ { @@ -108,13 +108,9 @@ ] }, { - "type": "_primary_expression", + "type": "primary_expression", "named": true, "subtypes": [ - { - "type": "_literal", - "named": true - }, { "type": "anonymous_function_creation_expression", "named": true @@ -143,6 +139,10 @@ "type": "function_call_expression", "named": true }, + { + "type": "literal", + "named": true + }, { "type": "member_access_expression", "named": true @@ -210,7 +210,7 @@ ] }, { - "type": "_statement", + "type": "statement", "named": true, "subtypes": [ { @@ -332,7 +332,7 @@ ] }, { - "type": "_type", + "type": "type", "named": true, "subtypes": [ { @@ -415,11 +415,11 @@ "required": false, "types": [ { - "type": "_type", + "type": "bottom_type", "named": true }, { - "type": "bottom_type", + "type": "type", "named": true } ] @@ -495,7 +495,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -552,11 +552,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "by_ref", "named": true }, { - "type": "by_ref", + "type": "expression", "named": true }, { @@ -585,7 +585,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -615,11 +615,11 @@ "required": false, "types": [ { - "type": "_type", + "type": "bottom_type", "named": true }, { - "type": "bottom_type", + "type": "type", "named": true } ] @@ -699,7 +699,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -883,7 +883,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -918,7 +918,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1050,11 +1050,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "dynamic_variable_name", "named": true }, { - "type": "dynamic_variable_name", + "type": "expression", "named": true }, { @@ -1069,6 +1069,10 @@ "type": "nullsafe_member_access_expression", "named": true }, + { + "type": "parenthesized_expression", + "named": true + }, { "type": "qualified_name", "named": true @@ -1103,7 +1107,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1165,7 +1169,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1176,7 +1180,7 @@ "required": false, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -1201,11 +1205,11 @@ "required": true, "types": [ { - "type": "_primary_expression", + "type": "clone_expression", "named": true }, { - "type": "clone_expression", + "type": "error_suppression_expression", "named": true }, { @@ -1216,6 +1220,10 @@ "type": "include_once_expression", "named": true }, + { + "type": "primary_expression", + "named": true + }, { "type": "unary_op_expression", "named": true @@ -1384,24 +1392,6 @@ } ] }, - "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, @@ -1417,6 +1407,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "abstract_modifier", + "named": true + }, { "type": "base_clause", "named": true @@ -1424,6 +1418,26 @@ { "type": "class_interface_clause", "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 } ] } @@ -1456,7 +1470,7 @@ "required": true, "types": [ { - "type": "_primary_expression", + "type": "primary_expression", "named": true } ] @@ -1471,7 +1485,7 @@ "required": false, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -1486,7 +1500,7 @@ "required": false, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -1501,7 +1515,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1511,7 +1525,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1521,7 +1535,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1542,22 +1556,12 @@ } ] }, - "modifier": { - "multiple": false, - "required": false, - "types": [ - { - "type": "final_modifier", - "named": true - } - ] - }, "type": { "multiple": false, "required": false, "types": [ { - "type": "_type", + "type": "type", "named": true } ] @@ -1567,10 +1571,30 @@ "multiple": true, "required": true, "types": [ + { + "type": "abstract_modifier", + "named": true + }, { "type": "const_element", "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 @@ -1587,7 +1611,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -1606,7 +1630,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1648,7 +1672,7 @@ "required": true, "types": [ { - "type": "_literal", + "type": "literal", "named": true } ] @@ -1663,11 +1687,11 @@ "required": true, "types": [ { - "type": "_statement", + "type": "declare_directive", "named": true }, { - "type": "declare_directive", + "type": "statement", "named": true } ] @@ -1682,7 +1706,7 @@ "required": false, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -1724,7 +1748,7 @@ "required": true, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -1750,11 +1774,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "dynamic_variable_name", "named": true }, { - "type": "dynamic_variable_name", + "type": "expression", "named": true }, { @@ -1773,7 +1797,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -1792,11 +1816,11 @@ "required": true, "types": [ { - "type": "_statement", + "type": "colon_block", "named": true }, { - "type": "colon_block", + "type": "statement", "named": true } ] @@ -1812,11 +1836,11 @@ "required": true, "types": [ { - "type": "_statement", + "type": "colon_block", "named": true }, { - "type": "colon_block", + "type": "statement", "named": true } ] @@ -1847,15 +1871,15 @@ "required": false, "types": [ { - "type": "_expression", + "type": "dynamic_variable_name", "named": true }, { - "type": "dynamic_variable_name", + "type": "escape_sequence", "named": true }, { - "type": "escape_sequence", + "type": "expression", "named": true }, { @@ -1863,7 +1887,7 @@ "named": true }, { - "type": "string_value", + "type": "string_content", "named": true }, { @@ -2011,7 +2035,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -2026,7 +2050,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -2041,7 +2065,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -2077,15 +2101,15 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { - "type": "_statement", + "type": "sequence_expression", "named": true }, { - "type": "sequence_expression", + "type": "statement", "named": true } ] @@ -2100,11 +2124,11 @@ "required": false, "types": [ { - "type": "_statement", + "type": "colon_block", "named": true }, { - "type": "colon_block", + "type": "statement", "named": true } ] @@ -2115,11 +2139,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "by_ref", "named": true }, { - "type": "by_ref", + "type": "expression", "named": true }, { @@ -2282,30 +2306,30 @@ } ] }, - "reference_modifier": { - "multiple": false, - "required": false, - "types": [ - { - "type": "reference_modifier", - "named": true - } - ] - }, "return_type": { "multiple": false, "required": false, "types": [ { - "type": "_type", + "type": "bottom_type", "named": true }, { - "type": "bottom_type", + "type": "type", "named": true } ] } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "reference_modifier", + "named": true + } + ] } }, { @@ -2406,15 +2430,15 @@ "required": true, "types": [ { - "type": "_expression", + "type": "dynamic_variable_name", "named": true }, { - "type": "dynamic_variable_name", + "type": "escape_sequence", "named": true }, { - "type": "escape_sequence", + "type": "expression", "named": true }, { @@ -2422,7 +2446,7 @@ "named": true }, { - "type": "string_value", + "type": "string_content", "named": true }, { @@ -2459,11 +2483,11 @@ "required": true, "types": [ { - "type": "_statement", + "type": "colon_block", "named": true }, { - "type": "colon_block", + "type": "statement", "named": true } ] @@ -2489,7 +2513,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -2504,7 +2528,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -2578,15 +2602,15 @@ "required": false, "types": [ { - "type": "_expression", + "type": "by_ref", "named": true }, { - "type": "by_ref", + "type": "dynamic_variable_name", "named": true }, { - "type": "dynamic_variable_name", + "type": "expression", "named": true }, { @@ -2660,7 +2684,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -2685,7 +2709,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -2701,7 +2725,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -2743,11 +2767,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "dynamic_variable_name", "named": true }, { - "type": "dynamic_variable_name", + "type": "expression", "named": true }, { @@ -2867,11 +2891,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "dynamic_variable_name", "named": true }, { - "type": "dynamic_variable_name", + "type": "expression", "named": true }, { @@ -3016,26 +3040,16 @@ } ] }, - "reference_modifier": { - "multiple": false, - "required": false, - "types": [ - { - "type": "reference_modifier", - "named": true - } - ] - }, "return_type": { "multiple": false, "required": false, "types": [ { - "type": "_type", + "type": "bottom_type", "named": true }, { - "type": "bottom_type", + "type": "type", "named": true } ] @@ -3057,6 +3071,10 @@ "type": "readonly_modifier", "named": true }, + { + "type": "reference_modifier", + "named": true + }, { "type": "static_modifier", "named": true @@ -3327,11 +3345,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "dynamic_variable_name", "named": true }, { - "type": "dynamic_variable_name", + "type": "expression", "named": true }, { @@ -3451,11 +3469,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "dynamic_variable_name", "named": true }, { - "type": "dynamic_variable_name", + "type": "expression", "named": true }, { @@ -3607,6 +3625,10 @@ "type": "nullsafe_member_access_expression", "named": true }, + { + "type": "parenthesized_expression", + "named": true + }, { "type": "qualified_name", "named": true @@ -3654,11 +3676,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "by_ref", "named": true }, { - "type": "by_ref", + "type": "expression", "named": true }, { @@ -3677,7 +3699,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3697,7 +3719,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3712,11 +3734,11 @@ "required": false, "types": [ { - "type": "_statement", + "type": "php_tag", "named": true }, { - "type": "php_tag", + "type": "statement", "named": true } ] @@ -3741,7 +3763,7 @@ "required": false, "types": [ { - "type": "_type", + "type": "type", "named": true } ] @@ -3810,7 +3832,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3835,7 +3857,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3865,7 +3887,7 @@ "required": false, "types": [ { - "type": "_type", + "type": "type", "named": true } ] @@ -3969,7 +3991,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3995,7 +4017,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -4010,7 +4032,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -4025,7 +4047,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -4050,11 +4072,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "dynamic_variable_name", "named": true }, { - "type": "dynamic_variable_name", + "type": "expression", "named": true }, { @@ -4278,7 +4300,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -4297,15 +4319,15 @@ "required": false, "types": [ { - "type": "_expression", + "type": "dynamic_variable_name", "named": true }, { - "type": "dynamic_variable_name", + "type": "escape_sequence", "named": true }, { - "type": "escape_sequence", + "type": "expression", "named": true }, { @@ -4313,7 +4335,7 @@ "named": true }, { - "type": "string_value", + "type": "string_content", "named": true }, { @@ -4346,7 +4368,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -4376,7 +4398,7 @@ "required": false, "types": [ { - "type": "_type", + "type": "type", "named": true } ] @@ -4407,7 +4429,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -4427,7 +4449,7 @@ "named": true }, { - "type": "string_value", + "type": "string_content", "named": true } ] @@ -4441,10 +4463,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "_expression", - "named": true - }, { "type": "array_creation_expression", "named": true @@ -4461,6 +4479,10 @@ "type": "encapsed_string", "named": true }, + { + "type": "expression", + "named": true + }, { "type": "function_call_expression", "named": true @@ -4587,7 +4609,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -4673,7 +4695,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -4998,7 +5020,7 @@ "required": false, "types": [ { - "type": "_type", + "type": "type", "named": true } ] @@ -5019,7 +5041,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -5039,11 +5061,11 @@ "required": true, "types": [ { - "type": "_statement", + "type": "colon_block", "named": true }, { - "type": "colon_block", + "type": "statement", "named": true } ] @@ -5069,11 +5091,11 @@ "required": false, "types": [ { - "type": "_expression", + "type": "array_element_initializer", "named": true }, { - "type": "array_element_initializer", + "type": "expression", "named": true } ] @@ -5636,7 +5658,7 @@ "named": false }, { - "type": "string_value", + "type": "string_content", "named": true }, { diff --git a/php_only/src/parser.c b/php_only/src/parser.c index a909fadb..2684711e 100644 --- a/php_only/src/parser.c +++ b/php_only/src/parser.c @@ -1,20 +1,19 @@ #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 2641 -#define LARGE_STATE_COUNT 574 -#define SYMBOL_COUNT 403 +#define STATE_COUNT 2604 +#define LARGE_STATE_COUNT 565 +#define SYMBOL_COUNT 405 #define ALIAS_COUNT 0 #define TOKEN_COUNT 193 #define EXTERNAL_TOKEN_COUNT 12 -#define FIELD_COUNT 27 +#define FIELD_COUNT 26 #define MAX_ALIAS_SEQUENCE_LENGTH 12 -#define PRODUCTION_ID_COUNT 189 +#define PRODUCTION_ID_COUNT 183 enum ts_symbol_identifiers { sym_name = 1, @@ -157,7 +156,7 @@ enum ts_symbol_identifiers { aux_sym_string_token1 = 138, anon_sym_SQUOTE = 139, aux_sym_string_token2 = 140, - sym_string_value = 141, + sym_string_content = 141, anon_sym_LT_LT_LT = 142, anon_sym_DQUOTE2 = 143, sym__new_line = 144, @@ -210,215 +209,217 @@ enum ts_symbol_identifiers { sym_nowdoc_string = 191, sym_sentinel_error = 192, sym_program = 193, - sym_empty_statement = 194, - sym_reference_modifier = 195, - sym_function_static_declaration = 196, - sym_static_variable_declaration = 197, - sym_global_declaration = 198, - sym_namespace_definition = 199, - sym_namespace_use_declaration = 200, - sym_namespace_use_clause = 201, - sym_qualified_name = 202, - sym_namespace_name_as_prefix = 203, - sym_namespace_name = 204, - sym_namespace_aliasing_clause = 205, - sym_namespace_use_group = 206, - sym_namespace_use_group_clause = 207, - sym_trait_declaration = 208, - sym_interface_declaration = 209, - sym_base_clause = 210, - sym_enum_declaration = 211, - sym_enum_declaration_list = 212, - sym__enum_member_declaration = 213, - sym_enum_case = 214, - sym_class_declaration = 215, - sym_declaration_list = 216, - sym_final_modifier = 217, - sym_abstract_modifier = 218, - sym_readonly_modifier = 219, - sym_class_interface_clause = 220, - sym__member_declaration = 221, - sym_const_declaration = 222, - sym__class_const_declaration = 223, - sym__const_declaration = 224, - sym_property_declaration = 225, - sym__modifier = 226, - sym_property_element = 227, - sym_property_initializer = 228, - sym_method_declaration = 229, - sym_static_modifier = 230, - sym_use_declaration = 231, - sym_use_list = 232, - sym_use_instead_of_clause = 233, - sym_use_as_clause = 234, - sym_visibility_modifier = 235, - sym_function_definition = 236, - sym__function_definition_header = 237, - sym__arrow_function_header = 238, - sym_arrow_function = 239, - sym_formal_parameters = 240, - sym_property_promotion_parameter = 241, - sym_simple_parameter = 242, - sym_variadic_parameter = 243, - sym__type = 244, - sym__types = 245, - sym_named_type = 246, - sym_optional_type = 247, - sym_union_type = 248, - sym_intersection_type = 249, - sym_disjunctive_normal_form_type = 250, - sym_primitive_type = 251, - sym_cast_type = 252, - sym__return_type = 253, - sym_const_element = 254, - sym_echo_statement = 255, - sym_exit_statement = 256, - sym_unset_statement = 257, - sym_declare_statement = 258, - sym_declare_directive = 259, - sym_try_statement = 260, - sym_catch_clause = 261, - sym_type_list = 262, - sym_finally_clause = 263, - sym_goto_statement = 264, - sym_continue_statement = 265, - sym_break_statement = 266, - sym_return_statement = 267, - sym_throw_expression = 268, - sym_while_statement = 269, - sym_do_statement = 270, - sym_for_statement = 271, - sym__expressions = 272, - sym_sequence_expression = 273, - sym_foreach_statement = 274, - sym_foreach_pair = 275, - sym_if_statement = 276, - sym_colon_block = 277, - sym_else_if_clause = 278, - sym_else_clause = 279, - sym_else_if_clause_2 = 280, - sym_else_clause_2 = 281, - sym_match_expression = 282, - sym_match_block = 283, - sym_match_condition_list = 284, - sym_match_conditional_expression = 285, - sym_match_default_expression = 286, - sym_switch_statement = 287, - sym_switch_block = 288, - sym_case_statement = 289, - sym_default_statement = 290, - sym_compound_statement = 291, - sym_named_label_statement = 292, - sym_expression_statement = 293, - sym__expression = 294, - sym__unary_expression = 295, - sym_unary_op_expression = 296, - sym_error_suppression_expression = 297, - sym_clone_expression = 298, - sym__primary_expression = 299, - sym_parenthesized_expression = 300, - sym_class_constant_access_expression = 301, - sym_print_intrinsic = 302, - sym_anonymous_function_creation_expression = 303, - sym_anonymous_function_use_clause = 304, - sym_object_creation_expression = 305, - sym_update_expression = 306, - sym_cast_expression = 307, - sym_cast_variable = 308, - sym_assignment_expression = 309, - sym_reference_assignment_expression = 310, - sym_conditional_expression = 311, - sym_augmented_assignment_expression = 312, - sym_member_access_expression = 313, - sym_nullsafe_member_access_expression = 314, - sym_scoped_property_access_expression = 315, - sym_list_literal = 316, - sym__list_destructing = 317, - sym__array_destructing = 318, - sym__array_destructing_element = 319, - sym_function_call_expression = 320, - sym_scoped_call_expression = 321, - sym__scope_resolution_qualifier = 322, - sym_relative_scope = 323, - sym_variadic_placeholder = 324, - sym_arguments = 325, - sym_argument = 326, - sym__argument_name = 327, - sym_member_call_expression = 328, - sym_nullsafe_member_call_expression = 329, - sym_variadic_unpacking = 330, - sym_subscript_expression = 331, - sym__dereferencable_expression = 332, - sym_array_creation_expression = 333, - sym_attribute_group = 334, - sym_attribute_list = 335, - sym_attribute = 336, - sym__complex_string_part = 337, - sym__simple_string_member_access_expression = 338, - sym__simple_string_subscript_unary_expression = 339, - sym__simple_string_array_access_argument = 340, - sym__simple_string_subscript_expression = 341, - sym__simple_string_part = 342, - aux_sym__interpolated_string_body = 343, - aux_sym__interpolated_string_body_heredoc = 344, - sym_encapsed_string = 345, - sym_string = 346, - sym_heredoc_body = 347, - sym_heredoc = 348, - sym_nowdoc_body = 349, - sym_nowdoc = 350, - aux_sym__interpolated_execution_operator_body = 351, - sym_shell_command_expression = 352, - sym_boolean = 353, - sym_null = 354, - sym__string = 355, - sym_dynamic_variable_name = 356, - sym_variable_name = 357, - sym_variable_reference = 358, - sym_by_ref = 359, - sym_yield_expression = 360, - sym_array_element_initializer = 361, - sym_binary_expression = 362, - sym_include_expression = 363, - sym_include_once_expression = 364, - sym_require_expression = 365, - sym_require_once_expression = 366, - sym__reserved_identifier = 367, - aux_sym_program_repeat1 = 368, - aux_sym_function_static_declaration_repeat1 = 369, - aux_sym_global_declaration_repeat1 = 370, - aux_sym_namespace_use_declaration_repeat1 = 371, - aux_sym_namespace_name_repeat1 = 372, - aux_sym_namespace_use_group_repeat1 = 373, - aux_sym_base_clause_repeat1 = 374, - aux_sym_enum_declaration_list_repeat1 = 375, - aux_sym_declaration_list_repeat1 = 376, - aux_sym__const_declaration_repeat1 = 377, - aux_sym_property_declaration_repeat1 = 378, - aux_sym_property_declaration_repeat2 = 379, - aux_sym_use_list_repeat1 = 380, - aux_sym_formal_parameters_repeat1 = 381, - aux_sym_union_type_repeat1 = 382, - aux_sym_intersection_type_repeat1 = 383, - aux_sym_disjunctive_normal_form_type_repeat1 = 384, - aux_sym_unset_statement_repeat1 = 385, - aux_sym_try_statement_repeat1 = 386, - aux_sym_type_list_repeat1 = 387, - aux_sym_if_statement_repeat1 = 388, - aux_sym_if_statement_repeat2 = 389, - aux_sym_match_block_repeat1 = 390, - aux_sym_match_condition_list_repeat1 = 391, - aux_sym_switch_block_repeat1 = 392, - aux_sym_anonymous_function_use_clause_repeat1 = 393, - aux_sym__list_destructing_repeat1 = 394, - aux_sym__array_destructing_repeat1 = 395, - aux_sym_arguments_repeat1 = 396, - aux_sym_array_creation_expression_repeat1 = 397, - aux_sym_attribute_group_repeat1 = 398, - aux_sym_attribute_list_repeat1 = 399, - aux_sym_string_repeat1 = 400, - aux_sym_heredoc_body_repeat1 = 401, - aux_sym_nowdoc_body_repeat1 = 402, + sym_statement = 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_disjunctive_normal_form_type = 251, + sym_primitive_type = 252, + sym_cast_type = 253, + sym__return_type = 254, + sym_const_element = 255, + sym_echo_statement = 256, + sym_exit_statement = 257, + sym_unset_statement = 258, + sym_declare_statement = 259, + sym_declare_directive = 260, + sym_literal = 261, + sym_try_statement = 262, + sym_catch_clause = 263, + sym_type_list = 264, + sym_finally_clause = 265, + sym_goto_statement = 266, + sym_continue_statement = 267, + sym_break_statement = 268, + sym_return_statement = 269, + sym_throw_expression = 270, + sym_while_statement = 271, + sym_do_statement = 272, + sym_for_statement = 273, + sym__expressions = 274, + sym_sequence_expression = 275, + sym_foreach_statement = 276, + sym_foreach_pair = 277, + sym_if_statement = 278, + sym_colon_block = 279, + sym_else_if_clause = 280, + sym_else_clause = 281, + sym_else_if_clause_2 = 282, + sym_else_clause_2 = 283, + sym_match_expression = 284, + sym_match_block = 285, + sym_match_condition_list = 286, + sym_match_conditional_expression = 287, + sym_match_default_expression = 288, + sym_switch_statement = 289, + sym_switch_block = 290, + sym_case_statement = 291, + sym_default_statement = 292, + sym_compound_statement = 293, + sym_named_label_statement = 294, + sym_expression_statement = 295, + sym_expression = 296, + sym__unary_expression = 297, + sym_unary_op_expression = 298, + sym_error_suppression_expression = 299, + sym_clone_expression = 300, + sym_primary_expression = 301, + sym_parenthesized_expression = 302, + sym_class_constant_access_expression = 303, + sym_print_intrinsic = 304, + sym_anonymous_function_creation_expression = 305, + sym_anonymous_function_use_clause = 306, + sym_object_creation_expression = 307, + sym_update_expression = 308, + sym_cast_expression = 309, + sym_cast_variable = 310, + sym_assignment_expression = 311, + sym_reference_assignment_expression = 312, + sym_conditional_expression = 313, + sym_augmented_assignment_expression = 314, + sym_member_access_expression = 315, + sym_nullsafe_member_access_expression = 316, + sym_scoped_property_access_expression = 317, + sym_list_literal = 318, + sym__list_destructing = 319, + sym__array_destructing = 320, + sym__array_destructing_element = 321, + sym_function_call_expression = 322, + sym_scoped_call_expression = 323, + sym__scope_resolution_qualifier = 324, + sym_relative_scope = 325, + sym_variadic_placeholder = 326, + sym_arguments = 327, + sym_argument = 328, + sym__argument_name = 329, + sym_member_call_expression = 330, + sym_nullsafe_member_call_expression = 331, + sym_variadic_unpacking = 332, + sym_subscript_expression = 333, + sym__dereferencable_expression = 334, + sym_array_creation_expression = 335, + sym_attribute_group = 336, + sym_attribute_list = 337, + sym_attribute = 338, + sym__complex_string_part = 339, + sym__simple_string_member_access_expression = 340, + sym__simple_string_subscript_unary_expression = 341, + sym__simple_string_array_access_argument = 342, + sym__simple_string_subscript_expression = 343, + sym__simple_string_part = 344, + aux_sym__interpolated_string_body = 345, + aux_sym__interpolated_string_body_heredoc = 346, + sym_encapsed_string = 347, + sym_string = 348, + sym_heredoc_body = 349, + sym_heredoc = 350, + sym_nowdoc_body = 351, + sym_nowdoc = 352, + aux_sym__interpolated_execution_operator_body = 353, + sym_shell_command_expression = 354, + sym_boolean = 355, + sym_null = 356, + sym__string = 357, + sym_dynamic_variable_name = 358, + sym_variable_name = 359, + sym_variable_reference = 360, + sym_by_ref = 361, + sym_yield_expression = 362, + sym_array_element_initializer = 363, + sym_binary_expression = 364, + sym_include_expression = 365, + sym_include_once_expression = 366, + sym_require_expression = 367, + sym_require_once_expression = 368, + sym__reserved_identifier = 369, + aux_sym_program_repeat1 = 370, + aux_sym_function_static_declaration_repeat1 = 371, + aux_sym_global_declaration_repeat1 = 372, + aux_sym_namespace_use_declaration_repeat1 = 373, + aux_sym_namespace_name_repeat1 = 374, + aux_sym_namespace_use_group_repeat1 = 375, + aux_sym_base_clause_repeat1 = 376, + aux_sym_enum_declaration_list_repeat1 = 377, + aux_sym_class_declaration_repeat1 = 378, + aux_sym_declaration_list_repeat1 = 379, + aux_sym__const_declaration_repeat1 = 380, + aux_sym_property_declaration_repeat1 = 381, + aux_sym_use_list_repeat1 = 382, + aux_sym_formal_parameters_repeat1 = 383, + aux_sym_union_type_repeat1 = 384, + aux_sym_intersection_type_repeat1 = 385, + aux_sym_disjunctive_normal_form_type_repeat1 = 386, + aux_sym_unset_statement_repeat1 = 387, + aux_sym_try_statement_repeat1 = 388, + aux_sym_type_list_repeat1 = 389, + aux_sym_if_statement_repeat1 = 390, + aux_sym_if_statement_repeat2 = 391, + aux_sym_match_block_repeat1 = 392, + aux_sym_match_condition_list_repeat1 = 393, + aux_sym_switch_block_repeat1 = 394, + aux_sym_anonymous_function_use_clause_repeat1 = 395, + aux_sym__list_destructing_repeat1 = 396, + aux_sym__array_destructing_repeat1 = 397, + aux_sym_arguments_repeat1 = 398, + aux_sym_array_creation_expression_repeat1 = 399, + aux_sym_attribute_group_repeat1 = 400, + aux_sym_attribute_list_repeat1 = 401, + aux_sym_string_repeat1 = 402, + aux_sym_heredoc_body_repeat1 = 403, + aux_sym_nowdoc_body_repeat1 = 404, }; static const char * const ts_symbol_names[] = { @@ -557,13 +558,13 @@ static const char * const ts_symbol_names[] = { [aux_sym__argument_name_token2] = "_argument_name_token2", [anon_sym_POUND_LBRACK] = "#[", [sym_escape_sequence] = "escape_sequence", - [anon_sym_BSLASHu] = "string_value", + [anon_sym_BSLASHu] = "string_content", [aux_sym_encapsed_string_token1] = "encapsed_string_token1", [anon_sym_DQUOTE] = "\"", [aux_sym_string_token1] = "string_token1", [anon_sym_SQUOTE] = "'", [aux_sym_string_token2] = "escape_sequence", - [sym_string_value] = "string_value", + [sym_string_content] = "string_content", [anon_sym_LT_LT_LT] = "<<<", [anon_sym_DQUOTE2] = "\"", [sym__new_line] = "_new_line", @@ -604,18 +605,19 @@ static const char * const ts_symbol_names[] = { [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_encapsed_string_chars] = "string_content", + [sym_encapsed_string_chars_after_variable] = "string_content", + [sym_execution_string_chars] = "string_content", + [sym_execution_string_chars_after_variable] = "string_content", + [sym_encapsed_string_chars_heredoc] = "string_content", + [sym_encapsed_string_chars_after_variable_heredoc] = "string_content", [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_statement] = "statement", [sym_empty_statement] = "empty_statement", [sym_reference_modifier] = "reference_modifier", [sym_function_static_declaration] = "function_static_declaration", @@ -666,7 +668,7 @@ static const char * const ts_symbol_names[] = { [sym_property_promotion_parameter] = "property_promotion_parameter", [sym_simple_parameter] = "simple_parameter", [sym_variadic_parameter] = "variadic_parameter", - [sym__type] = "_type", + [sym_type] = "type", [sym__types] = "_types", [sym_named_type] = "named_type", [sym_optional_type] = "optional_type", @@ -682,6 +684,7 @@ static const char * const ts_symbol_names[] = { [sym_unset_statement] = "unset_statement", [sym_declare_statement] = "declare_statement", [sym_declare_directive] = "declare_directive", + [sym_literal] = "literal", [sym_try_statement] = "try_statement", [sym_catch_clause] = "catch_clause", [sym_type_list] = "type_list", @@ -716,12 +719,12 @@ static const char * const ts_symbol_names[] = { [sym_compound_statement] = "compound_statement", [sym_named_label_statement] = "named_label_statement", [sym_expression_statement] = "expression_statement", - [sym__expression] = "_expression", + [sym_expression] = "expression", [sym__unary_expression] = "_unary_expression", [sym_unary_op_expression] = "unary_op_expression", [sym_error_suppression_expression] = "error_suppression_expression", [sym_clone_expression] = "clone_expression", - [sym__primary_expression] = "_primary_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", @@ -798,10 +801,10 @@ static const char * const ts_symbol_names[] = { [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_class_declaration_repeat1] = "class_declaration_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", @@ -963,13 +966,13 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__argument_name_token2] = aux_sym__argument_name_token2, [anon_sym_POUND_LBRACK] = anon_sym_POUND_LBRACK, [sym_escape_sequence] = sym_escape_sequence, - [anon_sym_BSLASHu] = sym_string_value, + [anon_sym_BSLASHu] = sym_string_content, [aux_sym_encapsed_string_token1] = aux_sym_encapsed_string_token1, [anon_sym_DQUOTE] = anon_sym_DQUOTE, [aux_sym_string_token1] = aux_sym_string_token1, [anon_sym_SQUOTE] = anon_sym_SQUOTE, [aux_sym_string_token2] = sym_escape_sequence, - [sym_string_value] = sym_string_value, + [sym_string_content] = sym_string_content, [anon_sym_LT_LT_LT] = anon_sym_LT_LT_LT, [anon_sym_DQUOTE2] = anon_sym_DQUOTE, [sym__new_line] = sym__new_line, @@ -1010,18 +1013,19 @@ static const TSSymbol ts_symbol_map[] = { [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_encapsed_string_chars] = sym_string_content, + [sym_encapsed_string_chars_after_variable] = sym_string_content, + [sym_execution_string_chars] = sym_string_content, + [sym_execution_string_chars_after_variable] = sym_string_content, + [sym_encapsed_string_chars_heredoc] = sym_string_content, + [sym_encapsed_string_chars_after_variable_heredoc] = sym_string_content, [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_statement] = sym_statement, [sym_empty_statement] = sym_empty_statement, [sym_reference_modifier] = sym_reference_modifier, [sym_function_static_declaration] = sym_function_static_declaration, @@ -1072,7 +1076,7 @@ static const TSSymbol ts_symbol_map[] = { [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_type] = sym_type, [sym__types] = sym__types, [sym_named_type] = sym_named_type, [sym_optional_type] = sym_optional_type, @@ -1088,6 +1092,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_unset_statement] = sym_unset_statement, [sym_declare_statement] = sym_declare_statement, [sym_declare_directive] = sym_declare_directive, + [sym_literal] = sym_literal, [sym_try_statement] = sym_try_statement, [sym_catch_clause] = sym_catch_clause, [sym_type_list] = sym_type_list, @@ -1122,12 +1127,12 @@ static const TSSymbol ts_symbol_map[] = { [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_expression] = sym_expression, [sym__unary_expression] = sym__unary_expression, [sym_unary_op_expression] = sym_unary_op_expression, [sym_error_suppression_expression] = sym_error_suppression_expression, [sym_clone_expression] = sym_clone_expression, - [sym__primary_expression] = sym__primary_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, @@ -1204,10 +1209,10 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_namespace_use_group_repeat1] = aux_sym_namespace_use_group_repeat1, [aux_sym_base_clause_repeat1] = aux_sym_base_clause_repeat1, [aux_sym_enum_declaration_list_repeat1] = aux_sym_enum_declaration_list_repeat1, + [aux_sym_class_declaration_repeat1] = aux_sym_class_declaration_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, @@ -1798,7 +1803,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_string_value] = { + [sym_string_content] = { .visible = true, .named = true, }, @@ -2010,6 +2015,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_statement] = { + .visible = false, + .named = true, + .supertype = true, + }, [sym_empty_statement] = { .visible = true, .named = true, @@ -2210,7 +2220,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__type] = { + [sym_type] = { .visible = false, .named = true, .supertype = true, @@ -2275,6 +2285,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_literal] = { + .visible = false, + .named = true, + .supertype = true, + }, [sym_try_statement] = { .visible = true, .named = true, @@ -2411,7 +2426,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__expression] = { + [sym_expression] = { .visible = false, .named = true, .supertype = true, @@ -2432,7 +2447,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__primary_expression] = { + [sym_primary_expression] = { .visible = false, .named = true, .supertype = true, @@ -2741,19 +2756,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_declaration_list_repeat1] = { + [aux_sym_class_declaration_repeat1] = { .visible = false, .named = false, }, - [aux_sym__const_declaration_repeat1] = { + [aux_sym_declaration_list_repeat1] = { .visible = false, .named = false, }, - [aux_sym_property_declaration_repeat1] = { + [aux_sym__const_declaration_repeat1] = { .visible = false, .named = false, }, - [aux_sym_property_declaration_repeat2] = { + [aux_sym_property_declaration_repeat1] = { .visible = false, .named = false, }, @@ -2864,21 +2879,20 @@ enum ts_field_identifiers { field_function = 10, field_identifier = 11, field_left = 12, - field_modifier = 13, - field_name = 14, - field_object = 15, - field_operator = 16, - field_parameters = 17, - field_readonly = 18, - field_reference_modifier = 19, - field_return_expression = 20, - field_return_type = 21, - field_right = 22, - field_scope = 23, - field_static_modifier = 24, - field_type = 25, - field_value = 26, - field_visibility = 27, + 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_static_modifier = 23, + field_type = 24, + field_value = 25, + field_visibility = 26, }; static const char * const ts_field_names[] = { @@ -2895,7 +2909,6 @@ static const char * const ts_field_names[] = { [field_function] = "function", [field_identifier] = "identifier", [field_left] = "left", - [field_modifier] = "modifier", [field_name] = "name", [field_object] = "object", [field_operator] = "operator", @@ -2920,180 +2933,174 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [5] = {.index = 4, .length = 2}, [7] = {.index = 6, .length = 2}, [8] = {.index = 8, .length = 2}, - [9] = {.index = 10, .length = 5}, - [10] = {.index = 15, .length = 2}, - [11] = {.index = 17, .length = 1}, - [12] = {.index = 18, .length = 2}, - [13] = {.index = 20, .length = 2}, - [14] = {.index = 22, .length = 2}, - [15] = {.index = 24, .length = 2}, - [16] = {.index = 26, .length = 2}, - [18] = {.index = 28, .length = 2}, - [19] = {.index = 30, .length = 2}, - [20] = {.index = 32, .length = 1}, - [21] = {.index = 33, .length = 5}, - [22] = {.index = 38, .length = 3}, - [23] = {.index = 41, .length = 2}, - [24] = {.index = 43, .length = 2}, - [25] = {.index = 45, .length = 2}, - [26] = {.index = 47, .length = 2}, - [27] = {.index = 49, .length = 6}, - [28] = {.index = 55, .length = 2}, - [29] = {.index = 57, .length = 2}, - [30] = {.index = 59, .length = 2}, - [31] = {.index = 61, .length = 2}, - [32] = {.index = 63, .length = 2}, - [33] = {.index = 65, .length = 3}, - [34] = {.index = 68, .length = 3}, - [35] = {.index = 71, .length = 3}, - [36] = {.index = 74, .length = 1}, - [37] = {.index = 75, .length = 3}, - [38] = {.index = 78, .length = 2}, - [39] = {.index = 80, .length = 1}, - [40] = {.index = 81, .length = 3}, - [41] = {.index = 84, .length = 2}, - [42] = {.index = 86, .length = 3}, - [43] = {.index = 89, .length = 2}, - [44] = {.index = 91, .length = 1}, - [45] = {.index = 92, .length = 3}, - [46] = {.index = 95, .length = 3}, - [47] = {.index = 98, .length = 1}, - [50] = {.index = 99, .length = 3}, + [9] = {.index = 10, .length = 4}, + [10] = {.index = 14, .length = 2}, + [11] = {.index = 16, .length = 1}, + [12] = {.index = 17, .length = 2}, + [13] = {.index = 19, .length = 2}, + [14] = {.index = 21, .length = 2}, + [15] = {.index = 23, .length = 2}, + [16] = {.index = 25, .length = 2}, + [18] = {.index = 27, .length = 2}, + [19] = {.index = 29, .length = 2}, + [20] = {.index = 31, .length = 1}, + [21] = {.index = 32, .length = 5}, + [22] = {.index = 37, .length = 3}, + [23] = {.index = 40, .length = 2}, + [24] = {.index = 42, .length = 2}, + [25] = {.index = 44, .length = 2}, + [26] = {.index = 46, .length = 2}, + [27] = {.index = 48, .length = 5}, + [28] = {.index = 53, .length = 2}, + [29] = {.index = 55, .length = 2}, + [30] = {.index = 57, .length = 2}, + [31] = {.index = 59, .length = 2}, + [32] = {.index = 61, .length = 2}, + [33] = {.index = 63, .length = 3}, + [34] = {.index = 66, .length = 2}, + [35] = {.index = 68, .length = 3}, + [36] = {.index = 71, .length = 1}, + [37] = {.index = 72, .length = 3}, + [38] = {.index = 75, .length = 2}, + [39] = {.index = 77, .length = 1}, + [40] = {.index = 78, .length = 2}, + [41] = {.index = 80, .length = 2}, + [42] = {.index = 82, .length = 3}, + [43] = {.index = 85, .length = 2}, + [44] = {.index = 87, .length = 1}, + [45] = {.index = 88, .length = 3}, + [46] = {.index = 91, .length = 3}, + [47] = {.index = 94, .length = 1}, + [50] = {.index = 95, .length = 3}, [51] = {.index = 1, .length = 1}, - [52] = {.index = 102, .length = 1}, - [53] = {.index = 103, .length = 1}, - [54] = {.index = 104, .length = 3}, - [55] = {.index = 107, .length = 3}, - [56] = {.index = 110, .length = 2}, - [57] = {.index = 112, .length = 2}, - [58] = {.index = 114, .length = 2}, - [59] = {.index = 116, .length = 2}, - [60] = {.index = 118, .length = 3}, - [61] = {.index = 121, .length = 3}, - [62] = {.index = 124, .length = 3}, - [63] = {.index = 127, .length = 3}, - [64] = {.index = 130, .length = 3}, - [65] = {.index = 133, .length = 3}, - [66] = {.index = 136, .length = 2}, - [67] = {.index = 138, .length = 2}, - [68] = {.index = 140, .length = 3}, - [69] = {.index = 143, .length = 3}, - [70] = {.index = 146, .length = 2}, - [71] = {.index = 148, .length = 3}, - [72] = {.index = 151, .length = 2}, - [73] = {.index = 153, .length = 3}, - [74] = {.index = 156, .length = 3}, - [75] = {.index = 159, .length = 3}, - [76] = {.index = 162, .length = 2}, - [77] = {.index = 164, .length = 4}, - [78] = {.index = 168, .length = 4}, - [79] = {.index = 172, .length = 3}, - [80] = {.index = 175, .length = 3}, - [81] = {.index = 178, .length = 2}, - [82] = {.index = 180, .length = 4}, - [83] = {.index = 184, .length = 2}, - [84] = {.index = 186, .length = 2}, - [85] = {.index = 186, .length = 2}, - [86] = {.index = 188, .length = 2}, - [87] = {.index = 190, .length = 4}, - [88] = {.index = 194, .length = 2}, - [89] = {.index = 196, .length = 3}, - [90] = {.index = 199, .length = 4}, - [91] = {.index = 203, .length = 2}, - [92] = {.index = 205, .length = 2}, - [93] = {.index = 207, .length = 3}, - [94] = {.index = 210, .length = 4}, - [95] = {.index = 214, .length = 4}, - [96] = {.index = 218, .length = 4}, - [97] = {.index = 222, .length = 3}, - [98] = {.index = 225, .length = 3}, - [99] = {.index = 228, .length = 1}, - [100] = {.index = 229, .length = 3}, - [102] = {.index = 232, .length = 2}, - [103] = {.index = 234, .length = 4}, - [104] = {.index = 238, .length = 4}, - [105] = {.index = 242, .length = 3}, - [106] = {.index = 245, .length = 3}, - [107] = {.index = 248, .length = 4}, - [108] = {.index = 252, .length = 4}, - [109] = {.index = 256, .length = 4}, - [110] = {.index = 260, .length = 3}, - [111] = {.index = 263, .length = 3}, - [112] = {.index = 266, .length = 3}, - [113] = {.index = 269, .length = 4}, - [114] = {.index = 273, .length = 3}, - [115] = {.index = 276, .length = 3}, - [116] = {.index = 279, .length = 3}, - [117] = {.index = 282, .length = 3}, - [118] = {.index = 285, .length = 4}, - [119] = {.index = 289, .length = 4}, - [120] = {.index = 293, .length = 3}, - [121] = {.index = 296, .length = 4}, - [122] = {.index = 300, .length = 3}, - [123] = {.index = 303, .length = 4}, - [124] = {.index = 307, .length = 3}, - [125] = {.index = 310, .length = 5}, - [126] = {.index = 315, .length = 4}, - [127] = {.index = 319, .length = 5}, - [128] = {.index = 324, .length = 2}, - [129] = {.index = 326, .length = 1}, - [130] = {.index = 327, .length = 2}, - [131] = {.index = 329, .length = 1}, - [134] = {.index = 330, .length = 5}, - [135] = {.index = 335, .length = 3}, - [136] = {.index = 338, .length = 3}, - [137] = {.index = 341, .length = 4}, - [138] = {.index = 345, .length = 5}, - [139] = {.index = 350, .length = 4}, - [140] = {.index = 354, .length = 4}, - [141] = {.index = 358, .length = 3}, - [142] = {.index = 361, .length = 3}, - [143] = {.index = 364, .length = 5}, - [144] = {.index = 369, .length = 4}, - [145] = {.index = 373, .length = 4}, - [146] = {.index = 377, .length = 3}, - [147] = {.index = 377, .length = 3}, - [148] = {.index = 380, .length = 4}, - [149] = {.index = 384, .length = 5}, - [150] = {.index = 389, .length = 5}, - [151] = {.index = 394, .length = 5}, - [152] = {.index = 399, .length = 4}, - [153] = {.index = 403, .length = 4}, - [154] = {.index = 407, .length = 4}, - [155] = {.index = 411, .length = 4}, - [156] = {.index = 415, .length = 4}, - [157] = {.index = 419, .length = 4}, - [158] = {.index = 423, .length = 5}, - [159] = {.index = 428, .length = 4}, - [160] = {.index = 432, .length = 4}, - [161] = {.index = 436, .length = 4}, - [162] = {.index = 440, .length = 1}, - [163] = {.index = 441, .length = 5}, - [164] = {.index = 446, .length = 6}, - [165] = {.index = 452, .length = 2}, - [166] = {.index = 454, .length = 1}, - [167] = {.index = 455, .length = 5}, - [168] = {.index = 460, .length = 3}, - [169] = {.index = 463, .length = 4}, - [170] = {.index = 467, .length = 5}, - [171] = {.index = 472, .length = 5}, - [172] = {.index = 477, .length = 3}, - [173] = {.index = 480, .length = 4}, - [174] = {.index = 484, .length = 5}, - [175] = {.index = 489, .length = 6}, - [176] = {.index = 495, .length = 5}, - [177] = {.index = 500, .length = 5}, - [178] = {.index = 505, .length = 5}, - [179] = {.index = 510, .length = 5}, - [180] = {.index = 515, .length = 5}, - [181] = {.index = 520, .length = 5}, - [182] = {.index = 525, .length = 2}, - [183] = {.index = 527, .length = 2}, - [184] = {.index = 529, .length = 3}, - [185] = {.index = 532, .length = 5}, - [186] = {.index = 537, .length = 6}, - [187] = {.index = 543, .length = 6}, - [188] = {.index = 549, .length = 3}, + [52] = {.index = 98, .length = 1}, + [53] = {.index = 99, .length = 1}, + [54] = {.index = 100, .length = 3}, + [55] = {.index = 103, .length = 2}, + [56] = {.index = 105, .length = 2}, + [57] = {.index = 107, .length = 2}, + [58] = {.index = 109, .length = 2}, + [59] = {.index = 111, .length = 3}, + [60] = {.index = 114, .length = 3}, + [61] = {.index = 117, .length = 3}, + [62] = {.index = 120, .length = 3}, + [63] = {.index = 123, .length = 3}, + [64] = {.index = 126, .length = 3}, + [65] = {.index = 129, .length = 2}, + [66] = {.index = 131, .length = 2}, + [67] = {.index = 133, .length = 2}, + [68] = {.index = 135, .length = 3}, + [69] = {.index = 138, .length = 3}, + [70] = {.index = 141, .length = 2}, + [71] = {.index = 143, .length = 3}, + [72] = {.index = 146, .length = 2}, + [73] = {.index = 148, .length = 3}, + [74] = {.index = 151, .length = 3}, + [75] = {.index = 154, .length = 3}, + [76] = {.index = 157, .length = 2}, + [77] = {.index = 159, .length = 3}, + [78] = {.index = 162, .length = 4}, + [79] = {.index = 166, .length = 3}, + [80] = {.index = 169, .length = 3}, + [81] = {.index = 172, .length = 1}, + [82] = {.index = 173, .length = 3}, + [83] = {.index = 176, .length = 2}, + [84] = {.index = 178, .length = 2}, + [85] = {.index = 178, .length = 2}, + [86] = {.index = 180, .length = 2}, + [87] = {.index = 182, .length = 4}, + [88] = {.index = 186, .length = 2}, + [89] = {.index = 188, .length = 3}, + [90] = {.index = 191, .length = 4}, + [91] = {.index = 195, .length = 2}, + [92] = {.index = 197, .length = 2}, + [93] = {.index = 199, .length = 4}, + [94] = {.index = 203, .length = 4}, + [95] = {.index = 207, .length = 3}, + [96] = {.index = 210, .length = 3}, + [97] = {.index = 213, .length = 3}, + [99] = {.index = 216, .length = 2}, + [100] = {.index = 218, .length = 4}, + [101] = {.index = 222, .length = 4}, + [102] = {.index = 226, .length = 3}, + [103] = {.index = 229, .length = 3}, + [104] = {.index = 232, .length = 4}, + [105] = {.index = 236, .length = 4}, + [106] = {.index = 240, .length = 3}, + [107] = {.index = 243, .length = 3}, + [108] = {.index = 246, .length = 3}, + [109] = {.index = 249, .length = 1}, + [110] = {.index = 250, .length = 2}, + [111] = {.index = 252, .length = 3}, + [112] = {.index = 255, .length = 4}, + [113] = {.index = 259, .length = 3}, + [114] = {.index = 262, .length = 3}, + [115] = {.index = 265, .length = 3}, + [116] = {.index = 268, .length = 3}, + [117] = {.index = 271, .length = 4}, + [118] = {.index = 275, .length = 4}, + [119] = {.index = 279, .length = 3}, + [120] = {.index = 282, .length = 4}, + [121] = {.index = 286, .length = 3}, + [122] = {.index = 289, .length = 4}, + [123] = {.index = 293, .length = 2}, + [124] = {.index = 295, .length = 4}, + [125] = {.index = 299, .length = 3}, + [126] = {.index = 302, .length = 4}, + [127] = {.index = 306, .length = 2}, + [128] = {.index = 308, .length = 1}, + [129] = {.index = 309, .length = 2}, + [130] = {.index = 311, .length = 1}, + [133] = {.index = 312, .length = 5}, + [134] = {.index = 317, .length = 3}, + [135] = {.index = 320, .length = 5}, + [136] = {.index = 325, .length = 4}, + [137] = {.index = 329, .length = 4}, + [138] = {.index = 333, .length = 3}, + [139] = {.index = 336, .length = 3}, + [140] = {.index = 339, .length = 5}, + [141] = {.index = 344, .length = 4}, + [142] = {.index = 348, .length = 4}, + [143] = {.index = 352, .length = 3}, + [144] = {.index = 352, .length = 3}, + [145] = {.index = 355, .length = 5}, + [146] = {.index = 360, .length = 5}, + [147] = {.index = 365, .length = 4}, + [148] = {.index = 369, .length = 4}, + [149] = {.index = 373, .length = 3}, + [150] = {.index = 376, .length = 2}, + [151] = {.index = 378, .length = 4}, + [152] = {.index = 382, .length = 4}, + [153] = {.index = 386, .length = 4}, + [154] = {.index = 390, .length = 4}, + [155] = {.index = 394, .length = 5}, + [156] = {.index = 399, .length = 4}, + [157] = {.index = 403, .length = 4}, + [158] = {.index = 407, .length = 4}, + [159] = {.index = 411, .length = 1}, + [160] = {.index = 412, .length = 4}, + [161] = {.index = 416, .length = 5}, + [162] = {.index = 421, .length = 2}, + [163] = {.index = 423, .length = 1}, + [164] = {.index = 424, .length = 5}, + [165] = {.index = 429, .length = 3}, + [166] = {.index = 432, .length = 5}, + [167] = {.index = 437, .length = 5}, + [168] = {.index = 442, .length = 3}, + [169] = {.index = 445, .length = 6}, + [170] = {.index = 451, .length = 5}, + [171] = {.index = 456, .length = 5}, + [172] = {.index = 461, .length = 3}, + [173] = {.index = 464, .length = 5}, + [174] = {.index = 469, .length = 5}, + [175] = {.index = 474, .length = 5}, + [176] = {.index = 479, .length = 5}, + [177] = {.index = 484, .length = 2}, + [178] = {.index = 486, .length = 2}, + [179] = {.index = 488, .length = 3}, + [180] = {.index = 491, .length = 6}, + [181] = {.index = 497, .length = 6}, + [182] = {.index = 503, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3118,712 +3125,660 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {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}, - [15] = + [14] = {field_argument, 0}, {field_operator, 1}, - [17] = + [16] = {field_name, 1}, - [18] = + [17] = {field_body, 2}, {field_name, 1}, - [20] = + [19] = {field_name, 1}, {field_parameters, 2}, - [22] = + [21] = {field_body, 2}, {field_parameters, 1}, - [24] = + [23] = {field_parameters, 2}, {field_reference_modifier, 1}, - [26] = + [25] = {field_parameters, 1}, {field_return_type, 2, .inherited = true}, - [28] = + [27] = {field_body, 2}, {field_condition, 1}, - [30] = + [29] = {field_end_tag, 2}, {field_identifier, 1}, - [32] = + [31] = {field_parameters, 2}, - [33] = + [32] = {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}, - [38] = + [37] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [41] = + [40] = {field_left, 0}, {field_right, 2}, - [43] = + [42] = {field_name, 2}, {field_scope, 0}, - [45] = + [44] = {field_name, 2}, {field_object, 0}, - [47] = + [46] = {field_attributes, 0}, {field_parameters, 2}, - [49] = + [48] = {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}, - [55] = + [53] = {field_name, 0}, {field_value, 2}, - [57] = + [55] = {field_name, 1}, {field_reference_modifier, 0}, - [59] = + [57] = {field_name, 1}, {field_visibility, 0}, - [61] = + [59] = {field_name, 1}, {field_type, 0}, - [63] = + [61] = {field_attributes, 0}, {field_name, 1}, - [65] = + [63] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 3, .inherited = true}, - [68] = + [66] = {field_name, 2}, {field_parameters, 3}, - {field_reference_modifier, 1}, - [71] = + [68] = {field_body, 3}, {field_parameters, 2}, {field_reference_modifier, 1}, - [74] = + [71] = {field_return_type, 1}, - [75] = + [72] = {field_body, 3}, {field_parameters, 1}, {field_return_type, 2, .inherited = true}, - [78] = + [75] = {field_body, 3}, {field_parameters, 1}, - [80] = + [77] = {field_type, 1}, - [81] = + [78] = {field_attributes, 0, .inherited = true}, - {field_modifier, 0, .inherited = true}, {field_type, 0, .inherited = true}, - [84] = + [80] = {field_body, 3}, {field_name, 1}, - [86] = + [82] = {field_parameters, 2}, {field_reference_modifier, 1}, {field_return_type, 3, .inherited = true}, - [89] = + [85] = {field_type, 1}, {field_value, 3}, - [91] = + [87] = {field_alternative, 0}, - [92] = + [88] = {field_alternative, 3}, {field_body, 2}, {field_condition, 1}, - [95] = + [91] = {field_alternative, 3, .inherited = true}, {field_body, 2}, {field_condition, 1}, - [98] = + [94] = {field_attributes, 1}, - [99] = + [95] = {field_end_tag, 3}, {field_identifier, 1}, {field_value, 2}, - [102] = + [98] = {field_reference_modifier, 0}, - [103] = + [99] = {field_name, 0, .inherited = true}, - [104] = - {field_body, 3}, - {field_modifier, 0}, - {field_name, 2}, - [107] = + [100] = {field_body, 3}, {field_parameters, 2}, {field_static_modifier, 0}, - [110] = + [103] = {field_parameters, 3}, {field_reference_modifier, 2}, - [112] = + [105] = {field_parameters, 2}, {field_return_type, 3, .inherited = true}, - [114] = + [107] = {field_alternative, 3}, {field_condition, 0}, - [116] = + [109] = {field_left, 0}, {field_right, 3}, - [118] = + [111] = {field_arguments, 3}, {field_name, 2}, {field_scope, 0}, - [121] = + [114] = {field_arguments, 3}, {field_name, 2}, {field_object, 0}, - [124] = + [117] = {field_attributes, 0}, {field_body, 3}, {field_parameters, 2}, - [127] = + [120] = {field_attributes, 0}, {field_body, 3}, {field_name, 2}, - [130] = + [123] = {field_attributes, 0}, {field_parameters, 3}, {field_reference_modifier, 2}, - [133] = + [126] = {field_attributes, 0}, {field_parameters, 2}, {field_return_type, 3, .inherited = true}, - [136] = + [129] = {field_attributes, 0}, {field_parameters, 3}, - [138] = + [131] = + {field_body, 3}, + {field_name, 2}, + [133] = {field_name, 2}, {field_reference_modifier, 0}, - [140] = + [135] = {field_name, 2}, {field_readonly, 1}, {field_visibility, 0}, - [143] = + [138] = {field_name, 2}, {field_type, 1}, {field_visibility, 0}, - [146] = + [141] = {field_name, 2}, {field_type, 0}, - [148] = + [143] = {field_name, 2}, {field_reference_modifier, 1}, {field_type, 0}, - [151] = + [146] = {field_attributes, 0}, {field_name, 2}, - [153] = + [148] = {field_attributes, 0}, {field_name, 2}, {field_reference_modifier, 1}, - [156] = + [151] = {field_attributes, 0}, {field_name, 2}, {field_visibility, 1}, - [159] = + [154] = {field_attributes, 0}, {field_name, 2}, {field_type, 1}, - [162] = + [157] = {field_default_value, 2}, {field_name, 0}, - [164] = + [159] = {field_name, 2}, {field_parameters, 3}, - {field_reference_modifier, 1}, {field_return_type, 4, .inherited = true}, - [168] = + [162] = {field_body, 4}, {field_parameters, 2}, {field_reference_modifier, 1}, {field_return_type, 3, .inherited = true}, - [172] = + [166] = {field_body, 4}, {field_parameters, 2}, {field_reference_modifier, 1}, - [175] = + [169] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 3, .inherited = true}, - [178] = - {field_modifier, 0}, + [172] = {field_type, 1, .inherited = true}, - [180] = + [173] = {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, - {field_reference_modifier, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, - [184] = + [176] = {field_attributes, 0}, {field_type, 1, .inherited = true}, - [186] = + [178] = {field_body, 4}, {field_name, 1}, - [188] = + [180] = {field_body, 1}, {field_condition, 3}, - [190] = + [182] = {field_alternative, 3, .inherited = true}, {field_alternative, 4}, {field_body, 2}, {field_condition, 1}, - [194] = + [186] = {field_alternative, 0, .inherited = true}, {field_alternative, 1, .inherited = true}, - [196] = + [188] = {field_end_tag, 4}, {field_identifier, 1}, {field_value, 2}, - [199] = + [191] = {field_end_tag, 4}, {field_identifier, 1}, {field_identifier, 2}, {field_identifier, 3}, - [203] = + [195] = {field_end_tag, 4}, {field_identifier, 2}, - [205] = + [197] = {field_name, 0, .inherited = true}, {field_reference_modifier, 1}, - [207] = - {field_body, 4}, - {field_modifier, 0}, - {field_name, 2}, - [210] = - {field_body, 4}, - {field_modifier, 0}, - {field_modifier, 1}, - {field_name, 3}, - [214] = + [199] = {field_body, 4}, {field_parameters, 3}, {field_reference_modifier, 2}, {field_static_modifier, 0}, - [218] = + [203] = {field_body, 4}, {field_parameters, 2}, {field_return_type, 3, .inherited = true}, {field_static_modifier, 0}, - [222] = + [207] = {field_body, 4}, {field_parameters, 2}, {field_static_modifier, 0}, - [225] = + [210] = {field_parameters, 3}, {field_reference_modifier, 2}, {field_return_type, 4, .inherited = true}, - [228] = - {field_type, 2}, - [229] = + [213] = {field_alternative, 4}, {field_body, 2}, {field_condition, 0}, - [232] = + [216] = {field_name, 3}, {field_object, 0}, - [234] = + [218] = {field_attributes, 0}, {field_body, 4}, {field_parameters, 3}, {field_reference_modifier, 2}, - [238] = + [222] = {field_attributes, 0}, {field_body, 4}, {field_parameters, 2}, {field_return_type, 3, .inherited = true}, - [242] = + [226] = {field_attributes, 0}, {field_body, 4}, {field_parameters, 2}, - [245] = + [229] = {field_attributes, 0}, {field_body, 4}, {field_name, 2}, - [248] = + [232] = {field_attributes, 0}, {field_parameters, 3}, {field_reference_modifier, 2}, {field_return_type, 4, .inherited = true}, - [252] = - {field_attributes, 0}, - {field_body, 4}, - {field_modifier, 1}, - {field_name, 3}, - [256] = + [236] = {field_attributes, 0}, {field_body, 4}, {field_parameters, 3}, {field_static_modifier, 1}, - [260] = + [240] = {field_attributes, 0}, {field_parameters, 4}, {field_reference_modifier, 3}, - [263] = + [243] = {field_attributes, 0}, {field_parameters, 3}, {field_return_type, 4, .inherited = true}, - [266] = + [246] = + {field_attributes, 0}, + {field_body, 4}, + {field_name, 3}, + [249] = + {field_type, 2}, + [250] = + {field_body, 4}, + {field_name, 2}, + [252] = {field_default_value, 3}, {field_name, 1}, {field_reference_modifier, 0}, - [269] = + [255] = {field_name, 3}, {field_readonly, 1}, {field_type, 2}, {field_visibility, 0}, - [273] = + [259] = {field_default_value, 3}, {field_name, 1}, {field_visibility, 0}, - [276] = + [262] = {field_name, 3}, {field_reference_modifier, 1}, {field_type, 0}, - [279] = + [265] = {field_default_value, 3}, {field_name, 1}, {field_type, 0}, - [282] = + [268] = {field_attributes, 0}, {field_name, 3}, {field_reference_modifier, 1}, - [285] = + [271] = {field_attributes, 0}, {field_name, 3}, {field_readonly, 2}, {field_visibility, 1}, - [289] = + [275] = {field_attributes, 0}, {field_name, 3}, {field_type, 2}, {field_visibility, 1}, - [293] = + [279] = {field_attributes, 0}, {field_name, 3}, {field_type, 1}, - [296] = + [282] = {field_attributes, 0}, {field_name, 3}, {field_reference_modifier, 2}, {field_type, 1}, - [300] = + [286] = {field_attributes, 0}, {field_default_value, 3}, {field_name, 1}, - [303] = + [289] = {field_body, 5}, {field_parameters, 2}, {field_reference_modifier, 1}, {field_return_type, 4, .inherited = true}, - [307] = + [293] = {field_attributes, 0}, - {field_modifier, 1}, {field_type, 2, .inherited = true}, - [310] = + [295] = {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}, - [315] = + [299] = {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, - {field_reference_modifier, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, - [319] = + [302] = {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}, - [324] = + [306] = {field_body, 5}, {field_name, 1}, - [326] = + [308] = {field_return_expression, 2}, - [327] = + [309] = {field_conditional_expressions, 0}, {field_return_expression, 2}, - [329] = + [311] = {field_value, 1}, - [330] = + [312] = {field_end_tag, 5}, {field_identifier, 1}, {field_identifier, 2}, {field_identifier, 3}, {field_value, 4}, - [335] = + [317] = {field_end_tag, 5}, {field_identifier, 2}, {field_value, 4}, - [338] = - {field_body, 5}, - {field_modifier, 0}, - {field_name, 2}, - [341] = - {field_body, 5}, - {field_modifier, 0}, - {field_modifier, 1}, - {field_name, 3}, - [345] = + [320] = {field_body, 5}, {field_parameters, 3}, {field_reference_modifier, 2}, {field_return_type, 4, .inherited = true}, {field_static_modifier, 0}, - [350] = + [325] = {field_body, 5}, {field_parameters, 3}, {field_reference_modifier, 2}, {field_static_modifier, 0}, - [354] = + [329] = {field_body, 5}, {field_parameters, 2}, {field_return_type, 4, .inherited = true}, {field_static_modifier, 0}, - [358] = + [333] = {field_arguments, 5}, {field_name, 3}, {field_scope, 0}, - [361] = + [336] = {field_arguments, 5}, {field_name, 3}, {field_object, 0}, - [364] = + [339] = {field_attributes, 0}, {field_body, 5}, {field_parameters, 3}, {field_reference_modifier, 2}, {field_return_type, 4, .inherited = true}, - [369] = + [344] = {field_attributes, 0}, {field_body, 5}, {field_parameters, 3}, {field_reference_modifier, 2}, - [373] = + [348] = {field_attributes, 0}, {field_body, 5}, {field_parameters, 2}, {field_return_type, 4, .inherited = true}, - [377] = + [352] = {field_attributes, 0}, {field_body, 5}, {field_name, 2}, - [380] = - {field_attributes, 0}, - {field_body, 5}, - {field_modifier, 1}, - {field_name, 3}, - [384] = - {field_attributes, 0}, - {field_body, 5}, - {field_modifier, 1}, - {field_modifier, 2}, - {field_name, 4}, - [389] = + [355] = {field_attributes, 0}, {field_body, 5}, {field_parameters, 4}, {field_reference_modifier, 3}, {field_static_modifier, 1}, - [394] = + [360] = {field_attributes, 0}, {field_body, 5}, {field_parameters, 3}, {field_return_type, 4, .inherited = true}, {field_static_modifier, 1}, - [399] = + [365] = {field_attributes, 0}, {field_body, 5}, {field_parameters, 3}, {field_static_modifier, 1}, - [403] = + [369] = {field_attributes, 0}, {field_parameters, 4}, {field_reference_modifier, 3}, {field_return_type, 5, .inherited = true}, - [407] = + [373] = + {field_attributes, 0}, + {field_body, 5}, + {field_name, 3}, + [376] = + {field_body, 5}, + {field_name, 2}, + [378] = {field_default_value, 4}, {field_name, 2}, {field_readonly, 1}, {field_visibility, 0}, - [411] = + [382] = {field_default_value, 4}, {field_name, 2}, {field_type, 1}, {field_visibility, 0}, - [415] = + [386] = {field_default_value, 4}, {field_name, 2}, {field_reference_modifier, 1}, {field_type, 0}, - [419] = + [390] = {field_attributes, 0}, {field_default_value, 4}, {field_name, 2}, {field_reference_modifier, 1}, - [423] = + [394] = {field_attributes, 0}, {field_name, 4}, {field_readonly, 2}, {field_type, 3}, {field_visibility, 1}, - [428] = + [399] = {field_attributes, 0}, {field_default_value, 4}, {field_name, 2}, {field_visibility, 1}, - [432] = + [403] = {field_attributes, 0}, {field_name, 4}, {field_reference_modifier, 2}, {field_type, 1}, - [436] = + [407] = {field_attributes, 0}, {field_default_value, 4}, {field_name, 2}, {field_type, 1}, - [440] = + [411] = {field_attributes, 0}, - [441] = + [412] = {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}, - [446] = + [416] = {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}, - [452] = + [421] = {field_body, 4}, {field_type, 2}, - [454] = + [423] = {field_body, 6}, - [455] = + [424] = {field_end_tag, 6}, {field_identifier, 1}, {field_identifier, 2}, {field_identifier, 3}, {field_value, 4}, - [460] = + [429] = {field_end_tag, 6}, {field_identifier, 2}, {field_value, 4}, - [463] = - {field_body, 6}, - {field_modifier, 0}, - {field_modifier, 1}, - {field_name, 3}, - [467] = + [432] = {field_body, 6}, {field_parameters, 3}, {field_reference_modifier, 2}, {field_return_type, 5, .inherited = true}, {field_static_modifier, 0}, - [472] = + [437] = {field_attributes, 0}, {field_body, 6}, {field_parameters, 3}, {field_reference_modifier, 2}, {field_return_type, 5, .inherited = true}, - [477] = + [442] = {field_attributes, 0}, {field_body, 6}, {field_name, 2}, - [480] = - {field_attributes, 0}, - {field_body, 6}, - {field_modifier, 1}, - {field_name, 3}, - [484] = - {field_attributes, 0}, - {field_body, 6}, - {field_modifier, 1}, - {field_modifier, 2}, - {field_name, 4}, - [489] = + [445] = {field_attributes, 0}, {field_body, 6}, {field_parameters, 4}, {field_reference_modifier, 3}, {field_return_type, 5, .inherited = true}, {field_static_modifier, 1}, - [495] = + [451] = {field_attributes, 0}, {field_body, 6}, {field_parameters, 4}, {field_reference_modifier, 3}, {field_static_modifier, 1}, - [500] = + [456] = {field_attributes, 0}, {field_body, 6}, {field_parameters, 3}, {field_return_type, 5, .inherited = true}, {field_static_modifier, 1}, - [505] = + [461] = + {field_attributes, 0}, + {field_body, 6}, + {field_name, 3}, + [464] = {field_default_value, 5}, {field_name, 3}, {field_readonly, 1}, {field_type, 2}, {field_visibility, 0}, - [510] = + [469] = {field_attributes, 0}, {field_default_value, 5}, {field_name, 3}, {field_readonly, 2}, {field_visibility, 1}, - [515] = + [474] = {field_attributes, 0}, {field_default_value, 5}, {field_name, 3}, {field_type, 2}, {field_visibility, 1}, - [520] = + [479] = {field_attributes, 0}, {field_default_value, 5}, {field_name, 3}, {field_reference_modifier, 2}, {field_type, 1}, - [525] = + [484] = {field_attributes, 0}, {field_type, 2}, - [527] = + [486] = {field_name, 1}, {field_value, 3}, - [529] = + [488] = {field_body, 5}, {field_name, 3}, {field_type, 2}, - [532] = - {field_attributes, 0}, - {field_body, 7}, - {field_modifier, 1}, - {field_modifier, 2}, - {field_name, 4}, - [537] = + [491] = {field_attributes, 0}, {field_body, 7}, {field_parameters, 4}, {field_reference_modifier, 3}, {field_return_type, 6, .inherited = true}, {field_static_modifier, 1}, - [543] = + [497] = {field_attributes, 0}, {field_default_value, 6}, {field_name, 4}, {field_readonly, 2}, {field_type, 3}, {field_visibility, 1}, - [549] = + [503] = {field_attributes, 0}, {field_name, 2}, {field_value, 4}, @@ -3849,29 +3804,29 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [84] = { [3] = sym_primitive_type, }, - [101] = { + [98] = { [3] = sym_name, }, - [128] = { + [127] = { [3] = sym_primitive_type, }, - [132] = { + [131] = { [3] = sym_list_literal, }, - [133] = { + [132] = { [4] = sym_list_literal, }, - [146] = { + [143] = { [4] = sym_primitive_type, }, - [172] = { + [168] = { [4] = sym_primitive_type, }, }; static const uint16_t ts_non_terminal_alias_map[] = { - sym__expression, 2, - sym__expression, + sym_expression, 2, + sym_expression, sym_name, sym__list_destructing, 2, sym__list_destructing, @@ -3890,82 +3845,82 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4] = 4, [5] = 5, [6] = 6, - [7] = 7, - [8] = 2, + [7] = 2, + [8] = 8, [9] = 9, - [10] = 7, - [11] = 9, + [10] = 9, + [11] = 8, [12] = 12, [13] = 13, - [14] = 12, - [15] = 15, - [16] = 12, + [14] = 14, + [15] = 12, + [16] = 16, [17] = 12, - [18] = 18, + [18] = 12, [19] = 19, [20] = 20, [21] = 21, - [22] = 22, + [22] = 21, [23] = 23, [24] = 24, [25] = 25, [26] = 26, [27] = 27, - [28] = 21, + [28] = 28, [29] = 29, [30] = 30, - [31] = 22, - [32] = 32, - [33] = 33, - [34] = 34, - [35] = 29, - [36] = 27, - [37] = 34, - [38] = 32, - [39] = 20, + [31] = 28, + [32] = 25, + [33] = 20, + [34] = 29, + [35] = 30, + [36] = 36, + [37] = 26, + [38] = 27, + [39] = 39, [40] = 40, - [41] = 41, - [42] = 21, - [43] = 24, - [44] = 19, - [45] = 33, - [46] = 24, - [47] = 21, - [48] = 19, - [49] = 26, - [50] = 50, - [51] = 23, - [52] = 22, - [53] = 40, - [54] = 22, - [55] = 50, - [56] = 33, - [57] = 40, - [58] = 40, - [59] = 24, - [60] = 33, - [61] = 50, - [62] = 26, + [41] = 30, + [42] = 42, + [43] = 19, + [44] = 44, + [45] = 45, + [46] = 42, + [47] = 36, + [48] = 20, + [49] = 42, + [50] = 36, + [51] = 30, + [52] = 52, + [53] = 39, + [54] = 40, + [55] = 52, + [56] = 42, + [57] = 26, + [58] = 44, + [59] = 27, + [60] = 45, + [61] = 52, + [62] = 21, [63] = 26, - [64] = 29, - [65] = 65, - [66] = 65, - [67] = 30, - [68] = 29, - [69] = 19, - [70] = 70, - [71] = 50, - [72] = 41, - [73] = 70, - [74] = 25, + [64] = 25, + [65] = 20, + [66] = 66, + [67] = 66, + [68] = 36, + [69] = 52, + [70] = 25, + [71] = 23, + [72] = 21, + [73] = 27, + [74] = 24, [75] = 75, - [76] = 75, - [77] = 77, - [78] = 77, - [79] = 75, - [80] = 75, - [81] = 81, - [82] = 81, + [76] = 76, + [77] = 75, + [78] = 75, + [79] = 79, + [80] = 76, + [81] = 75, + [82] = 79, [83] = 83, [84] = 83, [85] = 83, @@ -3976,137 +3931,137 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [90] = 89, [91] = 87, [92] = 87, - [93] = 89, - [94] = 89, + [93] = 87, + [94] = 87, [95] = 89, - [96] = 89, - [97] = 87, - [98] = 98, + [96] = 87, + [97] = 89, + [98] = 89, [99] = 99, - [100] = 98, - [101] = 98, + [100] = 99, + [101] = 99, [102] = 99, [103] = 99, - [104] = 99, - [105] = 98, - [106] = 98, - [107] = 98, - [108] = 98, - [109] = 98, + [104] = 104, + [105] = 104, + [106] = 104, + [107] = 104, + [108] = 99, + [109] = 99, [110] = 99, - [111] = 111, + [111] = 104, [112] = 112, - [113] = 111, - [114] = 111, - [115] = 115, + [113] = 113, + [114] = 114, + [115] = 113, [116] = 112, - [117] = 112, - [118] = 111, - [119] = 111, - [120] = 111, - [121] = 111, - [122] = 122, + [117] = 113, + [118] = 113, + [119] = 112, + [120] = 120, + [121] = 112, + [122] = 112, [123] = 112, - [124] = 122, - [125] = 111, - [126] = 115, + [124] = 120, + [125] = 114, + [126] = 113, [127] = 112, - [128] = 112, - [129] = 112, - [130] = 112, - [131] = 131, + [128] = 113, + [129] = 113, + [130] = 113, + [131] = 112, [132] = 132, [133] = 133, [134] = 134, - [135] = 133, + [135] = 135, [136] = 136, - [137] = 137, - [138] = 137, - [139] = 136, - [140] = 134, + [137] = 134, + [138] = 136, + [139] = 139, + [140] = 139, [141] = 132, - [142] = 142, + [142] = 133, [143] = 143, [144] = 144, [145] = 145, [146] = 146, - [147] = 147, - [148] = 143, - [149] = 147, - [150] = 145, - [151] = 142, - [152] = 152, + [147] = 143, + [148] = 148, + [149] = 145, + [150] = 144, + [151] = 151, + [152] = 146, [153] = 153, [154] = 154, [155] = 155, [156] = 156, [157] = 157, [158] = 158, - [159] = 158, - [160] = 160, - [161] = 158, - [162] = 155, - [163] = 163, - [164] = 155, - [165] = 160, - [166] = 156, - [167] = 156, + [159] = 159, + [160] = 159, + [161] = 156, + [162] = 162, + [163] = 156, + [164] = 162, + [165] = 158, + [166] = 162, + [167] = 167, [168] = 168, - [169] = 163, - [170] = 157, - [171] = 156, - [172] = 155, - [173] = 160, - [174] = 168, + [169] = 157, + [170] = 156, + [171] = 167, + [172] = 157, + [173] = 168, + [174] = 158, [175] = 157, - [176] = 168, + [176] = 159, [177] = 158, - [178] = 163, - [179] = 160, - [180] = 163, + [178] = 159, + [179] = 167, + [180] = 168, [181] = 168, - [182] = 157, - [183] = 183, + [182] = 167, + [183] = 162, [184] = 184, [185] = 185, [186] = 186, [187] = 187, - [188] = 183, - [189] = 183, + [188] = 188, + [189] = 189, [190] = 190, - [191] = 186, - [192] = 183, - [193] = 193, - [194] = 184, - [195] = 195, - [196] = 183, - [197] = 185, + [191] = 184, + [192] = 187, + [193] = 190, + [194] = 190, + [195] = 190, + [196] = 196, + [197] = 189, [198] = 198, - [199] = 193, - [200] = 183, - [201] = 201, + [199] = 196, + [200] = 190, + [201] = 190, [202] = 202, [203] = 203, [204] = 204, [205] = 205, - [206] = 202, - [207] = 201, - [208] = 208, - [209] = 205, - [210] = 208, + [206] = 206, + [207] = 203, + [208] = 203, + [209] = 209, + [210] = 203, [211] = 205, - [212] = 201, - [213] = 208, - [214] = 201, - [215] = 204, - [216] = 204, - [217] = 205, - [218] = 205, - [219] = 219, + [212] = 206, + [213] = 204, + [214] = 205, + [215] = 203, + [216] = 216, + [217] = 217, + [218] = 204, + [219] = 206, [220] = 205, [221] = 204, - [222] = 222, - [223] = 223, + [222] = 203, + [223] = 217, [224] = 224, [225] = 225, [226] = 226, @@ -4115,17 +4070,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [229] = 229, [230] = 230, [231] = 231, - [232] = 226, - [233] = 229, + [232] = 232, + [233] = 233, [234] = 234, [235] = 235, [236] = 236, [237] = 237, - [238] = 224, + [238] = 238, [239] = 239, [240] = 240, [241] = 241, - [242] = 223, + [242] = 242, [243] = 243, [244] = 244, [245] = 245, @@ -4137,181 +4092,181 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [251] = 251, [252] = 252, [253] = 253, - [254] = 239, - [255] = 237, + [254] = 254, + [255] = 227, [256] = 256, - [257] = 253, - [258] = 227, - [259] = 259, + [257] = 257, + [258] = 258, + [259] = 229, [260] = 260, [261] = 261, - [262] = 228, - [263] = 229, + [262] = 262, + [263] = 227, [264] = 264, - [265] = 265, - [266] = 250, - [267] = 231, - [268] = 268, - [269] = 226, - [270] = 229, - [271] = 225, - [272] = 231, - [273] = 235, - [274] = 252, - [275] = 226, - [276] = 251, - [277] = 277, - [278] = 278, - [279] = 279, + [265] = 260, + [266] = 266, + [267] = 267, + [268] = 232, + [269] = 269, + [270] = 261, + [271] = 271, + [272] = 264, + [273] = 227, + [274] = 266, + [275] = 275, + [276] = 276, + [277] = 262, + [278] = 264, + [279] = 229, [280] = 280, - [281] = 260, - [282] = 278, - [283] = 229, - [284] = 250, - [285] = 285, - [286] = 229, - [287] = 231, - [288] = 260, - [289] = 226, - [290] = 277, - [291] = 260, - [292] = 229, - [293] = 293, + [281] = 262, + [282] = 282, + [283] = 227, + [284] = 264, + [285] = 262, + [286] = 227, + [287] = 287, + [288] = 264, + [289] = 262, + [290] = 290, + [291] = 257, + [292] = 226, + [293] = 243, [294] = 294, [295] = 295, - [296] = 251, - [297] = 294, - [298] = 298, - [299] = 231, + [296] = 253, + [297] = 252, + [298] = 261, + [299] = 251, [300] = 300, - [301] = 226, + [301] = 250, [302] = 249, - [303] = 277, - [304] = 277, - [305] = 226, - [306] = 260, - [307] = 229, - [308] = 231, - [309] = 248, - [310] = 247, - [311] = 246, - [312] = 228, - [313] = 245, - [314] = 314, - [315] = 244, - [316] = 235, - [317] = 243, - [318] = 318, - [319] = 294, - [320] = 225, - [321] = 295, - [322] = 223, - [323] = 323, - [324] = 324, - [325] = 300, - [326] = 241, - [327] = 240, - [328] = 294, - [329] = 280, - [330] = 324, - [331] = 331, - [332] = 285, - [333] = 331, - [334] = 334, + [303] = 248, + [304] = 257, + [305] = 262, + [306] = 247, + [307] = 253, + [308] = 252, + [309] = 251, + [310] = 250, + [311] = 249, + [312] = 246, + [313] = 248, + [314] = 245, + [315] = 247, + [316] = 246, + [317] = 245, + [318] = 244, + [319] = 319, + [320] = 244, + [321] = 224, + [322] = 242, + [323] = 241, + [324] = 240, + [325] = 239, + [326] = 326, + [327] = 224, + [328] = 242, + [329] = 290, + [330] = 238, + [331] = 294, + [332] = 295, + [333] = 241, + [334] = 300, [335] = 236, - [336] = 229, - [337] = 334, + [336] = 240, + [337] = 337, [338] = 338, - [339] = 323, - [340] = 340, - [341] = 260, - [342] = 323, - [343] = 278, - [344] = 280, - [345] = 224, - [346] = 268, - [347] = 240, - [348] = 280, + [339] = 239, + [340] = 238, + [341] = 341, + [342] = 236, + [343] = 260, + [344] = 256, + [345] = 341, + [346] = 256, + [347] = 236, + [348] = 225, [349] = 338, - [350] = 350, - [351] = 241, - [352] = 352, - [353] = 353, - [354] = 231, - [355] = 355, - [356] = 223, - [357] = 253, - [358] = 243, - [359] = 227, - [360] = 277, - [361] = 239, - [362] = 237, - [363] = 239, - [364] = 253, - [365] = 252, - [366] = 226, - [367] = 231, - [368] = 251, - [369] = 226, - [370] = 231, - [371] = 250, - [372] = 249, - [373] = 237, - [374] = 248, - [375] = 375, - [376] = 376, - [377] = 277, - [378] = 247, - [379] = 278, - [380] = 277, - [381] = 226, - [382] = 231, - [383] = 383, - [384] = 228, - [385] = 246, - [386] = 235, - [387] = 245, - [388] = 244, - [389] = 243, - [390] = 236, - [391] = 338, - [392] = 334, - [393] = 331, - [394] = 236, - [395] = 268, - [396] = 324, - [397] = 397, - [398] = 285, - [399] = 241, - [400] = 240, - [401] = 224, - [402] = 323, - [403] = 300, - [404] = 268, - [405] = 338, - [406] = 334, - [407] = 244, - [408] = 245, - [409] = 331, - [410] = 246, - [411] = 411, - [412] = 247, - [413] = 227, - [414] = 414, - [415] = 324, - [416] = 300, - [417] = 248, - [418] = 295, - [419] = 249, - [420] = 295, - [421] = 252, - [422] = 422, + [350] = 337, + [351] = 238, + [352] = 239, + [353] = 240, + [354] = 264, + [355] = 300, + [356] = 241, + [357] = 256, + [358] = 242, + [359] = 224, + [360] = 295, + [361] = 294, + [362] = 290, + [363] = 244, + [364] = 245, + [365] = 246, + [366] = 247, + [367] = 248, + [368] = 368, + [369] = 249, + [370] = 250, + [371] = 251, + [372] = 252, + [373] = 229, + [374] = 232, + [375] = 253, + [376] = 257, + [377] = 227, + [378] = 271, + [379] = 264, + [380] = 262, + [381] = 264, + [382] = 261, + [383] = 261, + [384] = 262, + [385] = 229, + [386] = 261, + [387] = 227, + [388] = 226, + [389] = 266, + [390] = 390, + [391] = 262, + [392] = 390, + [393] = 264, + [394] = 262, + [395] = 337, + [396] = 243, + [397] = 338, + [398] = 243, + [399] = 290, + [400] = 400, + [401] = 390, + [402] = 294, + [403] = 403, + [404] = 295, + [405] = 405, + [406] = 264, + [407] = 300, + [408] = 408, + [409] = 225, + [410] = 337, + [411] = 232, + [412] = 338, + [413] = 225, + [414] = 341, + [415] = 390, + [416] = 341, + [417] = 271, + [418] = 261, + [419] = 260, + [420] = 229, + [421] = 266, + [422] = 227, [423] = 423, [424] = 424, - [425] = 424, + [425] = 425, [426] = 426, [427] = 426, - [428] = 428, + [428] = 425, [429] = 429, [430] = 430, [431] = 431, @@ -4333,14 +4288,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [447] = 447, [448] = 448, [449] = 449, - [450] = 431, + [450] = 438, [451] = 451, [452] = 452, [453] = 453, [454] = 454, [455] = 455, [456] = 456, - [457] = 433, + [457] = 457, [458] = 458, [459] = 459, [460] = 460, @@ -4370,7 +4325,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [484] = 484, [485] = 485, [486] = 486, - [487] = 487, + [487] = 449, [488] = 488, [489] = 489, [490] = 490, @@ -4384,11 +4339,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [498] = 498, [499] = 499, [500] = 500, - [501] = 453, + [501] = 429, [502] = 502, [503] = 503, [504] = 504, - [505] = 505, + [505] = 449, [506] = 506, [507] = 507, [508] = 508, @@ -4400,7 +4355,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [514] = 514, [515] = 515, [516] = 516, - [517] = 461, + [517] = 517, [518] = 518, [519] = 519, [520] = 520, @@ -4410,11 +4365,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [524] = 524, [525] = 525, [526] = 526, - [527] = 527, + [527] = 437, [528] = 528, [529] = 529, [530] = 530, - [531] = 531, + [531] = 449, [532] = 532, [533] = 533, [534] = 534, @@ -4425,10 +4380,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [539] = 539, [540] = 540, [541] = 541, - [542] = 542, + [542] = 432, [543] = 543, [544] = 544, - [545] = 545, + [545] = 449, [546] = 546, [547] = 547, [548] = 548, @@ -4445,18 +4400,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [559] = 559, [560] = 560, [561] = 561, - [562] = 562, - [563] = 563, - [564] = 564, - [565] = 564, - [566] = 564, - [567] = 564, - [568] = 564, + [562] = 561, + [563] = 561, + [564] = 561, + [565] = 565, + [566] = 566, + [567] = 567, + [568] = 568, [569] = 569, [570] = 570, - [571] = 570, - [572] = 570, - [573] = 570, + [571] = 571, + [572] = 572, + [573] = 573, [574] = 574, [575] = 575, [576] = 576, @@ -4473,346 +4428,346 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [587] = 587, [588] = 588, [589] = 589, - [590] = 590, - [591] = 591, - [592] = 592, - [593] = 593, + [590] = 588, + [591] = 573, + [592] = 588, + [593] = 572, [594] = 594, - [595] = 595, - [596] = 596, - [597] = 597, - [598] = 598, - [599] = 597, - [600] = 600, - [601] = 581, - [602] = 581, - [603] = 578, - [604] = 597, - [605] = 605, - [606] = 580, - [607] = 583, - [608] = 579, - [609] = 582, - [610] = 595, - [611] = 593, - [612] = 590, - [613] = 597, - [614] = 585, - [615] = 577, - [616] = 589, - [617] = 584, - [618] = 592, - [619] = 594, - [620] = 591, - [621] = 621, - [622] = 586, - [623] = 588, - [624] = 574, - [625] = 587, - [626] = 576, - [627] = 605, - [628] = 575, - [629] = 629, - [630] = 629, - [631] = 596, + [595] = 570, + [596] = 571, + [597] = 571, + [598] = 574, + [599] = 599, + [600] = 569, + [601] = 577, + [602] = 579, + [603] = 566, + [604] = 583, + [605] = 586, + [606] = 588, + [607] = 607, + [608] = 608, + [609] = 608, + [610] = 578, + [611] = 585, + [612] = 568, + [613] = 576, + [614] = 565, + [615] = 587, + [616] = 582, + [617] = 599, + [618] = 581, + [619] = 580, + [620] = 575, + [621] = 567, + [622] = 584, + [623] = 599, + [624] = 589, + [625] = 589, + [626] = 626, + [627] = 627, + [628] = 628, + [629] = 628, + [630] = 630, + [631] = 599, [632] = 632, [633] = 633, - [634] = 598, - [635] = 605, - [636] = 598, + [634] = 634, + [635] = 635, + [636] = 636, [637] = 637, [638] = 638, - [639] = 638, - [640] = 605, + [639] = 577, + [640] = 569, [641] = 641, - [642] = 642, - [643] = 643, - [644] = 644, - [645] = 645, - [646] = 580, - [647] = 645, - [648] = 648, - [649] = 649, - [650] = 583, - [651] = 579, + [642] = 572, + [643] = 638, + [644] = 570, + [645] = 573, + [646] = 574, + [647] = 647, + [648] = 581, + [649] = 585, + [650] = 577, + [651] = 651, [652] = 652, - [653] = 582, - [654] = 590, - [655] = 655, - [656] = 578, - [657] = 657, - [658] = 596, - [659] = 588, - [660] = 587, - [661] = 576, - [662] = 595, - [663] = 591, - [664] = 586, - [665] = 590, - [666] = 574, - [667] = 593, - [668] = 668, - [669] = 585, - [670] = 589, - [671] = 671, - [672] = 584, - [673] = 575, - [674] = 671, - [675] = 592, - [676] = 577, - [677] = 657, - [678] = 594, - [679] = 679, - [680] = 680, + [653] = 576, + [654] = 566, + [655] = 582, + [656] = 586, + [657] = 651, + [658] = 565, + [659] = 583, + [660] = 568, + [661] = 584, + [662] = 579, + [663] = 663, + [664] = 652, + [665] = 580, + [666] = 666, + [667] = 567, + [668] = 575, + [669] = 578, + [670] = 587, + [671] = 572, + [672] = 672, + [673] = 569, + [674] = 572, + [675] = 570, + [676] = 676, + [677] = 677, + [678] = 678, + [679] = 678, + [680] = 574, [681] = 681, - [682] = 682, - [683] = 578, + [682] = 573, + [683] = 683, [684] = 684, - [685] = 685, - [686] = 686, + [685] = 677, + [686] = 681, [687] = 687, - [688] = 579, - [689] = 583, - [690] = 582, - [691] = 691, + [688] = 683, + [689] = 689, + [690] = 641, + [691] = 570, [692] = 692, - [693] = 693, - [694] = 580, + [693] = 572, + [694] = 570, [695] = 695, - [696] = 580, - [697] = 697, - [698] = 679, + [696] = 696, + [697] = 569, + [698] = 569, [699] = 699, - [700] = 649, - [701] = 582, + [700] = 574, + [701] = 574, [702] = 702, - [703] = 583, + [703] = 703, [704] = 704, - [705] = 578, - [706] = 582, - [707] = 579, + [705] = 573, + [706] = 573, + [707] = 707, [708] = 708, - [709] = 709, - [710] = 668, - [711] = 580, - [712] = 686, - [713] = 583, - [714] = 699, - [715] = 578, - [716] = 697, - [717] = 579, + [709] = 672, + [710] = 663, + [711] = 711, + [712] = 666, + [713] = 713, + [714] = 714, + [715] = 715, + [716] = 716, + [717] = 581, [718] = 718, - [719] = 680, - [720] = 720, - [721] = 596, - [722] = 574, + [719] = 584, + [720] = 583, + [721] = 585, + [722] = 722, [723] = 575, - [724] = 724, + [724] = 576, [725] = 725, - [726] = 569, - [727] = 577, + [726] = 726, + [727] = 578, [728] = 728, [729] = 729, - [730] = 584, - [731] = 731, + [730] = 579, + [731] = 582, [732] = 732, - [733] = 733, + [733] = 586, [734] = 734, - [735] = 735, + [735] = 587, [736] = 736, [737] = 737, [738] = 738, [739] = 739, - [740] = 740, + [740] = 560, [741] = 741, - [742] = 742, - [743] = 743, - [744] = 576, - [745] = 745, - [746] = 594, + [742] = 580, + [743] = 568, + [744] = 566, + [745] = 567, + [746] = 746, [747] = 747, [748] = 748, - [749] = 595, - [750] = 750, + [749] = 749, + [750] = 565, [751] = 751, - [752] = 589, + [752] = 752, [753] = 753, - [754] = 593, - [755] = 585, - [756] = 591, - [757] = 588, + [754] = 754, + [755] = 755, + [756] = 637, + [757] = 569, [758] = 758, - [759] = 759, - [760] = 592, - [761] = 587, - [762] = 586, - [763] = 655, - [764] = 764, - [765] = 579, - [766] = 652, - [767] = 767, - [768] = 645, - [769] = 433, - [770] = 580, + [759] = 570, + [760] = 760, + [761] = 761, + [762] = 762, + [763] = 429, + [764] = 638, + [765] = 636, + [766] = 573, + [767] = 572, + [768] = 432, + [769] = 708, + [770] = 574, [771] = 771, - [772] = 772, - [773] = 645, - [774] = 708, - [775] = 692, - [776] = 431, - [777] = 648, - [778] = 583, - [779] = 582, - [780] = 649, - [781] = 578, - [782] = 782, - [783] = 594, - [784] = 591, - [785] = 574, - [786] = 585, - [787] = 584, - [788] = 588, - [789] = 595, - [790] = 577, - [791] = 791, - [792] = 792, - [793] = 589, - [794] = 596, - [795] = 575, - [796] = 593, - [797] = 586, - [798] = 587, - [799] = 576, - [800] = 800, - [801] = 592, - [802] = 792, - [803] = 590, - [804] = 578, - [805] = 805, - [806] = 806, - [807] = 806, - [808] = 702, - [809] = 580, - [810] = 805, - [811] = 686, - [812] = 461, + [772] = 641, + [773] = 638, + [774] = 711, + [775] = 647, + [776] = 776, + [777] = 777, + [778] = 778, + [779] = 777, + [780] = 780, + [781] = 586, + [782] = 582, + [783] = 783, + [784] = 579, + [785] = 578, + [786] = 576, + [787] = 567, + [788] = 585, + [789] = 568, + [790] = 566, + [791] = 583, + [792] = 580, + [793] = 780, + [794] = 587, + [795] = 565, + [796] = 783, + [797] = 575, + [798] = 577, + [799] = 584, + [800] = 581, + [801] = 633, + [802] = 570, + [803] = 803, + [804] = 804, + [805] = 663, + [806] = 666, + [807] = 803, + [808] = 666, + [809] = 572, + [810] = 684, + [811] = 577, + [812] = 573, [813] = 813, - [814] = 679, - [815] = 815, - [816] = 709, - [817] = 817, - [818] = 582, - [819] = 817, - [820] = 815, - [821] = 578, - [822] = 668, - [823] = 695, - [824] = 590, - [825] = 691, - [826] = 813, - [827] = 693, - [828] = 687, - [829] = 649, - [830] = 680, - [831] = 806, - [832] = 642, - [833] = 806, - [834] = 583, - [835] = 684, - [836] = 682, - [837] = 668, - [838] = 579, - [839] = 680, - [840] = 580, - [841] = 806, - [842] = 582, - [843] = 583, - [844] = 817, - [845] = 580, - [846] = 578, - [847] = 582, - [848] = 708, - [849] = 583, - [850] = 579, - [851] = 453, - [852] = 686, - [853] = 853, - [854] = 679, - [855] = 579, - [856] = 692, - [857] = 584, - [858] = 574, - [859] = 745, - [860] = 592, - [861] = 759, - [862] = 751, - [863] = 594, - [864] = 589, - [865] = 577, - [866] = 575, - [867] = 593, - [868] = 740, - [869] = 742, - [870] = 732, - [871] = 586, - [872] = 750, - [873] = 724, - [874] = 596, - [875] = 569, - [876] = 739, - [877] = 738, - [878] = 737, - [879] = 736, - [880] = 734, - [881] = 728, - [882] = 733, - [883] = 708, - [884] = 585, - [885] = 735, - [886] = 595, - [887] = 576, - [888] = 758, - [889] = 591, - [890] = 708, - [891] = 725, - [892] = 747, - [893] = 587, - [894] = 729, - [895] = 748, - [896] = 731, - [897] = 588, - [898] = 741, - [899] = 771, - [900] = 767, - [901] = 772, - [902] = 692, - [903] = 782, + [814] = 574, + [815] = 641, + [816] = 569, + [817] = 572, + [818] = 711, + [819] = 819, + [820] = 570, + [821] = 569, + [822] = 437, + [823] = 683, + [824] = 438, + [825] = 699, + [826] = 692, + [827] = 702, + [828] = 681, + [829] = 703, + [830] = 704, + [831] = 574, + [832] = 573, + [833] = 819, + [834] = 678, + [835] = 707, + [836] = 813, + [837] = 708, + [838] = 813, + [839] = 819, + [840] = 683, + [841] = 689, + [842] = 819, + [843] = 804, + [844] = 678, + [845] = 845, + [846] = 570, + [847] = 663, + [848] = 681, + [849] = 572, + [850] = 569, + [851] = 574, + [852] = 573, + [853] = 819, + [854] = 845, + [855] = 855, + [856] = 748, + [857] = 576, + [858] = 737, + [859] = 741, + [860] = 560, + [861] = 734, + [862] = 746, + [863] = 752, + [864] = 714, + [865] = 753, + [866] = 754, + [867] = 736, + [868] = 755, + [869] = 747, + [870] = 729, + [871] = 726, + [872] = 708, + [873] = 581, + [874] = 584, + [875] = 583, + [876] = 568, + [877] = 716, + [878] = 566, + [879] = 732, + [880] = 578, + [881] = 579, + [882] = 582, + [883] = 718, + [884] = 738, + [885] = 728, + [886] = 567, + [887] = 585, + [888] = 586, + [889] = 565, + [890] = 587, + [891] = 575, + [892] = 715, + [893] = 751, + [894] = 580, + [895] = 749, + [896] = 708, + [897] = 722, + [898] = 758, + [899] = 761, + [900] = 760, + [901] = 771, + [902] = 711, + [903] = 903, [904] = 904, - [905] = 905, - [906] = 576, - [907] = 907, + [905] = 566, + [906] = 906, + [907] = 567, [908] = 908, [909] = 909, [910] = 910, [911] = 911, [912] = 912, - [913] = 913, + [913] = 565, [914] = 914, [915] = 915, [916] = 916, [917] = 917, [918] = 918, - [919] = 575, + [919] = 919, [920] = 920, - [921] = 921, + [921] = 568, [922] = 922, [923] = 923, [924] = 924, [925] = 925, [926] = 926, - [927] = 577, + [927] = 927, [928] = 928, - [929] = 574, + [929] = 929, [930] = 930, [931] = 931, [932] = 932, @@ -4852,10 +4807,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [966] = 966, [967] = 967, [968] = 968, - [969] = 461, - [970] = 453, - [971] = 971, - [972] = 972, + [969] = 969, + [970] = 970, + [971] = 437, + [972] = 438, [973] = 973, [974] = 974, [975] = 975, @@ -4888,355 +4843,355 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1002] = 1002, [1003] = 1003, [1004] = 1004, - [1005] = 981, - [1006] = 992, - [1007] = 982, - [1008] = 983, - [1009] = 984, - [1010] = 985, - [1011] = 986, - [1012] = 987, - [1013] = 997, - [1014] = 980, - [1015] = 979, - [1016] = 973, - [1017] = 978, - [1018] = 988, - [1019] = 989, - [1020] = 990, + [1005] = 1005, + [1006] = 987, + [1007] = 976, + [1008] = 994, + [1009] = 974, + [1010] = 1001, + [1011] = 1000, + [1012] = 998, + [1013] = 996, + [1014] = 995, + [1015] = 1004, + [1016] = 1003, + [1017] = 1002, + [1018] = 993, + [1019] = 992, + [1020] = 999, [1021] = 991, - [1022] = 999, - [1023] = 993, - [1024] = 994, - [1025] = 1025, - [1026] = 977, - [1027] = 976, - [1028] = 975, - [1029] = 1029, - [1030] = 996, - [1031] = 995, - [1032] = 974, - [1033] = 1033, - [1034] = 1002, - [1035] = 998, - [1036] = 1001, - [1037] = 1004, - [1038] = 1000, - [1039] = 1003, - [1040] = 987, - [1041] = 913, - [1042] = 952, - [1043] = 948, - [1044] = 930, - [1045] = 950, - [1046] = 953, - [1047] = 967, - [1048] = 925, - [1049] = 909, - [1050] = 912, - [1051] = 996, - [1052] = 991, - [1053] = 924, - [1054] = 994, - [1055] = 975, - [1056] = 976, - [1057] = 977, - [1058] = 964, - [1059] = 933, - [1060] = 433, - [1061] = 978, - [1062] = 973, - [1063] = 923, - [1064] = 934, - [1065] = 979, - [1066] = 922, - [1067] = 936, - [1068] = 980, - [1069] = 997, - [1070] = 431, - [1071] = 961, - [1072] = 937, - [1073] = 916, - [1074] = 931, - [1075] = 907, - [1076] = 921, - [1077] = 956, - [1078] = 939, - [1079] = 981, - [1080] = 905, - [1081] = 908, - [1082] = 928, - [1083] = 910, - [1084] = 911, - [1085] = 932, - [1086] = 982, - [1087] = 1087, - [1088] = 983, - [1089] = 1004, - [1090] = 984, - [1091] = 918, + [1022] = 985, + [1023] = 1005, + [1024] = 981, + [1025] = 997, + [1026] = 1026, + [1027] = 983, + [1028] = 989, + [1029] = 990, + [1030] = 984, + [1031] = 973, + [1032] = 988, + [1033] = 982, + [1034] = 980, + [1035] = 979, + [1036] = 978, + [1037] = 977, + [1038] = 986, + [1039] = 1039, + [1040] = 1040, + [1041] = 985, + [1042] = 567, + [1043] = 923, + [1044] = 924, + [1045] = 926, + [1046] = 429, + [1047] = 916, + [1048] = 991, + [1049] = 992, + [1050] = 993, + [1051] = 432, + [1052] = 995, + [1053] = 996, + [1054] = 918, + [1055] = 998, + [1056] = 1000, + [1057] = 947, + [1058] = 956, + [1059] = 948, + [1060] = 960, + [1061] = 961, + [1062] = 1001, + [1063] = 974, + [1064] = 963, + [1065] = 904, + [1066] = 938, + [1067] = 922, + [1068] = 949, + [1069] = 950, + [1070] = 951, + [1071] = 927, + [1072] = 919, + [1073] = 911, + [1074] = 1005, + [1075] = 953, + [1076] = 928, + [1077] = 903, + [1078] = 984, + [1079] = 930, + [1080] = 931, + [1081] = 932, + [1082] = 917, + [1083] = 1004, + [1084] = 986, + [1085] = 910, + [1086] = 1003, + [1087] = 1002, + [1088] = 952, + [1089] = 935, + [1090] = 973, + [1091] = 958, [1092] = 959, - [1093] = 920, - [1094] = 985, - [1095] = 986, - [1096] = 958, - [1097] = 941, - [1098] = 988, - [1099] = 944, - [1100] = 917, - [1101] = 989, - [1102] = 990, - [1103] = 904, - [1104] = 914, - [1105] = 992, - [1106] = 955, - [1107] = 935, - [1108] = 926, - [1109] = 940, - [1110] = 949, - [1111] = 993, - [1112] = 938, - [1113] = 954, - [1114] = 995, - [1115] = 576, - [1116] = 974, - [1117] = 575, - [1118] = 951, - [1119] = 945, - [1120] = 577, - [1121] = 957, - [1122] = 947, - [1123] = 998, - [1124] = 946, - [1125] = 574, - [1126] = 960, - [1127] = 962, - [1128] = 963, - [1129] = 999, - [1130] = 915, - [1131] = 965, - [1132] = 1000, - [1133] = 966, - [1134] = 942, - [1135] = 1001, - [1136] = 1002, + [1093] = 988, + [1094] = 908, + [1095] = 920, + [1096] = 909, + [1097] = 999, + [1098] = 929, + [1099] = 982, + [1100] = 906, + [1101] = 980, + [1102] = 979, + [1103] = 978, + [1104] = 937, + [1105] = 977, + [1106] = 997, + [1107] = 955, + [1108] = 994, + [1109] = 981, + [1110] = 983, + [1111] = 966, + [1112] = 565, + [1113] = 957, + [1114] = 976, + [1115] = 936, + [1116] = 939, + [1117] = 940, + [1118] = 915, + [1119] = 941, + [1120] = 566, + [1121] = 934, + [1122] = 933, + [1123] = 942, + [1124] = 944, + [1125] = 568, + [1126] = 914, + [1127] = 925, + [1128] = 954, + [1129] = 945, + [1130] = 990, + [1131] = 987, + [1132] = 989, + [1133] = 946, + [1134] = 962, + [1135] = 912, + [1136] = 964, [1137] = 943, - [1138] = 1003, - [1139] = 1139, - [1140] = 989, - [1141] = 983, - [1142] = 982, - [1143] = 1003, + [1138] = 965, + [1139] = 967, + [1140] = 1003, + [1141] = 973, + [1142] = 1142, + [1143] = 983, [1144] = 981, - [1145] = 988, - [1146] = 986, - [1147] = 987, - [1148] = 985, - [1149] = 992, - [1150] = 984, - [1151] = 993, - [1152] = 991, - [1153] = 980, - [1154] = 1154, - [1155] = 1155, - [1156] = 1002, - [1157] = 979, - [1158] = 973, - [1159] = 1159, - [1160] = 990, - [1161] = 978, - [1162] = 977, - [1163] = 1154, - [1164] = 976, - [1165] = 1004, - [1166] = 975, - [1167] = 1155, - [1168] = 995, - [1169] = 997, - [1170] = 996, - [1171] = 994, - [1172] = 998, - [1173] = 999, - [1174] = 974, - [1175] = 1000, - [1176] = 1001, - [1177] = 1177, - [1178] = 1178, + [1145] = 976, + [1146] = 985, + [1147] = 991, + [1148] = 992, + [1149] = 993, + [1150] = 995, + [1151] = 996, + [1152] = 998, + [1153] = 1000, + [1154] = 977, + [1155] = 1001, + [1156] = 1156, + [1157] = 1157, + [1158] = 974, + [1159] = 1005, + [1160] = 978, + [1161] = 979, + [1162] = 1004, + [1163] = 1163, + [1164] = 989, + [1165] = 999, + [1166] = 980, + [1167] = 982, + [1168] = 997, + [1169] = 990, + [1170] = 988, + [1171] = 987, + [1172] = 984, + [1173] = 1002, + [1174] = 1163, + [1175] = 986, + [1176] = 994, + [1177] = 1142, + [1178] = 982, [1179] = 1179, - [1180] = 1000, + [1180] = 1180, [1181] = 1181, [1182] = 1182, [1183] = 1183, [1184] = 1184, [1185] = 1185, - [1186] = 1000, + [1186] = 1186, [1187] = 1187, - [1188] = 1188, + [1188] = 982, [1189] = 1189, - [1190] = 1190, - [1191] = 1191, + [1190] = 1186, + [1191] = 1186, [1192] = 1192, [1193] = 1193, [1194] = 1194, [1195] = 1195, - [1196] = 1188, - [1197] = 1188, - [1198] = 1182, - [1199] = 1182, + [1196] = 1196, + [1197] = 1197, + [1198] = 1198, + [1199] = 1199, [1200] = 1200, [1201] = 1201, [1202] = 1202, - [1203] = 1203, - [1204] = 1204, - [1205] = 1205, + [1203] = 1201, + [1204] = 1194, + [1205] = 1195, [1206] = 1206, [1207] = 1207, [1208] = 1208, [1209] = 1209, [1210] = 1210, - [1211] = 1183, - [1212] = 1204, - [1213] = 1194, + [1211] = 1211, + [1212] = 1212, + [1213] = 1213, [1214] = 1214, - [1215] = 1202, + [1215] = 1215, [1216] = 1216, [1217] = 1217, - [1218] = 1183, + [1218] = 1206, [1219] = 1219, - [1220] = 1194, + [1220] = 1180, [1221] = 1221, [1222] = 1222, - [1223] = 1188, - [1224] = 1205, + [1223] = 1196, + [1224] = 1224, [1225] = 1225, [1226] = 1226, [1227] = 1227, [1228] = 1228, - [1229] = 1229, - [1230] = 1230, - [1231] = 1200, - [1232] = 1232, - [1233] = 1206, - [1234] = 1194, - [1235] = 1204, - [1236] = 1204, - [1237] = 1237, + [1229] = 1227, + [1230] = 1206, + [1231] = 1202, + [1232] = 1201, + [1233] = 1202, + [1234] = 1202, + [1235] = 1201, + [1236] = 1206, + [1237] = 1180, [1238] = 1238, [1239] = 1239, [1240] = 1240, [1241] = 1241, [1242] = 1242, [1243] = 1243, - [1244] = 1244, - [1245] = 1243, - [1246] = 1238, - [1247] = 1247, - [1248] = 1241, + [1244] = 1238, + [1245] = 1245, + [1246] = 1242, + [1247] = 1242, + [1248] = 1248, [1249] = 1249, [1250] = 1250, - [1251] = 1247, - [1252] = 1244, - [1253] = 1249, - [1254] = 1243, - [1255] = 1255, - [1256] = 1255, - [1257] = 1257, - [1258] = 1258, - [1259] = 1242, - [1260] = 1260, - [1261] = 1247, - [1262] = 1262, - [1263] = 1263, - [1264] = 1241, - [1265] = 1237, - [1266] = 1238, - [1267] = 1241, - [1268] = 1247, - [1269] = 1241, - [1270] = 1243, - [1271] = 1238, - [1272] = 1237, - [1273] = 1244, - [1274] = 1247, - [1275] = 1243, - [1276] = 1260, - [1277] = 1242, - [1278] = 1242, - [1279] = 1238, - [1280] = 1243, - [1281] = 1260, - [1282] = 1241, - [1283] = 1247, - [1284] = 1284, - [1285] = 1260, - [1286] = 1242, - [1287] = 1284, - [1288] = 1243, - [1289] = 1243, - [1290] = 1260, - [1291] = 1238, - [1292] = 1238, + [1251] = 1239, + [1252] = 1245, + [1253] = 1253, + [1254] = 1240, + [1255] = 1238, + [1256] = 1242, + [1257] = 1245, + [1258] = 1240, + [1259] = 1245, + [1260] = 1248, + [1261] = 1261, + [1262] = 1241, + [1263] = 1242, + [1264] = 1239, + [1265] = 1240, + [1266] = 1243, + [1267] = 1239, + [1268] = 1245, + [1269] = 1248, + [1270] = 1238, + [1271] = 1239, + [1272] = 1242, + [1273] = 1273, + [1274] = 1248, + [1275] = 1275, + [1276] = 1243, + [1277] = 1277, + [1278] = 1250, + [1279] = 1250, + [1280] = 1245, + [1281] = 1275, + [1282] = 1240, + [1283] = 1240, + [1284] = 1248, + [1285] = 1285, + [1286] = 1250, + [1287] = 1245, + [1288] = 1239, + [1289] = 1238, + [1290] = 1248, + [1291] = 1245, + [1292] = 1248, [1293] = 1242, - [1294] = 1294, - [1295] = 1247, - [1296] = 1241, - [1297] = 1241, - [1298] = 1255, - [1299] = 1238, - [1300] = 1243, - [1301] = 1241, - [1302] = 1238, - [1303] = 1284, - [1304] = 1260, - [1305] = 1284, - [1306] = 1241, - [1307] = 1255, - [1308] = 1238, + [1294] = 1248, + [1295] = 1295, + [1296] = 1242, + [1297] = 1238, + [1298] = 1298, + [1299] = 1248, + [1300] = 1245, + [1301] = 1238, + [1302] = 1245, + [1303] = 1242, + [1304] = 1241, + [1305] = 1295, + [1306] = 1243, + [1307] = 1275, + [1308] = 1248, [1309] = 1309, [1310] = 1310, [1311] = 1311, [1312] = 1312, - [1313] = 1312, + [1313] = 1313, [1314] = 1314, - [1315] = 1309, - [1316] = 1310, + [1315] = 1315, + [1316] = 1313, [1317] = 1317, - [1318] = 1318, - [1319] = 1319, + [1318] = 1317, + [1319] = 1309, [1320] = 1320, [1321] = 1321, [1322] = 1322, - [1323] = 1323, - [1324] = 1323, - [1325] = 1323, - [1326] = 1326, - [1327] = 1322, - [1328] = 1328, + [1323] = 1321, + [1324] = 1324, + [1325] = 1322, + [1326] = 1321, + [1327] = 1320, + [1328] = 1324, [1329] = 1322, - [1330] = 1328, - [1331] = 1328, - [1332] = 1326, + [1330] = 1320, + [1331] = 1331, + [1332] = 1331, [1333] = 1333, - [1334] = 1334, + [1334] = 1331, [1335] = 1333, [1336] = 1333, - [1337] = 1334, - [1338] = 1334, + [1337] = 1337, + [1338] = 1337, [1339] = 1339, - [1340] = 1339, + [1340] = 1340, [1341] = 1339, - [1342] = 1342, - [1343] = 1343, + [1342] = 1340, + [1343] = 1339, [1344] = 1344, [1345] = 1345, [1346] = 1346, [1347] = 1347, [1348] = 1348, - [1349] = 1349, + [1349] = 1346, [1350] = 1350, [1351] = 1351, [1352] = 1352, - [1353] = 1353, + [1353] = 1351, [1354] = 1354, [1355] = 1355, [1356] = 1356, @@ -5262,25 +5217,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1376] = 1376, [1377] = 1377, [1378] = 1378, - [1379] = 1379, + [1379] = 1378, [1380] = 1380, [1381] = 1381, - [1382] = 1370, - [1383] = 1376, + [1382] = 1382, + [1383] = 1383, [1384] = 1384, [1385] = 1385, - [1386] = 1386, + [1386] = 1377, [1387] = 1387, - [1388] = 1386, - [1389] = 1374, + [1388] = 1388, + [1389] = 1389, [1390] = 1390, [1391] = 1391, - [1392] = 1392, + [1392] = 1385, [1393] = 1393, [1394] = 1394, - [1395] = 1390, - [1396] = 1377, - [1397] = 1397, + [1395] = 1395, + [1396] = 1396, + [1397] = 1381, [1398] = 1398, [1399] = 1399, [1400] = 1400, @@ -5288,7 +5243,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1402] = 1402, [1403] = 1403, [1404] = 1404, - [1405] = 1405, + [1405] = 1393, [1406] = 1406, [1407] = 1407, [1408] = 1408, @@ -5296,8 +5251,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1410] = 1410, [1411] = 1411, [1412] = 1412, - [1413] = 1408, - [1414] = 1409, + [1413] = 1413, + [1414] = 1414, [1415] = 1415, [1416] = 1416, [1417] = 1417, @@ -5305,328 +5260,328 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1419] = 1419, [1420] = 1420, [1421] = 1421, - [1422] = 1422, + [1422] = 1413, [1423] = 1423, [1424] = 1424, [1425] = 1425, - [1426] = 1426, - [1427] = 1420, + [1426] = 641, + [1427] = 1427, [1428] = 1428, [1429] = 1429, - [1430] = 1421, + [1430] = 1430, [1431] = 1431, [1432] = 1432, [1433] = 1433, - [1434] = 702, + [1434] = 580, [1435] = 1435, - [1436] = 649, + [1436] = 1436, [1437] = 1437, - [1438] = 593, + [1438] = 1432, [1439] = 1439, - [1440] = 1440, - [1441] = 1440, + [1440] = 689, + [1441] = 1430, [1442] = 1442, - [1443] = 1440, + [1443] = 1443, [1444] = 1444, [1445] = 1445, - [1446] = 1442, - [1447] = 1440, + [1446] = 1446, + [1447] = 1447, [1448] = 1448, [1449] = 1449, - [1450] = 1444, + [1450] = 1450, [1451] = 1451, - [1452] = 1444, + [1452] = 1450, [1453] = 1453, - [1454] = 593, - [1455] = 1442, - [1456] = 1442, - [1457] = 1440, - [1458] = 1444, - [1459] = 593, + [1454] = 1454, + [1455] = 1455, + [1456] = 1456, + [1457] = 1457, + [1458] = 1450, + [1459] = 1445, [1460] = 1460, - [1461] = 1449, - [1462] = 1462, + [1461] = 1448, + [1462] = 1445, [1463] = 1463, - [1464] = 1449, - [1465] = 1465, - [1466] = 1440, - [1467] = 1467, - [1468] = 1468, - [1469] = 1444, - [1470] = 1444, - [1471] = 1442, - [1472] = 1472, - [1473] = 1442, - [1474] = 1444, - [1475] = 1444, - [1476] = 1442, - [1477] = 1440, - [1478] = 1444, - [1479] = 1440, - [1480] = 1444, - [1481] = 1440, - [1482] = 1442, - [1483] = 1483, + [1464] = 1445, + [1465] = 1457, + [1466] = 1450, + [1467] = 1448, + [1468] = 1445, + [1469] = 1448, + [1470] = 1470, + [1471] = 1471, + [1472] = 1450, + [1473] = 1473, + [1474] = 1448, + [1475] = 1475, + [1476] = 1457, + [1477] = 1445, + [1478] = 1457, + [1479] = 1448, + [1480] = 1480, + [1481] = 1450, + [1482] = 1445, + [1483] = 580, [1484] = 1484, - [1485] = 1485, - [1486] = 1444, - [1487] = 1487, - [1488] = 1449, + [1485] = 1450, + [1486] = 1445, + [1487] = 1450, + [1488] = 1448, [1489] = 1489, - [1490] = 1440, - [1491] = 1444, - [1492] = 1449, - [1493] = 1493, - [1494] = 1494, - [1495] = 1495, - [1496] = 1444, - [1497] = 1442, - [1498] = 1442, - [1499] = 1442, - [1500] = 1440, - [1501] = 1501, - [1502] = 1502, - [1503] = 422, - [1504] = 1504, - [1505] = 1505, - [1506] = 1506, - [1507] = 1402, - [1508] = 1508, + [1490] = 1445, + [1491] = 1491, + [1492] = 1448, + [1493] = 1445, + [1494] = 1457, + [1495] = 1450, + [1496] = 1448, + [1497] = 1448, + [1498] = 1450, + [1499] = 1499, + [1500] = 1445, + [1501] = 1445, + [1502] = 1448, + [1503] = 1503, + [1504] = 1450, + [1505] = 1445, + [1506] = 580, + [1507] = 1507, + [1508] = 424, [1509] = 1509, - [1510] = 1502, - [1511] = 1506, - [1512] = 1505, - [1513] = 423, - [1514] = 1508, - [1515] = 1515, - [1516] = 1516, - [1517] = 668, - [1518] = 582, - [1519] = 1519, + [1510] = 1510, + [1511] = 1409, + [1512] = 1512, + [1513] = 1509, + [1514] = 1514, + [1515] = 1510, + [1516] = 1507, + [1517] = 1517, + [1518] = 423, + [1519] = 1514, [1520] = 1520, [1521] = 1521, - [1522] = 1522, + [1522] = 580, [1523] = 1523, - [1524] = 1524, + [1524] = 585, [1525] = 1525, - [1526] = 1398, - [1527] = 1402, - [1528] = 1525, - [1529] = 668, - [1530] = 1530, + [1526] = 1526, + [1527] = 575, + [1528] = 663, + [1529] = 1529, + [1530] = 1398, [1531] = 1531, - [1532] = 1532, - [1533] = 1525, - [1534] = 679, + [1532] = 1520, + [1533] = 1526, + [1534] = 1534, [1535] = 1535, - [1536] = 582, - [1537] = 1521, - [1538] = 1521, - [1539] = 1531, - [1540] = 1540, - [1541] = 1531, + [1536] = 1525, + [1537] = 663, + [1538] = 1409, + [1539] = 1520, + [1540] = 666, + [1541] = 1541, [1542] = 1542, - [1543] = 1521, - [1544] = 1544, - [1545] = 668, + [1543] = 1525, + [1544] = 1520, + [1545] = 1520, [1546] = 1546, - [1547] = 1531, - [1548] = 593, - [1549] = 679, - [1550] = 1550, - [1551] = 1531, - [1552] = 594, - [1553] = 585, - [1554] = 679, - [1555] = 791, - [1556] = 1521, - [1557] = 1521, + [1547] = 1547, + [1548] = 1526, + [1549] = 1549, + [1550] = 663, + [1551] = 666, + [1552] = 1552, + [1553] = 1553, + [1554] = 776, + [1555] = 1526, + [1556] = 1556, + [1557] = 666, [1558] = 1558, - [1559] = 1559, - [1560] = 1560, - [1561] = 593, - [1562] = 1562, + [1559] = 570, + [1560] = 570, + [1561] = 1520, + [1562] = 1526, [1563] = 1563, [1564] = 1564, - [1565] = 1565, + [1565] = 1529, [1566] = 1566, - [1567] = 1567, - [1568] = 1568, + [1567] = 585, + [1568] = 580, [1569] = 1569, - [1570] = 1570, - [1571] = 1562, - [1572] = 594, - [1573] = 1524, - [1574] = 1559, + [1570] = 580, + [1571] = 575, + [1572] = 1572, + [1573] = 1573, + [1574] = 1566, [1575] = 1575, [1576] = 1576, [1577] = 1577, [1578] = 1578, - [1579] = 1576, - [1580] = 585, - [1581] = 1581, + [1579] = 1579, + [1580] = 1569, + [1581] = 585, [1582] = 1582, - [1583] = 1583, - [1584] = 1566, - [1585] = 1565, - [1586] = 594, - [1587] = 585, + [1583] = 425, + [1584] = 1584, + [1585] = 1563, + [1586] = 575, + [1587] = 1529, [1588] = 1588, - [1589] = 426, + [1589] = 1589, [1590] = 1590, - [1591] = 1523, - [1592] = 1588, - [1593] = 1570, - [1594] = 1522, - [1595] = 593, + [1591] = 1572, + [1592] = 1592, + [1593] = 1593, + [1594] = 1573, + [1595] = 1595, [1596] = 1596, - [1597] = 1597, - [1598] = 1519, + [1597] = 1576, + [1598] = 1598, [1599] = 1599, - [1600] = 1590, - [1601] = 1569, - [1602] = 1568, - [1603] = 426, - [1604] = 1522, - [1605] = 1578, - [1606] = 424, - [1607] = 1575, - [1608] = 1608, - [1609] = 1581, - [1610] = 1558, + [1600] = 1600, + [1601] = 1601, + [1602] = 1602, + [1603] = 1602, + [1604] = 1547, + [1605] = 1577, + [1606] = 1578, + [1607] = 426, + [1608] = 1579, + [1609] = 1609, + [1610] = 425, [1611] = 1611, [1612] = 1582, - [1613] = 1523, - [1614] = 1564, - [1615] = 1577, - [1616] = 1583, - [1617] = 1617, - [1618] = 1524, - [1619] = 424, - [1620] = 1567, - [1621] = 1621, + [1613] = 1613, + [1614] = 426, + [1615] = 1534, + [1616] = 1616, + [1617] = 1535, + [1618] = 1598, + [1619] = 1596, + [1620] = 1590, + [1621] = 1588, [1622] = 1622, - [1623] = 1621, - [1624] = 1624, - [1625] = 1599, - [1626] = 1608, - [1627] = 1627, - [1628] = 1519, - [1629] = 1624, - [1630] = 1622, - [1631] = 1631, - [1632] = 1406, - [1633] = 437, + [1623] = 1564, + [1624] = 1535, + [1625] = 1584, + [1626] = 1622, + [1627] = 1575, + [1628] = 1547, + [1629] = 1609, + [1630] = 1595, + [1631] = 1534, + [1632] = 1593, + [1633] = 1633, [1634] = 1634, - [1635] = 1635, - [1636] = 436, - [1637] = 1637, - [1638] = 1638, + [1635] = 435, + [1636] = 1503, + [1637] = 433, + [1638] = 1634, [1639] = 1639, - [1640] = 449, - [1641] = 1641, - [1642] = 1642, - [1643] = 435, + [1640] = 1639, + [1641] = 436, + [1642] = 1639, + [1643] = 1643, [1644] = 1639, - [1645] = 447, - [1646] = 1560, - [1647] = 1647, - [1648] = 1415, - [1649] = 1424, - [1650] = 1485, - [1651] = 1647, - [1652] = 1410, - [1653] = 1639, - [1654] = 1494, + [1645] = 442, + [1646] = 1639, + [1647] = 1455, + [1648] = 1439, + [1649] = 1639, + [1650] = 1455, + [1651] = 446, + [1652] = 443, + [1653] = 1653, + [1654] = 441, [1655] = 1655, [1656] = 1639, - [1657] = 1639, - [1658] = 1638, + [1657] = 1657, + [1658] = 1639, [1659] = 1659, [1660] = 1660, - [1661] = 1661, + [1661] = 431, [1662] = 1662, - [1663] = 1639, - [1664] = 1638, - [1665] = 1638, + [1663] = 1634, + [1664] = 1639, + [1665] = 445, [1666] = 1666, - [1667] = 462, + [1667] = 1667, [1668] = 1668, - [1669] = 1638, - [1670] = 1670, - [1671] = 1671, - [1672] = 1638, - [1673] = 441, - [1674] = 1638, - [1675] = 1638, + [1669] = 1669, + [1670] = 1634, + [1671] = 1491, + [1672] = 1433, + [1673] = 1503, + [1674] = 1639, + [1675] = 1675, [1676] = 1676, - [1677] = 460, - [1678] = 1463, - [1679] = 456, - [1680] = 440, - [1681] = 1638, - [1682] = 1501, - [1683] = 1639, - [1684] = 1639, - [1685] = 1685, - [1686] = 458, - [1687] = 1639, - [1688] = 1688, - [1689] = 1639, - [1690] = 1501, - [1691] = 1635, - [1692] = 1494, - [1693] = 1693, + [1677] = 1484, + [1678] = 1491, + [1679] = 1679, + [1680] = 1680, + [1681] = 1451, + [1682] = 1682, + [1683] = 430, + [1684] = 1634, + [1685] = 439, + [1686] = 1686, + [1687] = 1634, + [1688] = 1675, + [1689] = 1689, + [1690] = 1634, + [1691] = 1634, + [1692] = 1613, + [1693] = 1634, [1694] = 1694, - [1695] = 1429, - [1696] = 1638, - [1697] = 1485, - [1698] = 1641, - [1699] = 1671, - [1700] = 1685, - [1701] = 1639, + [1695] = 1634, + [1696] = 1668, + [1697] = 1451, + [1698] = 1447, + [1699] = 440, + [1700] = 1484, + [1701] = 434, [1702] = 1702, - [1703] = 1703, - [1704] = 1484, - [1705] = 1487, - [1706] = 430, - [1707] = 1484, - [1708] = 428, - [1709] = 1709, - [1710] = 445, - [1711] = 1638, - [1712] = 455, - [1713] = 1668, - [1714] = 1714, - [1715] = 454, - [1716] = 1487, - [1717] = 432, - [1718] = 1463, - [1719] = 1639, - [1720] = 452, - [1721] = 434, - [1722] = 451, - [1723] = 459, - [1724] = 429, - [1725] = 1725, - [1726] = 1660, - [1727] = 1666, + [1703] = 1694, + [1704] = 1447, + [1705] = 1705, + [1706] = 1689, + [1707] = 1419, + [1708] = 1708, + [1709] = 444, + [1710] = 1418, + [1711] = 1414, + [1712] = 1712, + [1713] = 1667, + [1714] = 1639, + [1715] = 1634, + [1716] = 447, + [1717] = 448, + [1718] = 1712, + [1719] = 1653, + [1720] = 1720, + [1721] = 1639, + [1722] = 1643, + [1723] = 1723, + [1724] = 1724, + [1725] = 1439, + [1726] = 1726, + [1727] = 1727, [1728] = 1728, [1729] = 1729, - [1730] = 1432, - [1731] = 1425, + [1730] = 1730, + [1731] = 1731, [1732] = 1732, [1733] = 1733, - [1734] = 1734, + [1734] = 1731, [1735] = 1735, [1736] = 1736, - [1737] = 1424, + [1737] = 1737, [1738] = 1738, [1739] = 1739, [1740] = 1740, [1741] = 1741, - [1742] = 1742, - [1743] = 1743, + [1742] = 1435, + [1743] = 1425, [1744] = 1744, [1745] = 1745, [1746] = 1746, @@ -5636,387 +5591,387 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1750] = 1750, [1751] = 1751, [1752] = 1752, - [1753] = 1753, - [1754] = 1754, - [1755] = 1755, - [1756] = 1756, + [1753] = 1443, + [1754] = 1427, + [1755] = 1750, + [1756] = 1724, [1757] = 1757, [1758] = 1758, [1759] = 1759, - [1760] = 1756, - [1761] = 1740, + [1760] = 1760, + [1761] = 1761, [1762] = 1762, [1763] = 1763, - [1764] = 1743, + [1764] = 1764, [1765] = 1765, [1766] = 1766, [1767] = 1767, [1768] = 1768, [1769] = 1769, [1770] = 1770, - [1771] = 1771, - [1772] = 1766, + [1771] = 1433, + [1772] = 1772, [1773] = 1773, - [1774] = 1770, - [1775] = 1740, - [1776] = 1733, + [1774] = 633, + [1775] = 1775, + [1776] = 1776, [1777] = 1777, - [1778] = 1742, - [1779] = 1779, + [1778] = 1778, + [1779] = 1751, [1780] = 1780, - [1781] = 1728, + [1781] = 1781, [1782] = 1782, - [1783] = 1741, + [1783] = 1783, [1784] = 1784, - [1785] = 1785, - [1786] = 1437, + [1785] = 1750, + [1786] = 1786, [1787] = 1787, - [1788] = 1744, - [1789] = 1750, + [1788] = 1788, + [1789] = 1789, [1790] = 1790, [1791] = 1791, - [1792] = 1782, - [1793] = 1785, - [1794] = 1794, - [1795] = 1419, + [1792] = 1758, + [1793] = 1761, + [1794] = 1767, + [1795] = 1787, [1796] = 1796, - [1797] = 1431, - [1798] = 1798, - [1799] = 1796, - [1800] = 1800, - [1801] = 1771, + [1797] = 1776, + [1798] = 1750, + [1799] = 1769, + [1800] = 1784, + [1801] = 1791, [1802] = 1802, - [1803] = 1791, - [1804] = 1757, - [1805] = 1805, + [1803] = 1768, + [1804] = 1765, + [1805] = 1773, [1806] = 1806, - [1807] = 1807, - [1808] = 1808, - [1809] = 1809, + [1807] = 1764, + [1808] = 1763, + [1809] = 1747, [1810] = 1810, [1811] = 1811, - [1812] = 1812, + [1812] = 1745, [1813] = 1813, - [1814] = 1769, - [1815] = 1767, - [1816] = 1807, - [1817] = 1759, - [1818] = 1818, + [1814] = 1428, + [1815] = 1815, + [1816] = 1781, + [1817] = 1817, + [1818] = 1723, [1819] = 1819, - [1820] = 1820, - [1821] = 1751, - [1822] = 1762, - [1823] = 1758, - [1824] = 1749, - [1825] = 1825, + [1820] = 1766, + [1821] = 1749, + [1822] = 1822, + [1823] = 1823, + [1824] = 1729, + [1825] = 1728, [1826] = 1826, - [1827] = 1745, - [1828] = 1740, - [1829] = 1829, - [1830] = 1830, - [1831] = 1811, - [1832] = 1832, + [1827] = 1726, + [1828] = 1828, + [1829] = 1732, + [1830] = 1733, + [1831] = 1831, + [1832] = 1736, [1833] = 1833, - [1834] = 1734, - [1835] = 1798, + [1834] = 1834, + [1835] = 1834, [1836] = 1836, [1837] = 1837, [1838] = 1838, - [1839] = 1812, - [1840] = 1840, - [1841] = 1746, - [1842] = 1794, + [1839] = 1839, + [1840] = 1836, + [1841] = 1841, + [1842] = 1837, [1843] = 1843, - [1844] = 1829, + [1844] = 1833, [1845] = 1845, - [1846] = 1846, - [1847] = 1810, - [1848] = 1694, - [1849] = 1429, - [1850] = 642, - [1851] = 1780, + [1846] = 1839, + [1847] = 1847, + [1848] = 1848, + [1849] = 1746, + [1850] = 1727, + [1851] = 1735, [1852] = 1852, [1853] = 1853, [1854] = 1854, - [1855] = 1855, - [1856] = 1856, - [1857] = 1857, + [1855] = 1775, + [1856] = 1660, + [1857] = 1789, [1858] = 1858, - [1859] = 1806, - [1860] = 1860, + [1859] = 1845, + [1860] = 1796, [1861] = 1861, - [1862] = 1818, - [1863] = 1819, - [1864] = 1825, - [1865] = 1754, - [1866] = 1826, - [1867] = 1867, - [1868] = 1857, - [1869] = 1840, + [1862] = 1810, + [1863] = 1861, + [1864] = 1847, + [1865] = 1815, + [1866] = 1866, + [1867] = 1802, + [1868] = 1848, + [1869] = 1853, [1870] = 1870, - [1871] = 1846, - [1872] = 1852, + [1871] = 1871, + [1872] = 1872, [1873] = 1873, - [1874] = 1858, - [1875] = 1805, - [1876] = 1800, - [1877] = 1873, - [1878] = 1837, - [1879] = 1879, - [1880] = 1880, - [1881] = 1881, - [1882] = 1882, - [1883] = 1883, + [1874] = 1874, + [1875] = 1875, + [1876] = 533, + [1877] = 555, + [1878] = 541, + [1879] = 548, + [1880] = 528, + [1881] = 525, + [1882] = 520, + [1883] = 519, [1884] = 1884, - [1885] = 1885, - [1886] = 1886, + [1885] = 518, + [1886] = 537, [1887] = 1887, - [1888] = 1888, + [1888] = 494, [1889] = 1889, [1890] = 1890, - [1891] = 1891, + [1891] = 540, [1892] = 1892, - [1893] = 1893, + [1893] = 500, [1894] = 1894, - [1895] = 1895, - [1896] = 1896, - [1897] = 1897, - [1898] = 1898, - [1899] = 1885, - [1900] = 1893, + [1895] = 1874, + [1896] = 1708, + [1897] = 490, + [1898] = 1817, + [1899] = 1899, + [1900] = 1900, [1901] = 1901, [1902] = 1902, [1903] = 1903, - [1904] = 1898, - [1905] = 1892, - [1906] = 1889, - [1907] = 1907, + [1904] = 1904, + [1905] = 1905, + [1906] = 1906, + [1907] = 484, [1908] = 1908, - [1909] = 1909, - [1910] = 1894, + [1909] = 514, + [1910] = 529, [1911] = 1911, - [1912] = 1693, + [1912] = 556, [1913] = 1913, [1914] = 1914, - [1915] = 1884, - [1916] = 1916, + [1915] = 1915, + [1916] = 497, [1917] = 1917, - [1918] = 1918, - [1919] = 1919, - [1920] = 1896, + [1918] = 516, + [1919] = 480, + [1920] = 1920, [1921] = 1921, - [1922] = 1922, - [1923] = 1882, + [1922] = 1913, + [1923] = 1923, [1924] = 1924, - [1925] = 1902, + [1925] = 477, [1926] = 1926, [1927] = 1927, [1928] = 1928, - [1929] = 532, - [1930] = 1930, + [1929] = 1929, + [1930] = 508, [1931] = 1931, [1932] = 1932, - [1933] = 1933, + [1933] = 1875, [1934] = 1934, - [1935] = 1935, - [1936] = 535, - [1937] = 1937, - [1938] = 536, - [1939] = 1939, - [1940] = 540, - [1941] = 542, + [1935] = 474, + [1936] = 513, + [1937] = 517, + [1938] = 1938, + [1939] = 552, + [1940] = 1875, + [1941] = 472, [1942] = 1942, - [1943] = 557, - [1944] = 530, - [1945] = 1916, - [1946] = 1946, - [1947] = 1947, - [1948] = 1948, - [1949] = 509, + [1943] = 481, + [1944] = 544, + [1945] = 469, + [1946] = 451, + [1947] = 521, + [1948] = 463, + [1949] = 1949, [1950] = 1950, - [1951] = 505, - [1952] = 1952, - [1953] = 527, - [1954] = 526, - [1955] = 1955, - [1956] = 515, - [1957] = 513, - [1958] = 520, - [1959] = 465, - [1960] = 472, - [1961] = 474, - [1962] = 478, + [1951] = 1951, + [1952] = 489, + [1953] = 1953, + [1954] = 1870, + [1955] = 476, + [1956] = 1956, + [1957] = 1957, + [1958] = 1958, + [1959] = 515, + [1960] = 1960, + [1961] = 504, + [1962] = 1962, [1963] = 1963, - [1964] = 482, - [1965] = 1655, - [1966] = 483, + [1964] = 1964, + [1965] = 1965, + [1966] = 1951, [1967] = 1967, - [1968] = 489, - [1969] = 490, + [1968] = 1968, + [1969] = 1969, [1970] = 1970, - [1971] = 491, - [1972] = 1926, + [1971] = 471, + [1972] = 1972, [1973] = 1973, - [1974] = 1974, - [1975] = 493, - [1976] = 1935, - [1977] = 494, - [1978] = 1978, + [1974] = 1957, + [1975] = 547, + [1976] = 1976, + [1977] = 1977, + [1978] = 1889, [1979] = 1979, - [1980] = 500, + [1980] = 1980, [1981] = 1981, [1982] = 1982, - [1983] = 1983, + [1983] = 550, [1984] = 1984, - [1985] = 502, - [1986] = 1986, - [1987] = 1987, - [1988] = 531, - [1989] = 1888, - [1990] = 507, - [1991] = 1991, - [1992] = 1947, - [1993] = 512, - [1994] = 1948, - [1995] = 464, - [1996] = 525, - [1997] = 1950, - [1998] = 446, + [1985] = 1679, + [1986] = 558, + [1987] = 553, + [1988] = 1988, + [1989] = 1989, + [1990] = 1990, + [1991] = 551, + [1992] = 546, + [1993] = 554, + [1994] = 1994, + [1995] = 539, + [1996] = 1996, + [1997] = 1997, + [1998] = 1998, [1999] = 1999, - [2000] = 539, - [2001] = 2001, - [2002] = 537, - [2003] = 2003, - [2004] = 538, - [2005] = 546, + [2000] = 522, + [2001] = 1904, + [2002] = 2002, + [2003] = 1899, + [2004] = 454, + [2005] = 510, [2006] = 2006, - [2007] = 549, - [2008] = 2008, - [2009] = 2009, + [2007] = 2006, + [2008] = 536, + [2009] = 456, [2010] = 2010, - [2011] = 551, - [2012] = 554, + [2011] = 2011, + [2012] = 526, [2013] = 2013, - [2014] = 559, - [2015] = 2015, - [2016] = 2016, - [2017] = 2017, - [2018] = 2018, - [2019] = 2019, + [2014] = 458, + [2015] = 492, + [2016] = 1964, + [2017] = 1963, + [2018] = 491, + [2019] = 543, [2020] = 2020, [2021] = 2021, [2022] = 2022, - [2023] = 560, - [2024] = 2006, - [2025] = 2025, - [2026] = 561, - [2027] = 2027, - [2028] = 2020, - [2029] = 1973, - [2030] = 1933, - [2031] = 563, - [2032] = 1932, - [2033] = 1981, - [2034] = 2034, - [2035] = 528, - [2036] = 2036, + [2023] = 2023, + [2024] = 2024, + [2025] = 557, + [2026] = 488, + [2027] = 485, + [2028] = 462, + [2029] = 466, + [2030] = 2030, + [2031] = 499, + [2032] = 1908, + [2033] = 534, + [2034] = 1915, + [2035] = 473, + [2036] = 503, [2037] = 2037, [2038] = 2038, - [2039] = 2039, - [2040] = 556, - [2041] = 541, - [2042] = 508, - [2043] = 443, - [2044] = 444, - [2045] = 529, - [2046] = 492, - [2047] = 486, - [2048] = 485, - [2049] = 484, - [2050] = 481, - [2051] = 480, - [2052] = 477, - [2053] = 476, - [2054] = 475, - [2055] = 471, - [2056] = 470, - [2057] = 469, - [2058] = 467, - [2059] = 442, - [2060] = 2060, - [2061] = 516, - [2062] = 473, - [2063] = 519, - [2064] = 1908, - [2065] = 543, - [2066] = 548, - [2067] = 2067, - [2068] = 2068, - [2069] = 544, + [2039] = 465, + [2040] = 2020, + [2041] = 478, + [2042] = 535, + [2043] = 2043, + [2044] = 2044, + [2045] = 493, + [2046] = 2046, + [2047] = 2047, + [2048] = 507, + [2049] = 2049, + [2050] = 2050, + [2051] = 483, + [2052] = 2037, + [2053] = 1875, + [2054] = 2054, + [2055] = 2055, + [2056] = 2056, + [2057] = 2057, + [2058] = 2058, + [2059] = 2059, + [2060] = 459, + [2061] = 1923, + [2062] = 2062, + [2063] = 2063, + [2064] = 1310, + [2065] = 2065, + [2066] = 1953, + [2067] = 506, + [2068] = 502, + [2069] = 455, [2070] = 2070, - [2071] = 466, - [2072] = 1883, - [2073] = 511, - [2074] = 468, - [2075] = 479, - [2076] = 438, - [2077] = 439, - [2078] = 2078, - [2079] = 2079, - [2080] = 2080, - [2081] = 518, - [2082] = 514, - [2083] = 1881, - [2084] = 510, + [2071] = 2021, + [2072] = 452, + [2073] = 2073, + [2074] = 496, + [2075] = 464, + [2076] = 453, + [2077] = 1999, + [2078] = 2063, + [2079] = 498, + [2080] = 1920, + [2081] = 495, + [2082] = 1923, + [2083] = 2083, + [2084] = 1921, [2085] = 2085, - [2086] = 1902, - [2087] = 488, - [2088] = 487, - [2089] = 495, - [2090] = 496, - [2091] = 497, + [2086] = 1875, + [2087] = 1923, + [2088] = 2088, + [2089] = 512, + [2090] = 530, + [2091] = 2091, [2092] = 2092, - [2093] = 498, - [2094] = 1950, - [2095] = 499, - [2096] = 463, - [2097] = 521, - [2098] = 522, - [2099] = 523, - [2100] = 448, - [2101] = 545, - [2102] = 547, - [2103] = 550, - [2104] = 552, - [2105] = 555, - [2106] = 558, - [2107] = 533, - [2108] = 2108, - [2109] = 534, - [2110] = 562, - [2111] = 553, - [2112] = 506, - [2113] = 2113, - [2114] = 1453, - [2115] = 524, + [2093] = 1875, + [2094] = 1454, + [2095] = 509, + [2096] = 482, + [2097] = 524, + [2098] = 486, + [2099] = 1923, + [2100] = 461, + [2101] = 2101, + [2102] = 2102, + [2103] = 1923, + [2104] = 457, + [2105] = 2105, + [2106] = 2106, + [2107] = 2107, + [2108] = 479, + [2109] = 1875, + [2110] = 2110, + [2111] = 467, + [2112] = 2112, + [2113] = 470, + [2114] = 468, + [2115] = 2115, [2116] = 2116, - [2117] = 503, - [2118] = 1319, - [2119] = 504, + [2117] = 1923, + [2118] = 532, + [2119] = 1875, [2120] = 2120, [2121] = 2121, - [2122] = 1950, + [2122] = 511, [2123] = 2123, - [2124] = 1902, + [2124] = 1923, [2125] = 2125, - [2126] = 1902, - [2127] = 2127, - [2128] = 1784, - [2129] = 2129, - [2130] = 2130, - [2131] = 1950, - [2132] = 1950, - [2133] = 1902, + [2126] = 2126, + [2127] = 523, + [2128] = 475, + [2129] = 2002, + [2130] = 538, + [2131] = 559, + [2132] = 549, + [2133] = 460, [2134] = 2134, [2135] = 2135, [2136] = 2136, @@ -6025,15 +5980,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2139] = 2139, [2140] = 2140, [2141] = 2141, - [2142] = 1950, - [2143] = 1902, + [2142] = 2142, + [2143] = 2143, [2144] = 2144, [2145] = 2145, [2146] = 2146, - [2147] = 1950, + [2147] = 2147, [2148] = 2148, [2149] = 2149, - [2150] = 1902, + [2150] = 2150, [2151] = 2151, [2152] = 2152, [2153] = 2153, @@ -6045,7 +6000,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2159] = 2159, [2160] = 2160, [2161] = 2161, - [2162] = 2162, + [2162] = 2134, [2163] = 2163, [2164] = 2164, [2165] = 2165, @@ -6071,62 +6026,62 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2185] = 2185, [2186] = 2186, [2187] = 2187, - [2188] = 2188, + [2188] = 2185, [2189] = 2189, [2190] = 2190, - [2191] = 2191, + [2191] = 2165, [2192] = 2192, [2193] = 2193, [2194] = 2194, [2195] = 2195, [2196] = 2196, [2197] = 2197, - [2198] = 2198, + [2198] = 2166, [2199] = 2199, - [2200] = 2200, + [2200] = 2167, [2201] = 2201, - [2202] = 2202, + [2202] = 2159, [2203] = 2203, - [2204] = 2178, - [2205] = 2205, - [2206] = 2206, + [2204] = 2167, + [2205] = 2169, + [2206] = 2171, [2207] = 2207, [2208] = 2208, - [2209] = 2209, + [2209] = 2177, [2210] = 2210, [2211] = 2211, [2212] = 2212, [2213] = 2213, [2214] = 2214, - [2215] = 1641, + [2215] = 2215, [2216] = 2216, [2217] = 2217, [2218] = 2218, [2219] = 2219, [2220] = 2220, - [2221] = 2221, - [2222] = 2222, + [2221] = 2181, + [2222] = 2166, [2223] = 2223, [2224] = 2224, [2225] = 2225, [2226] = 2226, [2227] = 2227, - [2228] = 2228, - [2229] = 2229, - [2230] = 2179, + [2228] = 2218, + [2229] = 2197, + [2230] = 2230, [2231] = 2231, - [2232] = 1934, + [2232] = 2232, [2233] = 2233, - [2234] = 2234, - [2235] = 2174, - [2236] = 2191, - [2237] = 2179, - [2238] = 2181, - [2239] = 2185, + [2234] = 2211, + [2235] = 2235, + [2236] = 2167, + [2237] = 2237, + [2238] = 2238, + [2239] = 2231, [2240] = 2240, - [2241] = 2177, + [2241] = 2241, [2242] = 2242, - [2243] = 1647, + [2243] = 2135, [2244] = 2244, [2245] = 2245, [2246] = 2246, @@ -6138,1072 +6093,1005 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2252] = 2252, [2253] = 2253, [2254] = 2254, - [2255] = 2231, - [2256] = 2251, - [2257] = 2257, - [2258] = 2175, - [2259] = 2225, - [2260] = 2222, + [2255] = 2255, + [2256] = 2256, + [2257] = 1667, + [2258] = 2258, + [2259] = 2259, + [2260] = 2260, [2261] = 2261, - [2262] = 2179, + [2262] = 2262, [2263] = 2263, [2264] = 2264, [2265] = 2265, [2266] = 2266, - [2267] = 2211, - [2268] = 2208, - [2269] = 2206, - [2270] = 2152, - [2271] = 2200, - [2272] = 2272, - [2273] = 2273, - [2274] = 2274, - [2275] = 2275, - [2276] = 2213, - [2277] = 2277, - [2278] = 2233, - [2279] = 2279, - [2280] = 2216, + [2267] = 2267, + [2268] = 2268, + [2269] = 2269, + [2270] = 2270, + [2271] = 2139, + [2272] = 2140, + [2273] = 2154, + [2274] = 2146, + [2275] = 2152, + [2276] = 2175, + [2277] = 2262, + [2278] = 2278, + [2279] = 2176, + [2280] = 2280, [2281] = 2281, - [2282] = 2194, - [2283] = 2187, - [2284] = 2265, - [2285] = 2285, - [2286] = 2227, - [2287] = 2287, - [2288] = 2182, - [2289] = 2159, - [2290] = 2163, - [2291] = 2291, - [2292] = 2219, - [2293] = 2293, - [2294] = 2173, - [2295] = 2190, - [2296] = 2296, - [2297] = 2158, - [2298] = 2157, - [2299] = 2203, - [2300] = 2164, - [2301] = 2301, - [2302] = 2273, - [2303] = 2165, - [2304] = 2304, - [2305] = 2228, + [2282] = 2137, + [2283] = 2283, + [2284] = 2195, + [2285] = 2185, + [2286] = 2286, + [2287] = 2196, + [2288] = 1653, + [2289] = 2289, + [2290] = 2201, + [2291] = 2253, + [2292] = 2292, + [2293] = 2269, + [2294] = 2278, + [2295] = 2281, + [2296] = 2283, + [2297] = 2297, + [2298] = 2298, + [2299] = 2298, + [2300] = 2013, + [2301] = 2286, + [2302] = 2302, + [2303] = 2303, + [2304] = 2157, + [2305] = 2305, [2306] = 2306, [2307] = 2307, [2308] = 2308, - [2309] = 2167, - [2310] = 2168, - [2311] = 2169, - [2312] = 2170, + [2309] = 2309, + [2310] = 2310, + [2311] = 2311, + [2312] = 2312, [2313] = 2313, [2314] = 2314, - [2315] = 2171, - [2316] = 2195, + [2315] = 2315, + [2316] = 2258, [2317] = 2317, - [2318] = 2219, - [2319] = 2319, + [2318] = 2318, + [2319] = 2255, [2320] = 2320, - [2321] = 2240, - [2322] = 2322, - [2323] = 2172, - [2324] = 2324, - [2325] = 2177, + [2321] = 2254, + [2322] = 2251, + [2323] = 2242, + [2324] = 2241, + [2325] = 2233, [2326] = 2326, - [2327] = 2327, + [2327] = 2223, [2328] = 2328, [2329] = 2329, [2330] = 2330, - [2331] = 2281, - [2332] = 2332, - [2333] = 2333, - [2334] = 2186, - [2335] = 2335, - [2336] = 2336, - [2337] = 2180, - [2338] = 2338, - [2339] = 2197, - [2340] = 2198, + [2331] = 2142, + [2332] = 2268, + [2333] = 2215, + [2334] = 2214, + [2335] = 2199, + [2336] = 2194, + [2337] = 2306, + [2338] = 2192, + [2339] = 2339, + [2340] = 2190, [2341] = 2341, - [2342] = 2342, - [2343] = 2226, - [2344] = 2344, + [2342] = 2189, + [2343] = 2174, + [2344] = 2173, [2345] = 2345, - [2346] = 2234, - [2347] = 2242, - [2348] = 2348, - [2349] = 2308, - [2350] = 2279, - [2351] = 2351, - [2352] = 2244, + [2346] = 2346, + [2347] = 2347, + [2348] = 2247, + [2349] = 2237, + [2350] = 2350, + [2351] = 2149, + [2352] = 2153, [2353] = 2353, - [2354] = 2354, - [2355] = 2355, + [2354] = 2156, + [2355] = 2164, [2356] = 2356, [2357] = 2357, - [2358] = 2245, - [2359] = 2359, - [2360] = 2360, + [2358] = 2358, + [2359] = 2216, + [2360] = 2302, [2361] = 2361, - [2362] = 2246, - [2363] = 2363, - [2364] = 2248, - [2365] = 2249, - [2366] = 2366, - [2367] = 2306, - [2368] = 2151, - [2369] = 2250, - [2370] = 2370, - [2371] = 2252, - [2372] = 2257, - [2373] = 2373, - [2374] = 2261, - [2375] = 2274, - [2376] = 2275, - [2377] = 2277, - [2378] = 2285, - [2379] = 2379, - [2380] = 2287, - [2381] = 2381, - [2382] = 2382, - [2383] = 2383, - [2384] = 2384, - [2385] = 2301, - [2386] = 2386, - [2387] = 2327, - [2388] = 2293, - [2389] = 2389, - [2390] = 2304, - [2391] = 2391, - [2392] = 2392, - [2393] = 2386, - [2394] = 2384, - [2395] = 2272, - [2396] = 2396, - [2397] = 2355, + [2362] = 2362, + [2363] = 2220, + [2364] = 2305, + [2365] = 2219, + [2366] = 2346, + [2367] = 2367, + [2368] = 2250, + [2369] = 2256, + [2370] = 2166, + [2371] = 2371, + [2372] = 2308, + [2373] = 2238, + [2374] = 2329, + [2375] = 2260, + [2376] = 2263, + [2377] = 2377, + [2378] = 1965, + [2379] = 2266, + [2380] = 2267, + [2381] = 2280, + [2382] = 2297, + [2383] = 2303, + [2384] = 2232, + [2385] = 2347, + [2386] = 2362, + [2387] = 2314, + [2388] = 2356, + [2389] = 2357, + [2390] = 2320, + [2391] = 2313, + [2392] = 2208, + [2393] = 2311, + [2394] = 2358, + [2395] = 2361, + [2396] = 2185, + [2397] = 2240, [2398] = 2398, - [2399] = 2366, - [2400] = 2357, - [2401] = 2254, - [2402] = 2320, - [2403] = 2177, - [2404] = 2382, + [2399] = 2399, + [2400] = 2400, + [2401] = 2401, + [2402] = 2402, + [2403] = 2403, + [2404] = 2404, [2405] = 2405, - [2406] = 2381, - [2407] = 2219, - [2408] = 2296, + [2406] = 2406, + [2407] = 2407, + [2408] = 2408, [2409] = 2409, - [2410] = 2324, - [2411] = 2345, - [2412] = 2360, - [2413] = 2353, - [2414] = 2314, - [2415] = 2078, - [2416] = 2307, - [2417] = 2354, + [2410] = 2410, + [2411] = 2411, + [2412] = 2412, + [2413] = 2413, + [2414] = 2410, + [2415] = 2403, + [2416] = 2398, + [2417] = 2417, [2418] = 2418, - [2419] = 2359, - [2420] = 2356, + [2419] = 2419, + [2420] = 2420, [2421] = 2421, [2422] = 2422, - [2423] = 2423, + [2423] = 2413, [2424] = 2424, [2425] = 2425, [2426] = 2426, [2427] = 2427, [2428] = 2428, - [2429] = 2429, - [2430] = 2430, + [2429] = 2407, + [2430] = 2409, [2431] = 2431, - [2432] = 2432, + [2432] = 2424, [2433] = 2433, [2434] = 2434, [2435] = 2435, [2436] = 2436, [2437] = 2437, - [2438] = 2438, + [2438] = 2421, [2439] = 2439, - [2440] = 2438, + [2440] = 2440, [2441] = 2441, - [2442] = 2442, + [2442] = 1970, [2443] = 2443, [2444] = 2444, - [2445] = 2431, - [2446] = 2426, - [2447] = 2447, - [2448] = 2448, + [2445] = 2445, + [2446] = 2446, + [2447] = 2435, + [2448] = 2439, [2449] = 2449, [2450] = 2450, [2451] = 2451, [2452] = 2452, - [2453] = 2432, + [2453] = 2412, [2454] = 2454, - [2455] = 2455, - [2456] = 2430, - [2457] = 2457, + [2455] = 2443, + [2456] = 2456, + [2457] = 2406, [2458] = 2458, [2459] = 2459, - [2460] = 2460, - [2461] = 2461, - [2462] = 2060, - [2463] = 2463, - [2464] = 2079, + [2460] = 2420, + [2461] = 2419, + [2462] = 2418, + [2463] = 2417, + [2464] = 2456, [2465] = 2465, - [2466] = 2427, - [2467] = 2435, - [2468] = 2425, - [2469] = 2436, - [2470] = 2434, - [2471] = 2451, + [2466] = 2466, + [2467] = 2446, + [2468] = 2468, + [2469] = 2405, + [2470] = 2410, + [2471] = 2408, [2472] = 2472, [2473] = 2473, [2474] = 2474, [2475] = 2475, - [2476] = 2475, - [2477] = 2437, - [2478] = 2478, - [2479] = 2479, - [2480] = 2480, - [2481] = 2423, - [2482] = 2482, - [2483] = 2425, - [2484] = 2433, - [2485] = 2485, + [2476] = 2476, + [2477] = 2434, + [2478] = 2410, + [2479] = 2427, + [2480] = 2426, + [2481] = 2481, + [2482] = 2410, + [2483] = 2483, + [2484] = 2400, + [2485] = 2473, [2486] = 2486, - [2487] = 2487, - [2488] = 2427, - [2489] = 2489, + [2487] = 2403, + [2488] = 2417, + [2489] = 2422, [2490] = 2490, - [2491] = 2465, - [2492] = 2454, - [2493] = 2435, - [2494] = 2434, - [2495] = 2433, - [2496] = 2429, + [2491] = 2491, + [2492] = 2492, + [2493] = 2418, + [2494] = 2417, + [2495] = 2451, + [2496] = 2496, [2497] = 2497, - [2498] = 2498, - [2499] = 2460, - [2500] = 2500, - [2501] = 2461, - [2502] = 2475, - [2503] = 2475, - [2504] = 2478, - [2505] = 2429, - [2506] = 2423, + [2498] = 2454, + [2499] = 2499, + [2500] = 2452, + [2501] = 2452, + [2502] = 2412, + [2503] = 2503, + [2504] = 2483, + [2505] = 2419, + [2506] = 2506, [2507] = 2507, - [2508] = 2508, - [2509] = 2509, - [2510] = 2510, - [2511] = 2475, - [2512] = 2510, - [2513] = 2513, - [2514] = 2514, - [2515] = 2515, - [2516] = 2516, - [2517] = 2517, - [2518] = 2443, - [2519] = 2459, + [2508] = 2486, + [2509] = 2420, + [2510] = 2466, + [2511] = 2465, + [2512] = 2424, + [2513] = 2441, + [2514] = 2440, + [2515] = 2409, + [2516] = 2492, + [2517] = 2418, + [2518] = 2403, + [2519] = 2519, [2520] = 2520, - [2521] = 2433, - [2522] = 2522, - [2523] = 2523, + [2521] = 2521, + [2522] = 2437, + [2523] = 2428, [2524] = 2524, - [2525] = 2509, - [2526] = 2526, + [2525] = 2525, + [2526] = 2474, [2527] = 2527, - [2528] = 2522, - [2529] = 2490, + [2528] = 2503, + [2529] = 2529, [2530] = 2530, - [2531] = 2515, - [2532] = 2532, + [2531] = 2408, + [2532] = 2452, [2533] = 2533, - [2534] = 2433, - [2535] = 2429, + [2534] = 2405, + [2535] = 2468, [2536] = 2536, - [2537] = 2537, - [2538] = 2538, - [2539] = 2539, - [2540] = 2463, - [2541] = 2472, - [2542] = 2508, - [2543] = 2543, - [2544] = 2533, - [2545] = 2474, - [2546] = 2527, + [2537] = 2412, + [2538] = 2449, + [2539] = 2418, + [2540] = 2418, + [2541] = 2541, + [2542] = 2405, + [2543] = 2533, + [2544] = 2408, + [2545] = 2418, + [2546] = 2499, [2547] = 2547, - [2548] = 2523, - [2549] = 2549, - [2550] = 2514, - [2551] = 2513, - [2552] = 2552, - [2553] = 2553, - [2554] = 2423, - [2555] = 2555, + [2548] = 2548, + [2549] = 2418, + [2550] = 2418, + [2551] = 2551, + [2552] = 2419, + [2553] = 2420, + [2554] = 2474, + [2555] = 2428, [2556] = 2556, - [2557] = 2524, - [2558] = 2447, - [2559] = 2421, - [2560] = 2532, - [2561] = 2463, - [2562] = 2543, + [2557] = 2492, + [2558] = 2533, + [2559] = 2559, + [2560] = 2431, + [2561] = 2561, + [2562] = 2562, [2563] = 2563, - [2564] = 2459, - [2565] = 2459, - [2566] = 2429, - [2567] = 2497, - [2568] = 2425, - [2569] = 2569, - [2570] = 2486, - [2571] = 2427, - [2572] = 2431, + [2564] = 2409, + [2565] = 2092, + [2566] = 2409, + [2567] = 2567, + [2568] = 2568, + [2569] = 2418, + [2570] = 2417, + [2571] = 2571, + [2572] = 2521, [2573] = 2433, - [2574] = 2430, - [2575] = 2433, - [2576] = 2432, - [2577] = 2577, - [2578] = 2563, - [2579] = 2579, - [2580] = 2580, - [2581] = 2433, - [2582] = 2539, - [2583] = 2459, - [2584] = 2459, - [2585] = 2433, - [2586] = 2498, + [2574] = 2574, + [2575] = 2418, + [2576] = 2409, + [2577] = 2421, + [2578] = 2402, + [2579] = 2571, + [2580] = 2401, + [2581] = 2399, + [2582] = 2474, + [2583] = 2418, + [2584] = 2524, + [2585] = 2533, + [2586] = 2571, [2587] = 2587, - [2588] = 2433, - [2589] = 2458, - [2590] = 2434, - [2591] = 2563, - [2592] = 2435, - [2593] = 2430, - [2594] = 2538, - [2595] = 2486, - [2596] = 2596, - [2597] = 2536, - [2598] = 2459, - [2599] = 2599, - [2600] = 2515, - [2601] = 2601, - [2602] = 2485, - [2603] = 2603, - [2604] = 2433, - [2605] = 2605, - [2606] = 2452, - [2607] = 2607, - [2608] = 2608, - [2609] = 2609, - [2610] = 2433, - [2611] = 2611, - [2612] = 2455, - [2613] = 2457, - [2614] = 2497, - [2615] = 2480, - [2616] = 2537, - [2617] = 2422, - [2618] = 2432, - [2619] = 2563, - [2620] = 2608, - [2621] = 2607, - [2622] = 2486, - [2623] = 2608, - [2624] = 2459, - [2625] = 2422, - [2626] = 2547, - [2627] = 2608, - [2628] = 2611, - [2629] = 2549, - [2630] = 2552, - [2631] = 2553, - [2632] = 2422, - [2633] = 2555, - [2634] = 2611, - [2635] = 2433, - [2636] = 2611, - [2637] = 2609, - [2638] = 2638, - [2639] = 2609, - [2640] = 2609, + [2588] = 2401, + [2589] = 2525, + [2590] = 2571, + [2591] = 2568, + [2592] = 2527, + [2593] = 2529, + [2594] = 2530, + [2595] = 2401, + [2596] = 2409, + [2597] = 2568, + [2598] = 2409, + [2599] = 2568, + [2600] = 2567, + [2601] = 2418, + [2602] = 2567, + [2603] = 2567, }; -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 inline bool sym_name_character_set_1(int32_t c) { - return (c < 161 - ? (c < '_' - ? (c < 'A' - ? (c >= '0' && c <= '9') - : c <= 'Z') - : (c <= '_' || (c < 128 - ? (c >= 'a' && c <= 'z') - : c <= 159))) - : (c <= 8202 || (c < 57344 - ? (c < 8289 - ? (c >= 8204 && c <= 8287) - : c <= 55295) - : (c <= 65278 || (c >= 65280 && c <= 65535))))); -} - -static inline bool sym_name_character_set_2(int32_t c) { - return (c < 161 - ? (c < 'a' - ? (c < '_' - ? (c >= 'A' && c <= 'Z') - : c <= '_') - : (c <= 'z' || (c >= 128 && c <= 159))) - : (c <= 8202 || (c < 57344 - ? (c < 8289 - ? (c >= 8204 && c <= 8287) - : c <= 55295) - : (c <= 65278 || (c >= 65280 && c <= 65535))))); -} +static TSCharacterRange sym_escape_sequence_character_set_1[] = { + {'"', '"'}, {'$', '$'}, {'0', '7'}, {'\\', '\\'}, {'`', '`'}, {'e', 'f'}, {'n', 'n'}, {'r', 'r'}, + {'t', 'v'}, {'x', 'x'}, +}; -static inline bool sym_name_character_set_3(int32_t c) { - return (c < 161 - ? (c < '_' - ? (c < 'B' - ? (c >= '0' && c <= '9') - : c <= 'Z') - : (c <= '_' || (c < 128 - ? (c >= 'b' && c <= 'z') - : c <= 159))) - : (c <= 8202 || (c < 57344 - ? (c < 8289 - ? (c >= 8204 && c <= 8287) - : c <= 55295) - : (c <= 65278 || (c >= 65280 && c <= 65535))))); -} +static TSCharacterRange sym_name_character_set_1[] = { + {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0x80, 0x9f}, {0xa1, 0x200a}, {0x200c, 0x205f}, {0x2061, 0xfefe}, + {0xff00, 0xffff}, +}; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(67); - if (lookahead == '!') ADVANCE(123); - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(253); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '%') ADVANCE(212); - if (lookahead == '&') ADVANCE(74); - if (lookahead == '\'') ADVANCE(174); - if (lookahead == '(') ADVANCE(84); - if (lookahead == ')') ADVANCE(85); - if (lookahead == '*') ADVANCE(207); - if (lookahead == '+') ADVANCE(115); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(118); - if (lookahead == '.') ADVANCE(205); - if (lookahead == '/') ADVANCE(210); - if (lookahead == '0') ADVANCE(105); - if (lookahead == ':') ADVANCE(82); - if (lookahead == ';') ADVANCE(71); - if (lookahead == '<') ADVANCE(190); - if (lookahead == '=') ADVANCE(76); - if (lookahead == '>') ADVANCE(194); - if (lookahead == '?') ADVANCE(88); - if (lookahead == '@') ADVANCE(124); - if (lookahead == '[') ADVANCE(143); - if (lookahead == '\\') ADVANCE(78); - if (lookahead == ']') ADVANCE(144); - if (lookahead == '^') ADVANCE(184); - if (lookahead == '_') ADVANCE(247); - if (lookahead == '`') ADVANCE(175); - if (lookahead == '{') ADVANCE(79); - if (lookahead == '|') ADVANCE(93); - if (lookahead == '}') ADVANCE(80); - if (lookahead == '~') ADVANCE(121); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(237); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(213); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(216); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(217); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(231); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(245); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(243); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(236); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(229); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(107); + if (eof) ADVANCE(65); + ADVANCE_MAP( + '!', 121, + '"', 169, + '#', 250, + '$', 174, + '%', 210, + '&', 72, + '\'', 172, + '(', 82, + ')', 83, + '*', 205, + '+', 113, + ',', 73, + '-', 116, + '.', 203, + '/', 208, + '0', 103, + ':', 80, + ';', 69, + '<', 188, + '=', 74, + '>', 192, + '?', 86, + '@', 122, + '[', 141, + '\\', 76, + ']', 142, + '^', 182, + '_', 245, + '`', 173, + '{', 77, + '|', 91, + '}', 78, + '~', 119, + 'A', 235, + 'a', 235, + 'B', 211, + 'b', 211, + 'E', 214, + 'e', 214, + 'F', 215, + 'f', 215, + 'I', 229, + 'i', 229, + 'N', 243, + 'n', 243, + 'S', 241, + 's', 241, + 'T', 234, + 't', 234, + 'U', 227, + 'u', 227, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(64) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(62); if (('C' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(249); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(247); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(250); + if (lookahead == '\n') ADVANCE(248); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(250); + if (lookahead == '\n') ADVANCE(248); if (lookahead == '\r') ADVANCE(1); if (lookahead != 0 && - lookahead != '>') ADVANCE(251); + lookahead != '>') ADVANCE(249); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(172); - if (lookahead == '\r') ADVANCE(172); - if (lookahead == '#') ADVANCE(254); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '-') ADVANCE(32); - if (lookahead == '/') ADVANCE(20); - if (lookahead == '[') ADVANCE(143); - if (lookahead == '\\') ADVANCE(54); - if (lookahead == '{') ADVANCE(79); + ADVANCE_MAP( + '\n', 170, + '\r', 170, + '#', 251, + '$', 174, + '-', 31, + '/', 20, + '[', 141, + '\\', 35, + '{', 77, + ); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(4) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(4); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(172); - if (lookahead == '\r') ADVANCE(172); - if (lookahead == '#') ADVANCE(254); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '-') ADVANCE(32); - if (lookahead == '/') ADVANCE(20); - if (lookahead == '[') ADVANCE(143); - if (lookahead == '\\') ADVANCE(36); - if (lookahead == '{') ADVANCE(79); + ADVANCE_MAP( + '\n', 170, + '\r', 170, + '#', 251, + '$', 174, + '-', 31, + '/', 20, + '[', 141, + '\\', 36, + '{', 77, + ); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(4) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(4); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(123); - if (lookahead == '"') ADVANCE(157); - if (lookahead == '#') ADVANCE(253); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '%') ADVANCE(211); - if (lookahead == '&') ADVANCE(73); - if (lookahead == '\'') ADVANCE(159); - if (lookahead == '(') ADVANCE(84); - if (lookahead == ')') ADVANCE(85); - if (lookahead == '*') ADVANCE(208); - if (lookahead == '+') ADVANCE(114); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '.') ADVANCE(205); - if (lookahead == '/') ADVANCE(209); - if (lookahead == '0') ADVANCE(105); - if (lookahead == ':') ADVANCE(81); - if (lookahead == ';') ADVANCE(71); - if (lookahead == '<') ADVANCE(191); - if (lookahead == '=') ADVANCE(31); - if (lookahead == '>') ADVANCE(195); - if (lookahead == '?') ADVANCE(91); - if (lookahead == '@') ADVANCE(124); - if (lookahead == '[') ADVANCE(143); - if (lookahead == '\\') ADVANCE(77); - if (lookahead == ']') ADVANCE(144); - if (lookahead == '^') ADVANCE(183); - if (lookahead == '_') ADVANCE(247); - if (lookahead == '`') ADVANCE(175); - if (lookahead == '|') ADVANCE(94); - if (lookahead == '}') ADVANCE(80); - if (lookahead == '~') ADVANCE(121); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(237); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(214); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(216); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(218); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(245); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(107); + ADVANCE_MAP( + '!', 121, + '"', 155, + '#', 250, + '$', 174, + '%', 209, + '&', 71, + '\'', 157, + '(', 82, + ')', 83, + '*', 206, + '+', 112, + ',', 73, + '-', 115, + '.', 203, + '/', 207, + '0', 103, + ':', 79, + ';', 69, + '<', 189, + '=', 30, + '>', 193, + '?', 89, + '@', 122, + '[', 141, + '\\', 75, + ']', 142, + '^', 181, + '_', 245, + '`', 173, + '|', 92, + '}', 78, + '~', 119, + 'A', 235, + 'a', 235, + 'B', 212, + 'b', 212, + 'E', 214, + 'e', 214, + 'F', 216, + 'f', 216, + 'N', 243, + 'n', 243, + 'T', 234, + 't', 234, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(5) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(5); if (('C' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(249); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(247); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(122); - if (lookahead == '"') ADVANCE(157); - if (lookahead == '#') ADVANCE(253); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '&') ADVANCE(72); - if (lookahead == '\'') ADVANCE(159); - if (lookahead == '(') ADVANCE(84); - if (lookahead == ')') ADVANCE(85); - if (lookahead == '+') ADVANCE(114); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '.') ADVANCE(101); - if (lookahead == '/') ADVANCE(20); - if (lookahead == '0') ADVANCE(105); - if (lookahead == '<') ADVANCE(27); - if (lookahead == '@') ADVANCE(124); - if (lookahead == '[') ADVANCE(143); - if (lookahead == '\\') ADVANCE(77); - if (lookahead == ']') ADVANCE(144); - if (lookahead == '_') ADVANCE(247); - if (lookahead == '`') ADVANCE(175); - if (lookahead == '~') ADVANCE(121); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(237); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(214); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(216); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(218); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(245); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(107); + ADVANCE_MAP( + '!', 120, + '"', 155, + '#', 250, + '$', 174, + '&', 70, + '\'', 157, + '(', 82, + ')', 83, + '+', 112, + ',', 73, + '-', 115, + '.', 99, + '/', 20, + '0', 103, + '<', 26, + '@', 122, + '[', 141, + '\\', 75, + ']', 142, + '_', 245, + '`', 173, + '~', 119, + 'A', 235, + 'a', 235, + 'B', 212, + 'b', 212, + 'E', 214, + 'e', 214, + 'F', 216, + 'f', 216, + 'N', 243, + 'n', 243, + 'T', 234, + 't', 234, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(6) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(6); if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(249); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(247); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(122); - if (lookahead == '"') ADVANCE(157); - if (lookahead == '#') ADVANCE(253); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '\'') ADVANCE(159); - if (lookahead == '(') ADVANCE(84); - if (lookahead == '+') ADVANCE(114); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '.') ADVANCE(102); - if (lookahead == '/') ADVANCE(20); - if (lookahead == '0') ADVANCE(105); - if (lookahead == '<') ADVANCE(27); - if (lookahead == '@') ADVANCE(124); - if (lookahead == '[') ADVANCE(143); - if (lookahead == '\\') ADVANCE(77); - if (lookahead == '_') ADVANCE(247); - if (lookahead == '`') ADVANCE(175); - if (lookahead == '~') ADVANCE(121); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(237); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(213); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(216); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(217); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(231); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(245); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(243); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(236); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(229); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(107); + ADVANCE_MAP( + '!', 120, + '"', 155, + '#', 250, + '$', 174, + '\'', 157, + '(', 82, + '+', 112, + '-', 115, + '.', 100, + '/', 20, + '0', 103, + '<', 26, + '@', 122, + '[', 141, + '\\', 75, + '_', 245, + '`', 173, + '~', 119, + 'A', 235, + 'a', 235, + 'B', 211, + 'b', 211, + 'E', 214, + 'e', 214, + 'F', 215, + 'f', 215, + 'I', 229, + 'i', 229, + 'N', 243, + 'n', 243, + 'S', 241, + 's', 241, + 'T', 234, + 't', 234, + 'U', 227, + 'u', 227, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(7) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(7); if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(249); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(247); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(30); - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(254); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '%') ADVANCE(211); - if (lookahead == '&') ADVANCE(73); - if (lookahead == '\'') ADVANCE(174); - if (lookahead == '(') ADVANCE(84); - if (lookahead == ')') ADVANCE(85); - if (lookahead == '*') ADVANCE(208); - if (lookahead == '+') ADVANCE(113); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(120); - if (lookahead == '.') ADVANCE(204); - if (lookahead == '/') ADVANCE(209); - if (lookahead == '0') ADVANCE(110); - if (lookahead == ':') ADVANCE(82); - if (lookahead == ';') ADVANCE(71); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(76); - if (lookahead == '>') ADVANCE(195); - if (lookahead == '?') ADVANCE(90); - if (lookahead == '[') ADVANCE(143); - if (lookahead == '\\') ADVANCE(77); - if (lookahead == ']') ADVANCE(144); - if (lookahead == '^') ADVANCE(183); - if (lookahead == '{') ADVANCE(79); - if (lookahead == '|') ADVANCE(94); - if (lookahead == '}') ADVANCE(80); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(112); + ADVANCE_MAP( + '!', 29, + '"', 169, + '#', 251, + '$', 174, + '%', 209, + '&', 71, + '\'', 172, + '(', 82, + ')', 83, + '*', 206, + '+', 111, + ',', 73, + '-', 118, + '.', 202, + '/', 207, + '0', 108, + ':', 80, + ';', 69, + '<', 191, + '=', 74, + '>', 193, + '?', 88, + '[', 141, + '\\', 75, + ']', 142, + '^', 181, + '{', 77, + '|', 92, + '}', 78, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(110); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(11) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(11); if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(249); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(247); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(30); - if (lookahead == '"') ADVANCE(157); - if (lookahead == '#') ADVANCE(254); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '%') ADVANCE(211); - if (lookahead == '&') ADVANCE(73); - if (lookahead == '(') ADVANCE(84); - if (lookahead == ')') ADVANCE(85); - if (lookahead == '*') ADVANCE(208); - if (lookahead == '+') ADVANCE(114); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(119); - if (lookahead == '.') ADVANCE(204); - if (lookahead == '/') ADVANCE(209); - if (lookahead == ':') ADVANCE(82); - if (lookahead == ';') ADVANCE(71); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(31); - if (lookahead == '>') ADVANCE(195); - if (lookahead == '?') ADVANCE(90); - if (lookahead == '[') ADVANCE(143); - if (lookahead == '\\') ADVANCE(54); - if (lookahead == ']') ADVANCE(144); - if (lookahead == '^') ADVANCE(183); - if (lookahead == '`') ADVANCE(175); - if (lookahead == '{') ADVANCE(79); - if (lookahead == '|') ADVANCE(94); - if (lookahead == '}') ADVANCE(80); + ADVANCE_MAP( + '!', 29, + '"', 155, + '#', 251, + '$', 174, + '%', 209, + '&', 71, + '(', 82, + ')', 83, + '*', 206, + '+', 112, + ',', 73, + '-', 117, + '.', 202, + '/', 207, + ':', 80, + ';', 69, + '<', 191, + '=', 30, + '>', 193, + '?', 88, + '[', 141, + '\\', 35, + ']', 142, + '^', 181, + '`', 173, + '{', 77, + '|', 92, + '}', 78, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(10) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(10); if (('A' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(249); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(247); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(30); - if (lookahead == '"') ADVANCE(157); - if (lookahead == '#') ADVANCE(254); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '%') ADVANCE(211); - if (lookahead == '&') ADVANCE(73); - if (lookahead == '(') ADVANCE(84); - if (lookahead == ')') ADVANCE(85); - if (lookahead == '*') ADVANCE(208); - if (lookahead == '+') ADVANCE(114); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(119); - if (lookahead == '.') ADVANCE(204); - if (lookahead == '/') ADVANCE(209); - if (lookahead == ':') ADVANCE(82); - if (lookahead == ';') ADVANCE(71); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(31); - if (lookahead == '>') ADVANCE(195); - if (lookahead == '?') ADVANCE(90); - if (lookahead == '[') ADVANCE(143); - if (lookahead == '\\') ADVANCE(36); - if (lookahead == ']') ADVANCE(144); - if (lookahead == '^') ADVANCE(183); - if (lookahead == '`') ADVANCE(175); - if (lookahead == '{') ADVANCE(79); - if (lookahead == '|') ADVANCE(94); - if (lookahead == '}') ADVANCE(80); + ADVANCE_MAP( + '!', 29, + '"', 155, + '#', 251, + '$', 174, + '%', 209, + '&', 71, + '(', 82, + ')', 83, + '*', 206, + '+', 112, + ',', 73, + '-', 117, + '.', 202, + '/', 207, + ':', 80, + ';', 69, + '<', 191, + '=', 30, + '>', 193, + '?', 88, + '[', 141, + '\\', 36, + ']', 142, + '^', 181, + '`', 173, + '{', 77, + '|', 92, + '}', 78, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(10) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(10); if (('A' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(249); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(247); END_STATE(); case 11: - if (lookahead == '!') ADVANCE(30); - if (lookahead == '#') ADVANCE(254); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '%') ADVANCE(211); - if (lookahead == '&') ADVANCE(73); - if (lookahead == '(') ADVANCE(84); - if (lookahead == ')') ADVANCE(85); - if (lookahead == '*') ADVANCE(208); - if (lookahead == '+') ADVANCE(113); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(120); - if (lookahead == '.') ADVANCE(204); - if (lookahead == '/') ADVANCE(209); - if (lookahead == '0') ADVANCE(110); - if (lookahead == ':') ADVANCE(82); - if (lookahead == ';') ADVANCE(71); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(76); - if (lookahead == '>') ADVANCE(195); - if (lookahead == '?') ADVANCE(90); - if (lookahead == '[') ADVANCE(143); - if (lookahead == '\\') ADVANCE(77); - if (lookahead == ']') ADVANCE(144); - if (lookahead == '^') ADVANCE(183); - if (lookahead == '{') ADVANCE(79); - if (lookahead == '|') ADVANCE(94); - if (lookahead == '}') ADVANCE(80); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(112); + ADVANCE_MAP( + '!', 29, + '#', 251, + '$', 174, + '%', 209, + '&', 71, + '(', 82, + ')', 83, + '*', 206, + '+', 111, + ',', 73, + '-', 118, + '.', 202, + '/', 207, + '0', 108, + ':', 80, + ';', 69, + '<', 191, + '=', 74, + '>', 193, + '?', 88, + '[', 141, + '\\', 75, + ']', 142, + '^', 181, + '{', 77, + '|', 92, + '}', 78, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(110); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(11) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(11); if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(249); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(247); END_STATE(); case 12: - if (lookahead == '!') ADVANCE(30); - if (lookahead == '#') ADVANCE(254); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '%') ADVANCE(211); - if (lookahead == '&') ADVANCE(73); - if (lookahead == '(') ADVANCE(84); - if (lookahead == ')') ADVANCE(85); - if (lookahead == '*') ADVANCE(208); - if (lookahead == '+') ADVANCE(113); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(116); - if (lookahead == '.') ADVANCE(204); - if (lookahead == '/') ADVANCE(209); - if (lookahead == ':') ADVANCE(81); - if (lookahead == ';') ADVANCE(71); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(31); - if (lookahead == '>') ADVANCE(195); - if (lookahead == '?') ADVANCE(91); - if (lookahead == '\\') ADVANCE(77); - if (lookahead == ']') ADVANCE(144); - if (lookahead == '^') ADVANCE(183); - if (lookahead == '|') ADVANCE(94); - if (lookahead == '}') ADVANCE(80); + ADVANCE_MAP( + '!', 29, + '#', 251, + '$', 174, + '%', 209, + '&', 71, + '(', 82, + ')', 83, + '*', 206, + '+', 111, + ',', 73, + '-', 114, + '.', 202, + '/', 207, + ':', 79, + ';', 69, + '<', 191, + '=', 30, + '>', 193, + '?', 89, + '\\', 75, + ']', 142, + '^', 181, + '|', 92, + '}', 78, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(12) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(12); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(249); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(247); END_STATE(); case 13: - if (lookahead == '"') ADVANCE(156); - if (lookahead == '\'') ADVANCE(158); + if (lookahead == '"') ADVANCE(154); + if (lookahead == '\'') ADVANCE(156); END_STATE(); case 14: - if (lookahead == '"') ADVANCE(157); - if (lookahead == '#') ADVANCE(253); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '\'') ADVANCE(159); - if (lookahead == '(') ADVANCE(84); - if (lookahead == '/') ADVANCE(20); - if (lookahead == '<') ADVANCE(27); - if (lookahead == '[') ADVANCE(143); - if (lookahead == '\\') ADVANCE(77); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(237); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(214); + ADVANCE_MAP( + '"', 155, + '#', 250, + '$', 174, + '\'', 157, + '(', 82, + '/', 20, + '<', 26, + '[', 141, + '\\', 75, + 'A', 235, + 'a', 235, + 'B', 212, + 'b', 212, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(14) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(14); if (('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('c' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(249); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(247); END_STATE(); case 15: - if (lookahead == '"') ADVANCE(157); - if (lookahead == '#') ADVANCE(254); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '&') ADVANCE(72); - if (lookahead == '\'') ADVANCE(159); - if (lookahead == '(') ADVANCE(84); - if (lookahead == '.') ADVANCE(24); - if (lookahead == '/') ADVANCE(20); - if (lookahead == '0') ADVANCE(110); - if (lookahead == '<') ADVANCE(27); - if (lookahead == '[') ADVANCE(143); - if (lookahead == '\\') ADVANCE(77); - if (lookahead == '|') ADVANCE(92); - if (lookahead == '}') ADVANCE(80); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(237); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(214); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(112); + ADVANCE_MAP( + '"', 155, + '#', 251, + '$', 174, + '&', 70, + '\'', 157, + '(', 82, + ')', 83, + '.', 23, + '/', 20, + '0', 108, + '<', 26, + '[', 141, + '\\', 75, + '|', 90, + '}', 78, + 'A', 235, + 'a', 235, + 'B', 212, + 'b', 212, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(110); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(15) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(15); if (('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('c' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(249); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(247); END_STATE(); case 16: - if (lookahead == '"') ADVANCE(157); - if (lookahead == '#') ADVANCE(254); - if (lookahead == '\'') ADVANCE(159); - if (lookahead == '.') ADVANCE(102); - if (lookahead == '/') ADVANCE(20); - if (lookahead == '0') ADVANCE(105); - if (lookahead == '<') ADVANCE(27); - if (lookahead == '_') ADVANCE(57); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(13); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(39); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(40); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(50); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(47); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(107); + ADVANCE_MAP( + '"', 155, + '#', 251, + '\'', 157, + '.', 100, + '/', 20, + '0', 103, + '<', 26, + '_', 56, + 'B', 13, + 'b', 13, + 'E', 39, + 'e', 39, + 'F', 40, + 'f', 40, + 'N', 50, + 'n', 50, + 'T', 47, + 't', 47, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(16) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(16); END_STATE(); case 17: - if (lookahead == '#') ADVANCE(253); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '&') ADVANCE(72); - if (lookahead == '(') ADVANCE(84); - if (lookahead == ')') ADVANCE(85); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '.') ADVANCE(24); - if (lookahead == '/') ADVANCE(20); - if (lookahead == '?') ADVANCE(87); - if (lookahead == '\\') ADVANCE(77); - if (lookahead == '}') ADVANCE(80); + ADVANCE_MAP( + '#', 250, + '$', 174, + '&', 70, + '(', 82, + ')', 83, + ',', 73, + '.', 23, + '/', 20, + '?', 85, + '\\', 75, + '}', 78, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(17) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(17); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(249); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(247); END_STATE(); case 18: - if (lookahead == '#') ADVANCE(254); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '&') ADVANCE(72); - if (lookahead == '(') ADVANCE(84); - if (lookahead == ')') ADVANCE(85); - if (lookahead == '.') ADVANCE(24); - if (lookahead == '/') ADVANCE(20); - if (lookahead == '=') ADVANCE(33); - if (lookahead == '?') ADVANCE(87); - if (lookahead == '\\') ADVANCE(77); - if (lookahead == '{') ADVANCE(79); - if (lookahead == '|') ADVANCE(92); + ADVANCE_MAP( + '#', 251, + '$', 174, + '&', 70, + '(', 82, + ')', 83, + '.', 23, + '/', 20, + '=', 32, + '?', 85, + '\\', 75, + '{', 77, + '|', 90, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(18) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(18); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(249); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(247); END_STATE(); case 19: - if (lookahead == '#') ADVANCE(168); - if (lookahead == '\'') ADVANCE(159); - if (lookahead == '/') ADVANCE(164); + if (lookahead == '#') ADVANCE(166); + if (lookahead == '\'') ADVANCE(157); + if (lookahead == '/') ADVANCE(162); if (lookahead == '\\') ADVANCE(38); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(163); - if (lookahead != 0) ADVANCE(169); + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(161); + if (lookahead != 0) ADVANCE(167); END_STATE(); case 20: if (lookahead == '*') ADVANCE(22); - if (lookahead == '/') ADVANCE(251); + if (lookahead == '/') ADVANCE(249); END_STATE(); case 21: if (lookahead == '*') ADVANCE(21); - if (lookahead == '/') ADVANCE(250); + if (lookahead == '/') ADVANCE(248); if (lookahead != 0) ADVANCE(22); END_STATE(); case 22: @@ -7211,71 +7099,71 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(22); END_STATE(); case 23: - if (lookahead == '*') ADVANCE(165); - if (lookahead == '\'' || - lookahead == '\\') ADVANCE(22); - if (lookahead != 0) ADVANCE(166); + if (lookahead == '.') ADVANCE(25); END_STATE(); case 24: - if (lookahead == '.') ADVANCE(26); - END_STATE(); - case 25: - if (lookahead == '.') ADVANCE(102); - if (lookahead == '_') ADVANCE(57); + if (lookahead == '.') ADVANCE(100); + if (lookahead == '_') ADVANCE(56); if (lookahead == 'E' || lookahead == 'e') ADVANCE(39); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(25); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(24); + END_STATE(); + case 25: + if (lookahead == '.') ADVANCE(84); END_STATE(); case 26: - if (lookahead == '.') ADVANCE(86); + if (lookahead == '<') ADVANCE(28); END_STATE(); case 27: - if (lookahead == '<') ADVANCE(29); + if (lookahead == '<') ADVANCE(28); + if (lookahead == '?') ADVANCE(68); END_STATE(); case 28: - if (lookahead == '<') ADVANCE(29); - if (lookahead == '?') ADVANCE(70); + if (lookahead == '<') ADVANCE(168); END_STATE(); case 29: - if (lookahead == '<') ADVANCE(170); + if (lookahead == '=') ADVANCE(184); END_STATE(); case 30: - if (lookahead == '=') ADVANCE(186); + if (lookahead == '=') ADVANCE(183); + if (lookahead == '>') ADVANCE(81); END_STATE(); case 31: - if (lookahead == '=') ADVANCE(185); - if (lookahead == '>') ADVANCE(83); + if (lookahead == '>') ADVANCE(139); END_STATE(); case 32: - if (lookahead == '>') ADVANCE(141); + if (lookahead == '>') ADVANCE(81); END_STATE(); case 33: - if (lookahead == '>') ADVANCE(83); + if (lookahead == '>') ADVANCE(66); END_STATE(); case 34: - if (lookahead == '>') ADVANCE(68); + if (lookahead == '>') ADVANCE(140); END_STATE(); case 35: - if (lookahead == '>') ADVANCE(142); + if (lookahead == 'u') ADVANCE(153); + if (lookahead == 'x') ADVANCE(60); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(150); + if (set_contains(sym_escape_sequence_character_set_1, 10, lookahead)) ADVANCE(148); END_STATE(); case 36: - if (lookahead == 'u') ADVANCE(154); + if (lookahead == 'u') ADVANCE(152); END_STATE(); case 37: - if (lookahead == '}') ADVANCE(150); + if (lookahead == '}') ADVANCE(148); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(37); END_STATE(); case 38: if (lookahead == '\'' || - lookahead == '\\') ADVANCE(160); - if (lookahead != 0) ADVANCE(169); + lookahead == '\\') ADVANCE(158); + if (lookahead != 0) ADVANCE(167); END_STATE(); case 39: if (lookahead == '+' || - lookahead == '-') ADVANCE(58); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(104); + lookahead == '-') ADVANCE(57); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(102); END_STATE(); case 40: if (lookahead == 'A' || @@ -7283,7 +7171,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 41: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(147); + lookahead == 'e') ADVANCE(145); END_STATE(); case 42: if (lookahead == 'H' || @@ -7295,7 +7183,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 44: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(145); + lookahead == 'l') ADVANCE(143); END_STATE(); case 45: if (lookahead == 'L' || @@ -7303,7 +7191,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 46: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(69); + lookahead == 'p') ADVANCE(67); END_STATE(); case 47: if (lookahead == 'R' || @@ -7323,1125 +7211,1109 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 51: if (lookahead == '0' || - lookahead == '1') ADVANCE(108); + lookahead == '1') ADVANCE(106); END_STATE(); case 52: if (lookahead == '8' || - lookahead == '9') ADVANCE(25); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(106); + lookahead == '9') ADVANCE(24); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(104); END_STATE(); case 53: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(111); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(109); END_STATE(); case 54: - if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(150); - if (lookahead == 'u') ADVANCE(155); - if (lookahead == 'x') ADVANCE(61); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(152); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(105); END_STATE(); case 55: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); END_STATE(); case 56: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(102); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(24); END_STATE(); case 57: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(25); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(102); END_STATE(); case 58: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(104); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); END_STATE(); case 59: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); - END_STATE(); - case 60: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(109); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(107); END_STATE(); - case 61: + case 60: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(153); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(151); END_STATE(); - case 62: + case 61: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(37); END_STATE(); - case 63: - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(169); - END_STATE(); - case 64: - if (eof) ADVANCE(67); - if (lookahead == '!') ADVANCE(123); - if (lookahead == '"') ADVANCE(157); - if (lookahead == '#') ADVANCE(253); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '%') ADVANCE(212); - if (lookahead == '&') ADVANCE(74); - if (lookahead == '\'') ADVANCE(159); - if (lookahead == '(') ADVANCE(84); - if (lookahead == ')') ADVANCE(85); - if (lookahead == '*') ADVANCE(207); - if (lookahead == '+') ADVANCE(115); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(118); - if (lookahead == '.') ADVANCE(205); - if (lookahead == '/') ADVANCE(210); - if (lookahead == '0') ADVANCE(105); - if (lookahead == ':') ADVANCE(82); - if (lookahead == ';') ADVANCE(71); - if (lookahead == '<') ADVANCE(190); - if (lookahead == '=') ADVANCE(76); - if (lookahead == '>') ADVANCE(194); - if (lookahead == '?') ADVANCE(88); - if (lookahead == '@') ADVANCE(124); - if (lookahead == '[') ADVANCE(143); - if (lookahead == '\\') ADVANCE(78); - if (lookahead == ']') ADVANCE(144); - if (lookahead == '^') ADVANCE(184); - if (lookahead == '_') ADVANCE(247); - if (lookahead == '`') ADVANCE(175); - if (lookahead == '{') ADVANCE(79); - if (lookahead == '|') ADVANCE(93); - if (lookahead == '}') ADVANCE(80); - if (lookahead == '~') ADVANCE(121); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(237); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(213); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(216); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(217); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(231); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(245); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(243); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(236); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(229); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(107); + case 62: + if (eof) ADVANCE(65); + ADVANCE_MAP( + '!', 121, + '"', 155, + '#', 250, + '$', 174, + '%', 210, + '&', 72, + '\'', 157, + '(', 82, + ')', 83, + '*', 205, + '+', 113, + ',', 73, + '-', 116, + '.', 203, + '/', 208, + '0', 103, + ':', 80, + ';', 69, + '<', 188, + '=', 74, + '>', 192, + '?', 86, + '@', 122, + '[', 141, + '\\', 76, + ']', 142, + '^', 182, + '_', 245, + '`', 173, + '{', 77, + '|', 91, + '}', 78, + '~', 119, + 'A', 235, + 'a', 235, + 'B', 211, + 'b', 211, + 'E', 214, + 'e', 214, + 'F', 215, + 'f', 215, + 'I', 229, + 'i', 229, + 'N', 243, + 'n', 243, + 'S', 241, + 's', 241, + 'T', 234, + 't', 234, + 'U', 227, + 'u', 227, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(64) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(62); if (('C' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(249); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(247); END_STATE(); - case 65: - if (eof) ADVANCE(67); - if (lookahead == '!') ADVANCE(122); - if (lookahead == '"') ADVANCE(157); - if (lookahead == '#') ADVANCE(253); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '&') ADVANCE(72); - if (lookahead == '\'') ADVANCE(159); - if (lookahead == '(') ADVANCE(84); - if (lookahead == ')') ADVANCE(85); - if (lookahead == '+') ADVANCE(114); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '.') ADVANCE(102); - if (lookahead == '/') ADVANCE(20); - if (lookahead == '0') ADVANCE(105); - if (lookahead == ':') ADVANCE(81); - if (lookahead == ';') ADVANCE(71); - if (lookahead == '<') ADVANCE(28); - if (lookahead == '=') ADVANCE(33); - if (lookahead == '?') ADVANCE(34); - if (lookahead == '@') ADVANCE(124); - if (lookahead == '[') ADVANCE(143); - if (lookahead == '\\') ADVANCE(77); - if (lookahead == ']') ADVANCE(144); - if (lookahead == '_') ADVANCE(247); - if (lookahead == '`') ADVANCE(175); - if (lookahead == '{') ADVANCE(79); - if (lookahead == '}') ADVANCE(80); - if (lookahead == '~') ADVANCE(121); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(237); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(214); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(216); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(218); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(245); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(107); + case 63: + if (eof) ADVANCE(65); + ADVANCE_MAP( + '!', 120, + '"', 155, + '#', 250, + '$', 174, + '&', 70, + '\'', 157, + '(', 82, + ')', 83, + '+', 112, + ',', 73, + '-', 115, + '.', 100, + '/', 20, + '0', 103, + ':', 79, + ';', 69, + '<', 27, + '=', 32, + '?', 33, + '@', 122, + '[', 141, + '\\', 75, + ']', 142, + '_', 245, + '`', 173, + '{', 77, + '}', 78, + '~', 119, + 'A', 235, + 'a', 235, + 'B', 212, + 'b', 212, + 'E', 214, + 'e', 214, + 'F', 216, + 'f', 216, + 'N', 243, + 'n', 243, + 'T', 234, + 't', 234, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(65) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(63); if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(249); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(247); END_STATE(); - case 66: - if (eof) ADVANCE(67); - if (lookahead == '!') ADVANCE(30); - if (lookahead == '"') ADVANCE(157); - if (lookahead == '#') ADVANCE(254); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '%') ADVANCE(212); - if (lookahead == '&') ADVANCE(74); - if (lookahead == '\'') ADVANCE(159); - if (lookahead == '(') ADVANCE(84); - if (lookahead == ')') ADVANCE(85); - if (lookahead == '*') ADVANCE(207); - if (lookahead == '+') ADVANCE(115); - if (lookahead == ',') ADVANCE(75); - if (lookahead == '-') ADVANCE(118); - if (lookahead == '.') ADVANCE(206); - if (lookahead == '/') ADVANCE(210); - if (lookahead == '0') ADVANCE(110); - if (lookahead == ':') ADVANCE(82); - if (lookahead == ';') ADVANCE(71); - if (lookahead == '<') ADVANCE(192); - if (lookahead == '=') ADVANCE(76); - if (lookahead == '>') ADVANCE(194); - if (lookahead == '?') ADVANCE(89); - if (lookahead == '[') ADVANCE(143); - if (lookahead == '\\') ADVANCE(77); - if (lookahead == ']') ADVANCE(144); - if (lookahead == '^') ADVANCE(184); - if (lookahead == '{') ADVANCE(79); - if (lookahead == '|') ADVANCE(93); - if (lookahead == '}') ADVANCE(80); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(112); + case 64: + if (eof) ADVANCE(65); + ADVANCE_MAP( + '!', 29, + '"', 155, + '#', 251, + '$', 174, + '%', 210, + '&', 72, + '\'', 157, + '(', 82, + ')', 83, + '*', 205, + '+', 113, + ',', 73, + '-', 116, + '.', 204, + '/', 208, + '0', 108, + ':', 80, + ';', 69, + '<', 190, + '=', 74, + '>', 192, + '?', 87, + '[', 141, + '\\', 75, + ']', 142, + '^', 182, + '{', 77, + '|', 91, + '}', 78, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(110); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(66) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(64); if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(249); + (0x80 <= lookahead && lookahead <= 0xffff)) ADVANCE(247); END_STATE(); - case 67: + case 65: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 68: + case 66: ACCEPT_TOKEN(anon_sym_QMARK_GT); END_STATE(); - case 69: + case 67: ACCEPT_TOKEN(sym_php_tag); END_STATE(); - case 70: + case 68: ACCEPT_TOKEN(sym_php_tag); - if (lookahead == '=') ADVANCE(69); + if (lookahead == '=') ADVANCE(67); if (lookahead == 'P' || lookahead == 'p') ADVANCE(42); END_STATE(); - case 71: + case 69: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 72: + case 70: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 73: + case 71: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(182); + if (lookahead == '&') ADVANCE(180); END_STATE(); - case 74: + case 72: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(182); - if (lookahead == '=') ADVANCE(137); + if (lookahead == '&') ADVANCE(180); + if (lookahead == '=') ADVANCE(135); END_STATE(); - case 75: + case 73: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 76: + case 74: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(185); - if (lookahead == '>') ADVANCE(83); + if (lookahead == '=') ADVANCE(183); + if (lookahead == '>') ADVANCE(81); END_STATE(); - case 77: + case 75: ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); - case 78: + case 76: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '\'' || - lookahead == '\\') ADVANCE(160); + lookahead == '\\') ADVANCE(158); END_STATE(); - case 79: + case 77: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 80: + case 78: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 81: + case 79: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 82: + case 80: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(125); + if (lookahead == ':') ADVANCE(123); END_STATE(); - case 83: + case 81: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 84: + case 82: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 85: + case 83: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 86: + case 84: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); + case 85: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 86: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '-') ADVANCE(34); + if (lookahead == '>') ADVANCE(66); + if (lookahead == '?') ADVANCE(176); + END_STATE(); case 87: ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '-') ADVANCE(34); + if (lookahead == '?') ADVANCE(176); END_STATE(); case 88: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(35); - if (lookahead == '>') ADVANCE(68); - if (lookahead == '?') ADVANCE(178); + if (lookahead == '-') ADVANCE(34); + if (lookahead == '?') ADVANCE(175); END_STATE(); case 89: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(35); - if (lookahead == '?') ADVANCE(178); + if (lookahead == '?') ADVANCE(175); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(35); - if (lookahead == '?') ADVANCE(177); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '?') ADVANCE(177); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(137); + if (lookahead == '|') ADVANCE(179); END_STATE(); case 92: ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(179); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(139); - if (lookahead == '|') ADVANCE(181); - END_STATE(); - case 94: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(181); - END_STATE(); - case 95: ACCEPT_TOKEN(aux_sym_cast_type_token1); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); - case 96: + case 94: ACCEPT_TOKEN(aux_sym_cast_type_token3); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); - case 97: + case 95: ACCEPT_TOKEN(aux_sym_cast_type_token6); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); - case 98: + case 96: ACCEPT_TOKEN(aux_sym_cast_type_token8); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); - case 99: + case 97: ACCEPT_TOKEN(aux_sym_cast_type_token11); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); - case 100: + case 98: ACCEPT_TOKEN(aux_sym_cast_type_token12); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); - case 101: + case 99: ACCEPT_TOKEN(sym_float); - if (lookahead == '.') ADVANCE(26); - if (lookahead == '_') ADVANCE(56); + if (lookahead == '.') ADVANCE(25); + if (lookahead == '_') ADVANCE(55); if (lookahead == 'E' || lookahead == 'e') ADVANCE(39); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(102); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); END_STATE(); - case 102: + case 100: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(56); + if (lookahead == '_') ADVANCE(55); if (lookahead == 'E' || lookahead == 'e') ADVANCE(39); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(102); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); END_STATE(); - case 103: + case 101: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(103); + if (lookahead == '_') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(101); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 159) || - (161 <= lookahead && lookahead <= 8202) || - (8204 <= lookahead && lookahead <= 8287) || - (8289 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65278) || - (65280 <= lookahead && lookahead <= 65535)) ADVANCE(249); + (0x80 <= lookahead && lookahead <= 0x9f) || + (0xa1 <= lookahead && lookahead <= 0x200a) || + (0x200c <= lookahead && lookahead <= 0x205f) || + (0x2061 <= lookahead && lookahead <= 0xfefe) || + (0xff00 <= lookahead && lookahead <= 0xffff)) ADVANCE(247); END_STATE(); - case 104: + case 102: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(58); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(104); + if (lookahead == '_') ADVANCE(57); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(102); END_STATE(); - case 105: + case 103: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(102); - if (lookahead == '_') ADVANCE(52); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(51); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(39); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(111); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(60); - if (lookahead == '8' || - lookahead == '9') ADVANCE(25); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(106); + ADVANCE_MAP( + '.', 100, + '_', 52, + 'B', 51, + 'b', 51, + 'E', 39, + 'e', 39, + 'O', 109, + 'o', 109, + 'X', 59, + 'x', 59, + '8', 24, + '9', 24, + ); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(104); END_STATE(); - case 106: + case 104: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(102); + if (lookahead == '.') ADVANCE(100); if (lookahead == '_') ADVANCE(52); if (lookahead == 'E' || lookahead == 'e') ADVANCE(39); if (lookahead == '8' || - lookahead == '9') ADVANCE(25); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(106); + lookahead == '9') ADVANCE(24); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(104); END_STATE(); - case 107: + case 105: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(102); - if (lookahead == '_') ADVANCE(55); + if (lookahead == '.') ADVANCE(100); + if (lookahead == '_') ADVANCE(54); if (lookahead == 'E' || lookahead == 'e') ADVANCE(39); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(105); END_STATE(); - case 108: + case 106: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(51); if (lookahead == '0' || - lookahead == '1') ADVANCE(108); + lookahead == '1') ADVANCE(106); END_STATE(); - case 109: + case 107: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(60); + if (lookahead == '_') ADVANCE(59); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(109); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(107); END_STATE(); - case 110: + case 108: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(53); if (lookahead == 'B' || lookahead == 'b') ADVANCE(51); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(111); + lookahead == 'o') ADVANCE(109); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(60); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(111); + lookahead == 'x') ADVANCE(59); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(109); END_STATE(); - case 111: + case 109: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(53); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(111); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(109); END_STATE(); - case 112: + case 110: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(59); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); + if (lookahead == '_') ADVANCE(58); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); + END_STATE(); + case 111: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 112: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(125); END_STATE(); case 113: ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(125); + if (lookahead == '=') ADVANCE(130); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(127); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(127); - if (lookahead == '=') ADVANCE(132); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(124); END_STATE(); case 116: ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(124); + if (lookahead == '=') ADVANCE(131); + if (lookahead == '>') ADVANCE(139); END_STATE(); case 117: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(126); + if (lookahead == '-') ADVANCE(124); + if (lookahead == '>') ADVANCE(139); END_STATE(); case 118: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(126); - if (lookahead == '=') ADVANCE(133); - if (lookahead == '>') ADVANCE(141); + if (lookahead == '>') ADVANCE(139); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(126); - if (lookahead == '>') ADVANCE(141); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(141); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(184); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(186); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_DOT_EQ); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_DOT_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); + ACCEPT_TOKEN(anon_sym_QMARK_DASH_GT); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_QMARK_DASH_GT); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(aux_sym__argument_name_token1); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(aux_sym__argument_name_token1); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 145: - ACCEPT_TOKEN(aux_sym__argument_name_token1); + ACCEPT_TOKEN(aux_sym__argument_name_token2); END_STATE(); case 146: - ACCEPT_TOKEN(aux_sym__argument_name_token1); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + ACCEPT_TOKEN(aux_sym__argument_name_token2); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 147: - ACCEPT_TOKEN(aux_sym__argument_name_token2); + ACCEPT_TOKEN(anon_sym_POUND_LBRACK); END_STATE(); case 148: - ACCEPT_TOKEN(aux_sym__argument_name_token2); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_POUND_LBRACK); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(148); END_STATE(); case 150: ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(149); END_STATE(); case 151: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(148); END_STATE(); case 152: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(151); + ACCEPT_TOKEN(anon_sym_BSLASHu); END_STATE(); case 153: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(150); + ACCEPT_TOKEN(anon_sym_BSLASHu); + if (lookahead == '{') ADVANCE(61); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_BSLASHu); + ACCEPT_TOKEN(aux_sym_encapsed_string_token1); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_BSLASHu); - if (lookahead == '{') ADVANCE(62); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 156: - ACCEPT_TOKEN(aux_sym_encapsed_string_token1); + ACCEPT_TOKEN(aux_sym_string_token1); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 158: - ACCEPT_TOKEN(aux_sym_string_token1); + ACCEPT_TOKEN(aux_sym_string_token2); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '\n') ADVANCE(167); + if (lookahead == '\r') ADVANCE(160); + if (lookahead == '>') ADVANCE(167); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '\\') ADVANCE(165); END_STATE(); case 160: - ACCEPT_TOKEN(aux_sym_string_token2); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '\n') ADVANCE(167); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '\\') ADVANCE(167); END_STATE(); case 161: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '\r') ADVANCE(162); - if (lookahead == '>') ADVANCE(169); - if (lookahead == '\\') ADVANCE(252); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '#') ADVANCE(166); + if (lookahead == '/') ADVANCE(162); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(161); if (lookahead != 0 && - lookahead != '\'') ADVANCE(167); + lookahead != '\'' && + lookahead != '\\') ADVANCE(167); END_STATE(); case 162: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '\\') ADVANCE(63); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '*') ADVANCE(164); + if (lookahead == '/') ADVANCE(165); if (lookahead != 0 && - lookahead != '\'') ADVANCE(169); + lookahead != '\'' && + lookahead != '\\') ADVANCE(167); END_STATE(); case 163: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '#') ADVANCE(168); - if (lookahead == '/') ADVANCE(164); - if (lookahead == '\\') ADVANCE(38); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(163); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '*') ADVANCE(163); + if (lookahead == '/') ADVANCE(167); if (lookahead != 0 && - lookahead != '\'') ADVANCE(169); + lookahead != '\'' && + lookahead != '\\') ADVANCE(164); END_STATE(); case 164: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(166); - if (lookahead == '/') ADVANCE(167); - if (lookahead == '\\') ADVANCE(63); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '*') ADVANCE(163); if (lookahead != 0 && - lookahead != '\'') ADVANCE(169); + lookahead != '\'' && + lookahead != '\\') ADVANCE(164); END_STATE(); case 165: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(165); - if (lookahead == '/') ADVANCE(169); - if (lookahead == '\\') ADVANCE(23); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '?') ADVANCE(159); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(167); if (lookahead != 0 && - lookahead != '\'') ADVANCE(166); + lookahead != '\'' && + lookahead != '\\') ADVANCE(165); END_STATE(); case 166: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(165); - if (lookahead == '\\') ADVANCE(23); + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == '?' || + lookahead == '[') ADVANCE(167); if (lookahead != 0 && - lookahead != '\'') ADVANCE(166); + lookahead != '\'' && + lookahead != '[' && + lookahead != '\\') ADVANCE(165); END_STATE(); case 167: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '?') ADVANCE(161); - if (lookahead == '\\') ADVANCE(252); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(169); + ACCEPT_TOKEN(sym_string_content); if (lookahead != 0 && - lookahead != '\'') ADVANCE(167); + lookahead != '\'' && + lookahead != '\\') ADVANCE(167); END_STATE(); case 168: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\\') ADVANCE(252); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '?' || - lookahead == '[') ADVANCE(169); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(167); + ACCEPT_TOKEN(anon_sym_LT_LT_LT); END_STATE(); case 169: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\\') ADVANCE(63); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(169); + ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_LT_LT_LT); + ACCEPT_TOKEN(sym__new_line); + if (lookahead == '\n') ADVANCE(170); + if (lookahead == '\r') ADVANCE(170); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_DQUOTE2); + ACCEPT_TOKEN(anon_sym_); END_STATE(); case 172: - ACCEPT_TOKEN(sym__new_line); - if (lookahead == '\n') ADVANCE(172); - if (lookahead == '\r') ADVANCE(172); + ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_); + ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_SQUOTE2); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_BQUOTE); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + if (lookahead == '=') ADVANCE(138); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(140); + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(126); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(128); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(136); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(186); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(138); + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(187); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(188); + ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(189); + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_LT_GT); + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(198); + if (lookahead == '=') ADVANCE(194); + if (lookahead == '>') ADVANCE(185); END_STATE(); case 190: ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(199); + if (lookahead == '=') ADVANCE(194); + if (lookahead == '>') ADVANCE(185); END_STATE(); case 191: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(200); - if (lookahead == '=') ADVANCE(196); - if (lookahead == '>') ADVANCE(187); + if (lookahead == '<') ADVANCE(197); + if (lookahead == '=') ADVANCE(194); + if (lookahead == '>') ADVANCE(185); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(201); - if (lookahead == '=') ADVANCE(196); - if (lookahead == '>') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(195); + if (lookahead == '>') ADVANCE(201); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(199); - if (lookahead == '=') ADVANCE(196); - if (lookahead == '>') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(195); + if (lookahead == '>') ADVANCE(200); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(197); - if (lookahead == '>') ADVANCE(203); + ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == '>') ADVANCE(196); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(197); - if (lookahead == '>') ADVANCE(202); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '>') ADVANCE(198); + ACCEPT_TOKEN(anon_sym_LT_EQ_GT); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_LT_EQ_GT); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '<') ADVANCE(168); END_STATE(); case 199: ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(133); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '<') ADVANCE(170); - END_STATE(); - case 201: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(135); - END_STATE(); - case 202: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 203: + case 201: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(136); + if (lookahead == '=') ADVANCE(134); END_STATE(); - case 204: + case 202: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 205: + case 203: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(26); - if (lookahead == '_') ADVANCE(56); + if (lookahead == '.') ADVANCE(25); + if (lookahead == '_') ADVANCE(55); if (lookahead == 'E' || lookahead == 'e') ADVANCE(39); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(102); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); END_STATE(); - case 206: + case 204: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '=') ADVANCE(134); + if (lookahead == '=') ADVANCE(132); END_STATE(); - case 207: + case 205: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(180); - if (lookahead == '=') ADVANCE(129); + if (lookahead == '*') ADVANCE(178); + if (lookahead == '=') ADVANCE(127); END_STATE(); - case 208: + case 206: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(179); + if (lookahead == '*') ADVANCE(177); END_STATE(); - case 209: + case 207: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(22); - if (lookahead == '/') ADVANCE(251); + if (lookahead == '/') ADVANCE(249); END_STATE(); - case 210: + case 208: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(22); - if (lookahead == '/') ADVANCE(251); - if (lookahead == '=') ADVANCE(130); + if (lookahead == '/') ADVANCE(249); + if (lookahead == '=') ADVANCE(128); END_STATE(); - case 211: + case 209: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 212: + case 210: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(131); + if (lookahead == '=') ADVANCE(129); END_STATE(); - case 213: + case 211: ACCEPT_TOKEN(sym_name); - if (lookahead == '"') ADVANCE(156); - if (lookahead == '\'') ADVANCE(158); + if (lookahead == '"') ADVANCE(154); + if (lookahead == '\'') ADVANCE(156); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(233); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + lookahead == 'o') ADVANCE(231); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); - case 214: + case 212: ACCEPT_TOKEN(sym_name); - if (lookahead == '"') ADVANCE(156); - if (lookahead == '\'') ADVANCE(158); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (lookahead == '"') ADVANCE(154); + if (lookahead == '\'') ADVANCE(156); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); - case 215: + case 213: ACCEPT_TOKEN(sym_name); - if (lookahead == '.') ADVANCE(102); - if (lookahead == '_') ADVANCE(247); + if (lookahead == '.') ADVANCE(100); + if (lookahead == '_') ADVANCE(245); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(216); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(215); + lookahead == 'e') ADVANCE(214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(213); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 159) || - (161 <= lookahead && lookahead <= 8202) || - (8204 <= lookahead && lookahead <= 8287) || - (8289 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65278) || - (65280 <= lookahead && lookahead <= 65535)) ADVANCE(249); + (0x80 <= lookahead && lookahead <= 0x9f) || + (0xa1 <= lookahead && lookahead <= 0x200a) || + (0x200c <= lookahead && lookahead <= 0x205f) || + (0x2061 <= lookahead && lookahead <= 0xfefe) || + (0xff00 <= lookahead && lookahead <= 0xffff)) ADVANCE(247); END_STATE(); - case 216: + case 214: ACCEPT_TOKEN(sym_name); if (lookahead == '+' || - lookahead == '-') ADVANCE(58); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(103); - if (sym_name_character_set_2(lookahead)) ADVANCE(249); + lookahead == '-') ADVANCE(57); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(101); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); - case 217: + case 215: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(228); + lookahead == 'a') ADVANCE(226); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(232); - if (sym_name_character_set_3(lookahead)) ADVANCE(249); + lookahead == 'l') ADVANCE(230); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); + END_STATE(); + case 216: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(226); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); + END_STATE(); + case 217: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(244); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 218: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(228); - if (sym_name_character_set_3(lookahead)) ADVANCE(249); + lookahead == 'a') ADVANCE(239); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 219: ACCEPT_TOKEN(sym_name); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(246); - if (sym_name_character_set_3(lookahead)) ADVANCE(249); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(146); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 220: ACCEPT_TOKEN(sym_name); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(241); - if (sym_name_character_set_3(lookahead)) ADVANCE(249); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(240); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 221: ACCEPT_TOKEN(sym_name); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(148); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(97); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 222: ACCEPT_TOKEN(sym_name); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(242); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(228); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 223: ACCEPT_TOKEN(sym_name); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(99); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(94); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 224: ACCEPT_TOKEN(sym_name); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(230); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(144); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 225: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(96); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + lookahead == 'l') ADVANCE(224); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 226: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(146); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + lookahead == 'l') ADVANCE(236); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 227: ACCEPT_TOKEN(sym_name); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(226); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(237); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 228: ACCEPT_TOKEN(sym_name); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(238); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(221); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 229: ACCEPT_TOKEN(sym_name); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(239); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + lookahead == 'n') ADVANCE(238); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 230: ACCEPT_TOKEN(sym_name); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(223); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(218); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 231: ACCEPT_TOKEN(sym_name); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(240); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(223); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 232: ACCEPT_TOKEN(sym_name); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(220); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(217); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 233: ACCEPT_TOKEN(sym_name); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(225); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(222); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 234: ACCEPT_TOKEN(sym_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(219); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + lookahead == 'r') ADVANCE(242); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 235: ACCEPT_TOKEN(sym_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(224); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + lookahead == 'r') ADVANCE(232); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 236: ACCEPT_TOKEN(sym_name); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(244); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(219); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 237: ACCEPT_TOKEN(sym_name); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(234); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(220); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 238: ACCEPT_TOKEN(sym_name); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(221); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(95); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 239: ACCEPT_TOKEN(sym_name); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(222); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(96); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 240: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(97); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + lookahead == 't') ADVANCE(98); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 241: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(98); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + lookahead == 't') ADVANCE(233); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 242: ACCEPT_TOKEN(sym_name); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(100); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(219); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 243: ACCEPT_TOKEN(sym_name); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(235); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(225); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 244: ACCEPT_TOKEN(sym_name); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(221); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(93); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 245: ACCEPT_TOKEN(sym_name); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(227); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(213); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 246: ACCEPT_TOKEN(sym_name); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(95); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(101); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 247: ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(215); - if (sym_name_character_set_2(lookahead)) ADVANCE(249); + if (set_contains(sym_name_character_set_1, 9, lookahead)) ADVANCE(247); END_STATE(); case 248: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(103); - if (sym_name_character_set_2(lookahead)) ADVANCE(249); - END_STATE(); - case 249: - ACCEPT_TOKEN(sym_name); - if (sym_name_character_set_1(lookahead)) ADVANCE(249); - END_STATE(); - case 250: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 251: + case 249: ACCEPT_TOKEN(sym_comment); if (lookahead == '?') ADVANCE(2); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(251); + lookahead != '\r') ADVANCE(249); END_STATE(); - case 252: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '?') ADVANCE(161); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(169); - if (lookahead == '\'' || - lookahead == '\\') ADVANCE(251); - if (lookahead != 0) ADVANCE(167); - END_STATE(); - case 253: + case 250: ACCEPT_TOKEN(sym_comment); - if (lookahead == '[') ADVANCE(149); + if (lookahead == '[') ADVANCE(147); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '?') ADVANCE(251); + lookahead != '?') ADVANCE(249); END_STATE(); - case 254: + case 251: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '?' && - lookahead != '[') ADVANCE(251); + lookahead != '[') ADVANCE(249); END_STATE(); default: return false; @@ -8453,54 +8325,56 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (lookahead == 'A') ADVANCE(1); - if (lookahead == 'B') ADVANCE(2); - if (lookahead == 'E') ADVANCE(3); - if (lookahead == 'F') ADVANCE(4); - if (lookahead == 'I') ADVANCE(5); - if (lookahead == 'M') ADVANCE(6); - if (lookahead == 'N') ADVANCE(7); - if (lookahead == 'P') ADVANCE(8); - if (lookahead == 'S') ADVANCE(9); - if (lookahead == 'T') ADVANCE(10); - if (lookahead == 'U') ADVANCE(11); - if (lookahead == 'V') ADVANCE(12); - if (lookahead == 'a') ADVANCE(13); - if (lookahead == 'b') ADVANCE(14); - if (lookahead == 'e') ADVANCE(15); - if (lookahead == 'f') ADVANCE(16); - if (lookahead == 'i') ADVANCE(17); - if (lookahead == 'm') ADVANCE(18); - if (lookahead == 'n') ADVANCE(19); - if (lookahead == 'p') ADVANCE(20); - if (lookahead == 's') ADVANCE(21); - if (lookahead == 't') ADVANCE(22); - if (lookahead == 'u') ADVANCE(23); - if (lookahead == 'v') ADVANCE(24); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(25); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(26); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(27); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(28); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(29); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(30); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(31); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(32); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(33); + ADVANCE_MAP( + 'A', 1, + 'B', 2, + 'E', 3, + 'F', 4, + 'I', 5, + 'M', 6, + 'N', 7, + 'P', 8, + 'S', 9, + 'T', 10, + 'U', 11, + 'V', 12, + 'a', 13, + 'b', 14, + 'e', 15, + 'f', 16, + 'i', 17, + 'm', 18, + 'n', 19, + 'p', 20, + 's', 21, + 't', 22, + 'u', 23, + 'v', 24, + 'C', 25, + 'c', 25, + 'D', 26, + 'd', 26, + 'G', 27, + 'g', 27, + 'L', 28, + 'l', 28, + 'O', 29, + 'o', 29, + 'R', 30, + 'r', 30, + 'W', 31, + 'w', 31, + 'X', 32, + 'x', 32, + 'Y', 33, + 'y', 33, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(0) + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(0); END_STATE(); case 1: if (lookahead == 'B' || @@ -8519,26 +8393,30 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { 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); + ADVANCE_MAP( + 'C', 40, + 'c', 40, + 'L', 41, + 'l', 41, + 'N', 42, + 'n', 42, + 'X', 43, + 'x', 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); + ADVANCE_MAP( + 'I', 44, + 'i', 44, + 'N', 45, + 'n', 45, + 'O', 46, + 'o', 46, + 'R', 47, + 'r', 47, + 'U', 48, + 'u', 48, + ); END_STATE(); case 5: if (lookahead == 'F' || @@ -8602,28 +8480,32 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { lookahead == 'r') ADVANCE(39); END_STATE(); case 15: - if (lookahead == 'N') ADVANCE(42); - if (lookahead == 'n') ADVANCE(65); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(40); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(41); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(43); + ADVANCE_MAP( + 'N', 42, + 'n', 65, + 'C', 40, + 'c', 40, + 'L', 41, + 'l', 41, + 'X', 43, + 'x', 43, + ); END_STATE(); case 16: - if (lookahead == 'a') ADVANCE(66); - if (lookahead == 'l') ADVANCE(67); - 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); + ADVANCE_MAP( + 'a', 66, + 'l', 67, + 'I', 44, + 'i', 44, + 'N', 45, + 'n', 45, + 'O', 46, + 'o', 46, + 'R', 47, + 'r', 47, + 'U', 48, + 'u', 48, + ); END_STATE(); case 17: if (lookahead == 'N') ADVANCE(51); @@ -9013,16 +8895,18 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { lookahead == 'e') ADVANCE(167); END_STATE(); case 101: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(168); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(169); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(170); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(171); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(172); + ADVANCE_MAP( + 'D', 168, + 'd', 168, + 'F', 169, + 'f', 169, + 'I', 170, + 'i', 170, + 'S', 171, + 's', 171, + 'W', 172, + 'w', 172, + ); END_STATE(); case 102: if (lookahead == 'M' || @@ -10124,88 +10008,88 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 65}, - [2] = {.lex_state = 65}, - [3] = {.lex_state = 65}, - [4] = {.lex_state = 65}, - [5] = {.lex_state = 65}, - [6] = {.lex_state = 65}, - [7] = {.lex_state = 65}, - [8] = {.lex_state = 65}, - [9] = {.lex_state = 65}, - [10] = {.lex_state = 65}, - [11] = {.lex_state = 65}, - [12] = {.lex_state = 65, .external_lex_state = 2}, - [13] = {.lex_state = 65}, - [14] = {.lex_state = 65, .external_lex_state = 2}, - [15] = {.lex_state = 65}, - [16] = {.lex_state = 65, .external_lex_state = 2}, - [17] = {.lex_state = 65, .external_lex_state = 2}, - [18] = {.lex_state = 65}, - [19] = {.lex_state = 65, .external_lex_state = 2}, - [20] = {.lex_state = 65}, - [21] = {.lex_state = 65, .external_lex_state = 2}, - [22] = {.lex_state = 65, .external_lex_state = 2}, - [23] = {.lex_state = 65}, - [24] = {.lex_state = 65}, - [25] = {.lex_state = 65}, - [26] = {.lex_state = 65}, - [27] = {.lex_state = 65}, - [28] = {.lex_state = 65, .external_lex_state = 2}, - [29] = {.lex_state = 65}, - [30] = {.lex_state = 65}, - [31] = {.lex_state = 65, .external_lex_state = 2}, - [32] = {.lex_state = 65}, - [33] = {.lex_state = 65, .external_lex_state = 2}, - [34] = {.lex_state = 65}, - [35] = {.lex_state = 65}, - [36] = {.lex_state = 65}, - [37] = {.lex_state = 65}, - [38] = {.lex_state = 65}, - [39] = {.lex_state = 65}, - [40] = {.lex_state = 65, .external_lex_state = 2}, - [41] = {.lex_state = 65}, - [42] = {.lex_state = 65, .external_lex_state = 2}, - [43] = {.lex_state = 65}, - [44] = {.lex_state = 65, .external_lex_state = 2}, - [45] = {.lex_state = 65, .external_lex_state = 2}, - [46] = {.lex_state = 65}, - [47] = {.lex_state = 65, .external_lex_state = 2}, - [48] = {.lex_state = 65, .external_lex_state = 2}, - [49] = {.lex_state = 65}, - [50] = {.lex_state = 65}, - [51] = {.lex_state = 65}, - [52] = {.lex_state = 65, .external_lex_state = 2}, - [53] = {.lex_state = 65, .external_lex_state = 2}, - [54] = {.lex_state = 65, .external_lex_state = 2}, - [55] = {.lex_state = 65}, - [56] = {.lex_state = 65, .external_lex_state = 2}, - [57] = {.lex_state = 65, .external_lex_state = 2}, - [58] = {.lex_state = 65, .external_lex_state = 2}, - [59] = {.lex_state = 65}, - [60] = {.lex_state = 65, .external_lex_state = 2}, - [61] = {.lex_state = 65}, - [62] = {.lex_state = 65}, - [63] = {.lex_state = 65}, - [64] = {.lex_state = 65}, - [65] = {.lex_state = 65}, - [66] = {.lex_state = 65}, - [67] = {.lex_state = 65}, - [68] = {.lex_state = 65}, - [69] = {.lex_state = 65, .external_lex_state = 2}, - [70] = {.lex_state = 65}, - [71] = {.lex_state = 65}, - [72] = {.lex_state = 65}, - [73] = {.lex_state = 65}, - [74] = {.lex_state = 65}, - [75] = {.lex_state = 65}, - [76] = {.lex_state = 65}, - [77] = {.lex_state = 65}, - [78] = {.lex_state = 65}, - [79] = {.lex_state = 65}, - [80] = {.lex_state = 65}, - [81] = {.lex_state = 65}, - [82] = {.lex_state = 65}, + [1] = {.lex_state = 63}, + [2] = {.lex_state = 63}, + [3] = {.lex_state = 63}, + [4] = {.lex_state = 63}, + [5] = {.lex_state = 63}, + [6] = {.lex_state = 63}, + [7] = {.lex_state = 63}, + [8] = {.lex_state = 63}, + [9] = {.lex_state = 63}, + [10] = {.lex_state = 63}, + [11] = {.lex_state = 63}, + [12] = {.lex_state = 63, .external_lex_state = 2}, + [13] = {.lex_state = 63}, + [14] = {.lex_state = 63}, + [15] = {.lex_state = 63, .external_lex_state = 2}, + [16] = {.lex_state = 63}, + [17] = {.lex_state = 63, .external_lex_state = 2}, + [18] = {.lex_state = 63, .external_lex_state = 2}, + [19] = {.lex_state = 63}, + [20] = {.lex_state = 63}, + [21] = {.lex_state = 63, .external_lex_state = 2}, + [22] = {.lex_state = 63, .external_lex_state = 2}, + [23] = {.lex_state = 63}, + [24] = {.lex_state = 63}, + [25] = {.lex_state = 63}, + [26] = {.lex_state = 63}, + [27] = {.lex_state = 63, .external_lex_state = 2}, + [28] = {.lex_state = 63}, + [29] = {.lex_state = 63}, + [30] = {.lex_state = 63, .external_lex_state = 2}, + [31] = {.lex_state = 63}, + [32] = {.lex_state = 63}, + [33] = {.lex_state = 63}, + [34] = {.lex_state = 63}, + [35] = {.lex_state = 63, .external_lex_state = 2}, + [36] = {.lex_state = 63}, + [37] = {.lex_state = 63}, + [38] = {.lex_state = 63, .external_lex_state = 2}, + [39] = {.lex_state = 63}, + [40] = {.lex_state = 63}, + [41] = {.lex_state = 63, .external_lex_state = 2}, + [42] = {.lex_state = 63, .external_lex_state = 2}, + [43] = {.lex_state = 63}, + [44] = {.lex_state = 63}, + [45] = {.lex_state = 63}, + [46] = {.lex_state = 63, .external_lex_state = 2}, + [47] = {.lex_state = 63}, + [48] = {.lex_state = 63}, + [49] = {.lex_state = 63, .external_lex_state = 2}, + [50] = {.lex_state = 63}, + [51] = {.lex_state = 63, .external_lex_state = 2}, + [52] = {.lex_state = 63, .external_lex_state = 2}, + [53] = {.lex_state = 63}, + [54] = {.lex_state = 63}, + [55] = {.lex_state = 63, .external_lex_state = 2}, + [56] = {.lex_state = 63, .external_lex_state = 2}, + [57] = {.lex_state = 63}, + [58] = {.lex_state = 63}, + [59] = {.lex_state = 63, .external_lex_state = 2}, + [60] = {.lex_state = 63}, + [61] = {.lex_state = 63, .external_lex_state = 2}, + [62] = {.lex_state = 63, .external_lex_state = 2}, + [63] = {.lex_state = 63}, + [64] = {.lex_state = 63}, + [65] = {.lex_state = 63}, + [66] = {.lex_state = 63}, + [67] = {.lex_state = 63}, + [68] = {.lex_state = 63}, + [69] = {.lex_state = 63, .external_lex_state = 2}, + [70] = {.lex_state = 63}, + [71] = {.lex_state = 63}, + [72] = {.lex_state = 63, .external_lex_state = 2}, + [73] = {.lex_state = 63, .external_lex_state = 2}, + [74] = {.lex_state = 63}, + [75] = {.lex_state = 63}, + [76] = {.lex_state = 63}, + [77] = {.lex_state = 63}, + [78] = {.lex_state = 63}, + [79] = {.lex_state = 63}, + [80] = {.lex_state = 63}, + [81] = {.lex_state = 63}, + [82] = {.lex_state = 63}, [83] = {.lex_state = 5}, [84] = {.lex_state = 5}, [85] = {.lex_state = 5, .external_lex_state = 2}, @@ -10221,7 +10105,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [95] = {.lex_state = 7}, [96] = {.lex_state = 7}, [97] = {.lex_state = 7}, - [98] = {.lex_state = 6}, + [98] = {.lex_state = 7}, [99] = {.lex_state = 6}, [100] = {.lex_state = 6}, [101] = {.lex_state = 6}, @@ -10256,529 +10140,529 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [130] = {.lex_state = 6}, [131] = {.lex_state = 6}, [132] = {.lex_state = 6}, - [133] = {.lex_state = 6}, + [133] = {.lex_state = 63}, [134] = {.lex_state = 6}, [135] = {.lex_state = 6}, [136] = {.lex_state = 6}, - [137] = {.lex_state = 65}, - [138] = {.lex_state = 65}, + [137] = {.lex_state = 6}, + [138] = {.lex_state = 6}, [139] = {.lex_state = 6}, [140] = {.lex_state = 6}, [141] = {.lex_state = 6}, - [142] = {.lex_state = 6}, - [143] = {.lex_state = 65}, - [144] = {.lex_state = 65}, - [145] = {.lex_state = 65}, - [146] = {.lex_state = 65}, - [147] = {.lex_state = 65}, - [148] = {.lex_state = 65}, - [149] = {.lex_state = 65}, - [150] = {.lex_state = 65}, - [151] = {.lex_state = 6}, - [152] = {.lex_state = 65}, - [153] = {.lex_state = 65}, - [154] = {.lex_state = 6}, - [155] = {.lex_state = 65}, - [156] = {.lex_state = 65}, - [157] = {.lex_state = 65}, - [158] = {.lex_state = 65}, - [159] = {.lex_state = 65}, - [160] = {.lex_state = 65}, - [161] = {.lex_state = 65}, - [162] = {.lex_state = 65}, - [163] = {.lex_state = 65}, - [164] = {.lex_state = 65}, - [165] = {.lex_state = 65}, - [166] = {.lex_state = 65}, - [167] = {.lex_state = 65}, - [168] = {.lex_state = 65}, - [169] = {.lex_state = 65}, - [170] = {.lex_state = 65}, - [171] = {.lex_state = 65}, - [172] = {.lex_state = 65}, - [173] = {.lex_state = 65}, - [174] = {.lex_state = 65}, - [175] = {.lex_state = 65}, - [176] = {.lex_state = 65}, - [177] = {.lex_state = 65}, - [178] = {.lex_state = 65}, - [179] = {.lex_state = 65}, - [180] = {.lex_state = 65}, - [181] = {.lex_state = 65}, - [182] = {.lex_state = 65}, - [183] = {.lex_state = 65}, - [184] = {.lex_state = 65}, - [185] = {.lex_state = 65, .external_lex_state = 2}, - [186] = {.lex_state = 65, .external_lex_state = 2}, - [187] = {.lex_state = 6}, - [188] = {.lex_state = 65}, - [189] = {.lex_state = 65}, - [190] = {.lex_state = 6}, - [191] = {.lex_state = 65, .external_lex_state = 2}, - [192] = {.lex_state = 65}, - [193] = {.lex_state = 65, .external_lex_state = 2}, - [194] = {.lex_state = 65}, - [195] = {.lex_state = 65}, - [196] = {.lex_state = 65}, - [197] = {.lex_state = 65, .external_lex_state = 2}, - [198] = {.lex_state = 65}, - [199] = {.lex_state = 65, .external_lex_state = 2}, - [200] = {.lex_state = 65}, - [201] = {.lex_state = 65}, - [202] = {.lex_state = 65}, - [203] = {.lex_state = 65}, - [204] = {.lex_state = 65}, - [205] = {.lex_state = 65}, - [206] = {.lex_state = 65}, - [207] = {.lex_state = 65}, - [208] = {.lex_state = 65}, - [209] = {.lex_state = 65}, - [210] = {.lex_state = 65}, - [211] = {.lex_state = 65}, - [212] = {.lex_state = 65}, - [213] = {.lex_state = 65}, - [214] = {.lex_state = 65}, - [215] = {.lex_state = 65}, - [216] = {.lex_state = 65}, - [217] = {.lex_state = 65}, - [218] = {.lex_state = 65}, - [219] = {.lex_state = 65}, - [220] = {.lex_state = 65}, - [221] = {.lex_state = 65}, - [222] = {.lex_state = 65}, - [223] = {.lex_state = 65}, - [224] = {.lex_state = 65}, - [225] = {.lex_state = 65}, - [226] = {.lex_state = 65}, - [227] = {.lex_state = 65}, - [228] = {.lex_state = 65}, - [229] = {.lex_state = 65}, - [230] = {.lex_state = 65}, - [231] = {.lex_state = 65}, - [232] = {.lex_state = 65}, - [233] = {.lex_state = 65}, - [234] = {.lex_state = 65}, - [235] = {.lex_state = 65}, - [236] = {.lex_state = 65}, - [237] = {.lex_state = 65}, - [238] = {.lex_state = 65}, - [239] = {.lex_state = 65}, - [240] = {.lex_state = 65}, - [241] = {.lex_state = 65}, - [242] = {.lex_state = 65}, - [243] = {.lex_state = 65}, - [244] = {.lex_state = 65}, - [245] = {.lex_state = 65}, - [246] = {.lex_state = 65}, - [247] = {.lex_state = 65}, - [248] = {.lex_state = 65}, - [249] = {.lex_state = 65}, - [250] = {.lex_state = 65}, - [251] = {.lex_state = 65}, - [252] = {.lex_state = 65}, - [253] = {.lex_state = 65}, - [254] = {.lex_state = 65}, - [255] = {.lex_state = 65}, - [256] = {.lex_state = 65}, - [257] = {.lex_state = 65}, - [258] = {.lex_state = 65}, - [259] = {.lex_state = 65}, - [260] = {.lex_state = 65}, - [261] = {.lex_state = 65}, - [262] = {.lex_state = 65}, - [263] = {.lex_state = 65}, - [264] = {.lex_state = 65}, - [265] = {.lex_state = 65}, - [266] = {.lex_state = 65}, - [267] = {.lex_state = 65}, - [268] = {.lex_state = 65}, - [269] = {.lex_state = 65}, - [270] = {.lex_state = 65}, - [271] = {.lex_state = 65}, - [272] = {.lex_state = 65}, - [273] = {.lex_state = 65}, - [274] = {.lex_state = 65}, - [275] = {.lex_state = 65}, - [276] = {.lex_state = 65}, - [277] = {.lex_state = 65}, - [278] = {.lex_state = 65}, - [279] = {.lex_state = 65}, - [280] = {.lex_state = 65}, - [281] = {.lex_state = 65}, - [282] = {.lex_state = 65}, - [283] = {.lex_state = 65}, - [284] = {.lex_state = 65}, - [285] = {.lex_state = 65}, - [286] = {.lex_state = 65}, - [287] = {.lex_state = 65}, - [288] = {.lex_state = 65}, - [289] = {.lex_state = 65}, - [290] = {.lex_state = 65}, - [291] = {.lex_state = 65}, - [292] = {.lex_state = 65}, - [293] = {.lex_state = 65}, - [294] = {.lex_state = 65}, - [295] = {.lex_state = 65}, - [296] = {.lex_state = 65}, - [297] = {.lex_state = 65}, - [298] = {.lex_state = 65}, - [299] = {.lex_state = 65}, - [300] = {.lex_state = 65}, - [301] = {.lex_state = 65}, - [302] = {.lex_state = 65}, - [303] = {.lex_state = 65}, - [304] = {.lex_state = 65}, - [305] = {.lex_state = 65}, - [306] = {.lex_state = 65}, - [307] = {.lex_state = 65}, - [308] = {.lex_state = 65}, - [309] = {.lex_state = 65}, - [310] = {.lex_state = 65}, - [311] = {.lex_state = 65}, - [312] = {.lex_state = 65}, - [313] = {.lex_state = 65}, - [314] = {.lex_state = 65}, - [315] = {.lex_state = 65}, - [316] = {.lex_state = 65}, - [317] = {.lex_state = 65}, - [318] = {.lex_state = 65}, - [319] = {.lex_state = 65}, - [320] = {.lex_state = 65}, - [321] = {.lex_state = 65}, - [322] = {.lex_state = 65}, - [323] = {.lex_state = 65}, - [324] = {.lex_state = 65}, - [325] = {.lex_state = 65}, - [326] = {.lex_state = 65}, - [327] = {.lex_state = 65}, - [328] = {.lex_state = 65}, - [329] = {.lex_state = 65}, - [330] = {.lex_state = 65}, - [331] = {.lex_state = 65}, - [332] = {.lex_state = 65}, - [333] = {.lex_state = 65}, - [334] = {.lex_state = 65}, - [335] = {.lex_state = 65}, - [336] = {.lex_state = 65}, - [337] = {.lex_state = 65}, - [338] = {.lex_state = 65}, - [339] = {.lex_state = 65}, - [340] = {.lex_state = 65}, - [341] = {.lex_state = 65}, - [342] = {.lex_state = 65}, - [343] = {.lex_state = 65}, - [344] = {.lex_state = 65}, - [345] = {.lex_state = 65}, - [346] = {.lex_state = 65}, - [347] = {.lex_state = 65}, - [348] = {.lex_state = 65}, - [349] = {.lex_state = 65}, - [350] = {.lex_state = 65}, - [351] = {.lex_state = 65}, - [352] = {.lex_state = 65}, - [353] = {.lex_state = 65}, - [354] = {.lex_state = 65}, - [355] = {.lex_state = 65}, - [356] = {.lex_state = 65}, - [357] = {.lex_state = 65}, - [358] = {.lex_state = 65}, - [359] = {.lex_state = 65}, - [360] = {.lex_state = 65}, - [361] = {.lex_state = 65}, - [362] = {.lex_state = 65}, - [363] = {.lex_state = 65}, - [364] = {.lex_state = 65}, - [365] = {.lex_state = 65}, - [366] = {.lex_state = 65}, - [367] = {.lex_state = 65}, - [368] = {.lex_state = 65}, - [369] = {.lex_state = 65}, - [370] = {.lex_state = 65}, - [371] = {.lex_state = 65}, - [372] = {.lex_state = 65}, - [373] = {.lex_state = 65}, - [374] = {.lex_state = 65}, - [375] = {.lex_state = 65}, - [376] = {.lex_state = 65}, - [377] = {.lex_state = 65}, - [378] = {.lex_state = 65}, - [379] = {.lex_state = 65}, - [380] = {.lex_state = 65}, - [381] = {.lex_state = 65}, - [382] = {.lex_state = 65}, - [383] = {.lex_state = 65}, - [384] = {.lex_state = 65}, - [385] = {.lex_state = 65}, - [386] = {.lex_state = 65}, - [387] = {.lex_state = 65}, - [388] = {.lex_state = 65}, - [389] = {.lex_state = 65}, - [390] = {.lex_state = 65}, - [391] = {.lex_state = 65}, - [392] = {.lex_state = 65}, - [393] = {.lex_state = 65}, - [394] = {.lex_state = 65}, - [395] = {.lex_state = 65}, - [396] = {.lex_state = 65}, - [397] = {.lex_state = 65}, - [398] = {.lex_state = 65}, - [399] = {.lex_state = 65}, - [400] = {.lex_state = 65}, - [401] = {.lex_state = 65}, - [402] = {.lex_state = 65}, - [403] = {.lex_state = 65}, - [404] = {.lex_state = 65}, - [405] = {.lex_state = 65}, - [406] = {.lex_state = 65}, - [407] = {.lex_state = 65}, - [408] = {.lex_state = 65}, - [409] = {.lex_state = 65}, - [410] = {.lex_state = 65}, - [411] = {.lex_state = 65}, - [412] = {.lex_state = 65}, - [413] = {.lex_state = 65}, - [414] = {.lex_state = 65}, - [415] = {.lex_state = 65}, - [416] = {.lex_state = 65}, - [417] = {.lex_state = 65}, - [418] = {.lex_state = 65}, - [419] = {.lex_state = 65}, - [420] = {.lex_state = 65}, - [421] = {.lex_state = 65}, - [422] = {.lex_state = 65}, - [423] = {.lex_state = 65}, - [424] = {.lex_state = 65}, - [425] = {.lex_state = 65}, - [426] = {.lex_state = 65}, - [427] = {.lex_state = 65}, - [428] = {.lex_state = 65}, - [429] = {.lex_state = 65}, - [430] = {.lex_state = 65}, - [431] = {.lex_state = 65}, - [432] = {.lex_state = 65}, - [433] = {.lex_state = 65}, - [434] = {.lex_state = 65, .external_lex_state = 2}, - [435] = {.lex_state = 65, .external_lex_state = 2}, - [436] = {.lex_state = 65, .external_lex_state = 2}, - [437] = {.lex_state = 65, .external_lex_state = 2}, - [438] = {.lex_state = 65}, - [439] = {.lex_state = 65}, - [440] = {.lex_state = 65, .external_lex_state = 2}, - [441] = {.lex_state = 65, .external_lex_state = 2}, - [442] = {.lex_state = 65}, - [443] = {.lex_state = 65}, - [444] = {.lex_state = 65}, - [445] = {.lex_state = 65, .external_lex_state = 2}, - [446] = {.lex_state = 65}, - [447] = {.lex_state = 65, .external_lex_state = 2}, - [448] = {.lex_state = 65}, - [449] = {.lex_state = 65, .external_lex_state = 2}, - [450] = {.lex_state = 65}, - [451] = {.lex_state = 65, .external_lex_state = 2}, - [452] = {.lex_state = 65, .external_lex_state = 2}, - [453] = {.lex_state = 65, .external_lex_state = 2}, - [454] = {.lex_state = 65, .external_lex_state = 2}, - [455] = {.lex_state = 65, .external_lex_state = 2}, - [456] = {.lex_state = 65, .external_lex_state = 2}, - [457] = {.lex_state = 65}, - [458] = {.lex_state = 65, .external_lex_state = 2}, - [459] = {.lex_state = 65, .external_lex_state = 2}, - [460] = {.lex_state = 65, .external_lex_state = 2}, - [461] = {.lex_state = 65, .external_lex_state = 2}, - [462] = {.lex_state = 65, .external_lex_state = 2}, - [463] = {.lex_state = 65}, - [464] = {.lex_state = 65}, - [465] = {.lex_state = 65}, - [466] = {.lex_state = 65}, - [467] = {.lex_state = 65}, - [468] = {.lex_state = 65}, - [469] = {.lex_state = 65}, - [470] = {.lex_state = 65}, - [471] = {.lex_state = 65}, - [472] = {.lex_state = 65}, - [473] = {.lex_state = 65}, - [474] = {.lex_state = 65}, - [475] = {.lex_state = 65}, - [476] = {.lex_state = 65}, - [477] = {.lex_state = 65}, - [478] = {.lex_state = 65}, - [479] = {.lex_state = 65}, - [480] = {.lex_state = 65}, - [481] = {.lex_state = 65}, - [482] = {.lex_state = 65}, - [483] = {.lex_state = 65}, - [484] = {.lex_state = 65}, - [485] = {.lex_state = 65}, - [486] = {.lex_state = 65}, - [487] = {.lex_state = 65}, - [488] = {.lex_state = 65}, - [489] = {.lex_state = 65}, - [490] = {.lex_state = 65}, - [491] = {.lex_state = 65}, - [492] = {.lex_state = 65}, - [493] = {.lex_state = 65}, - [494] = {.lex_state = 65}, - [495] = {.lex_state = 65}, - [496] = {.lex_state = 65}, - [497] = {.lex_state = 65}, - [498] = {.lex_state = 65}, - [499] = {.lex_state = 65}, - [500] = {.lex_state = 65}, - [501] = {.lex_state = 65}, - [502] = {.lex_state = 65}, - [503] = {.lex_state = 65}, - [504] = {.lex_state = 65}, - [505] = {.lex_state = 65}, - [506] = {.lex_state = 65}, - [507] = {.lex_state = 65}, - [508] = {.lex_state = 65}, - [509] = {.lex_state = 65}, - [510] = {.lex_state = 65}, - [511] = {.lex_state = 65}, - [512] = {.lex_state = 65}, - [513] = {.lex_state = 65}, - [514] = {.lex_state = 65}, - [515] = {.lex_state = 65}, - [516] = {.lex_state = 65}, - [517] = {.lex_state = 65}, - [518] = {.lex_state = 65}, - [519] = {.lex_state = 65}, - [520] = {.lex_state = 65}, - [521] = {.lex_state = 65}, - [522] = {.lex_state = 65}, - [523] = {.lex_state = 65}, - [524] = {.lex_state = 65}, - [525] = {.lex_state = 65}, - [526] = {.lex_state = 65}, - [527] = {.lex_state = 65}, - [528] = {.lex_state = 65}, - [529] = {.lex_state = 65}, - [530] = {.lex_state = 65}, - [531] = {.lex_state = 65}, - [532] = {.lex_state = 65}, - [533] = {.lex_state = 65}, - [534] = {.lex_state = 65}, - [535] = {.lex_state = 65}, - [536] = {.lex_state = 65}, - [537] = {.lex_state = 65}, - [538] = {.lex_state = 65}, - [539] = {.lex_state = 65}, - [540] = {.lex_state = 65}, - [541] = {.lex_state = 65}, - [542] = {.lex_state = 65}, - [543] = {.lex_state = 65}, - [544] = {.lex_state = 65}, - [545] = {.lex_state = 65}, - [546] = {.lex_state = 65}, - [547] = {.lex_state = 65}, - [548] = {.lex_state = 65}, - [549] = {.lex_state = 65}, - [550] = {.lex_state = 65}, - [551] = {.lex_state = 65}, - [552] = {.lex_state = 65}, - [553] = {.lex_state = 65}, - [554] = {.lex_state = 65}, - [555] = {.lex_state = 65}, - [556] = {.lex_state = 65}, - [557] = {.lex_state = 65}, - [558] = {.lex_state = 65}, - [559] = {.lex_state = 65}, - [560] = {.lex_state = 65}, - [561] = {.lex_state = 65}, - [562] = {.lex_state = 65}, - [563] = {.lex_state = 65}, - [564] = {.lex_state = 65}, - [565] = {.lex_state = 65}, - [566] = {.lex_state = 65}, - [567] = {.lex_state = 65}, - [568] = {.lex_state = 65}, - [569] = {.lex_state = 65}, - [570] = {.lex_state = 65}, - [571] = {.lex_state = 65}, - [572] = {.lex_state = 65}, - [573] = {.lex_state = 65}, - [574] = {.lex_state = 66}, - [575] = {.lex_state = 66}, - [576] = {.lex_state = 66}, - [577] = {.lex_state = 66}, - [578] = {.lex_state = 66}, - [579] = {.lex_state = 66}, - [580] = {.lex_state = 66}, - [581] = {.lex_state = 66}, - [582] = {.lex_state = 66}, - [583] = {.lex_state = 66}, - [584] = {.lex_state = 66}, - [585] = {.lex_state = 66}, - [586] = {.lex_state = 66}, - [587] = {.lex_state = 66}, - [588] = {.lex_state = 66}, - [589] = {.lex_state = 66}, - [590] = {.lex_state = 66}, - [591] = {.lex_state = 66}, - [592] = {.lex_state = 66}, - [593] = {.lex_state = 66}, - [594] = {.lex_state = 66}, - [595] = {.lex_state = 66}, - [596] = {.lex_state = 66}, - [597] = {.lex_state = 66}, - [598] = {.lex_state = 66}, - [599] = {.lex_state = 66}, - [600] = {.lex_state = 66}, - [601] = {.lex_state = 66}, - [602] = {.lex_state = 66, .external_lex_state = 2}, - [603] = {.lex_state = 66, .external_lex_state = 2}, - [604] = {.lex_state = 66, .external_lex_state = 2}, - [605] = {.lex_state = 66}, - [606] = {.lex_state = 66, .external_lex_state = 2}, - [607] = {.lex_state = 66, .external_lex_state = 2}, - [608] = {.lex_state = 66, .external_lex_state = 2}, - [609] = {.lex_state = 66, .external_lex_state = 2}, - [610] = {.lex_state = 66, .external_lex_state = 2}, - [611] = {.lex_state = 66, .external_lex_state = 2}, - [612] = {.lex_state = 66, .external_lex_state = 2}, - [613] = {.lex_state = 66}, - [614] = {.lex_state = 66, .external_lex_state = 2}, - [615] = {.lex_state = 66, .external_lex_state = 2}, - [616] = {.lex_state = 66, .external_lex_state = 2}, - [617] = {.lex_state = 66, .external_lex_state = 2}, - [618] = {.lex_state = 66, .external_lex_state = 2}, - [619] = {.lex_state = 66, .external_lex_state = 2}, - [620] = {.lex_state = 66, .external_lex_state = 2}, - [621] = {.lex_state = 66}, - [622] = {.lex_state = 66, .external_lex_state = 2}, - [623] = {.lex_state = 66, .external_lex_state = 2}, - [624] = {.lex_state = 66, .external_lex_state = 2}, - [625] = {.lex_state = 66, .external_lex_state = 2}, - [626] = {.lex_state = 66, .external_lex_state = 2}, - [627] = {.lex_state = 66}, - [628] = {.lex_state = 66, .external_lex_state = 2}, - [629] = {.lex_state = 66}, - [630] = {.lex_state = 66}, - [631] = {.lex_state = 66, .external_lex_state = 2}, - [632] = {.lex_state = 66}, - [633] = {.lex_state = 66}, - [634] = {.lex_state = 66, .external_lex_state = 2}, - [635] = {.lex_state = 66, .external_lex_state = 2}, - [636] = {.lex_state = 66}, - [637] = {.lex_state = 66}, - [638] = {.lex_state = 66}, - [639] = {.lex_state = 66}, - [640] = {.lex_state = 66}, - [641] = {.lex_state = 66}, - [642] = {.lex_state = 8}, - [643] = {.lex_state = 12}, - [644] = {.lex_state = 12}, - [645] = {.lex_state = 8}, + [142] = {.lex_state = 63}, + [143] = {.lex_state = 63}, + [144] = {.lex_state = 6}, + [145] = {.lex_state = 63}, + [146] = {.lex_state = 63}, + [147] = {.lex_state = 63}, + [148] = {.lex_state = 63}, + [149] = {.lex_state = 63}, + [150] = {.lex_state = 6}, + [151] = {.lex_state = 63}, + [152] = {.lex_state = 63}, + [153] = {.lex_state = 63}, + [154] = {.lex_state = 63}, + [155] = {.lex_state = 6}, + [156] = {.lex_state = 63}, + [157] = {.lex_state = 63}, + [158] = {.lex_state = 63}, + [159] = {.lex_state = 63}, + [160] = {.lex_state = 63}, + [161] = {.lex_state = 63}, + [162] = {.lex_state = 63}, + [163] = {.lex_state = 63}, + [164] = {.lex_state = 63}, + [165] = {.lex_state = 63}, + [166] = {.lex_state = 63}, + [167] = {.lex_state = 63}, + [168] = {.lex_state = 63}, + [169] = {.lex_state = 63}, + [170] = {.lex_state = 63}, + [171] = {.lex_state = 63}, + [172] = {.lex_state = 63}, + [173] = {.lex_state = 63}, + [174] = {.lex_state = 63}, + [175] = {.lex_state = 63}, + [176] = {.lex_state = 63}, + [177] = {.lex_state = 63}, + [178] = {.lex_state = 63}, + [179] = {.lex_state = 63}, + [180] = {.lex_state = 63}, + [181] = {.lex_state = 63}, + [182] = {.lex_state = 63}, + [183] = {.lex_state = 63}, + [184] = {.lex_state = 63, .external_lex_state = 2}, + [185] = {.lex_state = 63}, + [186] = {.lex_state = 63}, + [187] = {.lex_state = 63, .external_lex_state = 2}, + [188] = {.lex_state = 6}, + [189] = {.lex_state = 63}, + [190] = {.lex_state = 63}, + [191] = {.lex_state = 63, .external_lex_state = 2}, + [192] = {.lex_state = 63, .external_lex_state = 2}, + [193] = {.lex_state = 63}, + [194] = {.lex_state = 63}, + [195] = {.lex_state = 63}, + [196] = {.lex_state = 63, .external_lex_state = 2}, + [197] = {.lex_state = 63}, + [198] = {.lex_state = 6}, + [199] = {.lex_state = 63, .external_lex_state = 2}, + [200] = {.lex_state = 63}, + [201] = {.lex_state = 63}, + [202] = {.lex_state = 63}, + [203] = {.lex_state = 63}, + [204] = {.lex_state = 63}, + [205] = {.lex_state = 63}, + [206] = {.lex_state = 63}, + [207] = {.lex_state = 63}, + [208] = {.lex_state = 63}, + [209] = {.lex_state = 63}, + [210] = {.lex_state = 63}, + [211] = {.lex_state = 63}, + [212] = {.lex_state = 63}, + [213] = {.lex_state = 63}, + [214] = {.lex_state = 63}, + [215] = {.lex_state = 63}, + [216] = {.lex_state = 63}, + [217] = {.lex_state = 63}, + [218] = {.lex_state = 63}, + [219] = {.lex_state = 63}, + [220] = {.lex_state = 63}, + [221] = {.lex_state = 63}, + [222] = {.lex_state = 63}, + [223] = {.lex_state = 63}, + [224] = {.lex_state = 63}, + [225] = {.lex_state = 63}, + [226] = {.lex_state = 63}, + [227] = {.lex_state = 63}, + [228] = {.lex_state = 63}, + [229] = {.lex_state = 63}, + [230] = {.lex_state = 63}, + [231] = {.lex_state = 63}, + [232] = {.lex_state = 63}, + [233] = {.lex_state = 63}, + [234] = {.lex_state = 63}, + [235] = {.lex_state = 63}, + [236] = {.lex_state = 63}, + [237] = {.lex_state = 63}, + [238] = {.lex_state = 63}, + [239] = {.lex_state = 63}, + [240] = {.lex_state = 63}, + [241] = {.lex_state = 63}, + [242] = {.lex_state = 63}, + [243] = {.lex_state = 63}, + [244] = {.lex_state = 63}, + [245] = {.lex_state = 63}, + [246] = {.lex_state = 63}, + [247] = {.lex_state = 63}, + [248] = {.lex_state = 63}, + [249] = {.lex_state = 63}, + [250] = {.lex_state = 63}, + [251] = {.lex_state = 63}, + [252] = {.lex_state = 63}, + [253] = {.lex_state = 63}, + [254] = {.lex_state = 63}, + [255] = {.lex_state = 63}, + [256] = {.lex_state = 63}, + [257] = {.lex_state = 63}, + [258] = {.lex_state = 63}, + [259] = {.lex_state = 63}, + [260] = {.lex_state = 63}, + [261] = {.lex_state = 63}, + [262] = {.lex_state = 63}, + [263] = {.lex_state = 63}, + [264] = {.lex_state = 63}, + [265] = {.lex_state = 63}, + [266] = {.lex_state = 63}, + [267] = {.lex_state = 63}, + [268] = {.lex_state = 63}, + [269] = {.lex_state = 63}, + [270] = {.lex_state = 63}, + [271] = {.lex_state = 63}, + [272] = {.lex_state = 63}, + [273] = {.lex_state = 63}, + [274] = {.lex_state = 63}, + [275] = {.lex_state = 63}, + [276] = {.lex_state = 63}, + [277] = {.lex_state = 63}, + [278] = {.lex_state = 63}, + [279] = {.lex_state = 63}, + [280] = {.lex_state = 63}, + [281] = {.lex_state = 63}, + [282] = {.lex_state = 63}, + [283] = {.lex_state = 63}, + [284] = {.lex_state = 63}, + [285] = {.lex_state = 63}, + [286] = {.lex_state = 63}, + [287] = {.lex_state = 63}, + [288] = {.lex_state = 63}, + [289] = {.lex_state = 63}, + [290] = {.lex_state = 63}, + [291] = {.lex_state = 63}, + [292] = {.lex_state = 63}, + [293] = {.lex_state = 63}, + [294] = {.lex_state = 63}, + [295] = {.lex_state = 63}, + [296] = {.lex_state = 63}, + [297] = {.lex_state = 63}, + [298] = {.lex_state = 63}, + [299] = {.lex_state = 63}, + [300] = {.lex_state = 63}, + [301] = {.lex_state = 63}, + [302] = {.lex_state = 63}, + [303] = {.lex_state = 63}, + [304] = {.lex_state = 63}, + [305] = {.lex_state = 63}, + [306] = {.lex_state = 63}, + [307] = {.lex_state = 63}, + [308] = {.lex_state = 63}, + [309] = {.lex_state = 63}, + [310] = {.lex_state = 63}, + [311] = {.lex_state = 63}, + [312] = {.lex_state = 63}, + [313] = {.lex_state = 63}, + [314] = {.lex_state = 63}, + [315] = {.lex_state = 63}, + [316] = {.lex_state = 63}, + [317] = {.lex_state = 63}, + [318] = {.lex_state = 63}, + [319] = {.lex_state = 63}, + [320] = {.lex_state = 63}, + [321] = {.lex_state = 63}, + [322] = {.lex_state = 63}, + [323] = {.lex_state = 63}, + [324] = {.lex_state = 63}, + [325] = {.lex_state = 63}, + [326] = {.lex_state = 63}, + [327] = {.lex_state = 63}, + [328] = {.lex_state = 63}, + [329] = {.lex_state = 63}, + [330] = {.lex_state = 63}, + [331] = {.lex_state = 63}, + [332] = {.lex_state = 63}, + [333] = {.lex_state = 63}, + [334] = {.lex_state = 63}, + [335] = {.lex_state = 63}, + [336] = {.lex_state = 63}, + [337] = {.lex_state = 63}, + [338] = {.lex_state = 63}, + [339] = {.lex_state = 63}, + [340] = {.lex_state = 63}, + [341] = {.lex_state = 63}, + [342] = {.lex_state = 63}, + [343] = {.lex_state = 63}, + [344] = {.lex_state = 63}, + [345] = {.lex_state = 63}, + [346] = {.lex_state = 63}, + [347] = {.lex_state = 63}, + [348] = {.lex_state = 63}, + [349] = {.lex_state = 63}, + [350] = {.lex_state = 63}, + [351] = {.lex_state = 63}, + [352] = {.lex_state = 63}, + [353] = {.lex_state = 63}, + [354] = {.lex_state = 63}, + [355] = {.lex_state = 63}, + [356] = {.lex_state = 63}, + [357] = {.lex_state = 63}, + [358] = {.lex_state = 63}, + [359] = {.lex_state = 63}, + [360] = {.lex_state = 63}, + [361] = {.lex_state = 63}, + [362] = {.lex_state = 63}, + [363] = {.lex_state = 63}, + [364] = {.lex_state = 63}, + [365] = {.lex_state = 63}, + [366] = {.lex_state = 63}, + [367] = {.lex_state = 63}, + [368] = {.lex_state = 63}, + [369] = {.lex_state = 63}, + [370] = {.lex_state = 63}, + [371] = {.lex_state = 63}, + [372] = {.lex_state = 63}, + [373] = {.lex_state = 63}, + [374] = {.lex_state = 63}, + [375] = {.lex_state = 63}, + [376] = {.lex_state = 63}, + [377] = {.lex_state = 63}, + [378] = {.lex_state = 63}, + [379] = {.lex_state = 63}, + [380] = {.lex_state = 63}, + [381] = {.lex_state = 63}, + [382] = {.lex_state = 63}, + [383] = {.lex_state = 63}, + [384] = {.lex_state = 63}, + [385] = {.lex_state = 63}, + [386] = {.lex_state = 63}, + [387] = {.lex_state = 63}, + [388] = {.lex_state = 63}, + [389] = {.lex_state = 63}, + [390] = {.lex_state = 63}, + [391] = {.lex_state = 63}, + [392] = {.lex_state = 63}, + [393] = {.lex_state = 63}, + [394] = {.lex_state = 63}, + [395] = {.lex_state = 63}, + [396] = {.lex_state = 63}, + [397] = {.lex_state = 63}, + [398] = {.lex_state = 63}, + [399] = {.lex_state = 63}, + [400] = {.lex_state = 63}, + [401] = {.lex_state = 63}, + [402] = {.lex_state = 63}, + [403] = {.lex_state = 63}, + [404] = {.lex_state = 63}, + [405] = {.lex_state = 63}, + [406] = {.lex_state = 63}, + [407] = {.lex_state = 63}, + [408] = {.lex_state = 63}, + [409] = {.lex_state = 63}, + [410] = {.lex_state = 63}, + [411] = {.lex_state = 63}, + [412] = {.lex_state = 63}, + [413] = {.lex_state = 63}, + [414] = {.lex_state = 63}, + [415] = {.lex_state = 63}, + [416] = {.lex_state = 63}, + [417] = {.lex_state = 63}, + [418] = {.lex_state = 63}, + [419] = {.lex_state = 63}, + [420] = {.lex_state = 63}, + [421] = {.lex_state = 63}, + [422] = {.lex_state = 63}, + [423] = {.lex_state = 63}, + [424] = {.lex_state = 63}, + [425] = {.lex_state = 63}, + [426] = {.lex_state = 63}, + [427] = {.lex_state = 63}, + [428] = {.lex_state = 63}, + [429] = {.lex_state = 63}, + [430] = {.lex_state = 63}, + [431] = {.lex_state = 63}, + [432] = {.lex_state = 63}, + [433] = {.lex_state = 63}, + [434] = {.lex_state = 63}, + [435] = {.lex_state = 63, .external_lex_state = 2}, + [436] = {.lex_state = 63, .external_lex_state = 2}, + [437] = {.lex_state = 63, .external_lex_state = 2}, + [438] = {.lex_state = 63, .external_lex_state = 2}, + [439] = {.lex_state = 63, .external_lex_state = 2}, + [440] = {.lex_state = 63, .external_lex_state = 2}, + [441] = {.lex_state = 63, .external_lex_state = 2}, + [442] = {.lex_state = 63, .external_lex_state = 2}, + [443] = {.lex_state = 63, .external_lex_state = 2}, + [444] = {.lex_state = 63, .external_lex_state = 2}, + [445] = {.lex_state = 63, .external_lex_state = 2}, + [446] = {.lex_state = 63, .external_lex_state = 2}, + [447] = {.lex_state = 63, .external_lex_state = 2}, + [448] = {.lex_state = 63, .external_lex_state = 2}, + [449] = {.lex_state = 63}, + [450] = {.lex_state = 63}, + [451] = {.lex_state = 63}, + [452] = {.lex_state = 63}, + [453] = {.lex_state = 63}, + [454] = {.lex_state = 63}, + [455] = {.lex_state = 63}, + [456] = {.lex_state = 63}, + [457] = {.lex_state = 63}, + [458] = {.lex_state = 63}, + [459] = {.lex_state = 63}, + [460] = {.lex_state = 63}, + [461] = {.lex_state = 63}, + [462] = {.lex_state = 63}, + [463] = {.lex_state = 63}, + [464] = {.lex_state = 63}, + [465] = {.lex_state = 63}, + [466] = {.lex_state = 63}, + [467] = {.lex_state = 63}, + [468] = {.lex_state = 63}, + [469] = {.lex_state = 63}, + [470] = {.lex_state = 63}, + [471] = {.lex_state = 63}, + [472] = {.lex_state = 63}, + [473] = {.lex_state = 63}, + [474] = {.lex_state = 63}, + [475] = {.lex_state = 63}, + [476] = {.lex_state = 63}, + [477] = {.lex_state = 63}, + [478] = {.lex_state = 63}, + [479] = {.lex_state = 63}, + [480] = {.lex_state = 63}, + [481] = {.lex_state = 63}, + [482] = {.lex_state = 63}, + [483] = {.lex_state = 63}, + [484] = {.lex_state = 63}, + [485] = {.lex_state = 63}, + [486] = {.lex_state = 63}, + [487] = {.lex_state = 63}, + [488] = {.lex_state = 63}, + [489] = {.lex_state = 63}, + [490] = {.lex_state = 63}, + [491] = {.lex_state = 63}, + [492] = {.lex_state = 63}, + [493] = {.lex_state = 63}, + [494] = {.lex_state = 63}, + [495] = {.lex_state = 63}, + [496] = {.lex_state = 63}, + [497] = {.lex_state = 63}, + [498] = {.lex_state = 63}, + [499] = {.lex_state = 63}, + [500] = {.lex_state = 63}, + [501] = {.lex_state = 63}, + [502] = {.lex_state = 63}, + [503] = {.lex_state = 63}, + [504] = {.lex_state = 63}, + [505] = {.lex_state = 63}, + [506] = {.lex_state = 63}, + [507] = {.lex_state = 63}, + [508] = {.lex_state = 63}, + [509] = {.lex_state = 63}, + [510] = {.lex_state = 63}, + [511] = {.lex_state = 63}, + [512] = {.lex_state = 63}, + [513] = {.lex_state = 63}, + [514] = {.lex_state = 63}, + [515] = {.lex_state = 63}, + [516] = {.lex_state = 63}, + [517] = {.lex_state = 63}, + [518] = {.lex_state = 63}, + [519] = {.lex_state = 63}, + [520] = {.lex_state = 63}, + [521] = {.lex_state = 63}, + [522] = {.lex_state = 63}, + [523] = {.lex_state = 63}, + [524] = {.lex_state = 63}, + [525] = {.lex_state = 63}, + [526] = {.lex_state = 63}, + [527] = {.lex_state = 63}, + [528] = {.lex_state = 63}, + [529] = {.lex_state = 63}, + [530] = {.lex_state = 63}, + [531] = {.lex_state = 63}, + [532] = {.lex_state = 63}, + [533] = {.lex_state = 63}, + [534] = {.lex_state = 63}, + [535] = {.lex_state = 63}, + [536] = {.lex_state = 63}, + [537] = {.lex_state = 63}, + [538] = {.lex_state = 63}, + [539] = {.lex_state = 63}, + [540] = {.lex_state = 63}, + [541] = {.lex_state = 63}, + [542] = {.lex_state = 63}, + [543] = {.lex_state = 63}, + [544] = {.lex_state = 63}, + [545] = {.lex_state = 63}, + [546] = {.lex_state = 63}, + [547] = {.lex_state = 63}, + [548] = {.lex_state = 63}, + [549] = {.lex_state = 63}, + [550] = {.lex_state = 63}, + [551] = {.lex_state = 63}, + [552] = {.lex_state = 63}, + [553] = {.lex_state = 63}, + [554] = {.lex_state = 63}, + [555] = {.lex_state = 63}, + [556] = {.lex_state = 63}, + [557] = {.lex_state = 63}, + [558] = {.lex_state = 63}, + [559] = {.lex_state = 63}, + [560] = {.lex_state = 63}, + [561] = {.lex_state = 63}, + [562] = {.lex_state = 63}, + [563] = {.lex_state = 63}, + [564] = {.lex_state = 63}, + [565] = {.lex_state = 64}, + [566] = {.lex_state = 64}, + [567] = {.lex_state = 64}, + [568] = {.lex_state = 64}, + [569] = {.lex_state = 64}, + [570] = {.lex_state = 64}, + [571] = {.lex_state = 64}, + [572] = {.lex_state = 64}, + [573] = {.lex_state = 64}, + [574] = {.lex_state = 64}, + [575] = {.lex_state = 64}, + [576] = {.lex_state = 64}, + [577] = {.lex_state = 64}, + [578] = {.lex_state = 64}, + [579] = {.lex_state = 64}, + [580] = {.lex_state = 64}, + [581] = {.lex_state = 64}, + [582] = {.lex_state = 64}, + [583] = {.lex_state = 64}, + [584] = {.lex_state = 64}, + [585] = {.lex_state = 64}, + [586] = {.lex_state = 64}, + [587] = {.lex_state = 64}, + [588] = {.lex_state = 64}, + [589] = {.lex_state = 64}, + [590] = {.lex_state = 64}, + [591] = {.lex_state = 64, .external_lex_state = 2}, + [592] = {.lex_state = 64, .external_lex_state = 2}, + [593] = {.lex_state = 64, .external_lex_state = 2}, + [594] = {.lex_state = 64}, + [595] = {.lex_state = 64, .external_lex_state = 2}, + [596] = {.lex_state = 64}, + [597] = {.lex_state = 64, .external_lex_state = 2}, + [598] = {.lex_state = 64, .external_lex_state = 2}, + [599] = {.lex_state = 64}, + [600] = {.lex_state = 64, .external_lex_state = 2}, + [601] = {.lex_state = 64, .external_lex_state = 2}, + [602] = {.lex_state = 64, .external_lex_state = 2}, + [603] = {.lex_state = 64, .external_lex_state = 2}, + [604] = {.lex_state = 64, .external_lex_state = 2}, + [605] = {.lex_state = 64, .external_lex_state = 2}, + [606] = {.lex_state = 64}, + [607] = {.lex_state = 64}, + [608] = {.lex_state = 64}, + [609] = {.lex_state = 64}, + [610] = {.lex_state = 64, .external_lex_state = 2}, + [611] = {.lex_state = 64, .external_lex_state = 2}, + [612] = {.lex_state = 64, .external_lex_state = 2}, + [613] = {.lex_state = 64, .external_lex_state = 2}, + [614] = {.lex_state = 64, .external_lex_state = 2}, + [615] = {.lex_state = 64, .external_lex_state = 2}, + [616] = {.lex_state = 64, .external_lex_state = 2}, + [617] = {.lex_state = 64}, + [618] = {.lex_state = 64, .external_lex_state = 2}, + [619] = {.lex_state = 64, .external_lex_state = 2}, + [620] = {.lex_state = 64, .external_lex_state = 2}, + [621] = {.lex_state = 64, .external_lex_state = 2}, + [622] = {.lex_state = 64, .external_lex_state = 2}, + [623] = {.lex_state = 64, .external_lex_state = 2}, + [624] = {.lex_state = 64}, + [625] = {.lex_state = 64, .external_lex_state = 2}, + [626] = {.lex_state = 64}, + [627] = {.lex_state = 64}, + [628] = {.lex_state = 64}, + [629] = {.lex_state = 64}, + [630] = {.lex_state = 64}, + [631] = {.lex_state = 64}, + [632] = {.lex_state = 64}, + [633] = {.lex_state = 8}, + [634] = {.lex_state = 12}, + [635] = {.lex_state = 12}, + [636] = {.lex_state = 8}, + [637] = {.lex_state = 9}, + [638] = {.lex_state = 8}, + [639] = {.lex_state = 8}, + [640] = {.lex_state = 9}, + [641] = {.lex_state = 9}, + [642] = {.lex_state = 9}, + [643] = {.lex_state = 8}, + [644] = {.lex_state = 9}, + [645] = {.lex_state = 9}, [646] = {.lex_state = 9}, [647] = {.lex_state = 8}, [648] = {.lex_state = 9}, [649] = {.lex_state = 9}, [650] = {.lex_state = 9}, - [651] = {.lex_state = 9}, - [652] = {.lex_state = 8}, + [651] = {.lex_state = 17}, + [652] = {.lex_state = 14}, [653] = {.lex_state = 9}, - [654] = {.lex_state = 8}, - [655] = {.lex_state = 8}, + [654] = {.lex_state = 9}, + [655] = {.lex_state = 9}, [656] = {.lex_state = 9}, [657] = {.lex_state = 17}, [658] = {.lex_state = 9}, @@ -10786,69 +10670,69 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [660] = {.lex_state = 9}, [661] = {.lex_state = 9}, [662] = {.lex_state = 9}, - [663] = {.lex_state = 9}, - [664] = {.lex_state = 9}, + [663] = {.lex_state = 8}, + [664] = {.lex_state = 14}, [665] = {.lex_state = 9}, - [666] = {.lex_state = 9}, + [666] = {.lex_state = 8}, [667] = {.lex_state = 9}, - [668] = {.lex_state = 8}, + [668] = {.lex_state = 9}, [669] = {.lex_state = 9}, [670] = {.lex_state = 9}, - [671] = {.lex_state = 14}, - [672] = {.lex_state = 9}, - [673] = {.lex_state = 9}, - [674] = {.lex_state = 14}, - [675] = {.lex_state = 9}, - [676] = {.lex_state = 9}, + [671] = {.lex_state = 8}, + [672] = {.lex_state = 17}, + [673] = {.lex_state = 8}, + [674] = {.lex_state = 8}, + [675] = {.lex_state = 8}, + [676] = {.lex_state = 15}, [677] = {.lex_state = 17}, - [678] = {.lex_state = 9}, + [678] = {.lex_state = 8}, [679] = {.lex_state = 8}, [680] = {.lex_state = 8}, - [681] = {.lex_state = 15}, + [681] = {.lex_state = 8}, [682] = {.lex_state = 8}, [683] = {.lex_state = 8}, [684] = {.lex_state = 8}, - [685] = {.lex_state = 15}, + [685] = {.lex_state = 17}, [686] = {.lex_state = 8}, - [687] = {.lex_state = 8}, + [687] = {.lex_state = 15}, [688] = {.lex_state = 8}, [689] = {.lex_state = 8}, [690] = {.lex_state = 8}, - [691] = {.lex_state = 9}, - [692] = {.lex_state = 9}, + [691] = {.lex_state = 8}, + [692] = {.lex_state = 8}, [693] = {.lex_state = 8}, [694] = {.lex_state = 8}, - [695] = {.lex_state = 8}, - [696] = {.lex_state = 8}, - [697] = {.lex_state = 17}, + [695] = {.lex_state = 15}, + [696] = {.lex_state = 15}, + [697] = {.lex_state = 8}, [698] = {.lex_state = 8}, - [699] = {.lex_state = 17}, + [699] = {.lex_state = 9}, [700] = {.lex_state = 8}, [701] = {.lex_state = 8}, [702] = {.lex_state = 8}, [703] = {.lex_state = 8}, - [704] = {.lex_state = 15}, + [704] = {.lex_state = 8}, [705] = {.lex_state = 8}, [706] = {.lex_state = 8}, [707] = {.lex_state = 8}, [708] = {.lex_state = 8}, - [709] = {.lex_state = 8}, + [709] = {.lex_state = 17}, [710] = {.lex_state = 8}, - [711] = {.lex_state = 8}, + [711] = {.lex_state = 9}, [712] = {.lex_state = 8}, - [713] = {.lex_state = 8}, - [714] = {.lex_state = 17}, + [713] = {.lex_state = 15}, + [714] = {.lex_state = 8}, [715] = {.lex_state = 8}, - [716] = {.lex_state = 17}, + [716] = {.lex_state = 8}, [717] = {.lex_state = 8}, - [718] = {.lex_state = 15}, + [718] = {.lex_state = 8}, [719] = {.lex_state = 8}, - [720] = {.lex_state = 15}, + [720] = {.lex_state = 8}, [721] = {.lex_state = 8}, [722] = {.lex_state = 8}, [723] = {.lex_state = 8}, [724] = {.lex_state = 8}, - [725] = {.lex_state = 8}, + [725] = {.lex_state = 15}, [726] = {.lex_state = 8}, [727] = {.lex_state = 8}, [728] = {.lex_state = 8}, @@ -10862,11 +10746,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [736] = {.lex_state = 8}, [737] = {.lex_state = 8}, [738] = {.lex_state = 8}, - [739] = {.lex_state = 8}, + [739] = {.lex_state = 17}, [740] = {.lex_state = 8}, [741] = {.lex_state = 8}, [742] = {.lex_state = 8}, - [743] = {.lex_state = 15}, + [743] = {.lex_state = 8}, [744] = {.lex_state = 8}, [745] = {.lex_state = 8}, [746] = {.lex_state = 8}, @@ -10876,37 +10760,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [750] = {.lex_state = 8}, [751] = {.lex_state = 8}, [752] = {.lex_state = 8}, - [753] = {.lex_state = 17}, + [753] = {.lex_state = 8}, [754] = {.lex_state = 8}, [755] = {.lex_state = 8}, - [756] = {.lex_state = 8}, - [757] = {.lex_state = 8}, + [756] = {.lex_state = 9, .external_lex_state = 2}, + [757] = {.lex_state = 9, .external_lex_state = 2}, [758] = {.lex_state = 8}, - [759] = {.lex_state = 8}, + [759] = {.lex_state = 9, .external_lex_state = 2}, [760] = {.lex_state = 8}, [761] = {.lex_state = 8}, - [762] = {.lex_state = 8}, - [763] = {.lex_state = 8, .external_lex_state = 2}, - [764] = {.lex_state = 6}, - [765] = {.lex_state = 9, .external_lex_state = 2}, - [766] = {.lex_state = 8, .external_lex_state = 2}, - [767] = {.lex_state = 8}, - [768] = {.lex_state = 8, .external_lex_state = 2}, - [769] = {.lex_state = 12}, + [762] = {.lex_state = 6}, + [763] = {.lex_state = 12}, + [764] = {.lex_state = 8, .external_lex_state = 2}, + [765] = {.lex_state = 8, .external_lex_state = 2}, + [766] = {.lex_state = 9, .external_lex_state = 2}, + [767] = {.lex_state = 9, .external_lex_state = 2}, + [768] = {.lex_state = 12}, + [769] = {.lex_state = 8}, [770] = {.lex_state = 9, .external_lex_state = 2}, [771] = {.lex_state = 8}, - [772] = {.lex_state = 8}, + [772] = {.lex_state = 9, .external_lex_state = 2}, [773] = {.lex_state = 8, .external_lex_state = 2}, [774] = {.lex_state = 8}, - [775] = {.lex_state = 8}, - [776] = {.lex_state = 12}, - [777] = {.lex_state = 9, .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}, + [775] = {.lex_state = 8, .external_lex_state = 2}, + [776] = {.lex_state = 6}, + [777] = {.lex_state = 15}, + [778] = {.lex_state = 8}, + [779] = {.lex_state = 15}, + [780] = {.lex_state = 8, .external_lex_state = 2}, [781] = {.lex_state = 9, .external_lex_state = 2}, - [782] = {.lex_state = 8}, - [783] = {.lex_state = 9, .external_lex_state = 2}, + [782] = {.lex_state = 9, .external_lex_state = 2}, + [783] = {.lex_state = 15}, [784] = {.lex_state = 9, .external_lex_state = 2}, [785] = {.lex_state = 9, .external_lex_state = 2}, [786] = {.lex_state = 9, .external_lex_state = 2}, @@ -10914,72 +10798,72 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [788] = {.lex_state = 9, .external_lex_state = 2}, [789] = {.lex_state = 9, .external_lex_state = 2}, [790] = {.lex_state = 9, .external_lex_state = 2}, - [791] = {.lex_state = 6}, - [792] = {.lex_state = 8, .external_lex_state = 2}, - [793] = {.lex_state = 9, .external_lex_state = 2}, + [791] = {.lex_state = 9, .external_lex_state = 2}, + [792] = {.lex_state = 9, .external_lex_state = 2}, + [793] = {.lex_state = 8, .external_lex_state = 2}, [794] = {.lex_state = 9, .external_lex_state = 2}, [795] = {.lex_state = 9, .external_lex_state = 2}, - [796] = {.lex_state = 9, .external_lex_state = 2}, + [796] = {.lex_state = 15}, [797] = {.lex_state = 9, .external_lex_state = 2}, [798] = {.lex_state = 9, .external_lex_state = 2}, [799] = {.lex_state = 9, .external_lex_state = 2}, - [800] = {.lex_state = 8}, - [801] = {.lex_state = 9, .external_lex_state = 2}, + [800] = {.lex_state = 9, .external_lex_state = 2}, + [801] = {.lex_state = 8, .external_lex_state = 2}, [802] = {.lex_state = 8, .external_lex_state = 2}, - [803] = {.lex_state = 9, .external_lex_state = 2}, - [804] = {.lex_state = 8, .external_lex_state = 2}, - [805] = {.lex_state = 15}, - [806] = {.lex_state = 15}, + [803] = {.lex_state = 15}, + [804] = {.lex_state = 15}, + [805] = {.lex_state = 8, .external_lex_state = 2}, + [806] = {.lex_state = 8, .external_lex_state = 2}, [807] = {.lex_state = 15}, [808] = {.lex_state = 8, .external_lex_state = 2}, [809] = {.lex_state = 8, .external_lex_state = 2}, - [810] = {.lex_state = 15}, + [810] = {.lex_state = 8, .external_lex_state = 2}, [811] = {.lex_state = 8, .external_lex_state = 2}, - [812] = {.lex_state = 12}, + [812] = {.lex_state = 8, .external_lex_state = 2}, [813] = {.lex_state = 15}, [814] = {.lex_state = 8, .external_lex_state = 2}, - [815] = {.lex_state = 15}, + [815] = {.lex_state = 8, .external_lex_state = 2}, [816] = {.lex_state = 8, .external_lex_state = 2}, - [817] = {.lex_state = 15}, - [818] = {.lex_state = 8, .external_lex_state = 2}, + [817] = {.lex_state = 8, .external_lex_state = 2}, + [818] = {.lex_state = 9, .external_lex_state = 2}, [819] = {.lex_state = 15}, - [820] = {.lex_state = 15}, + [820] = {.lex_state = 8, .external_lex_state = 2}, [821] = {.lex_state = 8, .external_lex_state = 2}, - [822] = {.lex_state = 8, .external_lex_state = 2}, + [822] = {.lex_state = 12}, [823] = {.lex_state = 8, .external_lex_state = 2}, - [824] = {.lex_state = 8, .external_lex_state = 2}, + [824] = {.lex_state = 12}, [825] = {.lex_state = 9, .external_lex_state = 2}, - [826] = {.lex_state = 15}, + [826] = {.lex_state = 8, .external_lex_state = 2}, [827] = {.lex_state = 8, .external_lex_state = 2}, [828] = {.lex_state = 8, .external_lex_state = 2}, [829] = {.lex_state = 8, .external_lex_state = 2}, [830] = {.lex_state = 8, .external_lex_state = 2}, - [831] = {.lex_state = 15}, + [831] = {.lex_state = 8, .external_lex_state = 2}, [832] = {.lex_state = 8, .external_lex_state = 2}, [833] = {.lex_state = 15}, [834] = {.lex_state = 8, .external_lex_state = 2}, [835] = {.lex_state = 8, .external_lex_state = 2}, - [836] = {.lex_state = 8, .external_lex_state = 2}, + [836] = {.lex_state = 15}, [837] = {.lex_state = 8, .external_lex_state = 2}, - [838] = {.lex_state = 8, .external_lex_state = 2}, - [839] = {.lex_state = 8, .external_lex_state = 2}, + [838] = {.lex_state = 15}, + [839] = {.lex_state = 15}, [840] = {.lex_state = 8, .external_lex_state = 2}, - [841] = {.lex_state = 15}, - [842] = {.lex_state = 8, .external_lex_state = 2}, - [843] = {.lex_state = 8, .external_lex_state = 2}, - [844] = {.lex_state = 15}, - [845] = {.lex_state = 8, .external_lex_state = 2}, + [841] = {.lex_state = 8, .external_lex_state = 2}, + [842] = {.lex_state = 15}, + [843] = {.lex_state = 15}, + [844] = {.lex_state = 8, .external_lex_state = 2}, + [845] = {.lex_state = 15}, [846] = {.lex_state = 8, .external_lex_state = 2}, [847] = {.lex_state = 8, .external_lex_state = 2}, [848] = {.lex_state = 8, .external_lex_state = 2}, [849] = {.lex_state = 8, .external_lex_state = 2}, [850] = {.lex_state = 8, .external_lex_state = 2}, - [851] = {.lex_state = 12}, + [851] = {.lex_state = 8, .external_lex_state = 2}, [852] = {.lex_state = 8, .external_lex_state = 2}, [853] = {.lex_state = 15}, - [854] = {.lex_state = 8, .external_lex_state = 2}, - [855] = {.lex_state = 8, .external_lex_state = 2}, - [856] = {.lex_state = 9, .external_lex_state = 2}, + [854] = {.lex_state = 15}, + [855] = {.lex_state = 15}, + [856] = {.lex_state = 8, .external_lex_state = 2}, [857] = {.lex_state = 8, .external_lex_state = 2}, [858] = {.lex_state = 8, .external_lex_state = 2}, [859] = {.lex_state = 8, .external_lex_state = 2}, @@ -10995,7 +10879,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [869] = {.lex_state = 8, .external_lex_state = 2}, [870] = {.lex_state = 8, .external_lex_state = 2}, [871] = {.lex_state = 8, .external_lex_state = 2}, - [872] = {.lex_state = 8, .external_lex_state = 2}, + [872] = {.lex_state = 8}, [873] = {.lex_state = 8, .external_lex_state = 2}, [874] = {.lex_state = 8, .external_lex_state = 2}, [875] = {.lex_state = 8, .external_lex_state = 2}, @@ -11006,27 +10890,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [880] = {.lex_state = 8, .external_lex_state = 2}, [881] = {.lex_state = 8, .external_lex_state = 2}, [882] = {.lex_state = 8, .external_lex_state = 2}, - [883] = {.lex_state = 8}, + [883] = {.lex_state = 8, .external_lex_state = 2}, [884] = {.lex_state = 8, .external_lex_state = 2}, [885] = {.lex_state = 8, .external_lex_state = 2}, [886] = {.lex_state = 8, .external_lex_state = 2}, [887] = {.lex_state = 8, .external_lex_state = 2}, [888] = {.lex_state = 8, .external_lex_state = 2}, [889] = {.lex_state = 8, .external_lex_state = 2}, - [890] = {.lex_state = 8}, + [890] = {.lex_state = 8, .external_lex_state = 2}, [891] = {.lex_state = 8, .external_lex_state = 2}, [892] = {.lex_state = 8, .external_lex_state = 2}, [893] = {.lex_state = 8, .external_lex_state = 2}, [894] = {.lex_state = 8, .external_lex_state = 2}, [895] = {.lex_state = 8, .external_lex_state = 2}, - [896] = {.lex_state = 8, .external_lex_state = 2}, + [896] = {.lex_state = 8}, [897] = {.lex_state = 8, .external_lex_state = 2}, [898] = {.lex_state = 8, .external_lex_state = 2}, [899] = {.lex_state = 8, .external_lex_state = 2}, [900] = {.lex_state = 8, .external_lex_state = 2}, [901] = {.lex_state = 8, .external_lex_state = 2}, [902] = {.lex_state = 8, .external_lex_state = 2}, - [903] = {.lex_state = 8, .external_lex_state = 2}, + [903] = {.lex_state = 12}, [904] = {.lex_state = 12}, [905] = {.lex_state = 12}, [906] = {.lex_state = 12}, @@ -11092,10 +10976,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [966] = {.lex_state = 12}, [967] = {.lex_state = 12}, [968] = {.lex_state = 17}, - [969] = {.lex_state = 12, .external_lex_state = 2}, - [970] = {.lex_state = 12, .external_lex_state = 2}, - [971] = {.lex_state = 18}, - [972] = {.lex_state = 17}, + [969] = {.lex_state = 18}, + [970] = {.lex_state = 17}, + [971] = {.lex_state = 12, .external_lex_state = 2}, + [972] = {.lex_state = 12, .external_lex_state = 2}, [973] = {.lex_state = 12}, [974] = {.lex_state = 12}, [975] = {.lex_state = 12}, @@ -11148,22 +11032,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1022] = {.lex_state = 12}, [1023] = {.lex_state = 12}, [1024] = {.lex_state = 12}, - [1025] = {.lex_state = 17}, - [1026] = {.lex_state = 12}, + [1025] = {.lex_state = 12}, + [1026] = {.lex_state = 17}, [1027] = {.lex_state = 12}, [1028] = {.lex_state = 12}, - [1029] = {.lex_state = 17}, + [1029] = {.lex_state = 12}, [1030] = {.lex_state = 12}, [1031] = {.lex_state = 12}, [1032] = {.lex_state = 12}, - [1033] = {.lex_state = 17}, + [1033] = {.lex_state = 12}, [1034] = {.lex_state = 12}, [1035] = {.lex_state = 12}, [1036] = {.lex_state = 12}, [1037] = {.lex_state = 12}, [1038] = {.lex_state = 12}, - [1039] = {.lex_state = 12}, - [1040] = {.lex_state = 12, .external_lex_state = 2}, + [1039] = {.lex_state = 17}, + [1040] = {.lex_state = 17}, [1041] = {.lex_state = 12, .external_lex_state = 2}, [1042] = {.lex_state = 12, .external_lex_state = 2}, [1043] = {.lex_state = 12, .external_lex_state = 2}, @@ -11210,7 +11094,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1084] = {.lex_state = 12, .external_lex_state = 2}, [1085] = {.lex_state = 12, .external_lex_state = 2}, [1086] = {.lex_state = 12, .external_lex_state = 2}, - [1087] = {.lex_state = 12}, + [1087] = {.lex_state = 12, .external_lex_state = 2}, [1088] = {.lex_state = 12, .external_lex_state = 2}, [1089] = {.lex_state = 12, .external_lex_state = 2}, [1090] = {.lex_state = 12, .external_lex_state = 2}, @@ -11262,7 +11146,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1136] = {.lex_state = 12, .external_lex_state = 2}, [1137] = {.lex_state = 12, .external_lex_state = 2}, [1138] = {.lex_state = 12, .external_lex_state = 2}, - [1139] = {.lex_state = 12}, + [1139] = {.lex_state = 12, .external_lex_state = 2}, [1140] = {.lex_state = 12}, [1141] = {.lex_state = 12}, [1142] = {.lex_state = 12}, @@ -11302,63 +11186,63 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1176] = {.lex_state = 12}, [1177] = {.lex_state = 12}, [1178] = {.lex_state = 12}, - [1179] = {.lex_state = 12, .external_lex_state = 2}, - [1180] = {.lex_state = 12}, - [1181] = {.lex_state = 12, .external_lex_state = 2}, + [1179] = {.lex_state = 12}, + [1180] = {.lex_state = 12, .external_lex_state = 2}, + [1181] = {.lex_state = 12}, [1182] = {.lex_state = 12, .external_lex_state = 2}, - [1183] = {.lex_state = 12, .external_lex_state = 2}, - [1184] = {.lex_state = 12, .external_lex_state = 2}, - [1185] = {.lex_state = 12}, - [1186] = {.lex_state = 12}, - [1187] = {.lex_state = 12}, - [1188] = {.lex_state = 17}, + [1183] = {.lex_state = 12}, + [1184] = {.lex_state = 12}, + [1185] = {.lex_state = 12, .external_lex_state = 2}, + [1186] = {.lex_state = 12, .external_lex_state = 2}, + [1187] = {.lex_state = 12, .external_lex_state = 2}, + [1188] = {.lex_state = 12}, [1189] = {.lex_state = 12}, [1190] = {.lex_state = 12}, [1191] = {.lex_state = 12}, [1192] = {.lex_state = 12}, [1193] = {.lex_state = 12}, - [1194] = {.lex_state = 17}, - [1195] = {.lex_state = 12}, - [1196] = {.lex_state = 17}, - [1197] = {.lex_state = 17}, + [1194] = {.lex_state = 12, .external_lex_state = 2}, + [1195] = {.lex_state = 12, .external_lex_state = 2}, + [1196] = {.lex_state = 12, .external_lex_state = 2}, + [1197] = {.lex_state = 12}, [1198] = {.lex_state = 12}, [1199] = {.lex_state = 12}, - [1200] = {.lex_state = 12, .external_lex_state = 2}, - [1201] = {.lex_state = 12}, - [1202] = {.lex_state = 12, .external_lex_state = 2}, - [1203] = {.lex_state = 12}, - [1204] = {.lex_state = 12}, + [1200] = {.lex_state = 12}, + [1201] = {.lex_state = 17}, + [1202] = {.lex_state = 17}, + [1203] = {.lex_state = 17}, + [1204] = {.lex_state = 12, .external_lex_state = 2}, [1205] = {.lex_state = 12, .external_lex_state = 2}, - [1206] = {.lex_state = 12, .external_lex_state = 2}, + [1206] = {.lex_state = 12}, [1207] = {.lex_state = 12}, - [1208] = {.lex_state = 12}, + [1208] = {.lex_state = 17}, [1209] = {.lex_state = 12}, - [1210] = {.lex_state = 17}, + [1210] = {.lex_state = 12}, [1211] = {.lex_state = 12}, [1212] = {.lex_state = 12}, - [1213] = {.lex_state = 17}, + [1213] = {.lex_state = 12}, [1214] = {.lex_state = 12}, - [1215] = {.lex_state = 12, .external_lex_state = 2}, + [1215] = {.lex_state = 12}, [1216] = {.lex_state = 12}, [1217] = {.lex_state = 12}, [1218] = {.lex_state = 12}, [1219] = {.lex_state = 12}, - [1220] = {.lex_state = 17}, + [1220] = {.lex_state = 12}, [1221] = {.lex_state = 12}, [1222] = {.lex_state = 12}, - [1223] = {.lex_state = 17}, - [1224] = {.lex_state = 12, .external_lex_state = 2}, + [1223] = {.lex_state = 12, .external_lex_state = 2}, + [1224] = {.lex_state = 12}, [1225] = {.lex_state = 12}, [1226] = {.lex_state = 12}, - [1227] = {.lex_state = 12}, + [1227] = {.lex_state = 12, .external_lex_state = 2}, [1228] = {.lex_state = 12}, - [1229] = {.lex_state = 12}, + [1229] = {.lex_state = 12, .external_lex_state = 2}, [1230] = {.lex_state = 12}, - [1231] = {.lex_state = 12, .external_lex_state = 2}, - [1232] = {.lex_state = 12}, - [1233] = {.lex_state = 12, .external_lex_state = 2}, + [1231] = {.lex_state = 17}, + [1232] = {.lex_state = 17}, + [1233] = {.lex_state = 17}, [1234] = {.lex_state = 17}, - [1235] = {.lex_state = 12}, + [1235] = {.lex_state = 17}, [1236] = {.lex_state = 12}, [1237] = {.lex_state = 12}, [1238] = {.lex_state = 12}, @@ -11433,16 +11317,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1307] = {.lex_state = 12}, [1308] = {.lex_state = 12}, [1309] = {.lex_state = 17}, - [1310] = {.lex_state = 17}, - [1311] = {.lex_state = 17}, + [1310] = {.lex_state = 12}, + [1311] = {.lex_state = 12}, [1312] = {.lex_state = 12}, - [1313] = {.lex_state = 12}, - [1314] = {.lex_state = 12}, - [1315] = {.lex_state = 17}, + [1313] = {.lex_state = 17}, + [1314] = {.lex_state = 17}, + [1315] = {.lex_state = 12}, [1316] = {.lex_state = 17}, [1317] = {.lex_state = 12}, [1318] = {.lex_state = 12}, - [1319] = {.lex_state = 12}, + [1319] = {.lex_state = 17}, [1320] = {.lex_state = 12}, [1321] = {.lex_state = 12}, [1322] = {.lex_state = 12}, @@ -11460,25 +11344,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1334] = {.lex_state = 12}, [1335] = {.lex_state = 12}, [1336] = {.lex_state = 12}, - [1337] = {.lex_state = 12}, - [1338] = {.lex_state = 12}, - [1339] = {.lex_state = 66}, - [1340] = {.lex_state = 66}, - [1341] = {.lex_state = 66}, - [1342] = {.lex_state = 66}, - [1343] = {.lex_state = 66}, - [1344] = {.lex_state = 66}, - [1345] = {.lex_state = 66}, - [1346] = {.lex_state = 16}, - [1347] = {.lex_state = 15}, - [1348] = {.lex_state = 3, .external_lex_state = 3}, - [1349] = {.lex_state = 3, .external_lex_state = 3}, - [1350] = {.lex_state = 17}, - [1351] = {.lex_state = 17}, - [1352] = {.lex_state = 3, .external_lex_state = 3}, - [1353] = {.lex_state = 17}, - [1354] = {.lex_state = 3, .external_lex_state = 4}, - [1355] = {.lex_state = 17}, + [1337] = {.lex_state = 64}, + [1338] = {.lex_state = 64}, + [1339] = {.lex_state = 64}, + [1340] = {.lex_state = 64}, + [1341] = {.lex_state = 64}, + [1342] = {.lex_state = 64}, + [1343] = {.lex_state = 64}, + [1344] = {.lex_state = 64}, + [1345] = {.lex_state = 64}, + [1346] = {.lex_state = 64}, + [1347] = {.lex_state = 64}, + [1348] = {.lex_state = 16}, + [1349] = {.lex_state = 64}, + [1350] = {.lex_state = 64}, + [1351] = {.lex_state = 64}, + [1352] = {.lex_state = 64}, + [1353] = {.lex_state = 64}, + [1354] = {.lex_state = 15}, + [1355] = {.lex_state = 3, .external_lex_state = 3}, [1356] = {.lex_state = 3, .external_lex_state = 3}, [1357] = {.lex_state = 17}, [1358] = {.lex_state = 17}, @@ -11487,1283 +11371,1246 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1361] = {.lex_state = 17}, [1362] = {.lex_state = 17}, [1363] = {.lex_state = 17}, - [1364] = {.lex_state = 17}, + [1364] = {.lex_state = 3, .external_lex_state = 3}, [1365] = {.lex_state = 17}, - [1366] = {.lex_state = 3, .external_lex_state = 3}, - [1367] = {.lex_state = 17}, + [1366] = {.lex_state = 17}, + [1367] = {.lex_state = 3, .external_lex_state = 3}, [1368] = {.lex_state = 17}, [1369] = {.lex_state = 17}, - [1370] = {.lex_state = 9, .external_lex_state = 5}, + [1370] = {.lex_state = 17}, [1371] = {.lex_state = 17}, [1372] = {.lex_state = 17}, [1373] = {.lex_state = 17}, - [1374] = {.lex_state = 9, .external_lex_state = 6}, - [1375] = {.lex_state = 9, .external_lex_state = 6}, - [1376] = {.lex_state = 9, .external_lex_state = 5}, - [1377] = {.lex_state = 9, .external_lex_state = 6}, - [1378] = {.lex_state = 17}, - [1379] = {.lex_state = 17}, + [1374] = {.lex_state = 3, .external_lex_state = 3}, + [1375] = {.lex_state = 3, .external_lex_state = 4}, + [1376] = {.lex_state = 17}, + [1377] = {.lex_state = 9, .external_lex_state = 5}, + [1378] = {.lex_state = 9, .external_lex_state = 6}, + [1379] = {.lex_state = 9, .external_lex_state = 6}, [1380] = {.lex_state = 17}, - [1381] = {.lex_state = 17}, - [1382] = {.lex_state = 9, .external_lex_state = 5}, - [1383] = {.lex_state = 9, .external_lex_state = 5}, - [1384] = {.lex_state = 17}, - [1385] = {.lex_state = 17}, - [1386] = {.lex_state = 66}, + [1381] = {.lex_state = 64}, + [1382] = {.lex_state = 17}, + [1383] = {.lex_state = 17}, + [1384] = {.lex_state = 9, .external_lex_state = 5}, + [1385] = {.lex_state = 9, .external_lex_state = 5}, + [1386] = {.lex_state = 9, .external_lex_state = 5}, [1387] = {.lex_state = 17}, - [1388] = {.lex_state = 66}, - [1389] = {.lex_state = 9, .external_lex_state = 6}, - [1390] = {.lex_state = 66}, + [1388] = {.lex_state = 17}, + [1389] = {.lex_state = 17}, + [1390] = {.lex_state = 17}, [1391] = {.lex_state = 17}, - [1392] = {.lex_state = 17}, - [1393] = {.lex_state = 17}, - [1394] = {.lex_state = 9, .external_lex_state = 5}, - [1395] = {.lex_state = 66}, - [1396] = {.lex_state = 9, .external_lex_state = 6}, - [1397] = {.lex_state = 17}, + [1392] = {.lex_state = 9, .external_lex_state = 5}, + [1393] = {.lex_state = 9, .external_lex_state = 6}, + [1394] = {.lex_state = 17}, + [1395] = {.lex_state = 17}, + [1396] = {.lex_state = 17}, + [1397] = {.lex_state = 64}, [1398] = {.lex_state = 18}, [1399] = {.lex_state = 17}, [1400] = {.lex_state = 17}, [1401] = {.lex_state = 17}, - [1402] = {.lex_state = 66}, - [1403] = {.lex_state = 66}, - [1404] = {.lex_state = 9, .external_lex_state = 4}, - [1405] = {.lex_state = 66}, - [1406] = {.lex_state = 18}, - [1407] = {.lex_state = 66}, - [1408] = {.lex_state = 66}, - [1409] = {.lex_state = 66}, - [1410] = {.lex_state = 18}, - [1411] = {.lex_state = 66}, + [1402] = {.lex_state = 9, .external_lex_state = 6}, + [1403] = {.lex_state = 17}, + [1404] = {.lex_state = 17}, + [1405] = {.lex_state = 9, .external_lex_state = 6}, + [1406] = {.lex_state = 17}, + [1407] = {.lex_state = 64}, + [1408] = {.lex_state = 64}, + [1409] = {.lex_state = 64}, + [1410] = {.lex_state = 64}, + [1411] = {.lex_state = 9, .external_lex_state = 4}, [1412] = {.lex_state = 15}, - [1413] = {.lex_state = 66}, - [1414] = {.lex_state = 66}, - [1415] = {.lex_state = 18}, - [1416] = {.lex_state = 66}, - [1417] = {.lex_state = 66}, - [1418] = {.lex_state = 15}, + [1413] = {.lex_state = 64}, + [1414] = {.lex_state = 18}, + [1415] = {.lex_state = 64}, + [1416] = {.lex_state = 64}, + [1417] = {.lex_state = 15}, + [1418] = {.lex_state = 18}, [1419] = {.lex_state = 18}, - [1420] = {.lex_state = 66}, - [1421] = {.lex_state = 66}, - [1422] = {.lex_state = 66}, - [1423] = {.lex_state = 66}, - [1424] = {.lex_state = 66}, + [1420] = {.lex_state = 64}, + [1421] = {.lex_state = 64}, + [1422] = {.lex_state = 64}, + [1423] = {.lex_state = 64}, + [1424] = {.lex_state = 3, .external_lex_state = 7}, [1425] = {.lex_state = 18}, - [1426] = {.lex_state = 66}, - [1427] = {.lex_state = 66}, - [1428] = {.lex_state = 66}, - [1429] = {.lex_state = 66}, - [1430] = {.lex_state = 66}, - [1431] = {.lex_state = 18}, - [1432] = {.lex_state = 18}, - [1433] = {.lex_state = 66}, - [1434] = {.lex_state = 66}, - [1435] = {.lex_state = 3, .external_lex_state = 7}, - [1436] = {.lex_state = 66}, - [1437] = {.lex_state = 18}, - [1438] = {.lex_state = 3, .external_lex_state = 7}, - [1439] = {.lex_state = 66}, - [1440] = {.lex_state = 66}, - [1441] = {.lex_state = 66}, - [1442] = {.lex_state = 66}, - [1443] = {.lex_state = 66}, - [1444] = {.lex_state = 66}, - [1445] = {.lex_state = 66}, - [1446] = {.lex_state = 66}, - [1447] = {.lex_state = 66}, - [1448] = {.lex_state = 66}, - [1449] = {.lex_state = 66}, - [1450] = {.lex_state = 66}, - [1451] = {.lex_state = 66}, - [1452] = {.lex_state = 66}, - [1453] = {.lex_state = 18}, - [1454] = {.lex_state = 9, .external_lex_state = 8}, - [1455] = {.lex_state = 66}, - [1456] = {.lex_state = 66}, - [1457] = {.lex_state = 66}, - [1458] = {.lex_state = 66}, - [1459] = {.lex_state = 9, .external_lex_state = 9}, - [1460] = {.lex_state = 66}, - [1461] = {.lex_state = 66}, - [1462] = {.lex_state = 66}, - [1463] = {.lex_state = 66}, - [1464] = {.lex_state = 66}, - [1465] = {.lex_state = 9, .external_lex_state = 9}, - [1466] = {.lex_state = 66}, - [1467] = {.lex_state = 66}, - [1468] = {.lex_state = 9, .external_lex_state = 8}, - [1469] = {.lex_state = 66}, - [1470] = {.lex_state = 66}, - [1471] = {.lex_state = 66}, - [1472] = {.lex_state = 66}, - [1473] = {.lex_state = 66}, - [1474] = {.lex_state = 66}, - [1475] = {.lex_state = 66}, - [1476] = {.lex_state = 66}, - [1477] = {.lex_state = 66}, - [1478] = {.lex_state = 66}, - [1479] = {.lex_state = 66}, - [1480] = {.lex_state = 66}, - [1481] = {.lex_state = 66}, - [1482] = {.lex_state = 66}, - [1483] = {.lex_state = 66}, - [1484] = {.lex_state = 66}, - [1485] = {.lex_state = 66}, - [1486] = {.lex_state = 66}, - [1487] = {.lex_state = 66}, - [1488] = {.lex_state = 66}, - [1489] = {.lex_state = 66}, - [1490] = {.lex_state = 66}, - [1491] = {.lex_state = 66}, - [1492] = {.lex_state = 66}, - [1493] = {.lex_state = 66}, - [1494] = {.lex_state = 66}, - [1495] = {.lex_state = 66}, - [1496] = {.lex_state = 66}, - [1497] = {.lex_state = 66}, - [1498] = {.lex_state = 66}, - [1499] = {.lex_state = 66}, - [1500] = {.lex_state = 66}, - [1501] = {.lex_state = 66}, - [1502] = {.lex_state = 66}, - [1503] = {.lex_state = 66}, - [1504] = {.lex_state = 66, .external_lex_state = 2}, - [1505] = {.lex_state = 66}, - [1506] = {.lex_state = 66}, - [1507] = {.lex_state = 66, .external_lex_state = 2}, - [1508] = {.lex_state = 66}, - [1509] = {.lex_state = 66}, - [1510] = {.lex_state = 66}, - [1511] = {.lex_state = 66}, - [1512] = {.lex_state = 66}, - [1513] = {.lex_state = 66}, - [1514] = {.lex_state = 66}, - [1515] = {.lex_state = 66, .external_lex_state = 2}, - [1516] = {.lex_state = 3, .external_lex_state = 3}, - [1517] = {.lex_state = 66}, - [1518] = {.lex_state = 66}, - [1519] = {.lex_state = 3, .external_lex_state = 3}, - [1520] = {.lex_state = 66}, - [1521] = {.lex_state = 66}, + [1426] = {.lex_state = 64}, + [1427] = {.lex_state = 18}, + [1428] = {.lex_state = 18}, + [1429] = {.lex_state = 64}, + [1430] = {.lex_state = 64}, + [1431] = {.lex_state = 64}, + [1432] = {.lex_state = 64}, + [1433] = {.lex_state = 64}, + [1434] = {.lex_state = 3, .external_lex_state = 7}, + [1435] = {.lex_state = 18}, + [1436] = {.lex_state = 64}, + [1437] = {.lex_state = 64}, + [1438] = {.lex_state = 64}, + [1439] = {.lex_state = 64}, + [1440] = {.lex_state = 64}, + [1441] = {.lex_state = 64}, + [1442] = {.lex_state = 64}, + [1443] = {.lex_state = 18}, + [1444] = {.lex_state = 64}, + [1445] = {.lex_state = 64}, + [1446] = {.lex_state = 64}, + [1447] = {.lex_state = 64}, + [1448] = {.lex_state = 64}, + [1449] = {.lex_state = 64}, + [1450] = {.lex_state = 64}, + [1451] = {.lex_state = 64}, + [1452] = {.lex_state = 64}, + [1453] = {.lex_state = 64}, + [1454] = {.lex_state = 18}, + [1455] = {.lex_state = 64}, + [1456] = {.lex_state = 64}, + [1457] = {.lex_state = 64}, + [1458] = {.lex_state = 64}, + [1459] = {.lex_state = 64}, + [1460] = {.lex_state = 64}, + [1461] = {.lex_state = 64}, + [1462] = {.lex_state = 64}, + [1463] = {.lex_state = 9, .external_lex_state = 8}, + [1464] = {.lex_state = 64}, + [1465] = {.lex_state = 64}, + [1466] = {.lex_state = 64}, + [1467] = {.lex_state = 64}, + [1468] = {.lex_state = 64}, + [1469] = {.lex_state = 64}, + [1470] = {.lex_state = 64}, + [1471] = {.lex_state = 9, .external_lex_state = 9}, + [1472] = {.lex_state = 64}, + [1473] = {.lex_state = 64}, + [1474] = {.lex_state = 64}, + [1475] = {.lex_state = 64}, + [1476] = {.lex_state = 64}, + [1477] = {.lex_state = 64}, + [1478] = {.lex_state = 64}, + [1479] = {.lex_state = 64}, + [1480] = {.lex_state = 64}, + [1481] = {.lex_state = 64}, + [1482] = {.lex_state = 64}, + [1483] = {.lex_state = 9, .external_lex_state = 8}, + [1484] = {.lex_state = 64}, + [1485] = {.lex_state = 64}, + [1486] = {.lex_state = 64}, + [1487] = {.lex_state = 64}, + [1488] = {.lex_state = 64}, + [1489] = {.lex_state = 64}, + [1490] = {.lex_state = 64}, + [1491] = {.lex_state = 64}, + [1492] = {.lex_state = 64}, + [1493] = {.lex_state = 64}, + [1494] = {.lex_state = 64}, + [1495] = {.lex_state = 64}, + [1496] = {.lex_state = 64}, + [1497] = {.lex_state = 64}, + [1498] = {.lex_state = 64}, + [1499] = {.lex_state = 64}, + [1500] = {.lex_state = 64}, + [1501] = {.lex_state = 64}, + [1502] = {.lex_state = 64}, + [1503] = {.lex_state = 64}, + [1504] = {.lex_state = 64}, + [1505] = {.lex_state = 64}, + [1506] = {.lex_state = 9, .external_lex_state = 9}, + [1507] = {.lex_state = 64}, + [1508] = {.lex_state = 64}, + [1509] = {.lex_state = 64}, + [1510] = {.lex_state = 64}, + [1511] = {.lex_state = 64, .external_lex_state = 2}, + [1512] = {.lex_state = 64}, + [1513] = {.lex_state = 64}, + [1514] = {.lex_state = 64}, + [1515] = {.lex_state = 64}, + [1516] = {.lex_state = 64}, + [1517] = {.lex_state = 64, .external_lex_state = 2}, + [1518] = {.lex_state = 64}, + [1519] = {.lex_state = 64}, + [1520] = {.lex_state = 64}, + [1521] = {.lex_state = 64}, [1522] = {.lex_state = 3, .external_lex_state = 3}, - [1523] = {.lex_state = 3, .external_lex_state = 3}, + [1523] = {.lex_state = 64}, [1524] = {.lex_state = 3, .external_lex_state = 3}, [1525] = {.lex_state = 8}, - [1526] = {.lex_state = 66, .external_lex_state = 2}, - [1527] = {.lex_state = 15}, - [1528] = {.lex_state = 8}, - [1529] = {.lex_state = 66}, - [1530] = {.lex_state = 66}, - [1531] = {.lex_state = 66}, - [1532] = {.lex_state = 66}, - [1533] = {.lex_state = 8}, - [1534] = {.lex_state = 66}, - [1535] = {.lex_state = 66}, - [1536] = {.lex_state = 66}, - [1537] = {.lex_state = 66}, - [1538] = {.lex_state = 66}, - [1539] = {.lex_state = 66}, - [1540] = {.lex_state = 66}, - [1541] = {.lex_state = 66}, - [1542] = {.lex_state = 66}, - [1543] = {.lex_state = 66}, - [1544] = {.lex_state = 66}, - [1545] = {.lex_state = 66}, - [1546] = {.lex_state = 66}, - [1547] = {.lex_state = 66}, - [1548] = {.lex_state = 3, .external_lex_state = 3}, - [1549] = {.lex_state = 66}, - [1550] = {.lex_state = 66}, - [1551] = {.lex_state = 66}, - [1552] = {.lex_state = 3, .external_lex_state = 3}, - [1553] = {.lex_state = 3, .external_lex_state = 3}, - [1554] = {.lex_state = 66}, - [1555] = {.lex_state = 18}, - [1556] = {.lex_state = 66}, - [1557] = {.lex_state = 66}, - [1558] = {.lex_state = 66}, - [1559] = {.lex_state = 66}, - [1560] = {.lex_state = 66, .external_lex_state = 2}, - [1561] = {.lex_state = 9, .external_lex_state = 5}, - [1562] = {.lex_state = 66}, - [1563] = {.lex_state = 66}, - [1564] = {.lex_state = 66}, - [1565] = {.lex_state = 66}, - [1566] = {.lex_state = 66}, - [1567] = {.lex_state = 66}, - [1568] = {.lex_state = 66}, - [1569] = {.lex_state = 66}, - [1570] = {.lex_state = 66}, - [1571] = {.lex_state = 66}, - [1572] = {.lex_state = 9, .external_lex_state = 6}, - [1573] = {.lex_state = 9, .external_lex_state = 5}, - [1574] = {.lex_state = 66}, - [1575] = {.lex_state = 66}, - [1576] = {.lex_state = 66}, - [1577] = {.lex_state = 66}, - [1578] = {.lex_state = 66}, - [1579] = {.lex_state = 66}, - [1580] = {.lex_state = 9, .external_lex_state = 6}, - [1581] = {.lex_state = 66}, - [1582] = {.lex_state = 66}, - [1583] = {.lex_state = 66}, - [1584] = {.lex_state = 66}, - [1585] = {.lex_state = 66}, - [1586] = {.lex_state = 9, .external_lex_state = 5}, - [1587] = {.lex_state = 9, .external_lex_state = 5}, - [1588] = {.lex_state = 66}, - [1589] = {.lex_state = 66}, - [1590] = {.lex_state = 66}, - [1591] = {.lex_state = 9, .external_lex_state = 5}, - [1592] = {.lex_state = 66}, - [1593] = {.lex_state = 66}, - [1594] = {.lex_state = 9, .external_lex_state = 5}, - [1595] = {.lex_state = 9, .external_lex_state = 6}, - [1596] = {.lex_state = 66}, - [1597] = {.lex_state = 66, .external_lex_state = 2}, - [1598] = {.lex_state = 9, .external_lex_state = 5}, - [1599] = {.lex_state = 66}, - [1600] = {.lex_state = 66}, - [1601] = {.lex_state = 66}, - [1602] = {.lex_state = 66}, - [1603] = {.lex_state = 66}, + [1526] = {.lex_state = 64}, + [1527] = {.lex_state = 3, .external_lex_state = 3}, + [1528] = {.lex_state = 64}, + [1529] = {.lex_state = 3, .external_lex_state = 3}, + [1530] = {.lex_state = 64, .external_lex_state = 2}, + [1531] = {.lex_state = 3, .external_lex_state = 3}, + [1532] = {.lex_state = 64}, + [1533] = {.lex_state = 64}, + [1534] = {.lex_state = 3, .external_lex_state = 3}, + [1535] = {.lex_state = 3, .external_lex_state = 3}, + [1536] = {.lex_state = 8}, + [1537] = {.lex_state = 64}, + [1538] = {.lex_state = 15}, + [1539] = {.lex_state = 64}, + [1540] = {.lex_state = 64}, + [1541] = {.lex_state = 64}, + [1542] = {.lex_state = 64}, + [1543] = {.lex_state = 8}, + [1544] = {.lex_state = 64}, + [1545] = {.lex_state = 64}, + [1546] = {.lex_state = 64}, + [1547] = {.lex_state = 3, .external_lex_state = 3}, + [1548] = {.lex_state = 64}, + [1549] = {.lex_state = 64}, + [1550] = {.lex_state = 64}, + [1551] = {.lex_state = 64}, + [1552] = {.lex_state = 64}, + [1553] = {.lex_state = 64, .external_lex_state = 2}, + [1554] = {.lex_state = 18}, + [1555] = {.lex_state = 64}, + [1556] = {.lex_state = 64}, + [1557] = {.lex_state = 64}, + [1558] = {.lex_state = 64}, + [1559] = {.lex_state = 64}, + [1560] = {.lex_state = 64}, + [1561] = {.lex_state = 64}, + [1562] = {.lex_state = 64}, + [1563] = {.lex_state = 64}, + [1564] = {.lex_state = 64}, + [1565] = {.lex_state = 9, .external_lex_state = 5}, + [1566] = {.lex_state = 64}, + [1567] = {.lex_state = 9, .external_lex_state = 5}, + [1568] = {.lex_state = 9, .external_lex_state = 5}, + [1569] = {.lex_state = 64}, + [1570] = {.lex_state = 9, .external_lex_state = 6}, + [1571] = {.lex_state = 9, .external_lex_state = 5}, + [1572] = {.lex_state = 64}, + [1573] = {.lex_state = 64}, + [1574] = {.lex_state = 64}, + [1575] = {.lex_state = 64}, + [1576] = {.lex_state = 64}, + [1577] = {.lex_state = 64}, + [1578] = {.lex_state = 64}, + [1579] = {.lex_state = 64}, + [1580] = {.lex_state = 64}, + [1581] = {.lex_state = 9, .external_lex_state = 6}, + [1582] = {.lex_state = 64}, + [1583] = {.lex_state = 64}, + [1584] = {.lex_state = 64}, + [1585] = {.lex_state = 64}, + [1586] = {.lex_state = 9, .external_lex_state = 6}, + [1587] = {.lex_state = 9, .external_lex_state = 6}, + [1588] = {.lex_state = 64}, + [1589] = {.lex_state = 64}, + [1590] = {.lex_state = 64}, + [1591] = {.lex_state = 64}, + [1592] = {.lex_state = 64}, + [1593] = {.lex_state = 64}, + [1594] = {.lex_state = 64}, + [1595] = {.lex_state = 64}, + [1596] = {.lex_state = 64}, + [1597] = {.lex_state = 64}, + [1598] = {.lex_state = 64}, + [1599] = {.lex_state = 64, .external_lex_state = 2}, + [1600] = {.lex_state = 9, .external_lex_state = 6}, + [1601] = {.lex_state = 9, .external_lex_state = 5}, + [1602] = {.lex_state = 64}, + [1603] = {.lex_state = 64}, [1604] = {.lex_state = 9, .external_lex_state = 6}, - [1605] = {.lex_state = 66}, - [1606] = {.lex_state = 66}, - [1607] = {.lex_state = 66}, - [1608] = {.lex_state = 66}, - [1609] = {.lex_state = 66}, - [1610] = {.lex_state = 66}, - [1611] = {.lex_state = 9, .external_lex_state = 5}, - [1612] = {.lex_state = 66}, - [1613] = {.lex_state = 9, .external_lex_state = 6}, - [1614] = {.lex_state = 66}, - [1615] = {.lex_state = 66}, - [1616] = {.lex_state = 66}, - [1617] = {.lex_state = 9, .external_lex_state = 6}, - [1618] = {.lex_state = 9, .external_lex_state = 6}, - [1619] = {.lex_state = 66}, - [1620] = {.lex_state = 66}, - [1621] = {.lex_state = 66}, - [1622] = {.lex_state = 66}, - [1623] = {.lex_state = 66}, - [1624] = {.lex_state = 66}, - [1625] = {.lex_state = 66}, - [1626] = {.lex_state = 66}, - [1627] = {.lex_state = 66}, - [1628] = {.lex_state = 9, .external_lex_state = 6}, - [1629] = {.lex_state = 66}, - [1630] = {.lex_state = 66}, - [1631] = {.lex_state = 66, .external_lex_state = 2}, - [1632] = {.lex_state = 66, .external_lex_state = 2}, - [1633] = {.lex_state = 66, .external_lex_state = 2}, - [1634] = {.lex_state = 66}, - [1635] = {.lex_state = 66}, - [1636] = {.lex_state = 66, .external_lex_state = 2}, - [1637] = {.lex_state = 66}, - [1638] = {.lex_state = 66}, - [1639] = {.lex_state = 66}, - [1640] = {.lex_state = 66, .external_lex_state = 2}, - [1641] = {.lex_state = 66}, - [1642] = {.lex_state = 15}, - [1643] = {.lex_state = 66, .external_lex_state = 2}, - [1644] = {.lex_state = 66}, - [1645] = {.lex_state = 66, .external_lex_state = 2}, - [1646] = {.lex_state = 66}, - [1647] = {.lex_state = 66}, - [1648] = {.lex_state = 66, .external_lex_state = 2}, - [1649] = {.lex_state = 66, .external_lex_state = 2}, + [1605] = {.lex_state = 64}, + [1606] = {.lex_state = 64}, + [1607] = {.lex_state = 64}, + [1608] = {.lex_state = 64}, + [1609] = {.lex_state = 64}, + [1610] = {.lex_state = 64}, + [1611] = {.lex_state = 64, .external_lex_state = 2}, + [1612] = {.lex_state = 64}, + [1613] = {.lex_state = 64, .external_lex_state = 2}, + [1614] = {.lex_state = 64}, + [1615] = {.lex_state = 9, .external_lex_state = 5}, + [1616] = {.lex_state = 64}, + [1617] = {.lex_state = 9, .external_lex_state = 5}, + [1618] = {.lex_state = 64}, + [1619] = {.lex_state = 64}, + [1620] = {.lex_state = 64}, + [1621] = {.lex_state = 64}, + [1622] = {.lex_state = 64}, + [1623] = {.lex_state = 64}, + [1624] = {.lex_state = 9, .external_lex_state = 6}, + [1625] = {.lex_state = 64}, + [1626] = {.lex_state = 64}, + [1627] = {.lex_state = 64}, + [1628] = {.lex_state = 9, .external_lex_state = 5}, + [1629] = {.lex_state = 64}, + [1630] = {.lex_state = 64}, + [1631] = {.lex_state = 9, .external_lex_state = 6}, + [1632] = {.lex_state = 64}, + [1633] = {.lex_state = 64}, + [1634] = {.lex_state = 64}, + [1635] = {.lex_state = 64, .external_lex_state = 2}, + [1636] = {.lex_state = 15}, + [1637] = {.lex_state = 64}, + [1638] = {.lex_state = 64}, + [1639] = {.lex_state = 64}, + [1640] = {.lex_state = 64}, + [1641] = {.lex_state = 64, .external_lex_state = 2}, + [1642] = {.lex_state = 64}, + [1643] = {.lex_state = 64}, + [1644] = {.lex_state = 64}, + [1645] = {.lex_state = 64, .external_lex_state = 2}, + [1646] = {.lex_state = 64}, + [1647] = {.lex_state = 64, .external_lex_state = 2}, + [1648] = {.lex_state = 64, .external_lex_state = 2}, + [1649] = {.lex_state = 64}, [1650] = {.lex_state = 15}, - [1651] = {.lex_state = 66, .external_lex_state = 2}, - [1652] = {.lex_state = 66, .external_lex_state = 2}, - [1653] = {.lex_state = 66}, - [1654] = {.lex_state = 15}, - [1655] = {.lex_state = 66, .external_lex_state = 2}, - [1656] = {.lex_state = 66}, - [1657] = {.lex_state = 66}, - [1658] = {.lex_state = 66}, - [1659] = {.lex_state = 15}, - [1660] = {.lex_state = 66}, - [1661] = {.lex_state = 66}, - [1662] = {.lex_state = 66}, - [1663] = {.lex_state = 66}, - [1664] = {.lex_state = 66}, - [1665] = {.lex_state = 66}, - [1666] = {.lex_state = 66}, - [1667] = {.lex_state = 66, .external_lex_state = 2}, - [1668] = {.lex_state = 66}, - [1669] = {.lex_state = 66}, - [1670] = {.lex_state = 66}, - [1671] = {.lex_state = 66, .external_lex_state = 2}, - [1672] = {.lex_state = 66}, - [1673] = {.lex_state = 66, .external_lex_state = 2}, - [1674] = {.lex_state = 66}, - [1675] = {.lex_state = 66}, - [1676] = {.lex_state = 66}, - [1677] = {.lex_state = 66, .external_lex_state = 2}, - [1678] = {.lex_state = 66, .external_lex_state = 2}, - [1679] = {.lex_state = 66, .external_lex_state = 2}, - [1680] = {.lex_state = 66, .external_lex_state = 2}, - [1681] = {.lex_state = 66}, - [1682] = {.lex_state = 66, .external_lex_state = 2}, - [1683] = {.lex_state = 66}, - [1684] = {.lex_state = 66}, - [1685] = {.lex_state = 66, .external_lex_state = 2}, - [1686] = {.lex_state = 66, .external_lex_state = 2}, - [1687] = {.lex_state = 66}, - [1688] = {.lex_state = 66, .external_lex_state = 2}, - [1689] = {.lex_state = 66}, - [1690] = {.lex_state = 15}, - [1691] = {.lex_state = 66}, - [1692] = {.lex_state = 66, .external_lex_state = 2}, - [1693] = {.lex_state = 66, .external_lex_state = 2}, - [1694] = {.lex_state = 66, .external_lex_state = 2}, - [1695] = {.lex_state = 66, .external_lex_state = 2}, - [1696] = {.lex_state = 66}, - [1697] = {.lex_state = 66, .external_lex_state = 2}, - [1698] = {.lex_state = 66, .external_lex_state = 2}, - [1699] = {.lex_state = 66, .external_lex_state = 2}, - [1700] = {.lex_state = 66}, - [1701] = {.lex_state = 66}, - [1702] = {.lex_state = 66}, - [1703] = {.lex_state = 66, .external_lex_state = 2}, - [1704] = {.lex_state = 15}, - [1705] = {.lex_state = 15}, - [1706] = {.lex_state = 66}, - [1707] = {.lex_state = 66, .external_lex_state = 2}, - [1708] = {.lex_state = 66}, - [1709] = {.lex_state = 66}, - [1710] = {.lex_state = 66, .external_lex_state = 2}, - [1711] = {.lex_state = 66}, - [1712] = {.lex_state = 66, .external_lex_state = 2}, - [1713] = {.lex_state = 66}, - [1714] = {.lex_state = 66}, - [1715] = {.lex_state = 66, .external_lex_state = 2}, - [1716] = {.lex_state = 66, .external_lex_state = 2}, - [1717] = {.lex_state = 66}, - [1718] = {.lex_state = 15}, - [1719] = {.lex_state = 66}, - [1720] = {.lex_state = 66, .external_lex_state = 2}, - [1721] = {.lex_state = 66, .external_lex_state = 2}, - [1722] = {.lex_state = 66, .external_lex_state = 2}, - [1723] = {.lex_state = 66, .external_lex_state = 2}, - [1724] = {.lex_state = 66}, - [1725] = {.lex_state = 66}, - [1726] = {.lex_state = 66}, - [1727] = {.lex_state = 66}, - [1728] = {.lex_state = 66}, - [1729] = {.lex_state = 66}, - [1730] = {.lex_state = 66, .external_lex_state = 2}, - [1731] = {.lex_state = 66, .external_lex_state = 2}, - [1732] = {.lex_state = 66}, - [1733] = {.lex_state = 66}, - [1734] = {.lex_state = 66}, - [1735] = {.lex_state = 66, .external_lex_state = 2}, - [1736] = {.lex_state = 66, .external_lex_state = 2}, - [1737] = {.lex_state = 15}, - [1738] = {.lex_state = 66, .external_lex_state = 2}, - [1739] = {.lex_state = 66, .external_lex_state = 2}, - [1740] = {.lex_state = 66}, - [1741] = {.lex_state = 66}, - [1742] = {.lex_state = 66}, - [1743] = {.lex_state = 66}, - [1744] = {.lex_state = 66, .external_lex_state = 2}, - [1745] = {.lex_state = 66}, - [1746] = {.lex_state = 66, .external_lex_state = 2}, - [1747] = {.lex_state = 66}, - [1748] = {.lex_state = 66, .external_lex_state = 2}, - [1749] = {.lex_state = 66}, - [1750] = {.lex_state = 66}, - [1751] = {.lex_state = 66, .external_lex_state = 2}, - [1752] = {.lex_state = 66, .external_lex_state = 2}, - [1753] = {.lex_state = 66, .external_lex_state = 2}, - [1754] = {.lex_state = 66}, - [1755] = {.lex_state = 66}, - [1756] = {.lex_state = 66}, - [1757] = {.lex_state = 66}, - [1758] = {.lex_state = 66}, - [1759] = {.lex_state = 66, .external_lex_state = 2}, - [1760] = {.lex_state = 66}, - [1761] = {.lex_state = 66}, - [1762] = {.lex_state = 66}, - [1763] = {.lex_state = 66}, - [1764] = {.lex_state = 66}, - [1765] = {.lex_state = 66, .external_lex_state = 2}, - [1766] = {.lex_state = 66}, - [1767] = {.lex_state = 66, .external_lex_state = 2}, - [1768] = {.lex_state = 66, .external_lex_state = 2}, - [1769] = {.lex_state = 66, .external_lex_state = 2}, - [1770] = {.lex_state = 66}, - [1771] = {.lex_state = 66}, - [1772] = {.lex_state = 66}, - [1773] = {.lex_state = 66, .external_lex_state = 2}, - [1774] = {.lex_state = 66}, - [1775] = {.lex_state = 66}, - [1776] = {.lex_state = 66}, - [1777] = {.lex_state = 66}, - [1778] = {.lex_state = 66}, - [1779] = {.lex_state = 66}, - [1780] = {.lex_state = 19}, - [1781] = {.lex_state = 66}, - [1782] = {.lex_state = 66}, - [1783] = {.lex_state = 66}, - [1784] = {.lex_state = 66, .external_lex_state = 2}, - [1785] = {.lex_state = 66}, - [1786] = {.lex_state = 66, .external_lex_state = 2}, - [1787] = {.lex_state = 66, .external_lex_state = 2}, - [1788] = {.lex_state = 66, .external_lex_state = 2}, - [1789] = {.lex_state = 66}, - [1790] = {.lex_state = 3, .external_lex_state = 10}, - [1791] = {.lex_state = 66}, - [1792] = {.lex_state = 66}, - [1793] = {.lex_state = 66}, - [1794] = {.lex_state = 66}, - [1795] = {.lex_state = 66, .external_lex_state = 2}, - [1796] = {.lex_state = 19}, - [1797] = {.lex_state = 66, .external_lex_state = 2}, - [1798] = {.lex_state = 66, .external_lex_state = 2}, - [1799] = {.lex_state = 19}, - [1800] = {.lex_state = 66}, - [1801] = {.lex_state = 66}, - [1802] = {.lex_state = 66, .external_lex_state = 2}, - [1803] = {.lex_state = 66}, - [1804] = {.lex_state = 66}, - [1805] = {.lex_state = 66, .external_lex_state = 2}, - [1806] = {.lex_state = 66}, - [1807] = {.lex_state = 66, .external_lex_state = 2}, - [1808] = {.lex_state = 66}, - [1809] = {.lex_state = 66, .external_lex_state = 2}, - [1810] = {.lex_state = 66, .external_lex_state = 2}, - [1811] = {.lex_state = 66, .external_lex_state = 2}, - [1812] = {.lex_state = 66, .external_lex_state = 2}, - [1813] = {.lex_state = 66}, - [1814] = {.lex_state = 66, .external_lex_state = 2}, - [1815] = {.lex_state = 66, .external_lex_state = 2}, - [1816] = {.lex_state = 66, .external_lex_state = 2}, - [1817] = {.lex_state = 66, .external_lex_state = 2}, - [1818] = {.lex_state = 66, .external_lex_state = 2}, - [1819] = {.lex_state = 66, .external_lex_state = 2}, - [1820] = {.lex_state = 66}, - [1821] = {.lex_state = 66, .external_lex_state = 2}, - [1822] = {.lex_state = 66}, - [1823] = {.lex_state = 66}, - [1824] = {.lex_state = 66}, - [1825] = {.lex_state = 66, .external_lex_state = 2}, - [1826] = {.lex_state = 66, .external_lex_state = 2}, - [1827] = {.lex_state = 66}, - [1828] = {.lex_state = 66}, - [1829] = {.lex_state = 66}, - [1830] = {.lex_state = 66}, - [1831] = {.lex_state = 66}, - [1832] = {.lex_state = 66}, - [1833] = {.lex_state = 66}, - [1834] = {.lex_state = 66}, - [1835] = {.lex_state = 66}, - [1836] = {.lex_state = 66}, - [1837] = {.lex_state = 66}, - [1838] = {.lex_state = 66}, - [1839] = {.lex_state = 66, .external_lex_state = 2}, - [1840] = {.lex_state = 66, .external_lex_state = 2}, - [1841] = {.lex_state = 66, .external_lex_state = 2}, - [1842] = {.lex_state = 66}, - [1843] = {.lex_state = 3, .external_lex_state = 10}, - [1844] = {.lex_state = 66, .external_lex_state = 2}, - [1845] = {.lex_state = 19}, - [1846] = {.lex_state = 66}, - [1847] = {.lex_state = 66, .external_lex_state = 2}, - [1848] = {.lex_state = 66}, - [1849] = {.lex_state = 15}, - [1850] = {.lex_state = 15}, - [1851] = {.lex_state = 19}, - [1852] = {.lex_state = 66, .external_lex_state = 2}, - [1853] = {.lex_state = 66, .external_lex_state = 2}, - [1854] = {.lex_state = 66}, - [1855] = {.lex_state = 66, .external_lex_state = 2}, - [1856] = {.lex_state = 66, .external_lex_state = 2}, - [1857] = {.lex_state = 66}, - [1858] = {.lex_state = 66}, - [1859] = {.lex_state = 66}, - [1860] = {.lex_state = 66}, - [1861] = {.lex_state = 66, .external_lex_state = 2}, - [1862] = {.lex_state = 66, .external_lex_state = 2}, - [1863] = {.lex_state = 66, .external_lex_state = 2}, - [1864] = {.lex_state = 66, .external_lex_state = 2}, - [1865] = {.lex_state = 66, .external_lex_state = 2}, - [1866] = {.lex_state = 66, .external_lex_state = 2}, - [1867] = {.lex_state = 66, .external_lex_state = 2}, - [1868] = {.lex_state = 66}, - [1869] = {.lex_state = 66}, - [1870] = {.lex_state = 66}, - [1871] = {.lex_state = 66}, - [1872] = {.lex_state = 66, .external_lex_state = 2}, - [1873] = {.lex_state = 66, .external_lex_state = 2}, - [1874] = {.lex_state = 66}, - [1875] = {.lex_state = 66, .external_lex_state = 2}, - [1876] = {.lex_state = 66}, - [1877] = {.lex_state = 66, .external_lex_state = 2}, - [1878] = {.lex_state = 66}, - [1879] = {.lex_state = 66}, - [1880] = {.lex_state = 66}, - [1881] = {.lex_state = 66}, - [1882] = {.lex_state = 66, .external_lex_state = 2}, - [1883] = {.lex_state = 66, .external_lex_state = 11}, - [1884] = {.lex_state = 66}, - [1885] = {.lex_state = 66}, - [1886] = {.lex_state = 66}, - [1887] = {.lex_state = 66}, - [1888] = {.lex_state = 66}, - [1889] = {.lex_state = 66}, - [1890] = {.lex_state = 66}, - [1891] = {.lex_state = 66}, - [1892] = {.lex_state = 66}, - [1893] = {.lex_state = 66}, - [1894] = {.lex_state = 66}, - [1895] = {.lex_state = 66}, - [1896] = {.lex_state = 66}, - [1897] = {.lex_state = 66}, - [1898] = {.lex_state = 3, .external_lex_state = 12}, - [1899] = {.lex_state = 66}, - [1900] = {.lex_state = 66}, - [1901] = {.lex_state = 66}, - [1902] = {.lex_state = 66}, - [1903] = {.lex_state = 66}, - [1904] = {.lex_state = 3, .external_lex_state = 12}, - [1905] = {.lex_state = 66}, - [1906] = {.lex_state = 66}, - [1907] = {.lex_state = 66, .external_lex_state = 2}, - [1908] = {.lex_state = 66}, - [1909] = {.lex_state = 15}, - [1910] = {.lex_state = 66}, - [1911] = {.lex_state = 66}, - [1912] = {.lex_state = 66}, - [1913] = {.lex_state = 66}, - [1914] = {.lex_state = 66}, - [1915] = {.lex_state = 66}, - [1916] = {.lex_state = 66}, - [1917] = {.lex_state = 66}, - [1918] = {.lex_state = 66}, - [1919] = {.lex_state = 66}, - [1920] = {.lex_state = 66}, - [1921] = {.lex_state = 66}, - [1922] = {.lex_state = 66}, - [1923] = {.lex_state = 66, .external_lex_state = 2}, - [1924] = {.lex_state = 66}, - [1925] = {.lex_state = 66}, - [1926] = {.lex_state = 66}, - [1927] = {.lex_state = 66}, - [1928] = {.lex_state = 66, .external_lex_state = 2}, - [1929] = {.lex_state = 66}, - [1930] = {.lex_state = 66, .external_lex_state = 2}, - [1931] = {.lex_state = 66}, - [1932] = {.lex_state = 66}, - [1933] = {.lex_state = 66}, - [1934] = {.lex_state = 66, .external_lex_state = 2}, - [1935] = {.lex_state = 66}, - [1936] = {.lex_state = 66}, - [1937] = {.lex_state = 66, .external_lex_state = 2}, - [1938] = {.lex_state = 66}, - [1939] = {.lex_state = 66}, - [1940] = {.lex_state = 66}, - [1941] = {.lex_state = 66}, - [1942] = {.lex_state = 66}, - [1943] = {.lex_state = 66}, - [1944] = {.lex_state = 66}, - [1945] = {.lex_state = 66}, - [1946] = {.lex_state = 15}, - [1947] = {.lex_state = 3, .external_lex_state = 12}, - [1948] = {.lex_state = 3, .external_lex_state = 12}, - [1949] = {.lex_state = 66}, - [1950] = {.lex_state = 66}, - [1951] = {.lex_state = 66}, - [1952] = {.lex_state = 66}, - [1953] = {.lex_state = 66}, - [1954] = {.lex_state = 66}, - [1955] = {.lex_state = 15}, - [1956] = {.lex_state = 66}, - [1957] = {.lex_state = 66}, - [1958] = {.lex_state = 66}, - [1959] = {.lex_state = 66}, - [1960] = {.lex_state = 66}, - [1961] = {.lex_state = 66}, - [1962] = {.lex_state = 66}, - [1963] = {.lex_state = 66}, - [1964] = {.lex_state = 66}, - [1965] = {.lex_state = 66}, - [1966] = {.lex_state = 66}, - [1967] = {.lex_state = 66, .external_lex_state = 2}, - [1968] = {.lex_state = 66}, - [1969] = {.lex_state = 66}, - [1970] = {.lex_state = 66}, - [1971] = {.lex_state = 66}, - [1972] = {.lex_state = 66}, - [1973] = {.lex_state = 66}, - [1974] = {.lex_state = 66}, - [1975] = {.lex_state = 66}, - [1976] = {.lex_state = 66}, - [1977] = {.lex_state = 66}, - [1978] = {.lex_state = 66}, - [1979] = {.lex_state = 66}, - [1980] = {.lex_state = 66}, - [1981] = {.lex_state = 66}, - [1982] = {.lex_state = 66}, - [1983] = {.lex_state = 66}, - [1984] = {.lex_state = 66}, - [1985] = {.lex_state = 66}, - [1986] = {.lex_state = 66}, - [1987] = {.lex_state = 66}, - [1988] = {.lex_state = 66}, - [1989] = {.lex_state = 66}, - [1990] = {.lex_state = 66}, - [1991] = {.lex_state = 66}, - [1992] = {.lex_state = 3, .external_lex_state = 12}, - [1993] = {.lex_state = 66}, - [1994] = {.lex_state = 3, .external_lex_state = 12}, - [1995] = {.lex_state = 66}, - [1996] = {.lex_state = 66}, - [1997] = {.lex_state = 66}, - [1998] = {.lex_state = 66}, - [1999] = {.lex_state = 66}, - [2000] = {.lex_state = 66}, - [2001] = {.lex_state = 66}, - [2002] = {.lex_state = 66}, - [2003] = {.lex_state = 66}, - [2004] = {.lex_state = 66}, - [2005] = {.lex_state = 66}, - [2006] = {.lex_state = 66}, - [2007] = {.lex_state = 66}, - [2008] = {.lex_state = 66}, - [2009] = {.lex_state = 66}, - [2010] = {.lex_state = 66}, - [2011] = {.lex_state = 66}, - [2012] = {.lex_state = 66}, - [2013] = {.lex_state = 66}, - [2014] = {.lex_state = 66}, - [2015] = {.lex_state = 66}, - [2016] = {.lex_state = 66}, - [2017] = {.lex_state = 15}, - [2018] = {.lex_state = 66}, - [2019] = {.lex_state = 66}, - [2020] = {.lex_state = 66}, - [2021] = {.lex_state = 66}, - [2022] = {.lex_state = 66, .external_lex_state = 2}, - [2023] = {.lex_state = 66}, - [2024] = {.lex_state = 66}, - [2025] = {.lex_state = 66}, - [2026] = {.lex_state = 66}, - [2027] = {.lex_state = 66}, - [2028] = {.lex_state = 66}, - [2029] = {.lex_state = 66}, - [2030] = {.lex_state = 66}, - [2031] = {.lex_state = 66}, - [2032] = {.lex_state = 66}, - [2033] = {.lex_state = 66}, - [2034] = {.lex_state = 66}, - [2035] = {.lex_state = 66}, - [2036] = {.lex_state = 66}, - [2037] = {.lex_state = 66}, - [2038] = {.lex_state = 66}, - [2039] = {.lex_state = 66}, - [2040] = {.lex_state = 66}, - [2041] = {.lex_state = 66}, - [2042] = {.lex_state = 66}, - [2043] = {.lex_state = 66}, - [2044] = {.lex_state = 66}, - [2045] = {.lex_state = 66}, - [2046] = {.lex_state = 66}, - [2047] = {.lex_state = 66}, - [2048] = {.lex_state = 66}, - [2049] = {.lex_state = 66}, - [2050] = {.lex_state = 66}, - [2051] = {.lex_state = 66}, - [2052] = {.lex_state = 66}, - [2053] = {.lex_state = 66}, - [2054] = {.lex_state = 66}, - [2055] = {.lex_state = 66}, - [2056] = {.lex_state = 66}, - [2057] = {.lex_state = 66}, - [2058] = {.lex_state = 66}, - [2059] = {.lex_state = 66}, - [2060] = {.lex_state = 66, .external_lex_state = 2}, - [2061] = {.lex_state = 66}, - [2062] = {.lex_state = 66}, - [2063] = {.lex_state = 66}, - [2064] = {.lex_state = 66}, - [2065] = {.lex_state = 66}, - [2066] = {.lex_state = 66}, - [2067] = {.lex_state = 173, .external_lex_state = 13}, - [2068] = {.lex_state = 66}, - [2069] = {.lex_state = 66}, - [2070] = {.lex_state = 66}, - [2071] = {.lex_state = 66}, - [2072] = {.lex_state = 66, .external_lex_state = 11}, - [2073] = {.lex_state = 66}, - [2074] = {.lex_state = 66}, - [2075] = {.lex_state = 66}, - [2076] = {.lex_state = 66}, - [2077] = {.lex_state = 66}, - [2078] = {.lex_state = 66, .external_lex_state = 2}, - [2079] = {.lex_state = 66, .external_lex_state = 2}, - [2080] = {.lex_state = 66}, - [2081] = {.lex_state = 66}, - [2082] = {.lex_state = 66}, - [2083] = {.lex_state = 66}, - [2084] = {.lex_state = 66}, - [2085] = {.lex_state = 66}, - [2086] = {.lex_state = 66}, - [2087] = {.lex_state = 66}, - [2088] = {.lex_state = 66}, - [2089] = {.lex_state = 66}, - [2090] = {.lex_state = 66}, - [2091] = {.lex_state = 66}, - [2092] = {.lex_state = 66}, - [2093] = {.lex_state = 66}, - [2094] = {.lex_state = 66}, - [2095] = {.lex_state = 66}, - [2096] = {.lex_state = 66}, - [2097] = {.lex_state = 66}, - [2098] = {.lex_state = 66}, - [2099] = {.lex_state = 66}, - [2100] = {.lex_state = 66}, - [2101] = {.lex_state = 66}, - [2102] = {.lex_state = 66}, - [2103] = {.lex_state = 66}, - [2104] = {.lex_state = 66}, - [2105] = {.lex_state = 66}, - [2106] = {.lex_state = 66}, - [2107] = {.lex_state = 66}, - [2108] = {.lex_state = 66, .external_lex_state = 2}, - [2109] = {.lex_state = 66}, - [2110] = {.lex_state = 66}, - [2111] = {.lex_state = 66}, - [2112] = {.lex_state = 66}, - [2113] = {.lex_state = 66}, - [2114] = {.lex_state = 66, .external_lex_state = 2}, - [2115] = {.lex_state = 66}, - [2116] = {.lex_state = 66}, - [2117] = {.lex_state = 66}, - [2118] = {.lex_state = 66, .external_lex_state = 2}, - [2119] = {.lex_state = 66}, - [2120] = {.lex_state = 66}, - [2121] = {.lex_state = 66}, - [2122] = {.lex_state = 66}, - [2123] = {.lex_state = 66}, - [2124] = {.lex_state = 66}, - [2125] = {.lex_state = 66}, - [2126] = {.lex_state = 66}, - [2127] = {.lex_state = 66, .external_lex_state = 2}, - [2128] = {.lex_state = 66}, - [2129] = {.lex_state = 66, .external_lex_state = 2}, - [2130] = {.lex_state = 66}, - [2131] = {.lex_state = 66}, - [2132] = {.lex_state = 66}, - [2133] = {.lex_state = 66}, - [2134] = {.lex_state = 66}, - [2135] = {.lex_state = 66}, - [2136] = {.lex_state = 66}, - [2137] = {.lex_state = 66}, - [2138] = {.lex_state = 66}, - [2139] = {.lex_state = 66}, - [2140] = {.lex_state = 66}, - [2141] = {.lex_state = 66}, - [2142] = {.lex_state = 66}, - [2143] = {.lex_state = 66}, - [2144] = {.lex_state = 66}, - [2145] = {.lex_state = 66}, - [2146] = {.lex_state = 66}, - [2147] = {.lex_state = 66}, - [2148] = {.lex_state = 66}, - [2149] = {.lex_state = 66, .external_lex_state = 2}, - [2150] = {.lex_state = 66}, - [2151] = {.lex_state = 66, .external_lex_state = 2}, - [2152] = {.lex_state = 66, .external_lex_state = 2}, - [2153] = {.lex_state = 66, .external_lex_state = 2}, - [2154] = {.lex_state = 66}, - [2155] = {.lex_state = 66}, - [2156] = {.lex_state = 66}, - [2157] = {.lex_state = 66, .external_lex_state = 2}, - [2158] = {.lex_state = 66}, - [2159] = {.lex_state = 66, .external_lex_state = 2}, - [2160] = {.lex_state = 66, .external_lex_state = 2}, - [2161] = {.lex_state = 66}, - [2162] = {.lex_state = 66}, - [2163] = {.lex_state = 66}, - [2164] = {.lex_state = 66}, - [2165] = {.lex_state = 66}, - [2166] = {.lex_state = 66}, - [2167] = {.lex_state = 66}, - [2168] = {.lex_state = 66}, - [2169] = {.lex_state = 66}, - [2170] = {.lex_state = 66}, - [2171] = {.lex_state = 66}, - [2172] = {.lex_state = 66}, - [2173] = {.lex_state = 66}, - [2174] = {.lex_state = 66}, - [2175] = {.lex_state = 66}, - [2176] = {.lex_state = 3, .external_lex_state = 12}, - [2177] = {.lex_state = 66}, - [2178] = {.lex_state = 66}, - [2179] = {.lex_state = 66}, - [2180] = {.lex_state = 66, .external_lex_state = 2}, - [2181] = {.lex_state = 66}, - [2182] = {.lex_state = 66}, - [2183] = {.lex_state = 66}, - [2184] = {.lex_state = 66}, - [2185] = {.lex_state = 66}, - [2186] = {.lex_state = 66}, - [2187] = {.lex_state = 66}, - [2188] = {.lex_state = 66}, - [2189] = {.lex_state = 66}, - [2190] = {.lex_state = 66, .external_lex_state = 2}, - [2191] = {.lex_state = 66}, - [2192] = {.lex_state = 66}, - [2193] = {.lex_state = 66, .external_lex_state = 2}, - [2194] = {.lex_state = 66, .external_lex_state = 2}, - [2195] = {.lex_state = 66}, - [2196] = {.lex_state = 66}, - [2197] = {.lex_state = 66}, - [2198] = {.lex_state = 66, .external_lex_state = 2}, - [2199] = {.lex_state = 66}, - [2200] = {.lex_state = 66, .external_lex_state = 2}, - [2201] = {.lex_state = 66, .external_lex_state = 2}, - [2202] = {.lex_state = 66}, - [2203] = {.lex_state = 66}, - [2204] = {.lex_state = 66}, - [2205] = {.lex_state = 66, .external_lex_state = 2}, - [2206] = {.lex_state = 66, .external_lex_state = 2}, - [2207] = {.lex_state = 66, .external_lex_state = 2}, - [2208] = {.lex_state = 66, .external_lex_state = 2}, - [2209] = {.lex_state = 66}, - [2210] = {.lex_state = 66}, - [2211] = {.lex_state = 66, .external_lex_state = 2}, - [2212] = {.lex_state = 66}, - [2213] = {.lex_state = 66}, - [2214] = {.lex_state = 66}, - [2215] = {.lex_state = 66}, - [2216] = {.lex_state = 66}, - [2217] = {.lex_state = 66}, - [2218] = {.lex_state = 66}, - [2219] = {.lex_state = 66}, - [2220] = {.lex_state = 66}, - [2221] = {.lex_state = 66}, - [2222] = {.lex_state = 66, .external_lex_state = 2}, - [2223] = {.lex_state = 66, .external_lex_state = 2}, - [2224] = {.lex_state = 66}, - [2225] = {.lex_state = 66}, - [2226] = {.lex_state = 66, .external_lex_state = 2}, - [2227] = {.lex_state = 66}, - [2228] = {.lex_state = 66}, - [2229] = {.lex_state = 66}, - [2230] = {.lex_state = 66}, - [2231] = {.lex_state = 66}, - [2232] = {.lex_state = 66}, - [2233] = {.lex_state = 66}, - [2234] = {.lex_state = 66}, - [2235] = {.lex_state = 66}, - [2236] = {.lex_state = 66}, - [2237] = {.lex_state = 66}, - [2238] = {.lex_state = 66}, - [2239] = {.lex_state = 66}, - [2240] = {.lex_state = 3, .external_lex_state = 12}, - [2241] = {.lex_state = 66}, - [2242] = {.lex_state = 66}, - [2243] = {.lex_state = 66}, - [2244] = {.lex_state = 66}, - [2245] = {.lex_state = 66}, - [2246] = {.lex_state = 66}, - [2247] = {.lex_state = 66}, - [2248] = {.lex_state = 66}, - [2249] = {.lex_state = 66}, - [2250] = {.lex_state = 66}, - [2251] = {.lex_state = 66}, - [2252] = {.lex_state = 66}, - [2253] = {.lex_state = 66}, - [2254] = {.lex_state = 66}, - [2255] = {.lex_state = 66}, - [2256] = {.lex_state = 66}, - [2257] = {.lex_state = 3, .external_lex_state = 12}, - [2258] = {.lex_state = 66}, - [2259] = {.lex_state = 66}, - [2260] = {.lex_state = 66, .external_lex_state = 2}, - [2261] = {.lex_state = 3, .external_lex_state = 12}, - [2262] = {.lex_state = 66}, - [2263] = {.lex_state = 66}, - [2264] = {.lex_state = 66}, - [2265] = {.lex_state = 66}, - [2266] = {.lex_state = 66}, - [2267] = {.lex_state = 66, .external_lex_state = 2}, - [2268] = {.lex_state = 66, .external_lex_state = 2}, - [2269] = {.lex_state = 66, .external_lex_state = 2}, - [2270] = {.lex_state = 66, .external_lex_state = 2}, - [2271] = {.lex_state = 66, .external_lex_state = 2}, - [2272] = {.lex_state = 66}, - [2273] = {.lex_state = 66}, - [2274] = {.lex_state = 66}, - [2275] = {.lex_state = 66}, - [2276] = {.lex_state = 66}, - [2277] = {.lex_state = 66, .external_lex_state = 2}, - [2278] = {.lex_state = 66}, - [2279] = {.lex_state = 66}, - [2280] = {.lex_state = 66}, - [2281] = {.lex_state = 66}, - [2282] = {.lex_state = 66, .external_lex_state = 2}, - [2283] = {.lex_state = 66}, - [2284] = {.lex_state = 66}, - [2285] = {.lex_state = 66, .external_lex_state = 2}, - [2286] = {.lex_state = 66}, - [2287] = {.lex_state = 66, .external_lex_state = 2}, - [2288] = {.lex_state = 66}, - [2289] = {.lex_state = 66, .external_lex_state = 2}, - [2290] = {.lex_state = 66}, - [2291] = {.lex_state = 66}, - [2292] = {.lex_state = 66}, - [2293] = {.lex_state = 66, .external_lex_state = 2}, - [2294] = {.lex_state = 66}, - [2295] = {.lex_state = 66, .external_lex_state = 2}, - [2296] = {.lex_state = 66}, - [2297] = {.lex_state = 66}, - [2298] = {.lex_state = 66, .external_lex_state = 2}, - [2299] = {.lex_state = 66}, - [2300] = {.lex_state = 66}, - [2301] = {.lex_state = 66, .external_lex_state = 2}, - [2302] = {.lex_state = 66}, - [2303] = {.lex_state = 66}, - [2304] = {.lex_state = 66}, - [2305] = {.lex_state = 66}, - [2306] = {.lex_state = 66, .external_lex_state = 2}, - [2307] = {.lex_state = 66}, - [2308] = {.lex_state = 66}, - [2309] = {.lex_state = 66}, - [2310] = {.lex_state = 66}, - [2311] = {.lex_state = 66}, - [2312] = {.lex_state = 66}, - [2313] = {.lex_state = 66}, - [2314] = {.lex_state = 66}, - [2315] = {.lex_state = 66}, - [2316] = {.lex_state = 66}, - [2317] = {.lex_state = 66}, - [2318] = {.lex_state = 66}, - [2319] = {.lex_state = 66}, - [2320] = {.lex_state = 66}, - [2321] = {.lex_state = 3, .external_lex_state = 12}, - [2322] = {.lex_state = 66}, - [2323] = {.lex_state = 66}, - [2324] = {.lex_state = 66}, - [2325] = {.lex_state = 66}, - [2326] = {.lex_state = 66}, - [2327] = {.lex_state = 66, .external_lex_state = 2}, - [2328] = {.lex_state = 66}, - [2329] = {.lex_state = 66}, - [2330] = {.lex_state = 66}, - [2331] = {.lex_state = 66}, - [2332] = {.lex_state = 66}, - [2333] = {.lex_state = 66}, - [2334] = {.lex_state = 66}, - [2335] = {.lex_state = 66}, - [2336] = {.lex_state = 66}, - [2337] = {.lex_state = 66, .external_lex_state = 2}, - [2338] = {.lex_state = 66}, - [2339] = {.lex_state = 66}, - [2340] = {.lex_state = 66, .external_lex_state = 2}, - [2341] = {.lex_state = 66}, - [2342] = {.lex_state = 66}, - [2343] = {.lex_state = 66, .external_lex_state = 2}, - [2344] = {.lex_state = 66}, - [2345] = {.lex_state = 66, .external_lex_state = 2}, - [2346] = {.lex_state = 66}, - [2347] = {.lex_state = 66}, - [2348] = {.lex_state = 66}, - [2349] = {.lex_state = 66}, - [2350] = {.lex_state = 66}, - [2351] = {.lex_state = 66}, - [2352] = {.lex_state = 66}, - [2353] = {.lex_state = 66}, - [2354] = {.lex_state = 66}, - [2355] = {.lex_state = 66}, - [2356] = {.lex_state = 66}, - [2357] = {.lex_state = 66, .external_lex_state = 2}, - [2358] = {.lex_state = 66}, - [2359] = {.lex_state = 66}, - [2360] = {.lex_state = 66}, - [2361] = {.lex_state = 66}, - [2362] = {.lex_state = 66}, - [2363] = {.lex_state = 66}, - [2364] = {.lex_state = 66}, - [2365] = {.lex_state = 66}, - [2366] = {.lex_state = 66, .external_lex_state = 2}, - [2367] = {.lex_state = 66, .external_lex_state = 2}, - [2368] = {.lex_state = 66, .external_lex_state = 2}, - [2369] = {.lex_state = 66}, - [2370] = {.lex_state = 66}, - [2371] = {.lex_state = 66}, - [2372] = {.lex_state = 3, .external_lex_state = 12}, - [2373] = {.lex_state = 66}, - [2374] = {.lex_state = 3, .external_lex_state = 12}, - [2375] = {.lex_state = 66}, - [2376] = {.lex_state = 66}, - [2377] = {.lex_state = 66, .external_lex_state = 2}, - [2378] = {.lex_state = 66, .external_lex_state = 2}, - [2379] = {.lex_state = 66}, - [2380] = {.lex_state = 66, .external_lex_state = 2}, - [2381] = {.lex_state = 66}, - [2382] = {.lex_state = 66}, - [2383] = {.lex_state = 66}, - [2384] = {.lex_state = 66}, - [2385] = {.lex_state = 66, .external_lex_state = 2}, - [2386] = {.lex_state = 66, .external_lex_state = 2}, - [2387] = {.lex_state = 66, .external_lex_state = 2}, - [2388] = {.lex_state = 66, .external_lex_state = 2}, - [2389] = {.lex_state = 66}, - [2390] = {.lex_state = 66}, - [2391] = {.lex_state = 66}, - [2392] = {.lex_state = 66}, - [2393] = {.lex_state = 66, .external_lex_state = 2}, - [2394] = {.lex_state = 66}, - [2395] = {.lex_state = 66}, - [2396] = {.lex_state = 66, .external_lex_state = 2}, - [2397] = {.lex_state = 66}, - [2398] = {.lex_state = 66}, - [2399] = {.lex_state = 66, .external_lex_state = 2}, - [2400] = {.lex_state = 66, .external_lex_state = 2}, - [2401] = {.lex_state = 66, .external_lex_state = 2}, - [2402] = {.lex_state = 66}, - [2403] = {.lex_state = 66}, - [2404] = {.lex_state = 66}, - [2405] = {.lex_state = 66}, - [2406] = {.lex_state = 66}, - [2407] = {.lex_state = 66}, - [2408] = {.lex_state = 66}, - [2409] = {.lex_state = 66}, - [2410] = {.lex_state = 66}, - [2411] = {.lex_state = 66, .external_lex_state = 2}, - [2412] = {.lex_state = 66}, - [2413] = {.lex_state = 66}, - [2414] = {.lex_state = 66}, - [2415] = {.lex_state = 66}, - [2416] = {.lex_state = 66}, - [2417] = {.lex_state = 66}, - [2418] = {.lex_state = 66}, - [2419] = {.lex_state = 66}, - [2420] = {.lex_state = 66}, - [2421] = {.lex_state = 66}, - [2422] = {.lex_state = 66}, - [2423] = {.lex_state = 66}, - [2424] = {.lex_state = 66}, - [2425] = {.lex_state = 66}, - [2426] = {.lex_state = 66, .external_lex_state = 12}, - [2427] = {.lex_state = 66}, - [2428] = {.lex_state = 66}, - [2429] = {.lex_state = 66}, - [2430] = {.lex_state = 66}, - [2431] = {.lex_state = 66}, - [2432] = {.lex_state = 66}, - [2433] = {.lex_state = 66}, - [2434] = {.lex_state = 66}, - [2435] = {.lex_state = 66}, - [2436] = {.lex_state = 66}, - [2437] = {.lex_state = 66}, - [2438] = {.lex_state = 66}, - [2439] = {.lex_state = 66}, - [2440] = {.lex_state = 66}, - [2441] = {.lex_state = 66}, - [2442] = {.lex_state = 66}, - [2443] = {.lex_state = 66}, - [2444] = {.lex_state = 66}, - [2445] = {.lex_state = 66}, - [2446] = {.lex_state = 66, .external_lex_state = 12}, - [2447] = {.lex_state = 66}, - [2448] = {.lex_state = 66}, - [2449] = {.lex_state = 66}, - [2450] = {.lex_state = 66}, - [2451] = {.lex_state = 66}, - [2452] = {.lex_state = 66}, - [2453] = {.lex_state = 66}, - [2454] = {.lex_state = 66}, - [2455] = {.lex_state = 66, .external_lex_state = 12}, - [2456] = {.lex_state = 66}, - [2457] = {.lex_state = 66, .external_lex_state = 12}, - [2458] = {.lex_state = 66}, - [2459] = {.lex_state = 66}, - [2460] = {.lex_state = 8}, - [2461] = {.lex_state = 8}, - [2462] = {.lex_state = 66}, - [2463] = {.lex_state = 66}, - [2464] = {.lex_state = 66}, - [2465] = {.lex_state = 66}, - [2466] = {.lex_state = 66}, - [2467] = {.lex_state = 66}, - [2468] = {.lex_state = 66}, - [2469] = {.lex_state = 66}, - [2470] = {.lex_state = 66}, - [2471] = {.lex_state = 66}, - [2472] = {.lex_state = 66}, - [2473] = {.lex_state = 66}, - [2474] = {.lex_state = 66, .external_lex_state = 11}, - [2475] = {.lex_state = 66}, - [2476] = {.lex_state = 66}, - [2477] = {.lex_state = 66}, - [2478] = {.lex_state = 66}, - [2479] = {.lex_state = 66}, - [2480] = {.lex_state = 66}, - [2481] = {.lex_state = 66}, - [2482] = {.lex_state = 66}, - [2483] = {.lex_state = 66}, - [2484] = {.lex_state = 66}, - [2485] = {.lex_state = 66}, - [2486] = {.lex_state = 66}, - [2487] = {.lex_state = 66}, - [2488] = {.lex_state = 66}, - [2489] = {.lex_state = 66}, - [2490] = {.lex_state = 66}, - [2491] = {.lex_state = 66}, - [2492] = {.lex_state = 66}, - [2493] = {.lex_state = 66}, - [2494] = {.lex_state = 66}, - [2495] = {.lex_state = 66}, - [2496] = {.lex_state = 66}, - [2497] = {.lex_state = 66}, - [2498] = {.lex_state = 66}, - [2499] = {.lex_state = 8}, - [2500] = {.lex_state = 66}, - [2501] = {.lex_state = 8}, - [2502] = {.lex_state = 66}, - [2503] = {.lex_state = 66}, - [2504] = {.lex_state = 66}, - [2505] = {.lex_state = 66}, - [2506] = {.lex_state = 66}, - [2507] = {.lex_state = 66}, - [2508] = {.lex_state = 66}, - [2509] = {.lex_state = 66}, - [2510] = {.lex_state = 66}, - [2511] = {.lex_state = 66}, - [2512] = {.lex_state = 66}, - [2513] = {.lex_state = 66}, - [2514] = {.lex_state = 66}, - [2515] = {.lex_state = 66}, - [2516] = {.lex_state = 66}, - [2517] = {.lex_state = 66}, - [2518] = {.lex_state = 66}, - [2519] = {.lex_state = 66}, - [2520] = {.lex_state = 66}, - [2521] = {.lex_state = 66}, - [2522] = {.lex_state = 66}, - [2523] = {.lex_state = 66}, - [2524] = {.lex_state = 66}, - [2525] = {.lex_state = 66}, - [2526] = {.lex_state = 66}, - [2527] = {.lex_state = 66}, - [2528] = {.lex_state = 66}, - [2529] = {.lex_state = 66}, - [2530] = {.lex_state = 66}, - [2531] = {.lex_state = 66}, - [2532] = {.lex_state = 66}, - [2533] = {.lex_state = 66, .external_lex_state = 11}, - [2534] = {.lex_state = 66}, - [2535] = {.lex_state = 66}, - [2536] = {.lex_state = 66}, - [2537] = {.lex_state = 66}, - [2538] = {.lex_state = 66}, - [2539] = {.lex_state = 66}, - [2540] = {.lex_state = 66}, - [2541] = {.lex_state = 66}, - [2542] = {.lex_state = 66}, - [2543] = {.lex_state = 66}, - [2544] = {.lex_state = 66, .external_lex_state = 11}, - [2545] = {.lex_state = 66, .external_lex_state = 11}, - [2546] = {.lex_state = 66}, - [2547] = {.lex_state = 66}, - [2548] = {.lex_state = 66}, - [2549] = {.lex_state = 66}, - [2550] = {.lex_state = 66}, - [2551] = {.lex_state = 66}, - [2552] = {.lex_state = 66}, - [2553] = {.lex_state = 66}, - [2554] = {.lex_state = 66}, - [2555] = {.lex_state = 66}, - [2556] = {.lex_state = 66}, - [2557] = {.lex_state = 66}, - [2558] = {.lex_state = 66}, - [2559] = {.lex_state = 66}, - [2560] = {.lex_state = 66}, - [2561] = {.lex_state = 66}, - [2562] = {.lex_state = 66}, - [2563] = {.lex_state = 66}, - [2564] = {.lex_state = 66}, - [2565] = {.lex_state = 66}, - [2566] = {.lex_state = 66}, - [2567] = {.lex_state = 66}, - [2568] = {.lex_state = 66}, - [2569] = {.lex_state = 66}, - [2570] = {.lex_state = 66}, - [2571] = {.lex_state = 66}, - [2572] = {.lex_state = 66}, - [2573] = {.lex_state = 66}, - [2574] = {.lex_state = 66}, - [2575] = {.lex_state = 66}, - [2576] = {.lex_state = 66}, - [2577] = {.lex_state = 66}, - [2578] = {.lex_state = 66}, - [2579] = {.lex_state = 66}, - [2580] = {.lex_state = 66}, - [2581] = {.lex_state = 66}, - [2582] = {.lex_state = 66}, - [2583] = {.lex_state = 66}, - [2584] = {.lex_state = 66}, - [2585] = {.lex_state = 66}, - [2586] = {.lex_state = 66}, - [2587] = {.lex_state = 66}, - [2588] = {.lex_state = 66}, - [2589] = {.lex_state = 66}, - [2590] = {.lex_state = 66}, - [2591] = {.lex_state = 66}, - [2592] = {.lex_state = 66}, - [2593] = {.lex_state = 66}, - [2594] = {.lex_state = 66}, - [2595] = {.lex_state = 66}, - [2596] = {.lex_state = 66}, - [2597] = {.lex_state = 66}, - [2598] = {.lex_state = 66}, - [2599] = {.lex_state = 66}, - [2600] = {.lex_state = 66}, - [2601] = {.lex_state = 66}, - [2602] = {.lex_state = 66}, - [2603] = {.lex_state = 66}, - [2604] = {.lex_state = 66}, - [2605] = {.lex_state = 66}, - [2606] = {.lex_state = 66}, - [2607] = {.lex_state = 66}, - [2608] = {.lex_state = 66}, - [2609] = {.lex_state = 66}, - [2610] = {.lex_state = 66}, - [2611] = {.lex_state = 66}, - [2612] = {.lex_state = 66, .external_lex_state = 12}, - [2613] = {.lex_state = 66, .external_lex_state = 12}, - [2614] = {.lex_state = 66}, - [2615] = {.lex_state = 66}, - [2616] = {.lex_state = 66}, - [2617] = {.lex_state = 66}, - [2618] = {.lex_state = 66}, - [2619] = {.lex_state = 66}, - [2620] = {.lex_state = 66}, - [2621] = {.lex_state = 66}, - [2622] = {.lex_state = 66}, - [2623] = {.lex_state = 66}, - [2624] = {.lex_state = 66}, - [2625] = {.lex_state = 66}, - [2626] = {.lex_state = 66}, - [2627] = {.lex_state = 66}, - [2628] = {.lex_state = 66}, - [2629] = {.lex_state = 66}, - [2630] = {.lex_state = 66}, - [2631] = {.lex_state = 66}, - [2632] = {.lex_state = 66}, - [2633] = {.lex_state = 66}, - [2634] = {.lex_state = 66}, - [2635] = {.lex_state = 66}, - [2636] = {.lex_state = 66}, - [2637] = {.lex_state = 66}, - [2638] = {.lex_state = 66}, - [2639] = {.lex_state = 66}, - [2640] = {.lex_state = 66}, + [1651] = {.lex_state = 64, .external_lex_state = 2}, + [1652] = {.lex_state = 64, .external_lex_state = 2}, + [1653] = {.lex_state = 64}, + [1654] = {.lex_state = 64, .external_lex_state = 2}, + [1655] = {.lex_state = 64}, + [1656] = {.lex_state = 64}, + [1657] = {.lex_state = 15}, + [1658] = {.lex_state = 64}, + [1659] = {.lex_state = 64}, + [1660] = {.lex_state = 64, .external_lex_state = 2}, + [1661] = {.lex_state = 64}, + [1662] = {.lex_state = 64}, + [1663] = {.lex_state = 64}, + [1664] = {.lex_state = 64}, + [1665] = {.lex_state = 64, .external_lex_state = 2}, + [1666] = {.lex_state = 64}, + [1667] = {.lex_state = 64}, + [1668] = {.lex_state = 64}, + [1669] = {.lex_state = 64, .external_lex_state = 2}, + [1670] = {.lex_state = 64}, + [1671] = {.lex_state = 64, .external_lex_state = 2}, + [1672] = {.lex_state = 64, .external_lex_state = 2}, + [1673] = {.lex_state = 64, .external_lex_state = 2}, + [1674] = {.lex_state = 64}, + [1675] = {.lex_state = 64}, + [1676] = {.lex_state = 64}, + [1677] = {.lex_state = 64, .external_lex_state = 2}, + [1678] = {.lex_state = 15}, + [1679] = {.lex_state = 64, .external_lex_state = 2}, + [1680] = {.lex_state = 64}, + [1681] = {.lex_state = 64, .external_lex_state = 2}, + [1682] = {.lex_state = 64}, + [1683] = {.lex_state = 64}, + [1684] = {.lex_state = 64}, + [1685] = {.lex_state = 64, .external_lex_state = 2}, + [1686] = {.lex_state = 15}, + [1687] = {.lex_state = 64}, + [1688] = {.lex_state = 64, .external_lex_state = 2}, + [1689] = {.lex_state = 64}, + [1690] = {.lex_state = 64}, + [1691] = {.lex_state = 64}, + [1692] = {.lex_state = 64}, + [1693] = {.lex_state = 64}, + [1694] = {.lex_state = 64}, + [1695] = {.lex_state = 64}, + [1696] = {.lex_state = 64}, + [1697] = {.lex_state = 15}, + [1698] = {.lex_state = 15}, + [1699] = {.lex_state = 64, .external_lex_state = 2}, + [1700] = {.lex_state = 15}, + [1701] = {.lex_state = 64}, + [1702] = {.lex_state = 64, .external_lex_state = 2}, + [1703] = {.lex_state = 64}, + [1704] = {.lex_state = 64, .external_lex_state = 2}, + [1705] = {.lex_state = 64}, + [1706] = {.lex_state = 64}, + [1707] = {.lex_state = 64, .external_lex_state = 2}, + [1708] = {.lex_state = 64, .external_lex_state = 2}, + [1709] = {.lex_state = 64, .external_lex_state = 2}, + [1710] = {.lex_state = 64, .external_lex_state = 2}, + [1711] = {.lex_state = 64, .external_lex_state = 2}, + [1712] = {.lex_state = 64, .external_lex_state = 2}, + [1713] = {.lex_state = 64, .external_lex_state = 2}, + [1714] = {.lex_state = 64}, + [1715] = {.lex_state = 64}, + [1716] = {.lex_state = 64, .external_lex_state = 2}, + [1717] = {.lex_state = 64, .external_lex_state = 2}, + [1718] = {.lex_state = 64, .external_lex_state = 2}, + [1719] = {.lex_state = 64, .external_lex_state = 2}, + [1720] = {.lex_state = 64}, + [1721] = {.lex_state = 64}, + [1722] = {.lex_state = 64}, + [1723] = {.lex_state = 19}, + [1724] = {.lex_state = 64}, + [1725] = {.lex_state = 15}, + [1726] = {.lex_state = 64, .external_lex_state = 2}, + [1727] = {.lex_state = 64, .external_lex_state = 2}, + [1728] = {.lex_state = 64, .external_lex_state = 2}, + [1729] = {.lex_state = 64}, + [1730] = {.lex_state = 64}, + [1731] = {.lex_state = 64}, + [1732] = {.lex_state = 64}, + [1733] = {.lex_state = 64}, + [1734] = {.lex_state = 64, .external_lex_state = 2}, + [1735] = {.lex_state = 64}, + [1736] = {.lex_state = 64}, + [1737] = {.lex_state = 64, .external_lex_state = 2}, + [1738] = {.lex_state = 64, .external_lex_state = 2}, + [1739] = {.lex_state = 64, .external_lex_state = 2}, + [1740] = {.lex_state = 64}, + [1741] = {.lex_state = 64}, + [1742] = {.lex_state = 64, .external_lex_state = 2}, + [1743] = {.lex_state = 64, .external_lex_state = 2}, + [1744] = {.lex_state = 64}, + [1745] = {.lex_state = 64}, + [1746] = {.lex_state = 64}, + [1747] = {.lex_state = 64}, + [1748] = {.lex_state = 64}, + [1749] = {.lex_state = 64}, + [1750] = {.lex_state = 64}, + [1751] = {.lex_state = 19}, + [1752] = {.lex_state = 64, .external_lex_state = 2}, + [1753] = {.lex_state = 64, .external_lex_state = 2}, + [1754] = {.lex_state = 64, .external_lex_state = 2}, + [1755] = {.lex_state = 64}, + [1756] = {.lex_state = 64}, + [1757] = {.lex_state = 64, .external_lex_state = 2}, + [1758] = {.lex_state = 64, .external_lex_state = 2}, + [1759] = {.lex_state = 64}, + [1760] = {.lex_state = 64, .external_lex_state = 2}, + [1761] = {.lex_state = 64, .external_lex_state = 2}, + [1762] = {.lex_state = 3, .external_lex_state = 10}, + [1763] = {.lex_state = 64}, + [1764] = {.lex_state = 64}, + [1765] = {.lex_state = 64}, + [1766] = {.lex_state = 64}, + [1767] = {.lex_state = 64, .external_lex_state = 2}, + [1768] = {.lex_state = 64}, + [1769] = {.lex_state = 64, .external_lex_state = 2}, + [1770] = {.lex_state = 64}, + [1771] = {.lex_state = 15}, + [1772] = {.lex_state = 64}, + [1773] = {.lex_state = 64}, + [1774] = {.lex_state = 15}, + [1775] = {.lex_state = 64}, + [1776] = {.lex_state = 64, .external_lex_state = 2}, + [1777] = {.lex_state = 64}, + [1778] = {.lex_state = 64, .external_lex_state = 2}, + [1779] = {.lex_state = 19}, + [1780] = {.lex_state = 64, .external_lex_state = 2}, + [1781] = {.lex_state = 64}, + [1782] = {.lex_state = 64, .external_lex_state = 2}, + [1783] = {.lex_state = 64, .external_lex_state = 2}, + [1784] = {.lex_state = 64}, + [1785] = {.lex_state = 64}, + [1786] = {.lex_state = 64, .external_lex_state = 2}, + [1787] = {.lex_state = 64}, + [1788] = {.lex_state = 64, .external_lex_state = 2}, + [1789] = {.lex_state = 64, .external_lex_state = 2}, + [1790] = {.lex_state = 64}, + [1791] = {.lex_state = 64}, + [1792] = {.lex_state = 64, .external_lex_state = 2}, + [1793] = {.lex_state = 64, .external_lex_state = 2}, + [1794] = {.lex_state = 64, .external_lex_state = 2}, + [1795] = {.lex_state = 64}, + [1796] = {.lex_state = 64}, + [1797] = {.lex_state = 64, .external_lex_state = 2}, + [1798] = {.lex_state = 64}, + [1799] = {.lex_state = 64, .external_lex_state = 2}, + [1800] = {.lex_state = 64}, + [1801] = {.lex_state = 64}, + [1802] = {.lex_state = 64}, + [1803] = {.lex_state = 64}, + [1804] = {.lex_state = 64}, + [1805] = {.lex_state = 64, .external_lex_state = 2}, + [1806] = {.lex_state = 64, .external_lex_state = 2}, + [1807] = {.lex_state = 64}, + [1808] = {.lex_state = 64}, + [1809] = {.lex_state = 64}, + [1810] = {.lex_state = 64, .external_lex_state = 2}, + [1811] = {.lex_state = 64, .external_lex_state = 2}, + [1812] = {.lex_state = 64}, + [1813] = {.lex_state = 64}, + [1814] = {.lex_state = 64, .external_lex_state = 2}, + [1815] = {.lex_state = 64, .external_lex_state = 2}, + [1816] = {.lex_state = 64}, + [1817] = {.lex_state = 64, .external_lex_state = 2}, + [1818] = {.lex_state = 19}, + [1819] = {.lex_state = 64}, + [1820] = {.lex_state = 64}, + [1821] = {.lex_state = 64}, + [1822] = {.lex_state = 64, .external_lex_state = 2}, + [1823] = {.lex_state = 3, .external_lex_state = 10}, + [1824] = {.lex_state = 64}, + [1825] = {.lex_state = 64, .external_lex_state = 2}, + [1826] = {.lex_state = 64}, + [1827] = {.lex_state = 64, .external_lex_state = 2}, + [1828] = {.lex_state = 64}, + [1829] = {.lex_state = 64}, + [1830] = {.lex_state = 64}, + [1831] = {.lex_state = 64, .external_lex_state = 2}, + [1832] = {.lex_state = 64}, + [1833] = {.lex_state = 64, .external_lex_state = 2}, + [1834] = {.lex_state = 64, .external_lex_state = 2}, + [1835] = {.lex_state = 64, .external_lex_state = 2}, + [1836] = {.lex_state = 64, .external_lex_state = 2}, + [1837] = {.lex_state = 64, .external_lex_state = 2}, + [1838] = {.lex_state = 64, .external_lex_state = 2}, + [1839] = {.lex_state = 64, .external_lex_state = 2}, + [1840] = {.lex_state = 64, .external_lex_state = 2}, + [1841] = {.lex_state = 64}, + [1842] = {.lex_state = 64, .external_lex_state = 2}, + [1843] = {.lex_state = 64, .external_lex_state = 2}, + [1844] = {.lex_state = 64}, + [1845] = {.lex_state = 64}, + [1846] = {.lex_state = 64, .external_lex_state = 2}, + [1847] = {.lex_state = 64, .external_lex_state = 2}, + [1848] = {.lex_state = 64, .external_lex_state = 2}, + [1849] = {.lex_state = 64}, + [1850] = {.lex_state = 64}, + [1851] = {.lex_state = 64}, + [1852] = {.lex_state = 19}, + [1853] = {.lex_state = 64}, + [1854] = {.lex_state = 64}, + [1855] = {.lex_state = 64}, + [1856] = {.lex_state = 64}, + [1857] = {.lex_state = 64, .external_lex_state = 2}, + [1858] = {.lex_state = 64}, + [1859] = {.lex_state = 64}, + [1860] = {.lex_state = 64}, + [1861] = {.lex_state = 64}, + [1862] = {.lex_state = 64, .external_lex_state = 2}, + [1863] = {.lex_state = 64}, + [1864] = {.lex_state = 64, .external_lex_state = 2}, + [1865] = {.lex_state = 64, .external_lex_state = 2}, + [1866] = {.lex_state = 64}, + [1867] = {.lex_state = 64, .external_lex_state = 2}, + [1868] = {.lex_state = 64, .external_lex_state = 2}, + [1869] = {.lex_state = 64}, + [1870] = {.lex_state = 3, .external_lex_state = 11}, + [1871] = {.lex_state = 64}, + [1872] = {.lex_state = 64}, + [1873] = {.lex_state = 64}, + [1874] = {.lex_state = 64}, + [1875] = {.lex_state = 64}, + [1876] = {.lex_state = 64}, + [1877] = {.lex_state = 64}, + [1878] = {.lex_state = 64}, + [1879] = {.lex_state = 64}, + [1880] = {.lex_state = 64}, + [1881] = {.lex_state = 64}, + [1882] = {.lex_state = 64}, + [1883] = {.lex_state = 64}, + [1884] = {.lex_state = 64}, + [1885] = {.lex_state = 64}, + [1886] = {.lex_state = 64}, + [1887] = {.lex_state = 64}, + [1888] = {.lex_state = 64}, + [1889] = {.lex_state = 64}, + [1890] = {.lex_state = 64}, + [1891] = {.lex_state = 64}, + [1892] = {.lex_state = 64}, + [1893] = {.lex_state = 64}, + [1894] = {.lex_state = 64, .external_lex_state = 2}, + [1895] = {.lex_state = 64}, + [1896] = {.lex_state = 64}, + [1897] = {.lex_state = 64}, + [1898] = {.lex_state = 64}, + [1899] = {.lex_state = 64}, + [1900] = {.lex_state = 64}, + [1901] = {.lex_state = 64}, + [1902] = {.lex_state = 64}, + [1903] = {.lex_state = 64}, + [1904] = {.lex_state = 64}, + [1905] = {.lex_state = 64}, + [1906] = {.lex_state = 64}, + [1907] = {.lex_state = 64}, + [1908] = {.lex_state = 64}, + [1909] = {.lex_state = 64}, + [1910] = {.lex_state = 64}, + [1911] = {.lex_state = 64, .external_lex_state = 2}, + [1912] = {.lex_state = 64}, + [1913] = {.lex_state = 64}, + [1914] = {.lex_state = 15}, + [1915] = {.lex_state = 64}, + [1916] = {.lex_state = 64}, + [1917] = {.lex_state = 64, .external_lex_state = 2}, + [1918] = {.lex_state = 64}, + [1919] = {.lex_state = 64}, + [1920] = {.lex_state = 3, .external_lex_state = 11}, + [1921] = {.lex_state = 3, .external_lex_state = 11}, + [1922] = {.lex_state = 64}, + [1923] = {.lex_state = 64}, + [1924] = {.lex_state = 64}, + [1925] = {.lex_state = 64}, + [1926] = {.lex_state = 64}, + [1927] = {.lex_state = 64}, + [1928] = {.lex_state = 64}, + [1929] = {.lex_state = 64}, + [1930] = {.lex_state = 64}, + [1931] = {.lex_state = 64}, + [1932] = {.lex_state = 64}, + [1933] = {.lex_state = 64}, + [1934] = {.lex_state = 64}, + [1935] = {.lex_state = 64}, + [1936] = {.lex_state = 64}, + [1937] = {.lex_state = 64}, + [1938] = {.lex_state = 64}, + [1939] = {.lex_state = 64}, + [1940] = {.lex_state = 64}, + [1941] = {.lex_state = 64}, + [1942] = {.lex_state = 64}, + [1943] = {.lex_state = 64}, + [1944] = {.lex_state = 64}, + [1945] = {.lex_state = 64}, + [1946] = {.lex_state = 64}, + [1947] = {.lex_state = 64}, + [1948] = {.lex_state = 64}, + [1949] = {.lex_state = 64}, + [1950] = {.lex_state = 64}, + [1951] = {.lex_state = 64}, + [1952] = {.lex_state = 64}, + [1953] = {.lex_state = 64}, + [1954] = {.lex_state = 3, .external_lex_state = 11}, + [1955] = {.lex_state = 64}, + [1956] = {.lex_state = 64}, + [1957] = {.lex_state = 64}, + [1958] = {.lex_state = 64, .external_lex_state = 2}, + [1959] = {.lex_state = 64}, + [1960] = {.lex_state = 64, .external_lex_state = 2}, + [1961] = {.lex_state = 64}, + [1962] = {.lex_state = 64}, + [1963] = {.lex_state = 64}, + [1964] = {.lex_state = 64}, + [1965] = {.lex_state = 64, .external_lex_state = 2}, + [1966] = {.lex_state = 64}, + [1967] = {.lex_state = 64, .external_lex_state = 2}, + [1968] = {.lex_state = 64}, + [1969] = {.lex_state = 64}, + [1970] = {.lex_state = 64, .external_lex_state = 2}, + [1971] = {.lex_state = 64}, + [1972] = {.lex_state = 64}, + [1973] = {.lex_state = 64}, + [1974] = {.lex_state = 64}, + [1975] = {.lex_state = 64}, + [1976] = {.lex_state = 64}, + [1977] = {.lex_state = 64}, + [1978] = {.lex_state = 64}, + [1979] = {.lex_state = 15}, + [1980] = {.lex_state = 64}, + [1981] = {.lex_state = 64}, + [1982] = {.lex_state = 15}, + [1983] = {.lex_state = 64}, + [1984] = {.lex_state = 64}, + [1985] = {.lex_state = 64}, + [1986] = {.lex_state = 64}, + [1987] = {.lex_state = 64}, + [1988] = {.lex_state = 64}, + [1989] = {.lex_state = 64, .external_lex_state = 2}, + [1990] = {.lex_state = 64}, + [1991] = {.lex_state = 64}, + [1992] = {.lex_state = 64}, + [1993] = {.lex_state = 64}, + [1994] = {.lex_state = 64, .external_lex_state = 2}, + [1995] = {.lex_state = 64}, + [1996] = {.lex_state = 64}, + [1997] = {.lex_state = 64}, + [1998] = {.lex_state = 64}, + [1999] = {.lex_state = 64}, + [2000] = {.lex_state = 64}, + [2001] = {.lex_state = 64}, + [2002] = {.lex_state = 64}, + [2003] = {.lex_state = 64}, + [2004] = {.lex_state = 64}, + [2005] = {.lex_state = 64}, + [2006] = {.lex_state = 64}, + [2007] = {.lex_state = 64}, + [2008] = {.lex_state = 64}, + [2009] = {.lex_state = 64}, + [2010] = {.lex_state = 64}, + [2011] = {.lex_state = 64}, + [2012] = {.lex_state = 64}, + [2013] = {.lex_state = 64, .external_lex_state = 2}, + [2014] = {.lex_state = 64}, + [2015] = {.lex_state = 64}, + [2016] = {.lex_state = 64}, + [2017] = {.lex_state = 64}, + [2018] = {.lex_state = 64}, + [2019] = {.lex_state = 64}, + [2020] = {.lex_state = 64, .external_lex_state = 2}, + [2021] = {.lex_state = 64}, + [2022] = {.lex_state = 64}, + [2023] = {.lex_state = 64}, + [2024] = {.lex_state = 64}, + [2025] = {.lex_state = 64}, + [2026] = {.lex_state = 64}, + [2027] = {.lex_state = 64}, + [2028] = {.lex_state = 64}, + [2029] = {.lex_state = 64}, + [2030] = {.lex_state = 64}, + [2031] = {.lex_state = 64}, + [2032] = {.lex_state = 64}, + [2033] = {.lex_state = 64}, + [2034] = {.lex_state = 64}, + [2035] = {.lex_state = 64}, + [2036] = {.lex_state = 64}, + [2037] = {.lex_state = 64, .external_lex_state = 12}, + [2038] = {.lex_state = 64, .external_lex_state = 2}, + [2039] = {.lex_state = 64}, + [2040] = {.lex_state = 64, .external_lex_state = 2}, + [2041] = {.lex_state = 64}, + [2042] = {.lex_state = 64}, + [2043] = {.lex_state = 64}, + [2044] = {.lex_state = 64}, + [2045] = {.lex_state = 64}, + [2046] = {.lex_state = 171, .external_lex_state = 13}, + [2047] = {.lex_state = 64}, + [2048] = {.lex_state = 64}, + [2049] = {.lex_state = 64}, + [2050] = {.lex_state = 64}, + [2051] = {.lex_state = 64}, + [2052] = {.lex_state = 64, .external_lex_state = 12}, + [2053] = {.lex_state = 64}, + [2054] = {.lex_state = 64}, + [2055] = {.lex_state = 64}, + [2056] = {.lex_state = 64}, + [2057] = {.lex_state = 64}, + [2058] = {.lex_state = 64}, + [2059] = {.lex_state = 64}, + [2060] = {.lex_state = 64}, + [2061] = {.lex_state = 64}, + [2062] = {.lex_state = 64}, + [2063] = {.lex_state = 64}, + [2064] = {.lex_state = 64, .external_lex_state = 2}, + [2065] = {.lex_state = 64}, + [2066] = {.lex_state = 64}, + [2067] = {.lex_state = 64}, + [2068] = {.lex_state = 64}, + [2069] = {.lex_state = 64}, + [2070] = {.lex_state = 64}, + [2071] = {.lex_state = 64}, + [2072] = {.lex_state = 64}, + [2073] = {.lex_state = 64}, + [2074] = {.lex_state = 64}, + [2075] = {.lex_state = 64}, + [2076] = {.lex_state = 64}, + [2077] = {.lex_state = 64}, + [2078] = {.lex_state = 64}, + [2079] = {.lex_state = 64}, + [2080] = {.lex_state = 3, .external_lex_state = 11}, + [2081] = {.lex_state = 64}, + [2082] = {.lex_state = 64}, + [2083] = {.lex_state = 64}, + [2084] = {.lex_state = 3, .external_lex_state = 11}, + [2085] = {.lex_state = 64}, + [2086] = {.lex_state = 64}, + [2087] = {.lex_state = 64}, + [2088] = {.lex_state = 64, .external_lex_state = 2}, + [2089] = {.lex_state = 64}, + [2090] = {.lex_state = 64}, + [2091] = {.lex_state = 64}, + [2092] = {.lex_state = 64, .external_lex_state = 2}, + [2093] = {.lex_state = 64}, + [2094] = {.lex_state = 64, .external_lex_state = 2}, + [2095] = {.lex_state = 64}, + [2096] = {.lex_state = 64}, + [2097] = {.lex_state = 64}, + [2098] = {.lex_state = 64}, + [2099] = {.lex_state = 64}, + [2100] = {.lex_state = 64}, + [2101] = {.lex_state = 64}, + [2102] = {.lex_state = 64}, + [2103] = {.lex_state = 64}, + [2104] = {.lex_state = 64}, + [2105] = {.lex_state = 64}, + [2106] = {.lex_state = 15}, + [2107] = {.lex_state = 64}, + [2108] = {.lex_state = 64}, + [2109] = {.lex_state = 64}, + [2110] = {.lex_state = 64}, + [2111] = {.lex_state = 64}, + [2112] = {.lex_state = 64}, + [2113] = {.lex_state = 64}, + [2114] = {.lex_state = 64}, + [2115] = {.lex_state = 64}, + [2116] = {.lex_state = 64}, + [2117] = {.lex_state = 64}, + [2118] = {.lex_state = 64}, + [2119] = {.lex_state = 64}, + [2120] = {.lex_state = 64}, + [2121] = {.lex_state = 64}, + [2122] = {.lex_state = 64}, + [2123] = {.lex_state = 64}, + [2124] = {.lex_state = 64}, + [2125] = {.lex_state = 64}, + [2126] = {.lex_state = 64}, + [2127] = {.lex_state = 64}, + [2128] = {.lex_state = 64}, + [2129] = {.lex_state = 64}, + [2130] = {.lex_state = 64}, + [2131] = {.lex_state = 64}, + [2132] = {.lex_state = 64}, + [2133] = {.lex_state = 64}, + [2134] = {.lex_state = 64}, + [2135] = {.lex_state = 64, .external_lex_state = 2}, + [2136] = {.lex_state = 64}, + [2137] = {.lex_state = 64, .external_lex_state = 2}, + [2138] = {.lex_state = 64}, + [2139] = {.lex_state = 64, .external_lex_state = 2}, + [2140] = {.lex_state = 64, .external_lex_state = 2}, + [2141] = {.lex_state = 64}, + [2142] = {.lex_state = 64}, + [2143] = {.lex_state = 64}, + [2144] = {.lex_state = 64}, + [2145] = {.lex_state = 64}, + [2146] = {.lex_state = 64}, + [2147] = {.lex_state = 64, .external_lex_state = 2}, + [2148] = {.lex_state = 64}, + [2149] = {.lex_state = 64}, + [2150] = {.lex_state = 64}, + [2151] = {.lex_state = 64}, + [2152] = {.lex_state = 64, .external_lex_state = 2}, + [2153] = {.lex_state = 64}, + [2154] = {.lex_state = 64}, + [2155] = {.lex_state = 64}, + [2156] = {.lex_state = 64}, + [2157] = {.lex_state = 64}, + [2158] = {.lex_state = 64}, + [2159] = {.lex_state = 64}, + [2160] = {.lex_state = 64}, + [2161] = {.lex_state = 64, .external_lex_state = 2}, + [2162] = {.lex_state = 64}, + [2163] = {.lex_state = 64}, + [2164] = {.lex_state = 64}, + [2165] = {.lex_state = 64}, + [2166] = {.lex_state = 64}, + [2167] = {.lex_state = 64}, + [2168] = {.lex_state = 64}, + [2169] = {.lex_state = 64}, + [2170] = {.lex_state = 64}, + [2171] = {.lex_state = 64}, + [2172] = {.lex_state = 64, .external_lex_state = 2}, + [2173] = {.lex_state = 64}, + [2174] = {.lex_state = 64, .external_lex_state = 2}, + [2175] = {.lex_state = 64, .external_lex_state = 2}, + [2176] = {.lex_state = 64, .external_lex_state = 2}, + [2177] = {.lex_state = 64}, + [2178] = {.lex_state = 64, .external_lex_state = 2}, + [2179] = {.lex_state = 64}, + [2180] = {.lex_state = 64}, + [2181] = {.lex_state = 64}, + [2182] = {.lex_state = 64}, + [2183] = {.lex_state = 64}, + [2184] = {.lex_state = 64}, + [2185] = {.lex_state = 64}, + [2186] = {.lex_state = 64}, + [2187] = {.lex_state = 64}, + [2188] = {.lex_state = 64}, + [2189] = {.lex_state = 64, .external_lex_state = 2}, + [2190] = {.lex_state = 64, .external_lex_state = 2}, + [2191] = {.lex_state = 64}, + [2192] = {.lex_state = 64, .external_lex_state = 2}, + [2193] = {.lex_state = 64}, + [2194] = {.lex_state = 64}, + [2195] = {.lex_state = 64, .external_lex_state = 2}, + [2196] = {.lex_state = 64}, + [2197] = {.lex_state = 64}, + [2198] = {.lex_state = 64}, + [2199] = {.lex_state = 64}, + [2200] = {.lex_state = 64}, + [2201] = {.lex_state = 64, .external_lex_state = 2}, + [2202] = {.lex_state = 64}, + [2203] = {.lex_state = 64, .external_lex_state = 2}, + [2204] = {.lex_state = 64}, + [2205] = {.lex_state = 64}, + [2206] = {.lex_state = 64}, + [2207] = {.lex_state = 64}, + [2208] = {.lex_state = 64}, + [2209] = {.lex_state = 64}, + [2210] = {.lex_state = 64}, + [2211] = {.lex_state = 64}, + [2212] = {.lex_state = 64, .external_lex_state = 2}, + [2213] = {.lex_state = 64}, + [2214] = {.lex_state = 3, .external_lex_state = 11}, + [2215] = {.lex_state = 3, .external_lex_state = 11}, + [2216] = {.lex_state = 64}, + [2217] = {.lex_state = 64}, + [2218] = {.lex_state = 64}, + [2219] = {.lex_state = 64, .external_lex_state = 2}, + [2220] = {.lex_state = 64}, + [2221] = {.lex_state = 64}, + [2222] = {.lex_state = 64}, + [2223] = {.lex_state = 64}, + [2224] = {.lex_state = 64}, + [2225] = {.lex_state = 64}, + [2226] = {.lex_state = 64}, + [2227] = {.lex_state = 64}, + [2228] = {.lex_state = 64}, + [2229] = {.lex_state = 64}, + [2230] = {.lex_state = 64}, + [2231] = {.lex_state = 64, .external_lex_state = 2}, + [2232] = {.lex_state = 64}, + [2233] = {.lex_state = 64}, + [2234] = {.lex_state = 64}, + [2235] = {.lex_state = 64}, + [2236] = {.lex_state = 64}, + [2237] = {.lex_state = 64}, + [2238] = {.lex_state = 64}, + [2239] = {.lex_state = 64, .external_lex_state = 2}, + [2240] = {.lex_state = 64}, + [2241] = {.lex_state = 64}, + [2242] = {.lex_state = 64}, + [2243] = {.lex_state = 64, .external_lex_state = 2}, + [2244] = {.lex_state = 64, .external_lex_state = 2}, + [2245] = {.lex_state = 64}, + [2246] = {.lex_state = 64}, + [2247] = {.lex_state = 64}, + [2248] = {.lex_state = 64}, + [2249] = {.lex_state = 64}, + [2250] = {.lex_state = 64, .external_lex_state = 2}, + [2251] = {.lex_state = 64}, + [2252] = {.lex_state = 64}, + [2253] = {.lex_state = 64}, + [2254] = {.lex_state = 64}, + [2255] = {.lex_state = 64}, + [2256] = {.lex_state = 64}, + [2257] = {.lex_state = 64}, + [2258] = {.lex_state = 64, .external_lex_state = 2}, + [2259] = {.lex_state = 64}, + [2260] = {.lex_state = 64, .external_lex_state = 2}, + [2261] = {.lex_state = 64, .external_lex_state = 2}, + [2262] = {.lex_state = 64}, + [2263] = {.lex_state = 64, .external_lex_state = 2}, + [2264] = {.lex_state = 64}, + [2265] = {.lex_state = 64}, + [2266] = {.lex_state = 64, .external_lex_state = 2}, + [2267] = {.lex_state = 64, .external_lex_state = 2}, + [2268] = {.lex_state = 64, .external_lex_state = 2}, + [2269] = {.lex_state = 64}, + [2270] = {.lex_state = 64}, + [2271] = {.lex_state = 64, .external_lex_state = 2}, + [2272] = {.lex_state = 64, .external_lex_state = 2}, + [2273] = {.lex_state = 64}, + [2274] = {.lex_state = 64}, + [2275] = {.lex_state = 64, .external_lex_state = 2}, + [2276] = {.lex_state = 64, .external_lex_state = 2}, + [2277] = {.lex_state = 64}, + [2278] = {.lex_state = 64}, + [2279] = {.lex_state = 64, .external_lex_state = 2}, + [2280] = {.lex_state = 64}, + [2281] = {.lex_state = 64}, + [2282] = {.lex_state = 64, .external_lex_state = 2}, + [2283] = {.lex_state = 64}, + [2284] = {.lex_state = 64, .external_lex_state = 2}, + [2285] = {.lex_state = 64}, + [2286] = {.lex_state = 64}, + [2287] = {.lex_state = 64}, + [2288] = {.lex_state = 64}, + [2289] = {.lex_state = 3, .external_lex_state = 11}, + [2290] = {.lex_state = 64, .external_lex_state = 2}, + [2291] = {.lex_state = 64}, + [2292] = {.lex_state = 64}, + [2293] = {.lex_state = 64}, + [2294] = {.lex_state = 64}, + [2295] = {.lex_state = 64}, + [2296] = {.lex_state = 64}, + [2297] = {.lex_state = 64}, + [2298] = {.lex_state = 64}, + [2299] = {.lex_state = 64}, + [2300] = {.lex_state = 64}, + [2301] = {.lex_state = 64}, + [2302] = {.lex_state = 64}, + [2303] = {.lex_state = 64}, + [2304] = {.lex_state = 64}, + [2305] = {.lex_state = 64}, + [2306] = {.lex_state = 64}, + [2307] = {.lex_state = 64}, + [2308] = {.lex_state = 64, .external_lex_state = 2}, + [2309] = {.lex_state = 64}, + [2310] = {.lex_state = 64}, + [2311] = {.lex_state = 64}, + [2312] = {.lex_state = 64}, + [2313] = {.lex_state = 64, .external_lex_state = 2}, + [2314] = {.lex_state = 64, .external_lex_state = 2}, + [2315] = {.lex_state = 64}, + [2316] = {.lex_state = 64, .external_lex_state = 2}, + [2317] = {.lex_state = 64}, + [2318] = {.lex_state = 64}, + [2319] = {.lex_state = 64}, + [2320] = {.lex_state = 64, .external_lex_state = 2}, + [2321] = {.lex_state = 64}, + [2322] = {.lex_state = 64}, + [2323] = {.lex_state = 64}, + [2324] = {.lex_state = 64}, + [2325] = {.lex_state = 64}, + [2326] = {.lex_state = 64}, + [2327] = {.lex_state = 64}, + [2328] = {.lex_state = 64}, + [2329] = {.lex_state = 64}, + [2330] = {.lex_state = 64}, + [2331] = {.lex_state = 64}, + [2332] = {.lex_state = 64}, + [2333] = {.lex_state = 3, .external_lex_state = 11}, + [2334] = {.lex_state = 3, .external_lex_state = 11}, + [2335] = {.lex_state = 64}, + [2336] = {.lex_state = 64}, + [2337] = {.lex_state = 64}, + [2338] = {.lex_state = 64, .external_lex_state = 2}, + [2339] = {.lex_state = 64}, + [2340] = {.lex_state = 64, .external_lex_state = 2}, + [2341] = {.lex_state = 64}, + [2342] = {.lex_state = 64, .external_lex_state = 2}, + [2343] = {.lex_state = 64, .external_lex_state = 2}, + [2344] = {.lex_state = 64}, + [2345] = {.lex_state = 64}, + [2346] = {.lex_state = 64}, + [2347] = {.lex_state = 64}, + [2348] = {.lex_state = 64}, + [2349] = {.lex_state = 64}, + [2350] = {.lex_state = 64}, + [2351] = {.lex_state = 64}, + [2352] = {.lex_state = 64}, + [2353] = {.lex_state = 64}, + [2354] = {.lex_state = 64}, + [2355] = {.lex_state = 64}, + [2356] = {.lex_state = 64}, + [2357] = {.lex_state = 64}, + [2358] = {.lex_state = 64, .external_lex_state = 2}, + [2359] = {.lex_state = 64}, + [2360] = {.lex_state = 64}, + [2361] = {.lex_state = 64}, + [2362] = {.lex_state = 3, .external_lex_state = 11}, + [2363] = {.lex_state = 64}, + [2364] = {.lex_state = 64}, + [2365] = {.lex_state = 64, .external_lex_state = 2}, + [2366] = {.lex_state = 64}, + [2367] = {.lex_state = 64}, + [2368] = {.lex_state = 64, .external_lex_state = 2}, + [2369] = {.lex_state = 64}, + [2370] = {.lex_state = 64}, + [2371] = {.lex_state = 64}, + [2372] = {.lex_state = 64, .external_lex_state = 2}, + [2373] = {.lex_state = 64}, + [2374] = {.lex_state = 64}, + [2375] = {.lex_state = 64, .external_lex_state = 2}, + [2376] = {.lex_state = 64, .external_lex_state = 2}, + [2377] = {.lex_state = 64}, + [2378] = {.lex_state = 64}, + [2379] = {.lex_state = 64, .external_lex_state = 2}, + [2380] = {.lex_state = 64, .external_lex_state = 2}, + [2381] = {.lex_state = 64}, + [2382] = {.lex_state = 64}, + [2383] = {.lex_state = 64}, + [2384] = {.lex_state = 64}, + [2385] = {.lex_state = 64}, + [2386] = {.lex_state = 3, .external_lex_state = 11}, + [2387] = {.lex_state = 64, .external_lex_state = 2}, + [2388] = {.lex_state = 64}, + [2389] = {.lex_state = 64}, + [2390] = {.lex_state = 64, .external_lex_state = 2}, + [2391] = {.lex_state = 64, .external_lex_state = 2}, + [2392] = {.lex_state = 64}, + [2393] = {.lex_state = 64}, + [2394] = {.lex_state = 64, .external_lex_state = 2}, + [2395] = {.lex_state = 64}, + [2396] = {.lex_state = 64}, + [2397] = {.lex_state = 64}, + [2398] = {.lex_state = 64}, + [2399] = {.lex_state = 64}, + [2400] = {.lex_state = 64}, + [2401] = {.lex_state = 64}, + [2402] = {.lex_state = 64}, + [2403] = {.lex_state = 64}, + [2404] = {.lex_state = 64}, + [2405] = {.lex_state = 64}, + [2406] = {.lex_state = 64}, + [2407] = {.lex_state = 64}, + [2408] = {.lex_state = 64}, + [2409] = {.lex_state = 64}, + [2410] = {.lex_state = 64}, + [2411] = {.lex_state = 64}, + [2412] = {.lex_state = 64}, + [2413] = {.lex_state = 64}, + [2414] = {.lex_state = 64}, + [2415] = {.lex_state = 64}, + [2416] = {.lex_state = 64}, + [2417] = {.lex_state = 64}, + [2418] = {.lex_state = 64}, + [2419] = {.lex_state = 64}, + [2420] = {.lex_state = 64}, + [2421] = {.lex_state = 64}, + [2422] = {.lex_state = 64}, + [2423] = {.lex_state = 64}, + [2424] = {.lex_state = 64}, + [2425] = {.lex_state = 64}, + [2426] = {.lex_state = 8}, + [2427] = {.lex_state = 8}, + [2428] = {.lex_state = 64}, + [2429] = {.lex_state = 64}, + [2430] = {.lex_state = 64}, + [2431] = {.lex_state = 64, .external_lex_state = 11}, + [2432] = {.lex_state = 64}, + [2433] = {.lex_state = 64}, + [2434] = {.lex_state = 64}, + [2435] = {.lex_state = 64}, + [2436] = {.lex_state = 64}, + [2437] = {.lex_state = 64}, + [2438] = {.lex_state = 64}, + [2439] = {.lex_state = 64}, + [2440] = {.lex_state = 64}, + [2441] = {.lex_state = 64}, + [2442] = {.lex_state = 64}, + [2443] = {.lex_state = 64, .external_lex_state = 11}, + [2444] = {.lex_state = 64}, + [2445] = {.lex_state = 64}, + [2446] = {.lex_state = 64, .external_lex_state = 11}, + [2447] = {.lex_state = 64}, + [2448] = {.lex_state = 64}, + [2449] = {.lex_state = 64}, + [2450] = {.lex_state = 64}, + [2451] = {.lex_state = 64}, + [2452] = {.lex_state = 64}, + [2453] = {.lex_state = 64}, + [2454] = {.lex_state = 64}, + [2455] = {.lex_state = 64, .external_lex_state = 11}, + [2456] = {.lex_state = 64}, + [2457] = {.lex_state = 64}, + [2458] = {.lex_state = 64}, + [2459] = {.lex_state = 64}, + [2460] = {.lex_state = 64}, + [2461] = {.lex_state = 64}, + [2462] = {.lex_state = 64}, + [2463] = {.lex_state = 64}, + [2464] = {.lex_state = 64}, + [2465] = {.lex_state = 64, .external_lex_state = 12}, + [2466] = {.lex_state = 64, .external_lex_state = 12}, + [2467] = {.lex_state = 64, .external_lex_state = 11}, + [2468] = {.lex_state = 64}, + [2469] = {.lex_state = 64}, + [2470] = {.lex_state = 64}, + [2471] = {.lex_state = 64}, + [2472] = {.lex_state = 64}, + [2473] = {.lex_state = 64}, + [2474] = {.lex_state = 64}, + [2475] = {.lex_state = 64}, + [2476] = {.lex_state = 64}, + [2477] = {.lex_state = 64}, + [2478] = {.lex_state = 64}, + [2479] = {.lex_state = 8}, + [2480] = {.lex_state = 8}, + [2481] = {.lex_state = 64}, + [2482] = {.lex_state = 64}, + [2483] = {.lex_state = 64}, + [2484] = {.lex_state = 64}, + [2485] = {.lex_state = 64}, + [2486] = {.lex_state = 64}, + [2487] = {.lex_state = 64}, + [2488] = {.lex_state = 64}, + [2489] = {.lex_state = 64}, + [2490] = {.lex_state = 64}, + [2491] = {.lex_state = 64}, + [2492] = {.lex_state = 64}, + [2493] = {.lex_state = 64}, + [2494] = {.lex_state = 64}, + [2495] = {.lex_state = 64}, + [2496] = {.lex_state = 64}, + [2497] = {.lex_state = 64}, + [2498] = {.lex_state = 64}, + [2499] = {.lex_state = 64}, + [2500] = {.lex_state = 64}, + [2501] = {.lex_state = 64}, + [2502] = {.lex_state = 64}, + [2503] = {.lex_state = 64}, + [2504] = {.lex_state = 64}, + [2505] = {.lex_state = 64}, + [2506] = {.lex_state = 64}, + [2507] = {.lex_state = 64}, + [2508] = {.lex_state = 64}, + [2509] = {.lex_state = 64}, + [2510] = {.lex_state = 64, .external_lex_state = 12}, + [2511] = {.lex_state = 64, .external_lex_state = 12}, + [2512] = {.lex_state = 64}, + [2513] = {.lex_state = 64}, + [2514] = {.lex_state = 64}, + [2515] = {.lex_state = 64}, + [2516] = {.lex_state = 64}, + [2517] = {.lex_state = 64}, + [2518] = {.lex_state = 64}, + [2519] = {.lex_state = 64}, + [2520] = {.lex_state = 64}, + [2521] = {.lex_state = 64}, + [2522] = {.lex_state = 64}, + [2523] = {.lex_state = 64}, + [2524] = {.lex_state = 64}, + [2525] = {.lex_state = 64}, + [2526] = {.lex_state = 64}, + [2527] = {.lex_state = 64}, + [2528] = {.lex_state = 64}, + [2529] = {.lex_state = 64}, + [2530] = {.lex_state = 64}, + [2531] = {.lex_state = 64}, + [2532] = {.lex_state = 64}, + [2533] = {.lex_state = 64}, + [2534] = {.lex_state = 64}, + [2535] = {.lex_state = 64}, + [2536] = {.lex_state = 64}, + [2537] = {.lex_state = 64}, + [2538] = {.lex_state = 64}, + [2539] = {.lex_state = 64}, + [2540] = {.lex_state = 64}, + [2541] = {.lex_state = 64}, + [2542] = {.lex_state = 64}, + [2543] = {.lex_state = 64}, + [2544] = {.lex_state = 64}, + [2545] = {.lex_state = 64}, + [2546] = {.lex_state = 64}, + [2547] = {.lex_state = 64}, + [2548] = {.lex_state = 64}, + [2549] = {.lex_state = 64}, + [2550] = {.lex_state = 64}, + [2551] = {.lex_state = 64}, + [2552] = {.lex_state = 64}, + [2553] = {.lex_state = 64}, + [2554] = {.lex_state = 64}, + [2555] = {.lex_state = 64}, + [2556] = {.lex_state = 64}, + [2557] = {.lex_state = 64}, + [2558] = {.lex_state = 64}, + [2559] = {.lex_state = 64}, + [2560] = {.lex_state = 64, .external_lex_state = 11}, + [2561] = {.lex_state = 64}, + [2562] = {.lex_state = 64}, + [2563] = {.lex_state = 64}, + [2564] = {.lex_state = 64}, + [2565] = {.lex_state = 64}, + [2566] = {.lex_state = 64}, + [2567] = {.lex_state = 64}, + [2568] = {.lex_state = 64}, + [2569] = {.lex_state = 64}, + [2570] = {.lex_state = 64}, + [2571] = {.lex_state = 64}, + [2572] = {.lex_state = 64}, + [2573] = {.lex_state = 64}, + [2574] = {.lex_state = 64}, + [2575] = {.lex_state = 64}, + [2576] = {.lex_state = 64}, + [2577] = {.lex_state = 64}, + [2578] = {.lex_state = 64}, + [2579] = {.lex_state = 64}, + [2580] = {.lex_state = 64}, + [2581] = {.lex_state = 64}, + [2582] = {.lex_state = 64}, + [2583] = {.lex_state = 64}, + [2584] = {.lex_state = 64}, + [2585] = {.lex_state = 64}, + [2586] = {.lex_state = 64}, + [2587] = {.lex_state = 64}, + [2588] = {.lex_state = 64}, + [2589] = {.lex_state = 64}, + [2590] = {.lex_state = 64}, + [2591] = {.lex_state = 64}, + [2592] = {.lex_state = 64}, + [2593] = {.lex_state = 64}, + [2594] = {.lex_state = 64}, + [2595] = {.lex_state = 64}, + [2596] = {.lex_state = 64}, + [2597] = {.lex_state = 64}, + [2598] = {.lex_state = 64}, + [2599] = {.lex_state = 64}, + [2600] = {.lex_state = 64}, + [2601] = {.lex_state = 64}, + [2602] = {.lex_state = 64}, + [2603] = {.lex_state = 64}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -12950,104 +12797,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_sentinel_error] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(2601), - [sym_empty_statement] = STATE(15), - [sym_function_static_declaration] = STATE(15), - [sym_global_declaration] = STATE(15), - [sym_namespace_definition] = STATE(15), - [sym_namespace_use_declaration] = STATE(15), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(15), - [sym_interface_declaration] = STATE(15), - [sym_enum_declaration] = STATE(15), - [sym_class_declaration] = STATE(15), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(15), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(15), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(15), - [sym_exit_statement] = STATE(15), - [sym_unset_statement] = STATE(15), - [sym_declare_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_goto_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_foreach_statement] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(15), - [sym_compound_statement] = STATE(15), - [sym_named_label_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_program] = STATE(2559), + [sym_statement] = STATE(16), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [ts_builtin_sym_end] = ACTIONS(5), [sym_name] = ACTIONS(7), [anon_sym_QMARK_GT] = ACTIONS(9), @@ -13068,342 +12919,352 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2), - [sym_interface_declaration] = STATE(2), - [sym_enum_declaration] = STATE(2), - [sym_class_declaration] = STATE(2), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(2), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(2), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(2), - [sym_compound_statement] = STATE(2), - [sym_named_label_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), + [sym_statement] = STATE(2), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(972), - [ts_builtin_sym_end] = ACTIONS(135), - [sym_name] = ACTIONS(137), - [anon_sym_QMARK_GT] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(140), - [aux_sym_function_static_declaration_token1] = ACTIONS(143), - [aux_sym_global_declaration_token1] = ACTIONS(146), - [aux_sym_namespace_definition_token1] = ACTIONS(149), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(152), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(155), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(164), - [anon_sym_RBRACE] = ACTIONS(135), - [aux_sym_trait_declaration_token1] = ACTIONS(167), - [aux_sym_interface_declaration_token1] = ACTIONS(170), - [aux_sym_enum_declaration_token1] = ACTIONS(173), - [aux_sym_enum_case_token1] = ACTIONS(176), - [aux_sym_class_declaration_token1] = ACTIONS(178), - [aux_sym_final_modifier_token1] = ACTIONS(181), - [aux_sym_abstract_modifier_token1] = ACTIONS(184), - [aux_sym_readonly_modifier_token1] = ACTIONS(187), - [aux_sym_visibility_modifier_token1] = ACTIONS(190), - [aux_sym_visibility_modifier_token2] = ACTIONS(190), - [aux_sym_visibility_modifier_token3] = ACTIONS(190), - [aux_sym__arrow_function_header_token1] = ACTIONS(193), - [anon_sym_LPAREN] = ACTIONS(196), - [aux_sym_cast_type_token1] = ACTIONS(199), - [aux_sym_echo_statement_token1] = ACTIONS(202), - [aux_sym_exit_statement_token1] = ACTIONS(205), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_declare_statement_token1] = ACTIONS(211), - [aux_sym_declare_statement_token2] = ACTIONS(176), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(217), - [aux_sym_goto_statement_token1] = ACTIONS(220), - [aux_sym_continue_statement_token1] = ACTIONS(223), - [aux_sym_break_statement_token1] = ACTIONS(226), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(229), - [aux_sym_throw_expression_token1] = ACTIONS(232), - [aux_sym_while_statement_token1] = ACTIONS(235), - [aux_sym_while_statement_token2] = ACTIONS(176), - [aux_sym_do_statement_token1] = ACTIONS(238), - [aux_sym_for_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token2] = ACTIONS(176), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_foreach_statement_token2] = ACTIONS(176), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_if_statement_token2] = ACTIONS(176), - [aux_sym_match_expression_token1] = ACTIONS(250), - [aux_sym_match_default_expression_token1] = ACTIONS(176), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [aux_sym_switch_block_token1] = ACTIONS(176), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_AT] = ACTIONS(262), - [aux_sym_clone_expression_token1] = ACTIONS(265), - [aux_sym_print_intrinsic_token1] = ACTIONS(268), - [aux_sym_object_creation_expression_token1] = ACTIONS(271), - [anon_sym_DASH_DASH] = ACTIONS(274), - [anon_sym_PLUS_PLUS] = ACTIONS(274), - [aux_sym__list_destructing_token1] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_self] = ACTIONS(283), - [anon_sym_parent] = ACTIONS(283), - [aux_sym__argument_name_token1] = ACTIONS(286), - [aux_sym__argument_name_token2] = ACTIONS(289), - [anon_sym_POUND_LBRACK] = ACTIONS(292), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(301), - [anon_sym_BQUOTE] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(307), - [aux_sym_yield_expression_token1] = ACTIONS(310), - [aux_sym_include_expression_token1] = ACTIONS(313), - [aux_sym_include_once_expression_token1] = ACTIONS(316), - [aux_sym_require_expression_token1] = ACTIONS(319), - [aux_sym_require_once_expression_token1] = ACTIONS(322), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), + [ts_builtin_sym_end] = ACTIONS(137), + [sym_name] = ACTIONS(139), + [anon_sym_QMARK_GT] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(142), + [aux_sym_function_static_declaration_token1] = ACTIONS(145), + [aux_sym_global_declaration_token1] = ACTIONS(148), + [aux_sym_namespace_definition_token1] = ACTIONS(151), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(154), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(157), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(137), + [aux_sym_trait_declaration_token1] = ACTIONS(169), + [aux_sym_interface_declaration_token1] = ACTIONS(172), + [aux_sym_enum_declaration_token1] = ACTIONS(175), + [aux_sym_enum_case_token1] = ACTIONS(178), + [aux_sym_class_declaration_token1] = ACTIONS(180), + [aux_sym_final_modifier_token1] = ACTIONS(183), + [aux_sym_abstract_modifier_token1] = ACTIONS(186), + [aux_sym_readonly_modifier_token1] = ACTIONS(189), + [sym_var_modifier] = ACTIONS(192), + [aux_sym_visibility_modifier_token1] = ACTIONS(195), + [aux_sym_visibility_modifier_token2] = ACTIONS(195), + [aux_sym_visibility_modifier_token3] = ACTIONS(195), + [aux_sym__arrow_function_header_token1] = ACTIONS(198), + [anon_sym_LPAREN] = ACTIONS(201), + [aux_sym_cast_type_token1] = ACTIONS(204), + [aux_sym_echo_statement_token1] = ACTIONS(207), + [aux_sym_exit_statement_token1] = ACTIONS(210), + [anon_sym_unset] = ACTIONS(213), + [aux_sym_declare_statement_token1] = ACTIONS(216), + [aux_sym_declare_statement_token2] = ACTIONS(178), + [sym_float] = ACTIONS(219), + [aux_sym_try_statement_token1] = ACTIONS(222), + [aux_sym_goto_statement_token1] = ACTIONS(225), + [aux_sym_continue_statement_token1] = ACTIONS(228), + [aux_sym_break_statement_token1] = ACTIONS(231), + [sym_integer] = ACTIONS(219), + [aux_sym_return_statement_token1] = ACTIONS(234), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(240), + [aux_sym_while_statement_token2] = ACTIONS(178), + [aux_sym_do_statement_token1] = ACTIONS(243), + [aux_sym_for_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token2] = ACTIONS(178), + [aux_sym_foreach_statement_token1] = ACTIONS(249), + [aux_sym_foreach_statement_token2] = ACTIONS(178), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_if_statement_token2] = ACTIONS(178), + [aux_sym_match_expression_token1] = ACTIONS(255), + [aux_sym_match_default_expression_token1] = ACTIONS(178), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [aux_sym_switch_block_token1] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(261), + [anon_sym_DASH] = ACTIONS(261), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_AT] = ACTIONS(267), + [aux_sym_clone_expression_token1] = ACTIONS(270), + [aux_sym_print_intrinsic_token1] = ACTIONS(273), + [aux_sym_object_creation_expression_token1] = ACTIONS(276), + [anon_sym_DASH_DASH] = ACTIONS(279), + [anon_sym_PLUS_PLUS] = ACTIONS(279), + [aux_sym__list_destructing_token1] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_self] = ACTIONS(288), + [anon_sym_parent] = ACTIONS(288), + [aux_sym__argument_name_token1] = ACTIONS(291), + [aux_sym__argument_name_token2] = ACTIONS(294), + [anon_sym_POUND_LBRACK] = ACTIONS(297), + [aux_sym_encapsed_string_token1] = ACTIONS(300), + [anon_sym_DQUOTE] = ACTIONS(300), + [aux_sym_string_token1] = ACTIONS(303), + [anon_sym_SQUOTE] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(306), + [anon_sym_BQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR] = ACTIONS(312), + [aux_sym_yield_expression_token1] = ACTIONS(315), + [aux_sym_include_expression_token1] = ACTIONS(318), + [aux_sym_include_once_expression_token1] = ACTIONS(321), + [aux_sym_require_expression_token1] = ACTIONS(324), + [aux_sym_require_once_expression_token1] = ACTIONS(327), [sym_comment] = ACTIONS(3), }, [3] = { - [sym_empty_statement] = STATE(2), - [sym_function_static_declaration] = STATE(2), - [sym_global_declaration] = STATE(2), - [sym_namespace_definition] = STATE(2), - [sym_namespace_use_declaration] = STATE(2), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2), - [sym_interface_declaration] = STATE(2), - [sym_enum_declaration] = STATE(2), - [sym_class_declaration] = STATE(2), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(2), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(2), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(2), - [sym_compound_statement] = STATE(2), - [sym_named_label_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(5), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(5), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -13414,171 +13275,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(325), + [anon_sym_RBRACE] = ACTIONS(330), [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(327), + [aux_sym_enum_case_token1] = ACTIONS(332), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_match_default_expression_token1] = ACTIONS(327), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [aux_sym_switch_block_token1] = ACTIONS(327), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_match_default_expression_token1] = ACTIONS(332), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [aux_sym_switch_block_token1] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [4] = { - [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(5), - [sym_interface_declaration] = STATE(5), - [sym_enum_declaration] = STATE(5), - [sym_class_declaration] = STATE(5), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(5), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(5), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(5), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(5), - [sym_compound_statement] = STATE(5), - [sym_named_label_statement] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(5), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(6), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(6), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -13589,171 +13455,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(334), [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(331), + [aux_sym_enum_case_token1] = ACTIONS(336), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_match_default_expression_token1] = ACTIONS(331), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [aux_sym_switch_block_token1] = ACTIONS(331), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_match_default_expression_token1] = ACTIONS(336), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [aux_sym_switch_block_token1] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2), - [sym_interface_declaration] = STATE(2), - [sym_enum_declaration] = STATE(2), - [sym_class_declaration] = STATE(2), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(2), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(2), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(2), - [sym_compound_statement] = STATE(2), - [sym_named_label_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), + [sym_statement] = STATE(2), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(972), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -13764,171 +13635,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(338), [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(335), + [aux_sym_enum_case_token1] = ACTIONS(340), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_match_default_expression_token1] = ACTIONS(335), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [aux_sym_switch_block_token1] = ACTIONS(335), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_match_default_expression_token1] = ACTIONS(340), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [aux_sym_switch_block_token1] = ACTIONS(340), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [6] = { - [sym_empty_statement] = STATE(3), - [sym_function_static_declaration] = STATE(3), - [sym_global_declaration] = STATE(3), - [sym_namespace_definition] = STATE(3), - [sym_namespace_use_declaration] = STATE(3), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(3), - [sym_interface_declaration] = STATE(3), - [sym_enum_declaration] = STATE(3), - [sym_class_declaration] = STATE(3), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(3), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(3), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(3), - [sym_exit_statement] = STATE(3), - [sym_unset_statement] = STATE(3), - [sym_declare_statement] = STATE(3), - [sym_try_statement] = STATE(3), - [sym_goto_statement] = STATE(3), - [sym_continue_statement] = STATE(3), - [sym_break_statement] = STATE(3), - [sym_return_statement] = STATE(3), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(3), - [sym_do_statement] = STATE(3), - [sym_for_statement] = STATE(3), - [sym_foreach_statement] = STATE(3), - [sym_if_statement] = STATE(3), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(3), - [sym_compound_statement] = STATE(3), - [sym_named_label_statement] = STATE(3), - [sym_expression_statement] = STATE(3), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(3), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(2), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -13939,171 +13815,355 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_RBRACE] = ACTIONS(342), [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(339), + [aux_sym_enum_case_token1] = ACTIONS(344), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_match_default_expression_token1] = ACTIONS(339), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [aux_sym_switch_block_token1] = ACTIONS(339), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_match_default_expression_token1] = ACTIONS(344), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [aux_sym_switch_block_token1] = ACTIONS(344), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(11), - [sym_interface_declaration] = STATE(11), - [sym_enum_declaration] = STATE(11), - [sym_class_declaration] = STATE(11), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(11), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(11), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(11), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(11), - [sym_compound_statement] = STATE(11), - [sym_named_label_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(7), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(142), + [aux_sym_function_static_declaration_token1] = ACTIONS(145), + [aux_sym_global_declaration_token1] = ACTIONS(148), + [aux_sym_namespace_definition_token1] = ACTIONS(151), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(154), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(157), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(166), + [aux_sym_trait_declaration_token1] = ACTIONS(169), + [aux_sym_interface_declaration_token1] = ACTIONS(172), + [aux_sym_enum_declaration_token1] = ACTIONS(175), + [aux_sym_class_declaration_token1] = ACTIONS(180), + [aux_sym_final_modifier_token1] = ACTIONS(183), + [aux_sym_abstract_modifier_token1] = ACTIONS(186), + [aux_sym_readonly_modifier_token1] = ACTIONS(189), + [sym_var_modifier] = ACTIONS(192), + [aux_sym_visibility_modifier_token1] = ACTIONS(195), + [aux_sym_visibility_modifier_token2] = ACTIONS(195), + [aux_sym_visibility_modifier_token3] = ACTIONS(195), + [aux_sym__arrow_function_header_token1] = ACTIONS(198), + [anon_sym_LPAREN] = ACTIONS(201), + [aux_sym_cast_type_token1] = ACTIONS(204), + [aux_sym_echo_statement_token1] = ACTIONS(207), + [aux_sym_exit_statement_token1] = ACTIONS(210), + [anon_sym_unset] = ACTIONS(213), + [aux_sym_declare_statement_token1] = ACTIONS(346), + [sym_float] = ACTIONS(219), + [aux_sym_try_statement_token1] = ACTIONS(222), + [aux_sym_goto_statement_token1] = ACTIONS(225), + [aux_sym_continue_statement_token1] = ACTIONS(228), + [aux_sym_break_statement_token1] = ACTIONS(231), + [sym_integer] = ACTIONS(219), + [aux_sym_return_statement_token1] = ACTIONS(234), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(349), + [aux_sym_do_statement_token1] = ACTIONS(243), + [aux_sym_for_statement_token1] = ACTIONS(352), + [aux_sym_foreach_statement_token1] = ACTIONS(355), + [aux_sym_if_statement_token1] = ACTIONS(358), + [aux_sym_if_statement_token2] = ACTIONS(178), + [aux_sym_else_if_clause_token1] = ACTIONS(178), + [aux_sym_else_clause_token1] = ACTIONS(178), + [aux_sym_match_expression_token1] = ACTIONS(255), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(261), + [anon_sym_DASH] = ACTIONS(261), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_AT] = ACTIONS(267), + [aux_sym_clone_expression_token1] = ACTIONS(270), + [aux_sym_print_intrinsic_token1] = ACTIONS(273), + [aux_sym_object_creation_expression_token1] = ACTIONS(276), + [anon_sym_DASH_DASH] = ACTIONS(279), + [anon_sym_PLUS_PLUS] = ACTIONS(279), + [aux_sym__list_destructing_token1] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_self] = ACTIONS(288), + [anon_sym_parent] = ACTIONS(288), + [aux_sym__argument_name_token1] = ACTIONS(291), + [aux_sym__argument_name_token2] = ACTIONS(294), + [anon_sym_POUND_LBRACK] = ACTIONS(297), + [aux_sym_encapsed_string_token1] = ACTIONS(300), + [anon_sym_DQUOTE] = ACTIONS(300), + [aux_sym_string_token1] = ACTIONS(303), + [anon_sym_SQUOTE] = ACTIONS(303), + [anon_sym_LT_LT_LT] = ACTIONS(306), + [anon_sym_BQUOTE] = ACTIONS(309), + [anon_sym_DOLLAR] = ACTIONS(312), + [aux_sym_yield_expression_token1] = ACTIONS(315), + [aux_sym_include_expression_token1] = ACTIONS(318), + [aux_sym_include_once_expression_token1] = ACTIONS(321), + [aux_sym_require_expression_token1] = ACTIONS(324), + [aux_sym_require_once_expression_token1] = ACTIONS(327), + [sym_comment] = ACTIONS(3), + }, + [8] = { + [sym_statement] = STATE(10), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -14121,337 +14181,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(341), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(343), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(345), - [aux_sym_foreach_statement_token1] = ACTIONS(347), - [aux_sym_if_statement_token1] = ACTIONS(349), - [aux_sym_if_statement_token2] = ACTIONS(351), - [aux_sym_else_if_clause_token1] = ACTIONS(351), - [aux_sym_else_clause_token1] = ACTIONS(351), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - }, - [8] = { - [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(8), - [sym_interface_declaration] = STATE(8), - [sym_enum_declaration] = STATE(8), - [sym_class_declaration] = STATE(8), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(8), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(8), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(8), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(8), - [sym_compound_statement] = STATE(8), - [sym_named_label_statement] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(8), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(140), - [aux_sym_function_static_declaration_token1] = ACTIONS(143), - [aux_sym_global_declaration_token1] = ACTIONS(146), - [aux_sym_namespace_definition_token1] = ACTIONS(149), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(152), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(155), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(164), - [aux_sym_trait_declaration_token1] = ACTIONS(167), - [aux_sym_interface_declaration_token1] = ACTIONS(170), - [aux_sym_enum_declaration_token1] = ACTIONS(173), - [aux_sym_class_declaration_token1] = ACTIONS(178), - [aux_sym_final_modifier_token1] = ACTIONS(181), - [aux_sym_abstract_modifier_token1] = ACTIONS(184), - [aux_sym_readonly_modifier_token1] = ACTIONS(187), - [aux_sym_visibility_modifier_token1] = ACTIONS(190), - [aux_sym_visibility_modifier_token2] = ACTIONS(190), - [aux_sym_visibility_modifier_token3] = ACTIONS(190), - [aux_sym__arrow_function_header_token1] = ACTIONS(193), - [anon_sym_LPAREN] = ACTIONS(196), - [aux_sym_cast_type_token1] = ACTIONS(199), - [aux_sym_echo_statement_token1] = ACTIONS(202), - [aux_sym_exit_statement_token1] = ACTIONS(205), - [anon_sym_unset] = ACTIONS(208), - [aux_sym_declare_statement_token1] = ACTIONS(353), - [sym_float] = ACTIONS(214), - [aux_sym_try_statement_token1] = ACTIONS(217), - [aux_sym_goto_statement_token1] = ACTIONS(220), - [aux_sym_continue_statement_token1] = ACTIONS(223), - [aux_sym_break_statement_token1] = ACTIONS(226), - [sym_integer] = ACTIONS(214), - [aux_sym_return_statement_token1] = ACTIONS(229), - [aux_sym_throw_expression_token1] = ACTIONS(232), - [aux_sym_while_statement_token1] = ACTIONS(356), - [aux_sym_do_statement_token1] = ACTIONS(238), - [aux_sym_for_statement_token1] = ACTIONS(359), - [aux_sym_foreach_statement_token1] = ACTIONS(362), - [aux_sym_if_statement_token1] = ACTIONS(365), - [aux_sym_if_statement_token2] = ACTIONS(176), - [aux_sym_else_if_clause_token1] = ACTIONS(176), - [aux_sym_else_clause_token1] = ACTIONS(176), - [aux_sym_match_expression_token1] = ACTIONS(250), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_AT] = ACTIONS(262), - [aux_sym_clone_expression_token1] = ACTIONS(265), - [aux_sym_print_intrinsic_token1] = ACTIONS(268), - [aux_sym_object_creation_expression_token1] = ACTIONS(271), - [anon_sym_DASH_DASH] = ACTIONS(274), - [anon_sym_PLUS_PLUS] = ACTIONS(274), - [aux_sym__list_destructing_token1] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_self] = ACTIONS(283), - [anon_sym_parent] = ACTIONS(283), - [aux_sym__argument_name_token1] = ACTIONS(286), - [aux_sym__argument_name_token2] = ACTIONS(289), - [anon_sym_POUND_LBRACK] = ACTIONS(292), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_SQUOTE] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(301), - [anon_sym_BQUOTE] = ACTIONS(304), - [anon_sym_DOLLAR] = ACTIONS(307), - [aux_sym_yield_expression_token1] = ACTIONS(310), - [aux_sym_include_expression_token1] = ACTIONS(313), - [aux_sym_include_once_expression_token1] = ACTIONS(316), - [aux_sym_require_expression_token1] = ACTIONS(319), - [aux_sym_require_once_expression_token1] = ACTIONS(322), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(361), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(363), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(365), + [aux_sym_foreach_statement_token1] = ACTIONS(367), + [aux_sym_if_statement_token1] = ACTIONS(369), + [aux_sym_if_statement_token2] = ACTIONS(371), + [aux_sym_else_if_clause_token1] = ACTIONS(371), + [aux_sym_else_clause_token1] = ACTIONS(371), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [9] = { - [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2), - [sym_interface_declaration] = STATE(2), - [sym_enum_declaration] = STATE(2), - [sym_class_declaration] = STATE(2), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(2), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(2), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(2), - [sym_compound_statement] = STATE(2), - [sym_named_label_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), + [sym_statement] = STATE(2), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(972), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -14469,163 +14360,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_while_statement_token2] = ACTIONS(368), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_foreach_statement_token2] = ACTIONS(368), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_if_statement_token2] = ACTIONS(368), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_while_statement_token2] = ACTIONS(373), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_foreach_statement_token2] = ACTIONS(373), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_if_statement_token2] = ACTIONS(373), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [10] = { - [sym_empty_statement] = STATE(9), - [sym_function_static_declaration] = STATE(9), - [sym_global_declaration] = STATE(9), - [sym_namespace_definition] = STATE(9), - [sym_namespace_use_declaration] = STATE(9), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(9), - [sym_interface_declaration] = STATE(9), - [sym_enum_declaration] = STATE(9), - [sym_class_declaration] = STATE(9), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(9), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(9), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(9), - [sym_exit_statement] = STATE(9), - [sym_unset_statement] = STATE(9), - [sym_declare_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_goto_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_foreach_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(9), - [sym_compound_statement] = STATE(9), - [sym_named_label_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(7), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -14643,163 +14539,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_while_statement_token2] = ACTIONS(351), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_foreach_statement_token2] = ACTIONS(351), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_if_statement_token2] = ACTIONS(351), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(361), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(363), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(365), + [aux_sym_foreach_statement_token1] = ACTIONS(367), + [aux_sym_if_statement_token1] = ACTIONS(369), + [aux_sym_if_statement_token2] = ACTIONS(373), + [aux_sym_else_if_clause_token1] = ACTIONS(373), + [aux_sym_else_clause_token1] = ACTIONS(373), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [11] = { - [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(8), - [sym_interface_declaration] = STATE(8), - [sym_enum_declaration] = STATE(8), - [sym_class_declaration] = STATE(8), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(8), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(8), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(8), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(8), - [sym_compound_statement] = STATE(8), - [sym_named_label_statement] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(8), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(9), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -14817,339 +14718,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(341), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(343), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(345), - [aux_sym_foreach_statement_token1] = ACTIONS(347), - [aux_sym_if_statement_token1] = ACTIONS(349), - [aux_sym_if_statement_token2] = ACTIONS(368), - [aux_sym_else_if_clause_token1] = ACTIONS(368), - [aux_sym_else_clause_token1] = ACTIONS(368), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_while_statement_token2] = ACTIONS(371), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_foreach_statement_token2] = ACTIONS(371), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_if_statement_token2] = ACTIONS(371), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [12] = { - [sym_empty_statement] = STATE(491), - [sym_function_static_declaration] = STATE(491), - [sym_global_declaration] = STATE(491), - [sym_namespace_definition] = STATE(491), - [sym_namespace_use_declaration] = STATE(491), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(491), - [sym_interface_declaration] = STATE(491), - [sym_enum_declaration] = STATE(491), - [sym_class_declaration] = STATE(491), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(491), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(491), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(491), - [sym_exit_statement] = STATE(491), - [sym_unset_statement] = STATE(491), - [sym_declare_statement] = STATE(491), - [sym_try_statement] = STATE(491), - [sym_goto_statement] = STATE(491), - [sym_continue_statement] = STATE(491), - [sym_break_statement] = STATE(491), - [sym_return_statement] = STATE(491), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(491), - [sym_do_statement] = STATE(491), - [sym_for_statement] = STATE(491), - [sym_foreach_statement] = STATE(491), - [sym_if_statement] = STATE(491), - [sym_colon_block] = STATE(2606), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(491), - [sym_compound_statement] = STATE(491), - [sym_named_label_statement] = STATE(491), - [sym_expression_statement] = STATE(491), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(370), - [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), + [sym_statement] = STATE(1991), + [sym_empty_statement] = STATE(2075), + [sym_function_static_declaration] = STATE(2075), + [sym_global_declaration] = STATE(2075), + [sym_namespace_definition] = STATE(2075), + [sym_namespace_use_declaration] = STATE(2075), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(2075), + [sym_interface_declaration] = STATE(2075), + [sym_enum_declaration] = STATE(2075), + [sym_class_declaration] = STATE(2075), + [sym_final_modifier] = STATE(1349), + [sym_abstract_modifier] = STATE(1349), + [sym_readonly_modifier] = STATE(1349), + [sym_const_declaration] = STATE(2075), + [sym__const_declaration] = STATE(2076), + [sym__modifier] = STATE(1349), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1349), + [sym_function_definition] = STATE(2075), + [sym__function_definition_header] = STATE(2209), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(2075), + [sym_exit_statement] = STATE(2075), + [sym_unset_statement] = STATE(2075), + [sym_declare_statement] = STATE(2075), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(2075), + [sym_goto_statement] = STATE(2075), + [sym_continue_statement] = STATE(2075), + [sym_break_statement] = STATE(2075), + [sym_return_statement] = STATE(2075), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(2075), + [sym_do_statement] = STATE(2075), + [sym_for_statement] = STATE(2075), + [sym_foreach_statement] = STATE(2075), + [sym_if_statement] = STATE(2075), + [sym_colon_block] = STATE(2449), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(2075), + [sym_compound_statement] = STATE(2075), + [sym_named_label_statement] = STATE(2075), + [sym_expression_statement] = STATE(2075), + [sym_expression] = STATE(1227), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1340), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1349), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(377), + [aux_sym_function_static_declaration_token1] = ACTIONS(379), + [aux_sym_global_declaration_token1] = ACTIONS(381), + [aux_sym_namespace_definition_token1] = ACTIONS(383), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), [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(372), - [aux_sym_class_declaration_token1] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(389), + [aux_sym_trait_declaration_token1] = ACTIONS(391), + [aux_sym_interface_declaration_token1] = ACTIONS(393), + [aux_sym_enum_declaration_token1] = ACTIONS(395), + [anon_sym_COLON] = ACTIONS(397), + [aux_sym_class_declaration_token1] = ACTIONS(399), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(374), + [sym_var_modifier] = ACTIONS(401), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(403), + [aux_sym_exit_statement_token1] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [aux_sym_declare_statement_token1] = ACTIONS(409), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(411), + [aux_sym_goto_statement_token1] = ACTIONS(413), + [aux_sym_continue_statement_token1] = ACTIONS(415), + [aux_sym_break_statement_token1] = ACTIONS(417), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(419), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(421), + [aux_sym_do_statement_token1] = ACTIONS(423), + [aux_sym_for_statement_token1] = ACTIONS(425), + [aux_sym_foreach_statement_token1] = ACTIONS(427), + [aux_sym_if_statement_token1] = ACTIONS(429), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(433), }, [13] = { - [sym_empty_statement] = STATE(18), - [sym_function_static_declaration] = STATE(18), - [sym_global_declaration] = STATE(18), - [sym_namespace_definition] = STATE(18), - [sym_namespace_use_declaration] = STATE(18), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(18), - [sym_interface_declaration] = STATE(18), - [sym_enum_declaration] = STATE(18), - [sym_class_declaration] = STATE(18), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(18), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(18), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(18), - [sym_exit_statement] = STATE(18), - [sym_unset_statement] = STATE(18), - [sym_declare_statement] = STATE(18), - [sym_try_statement] = STATE(18), - [sym_goto_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_foreach_statement] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(18), - [sym_compound_statement] = STATE(18), - [sym_named_label_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_attribute_list_repeat1] = STATE(972), - [ts_builtin_sym_end] = ACTIONS(376), + [sym_statement] = STATE(14), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), + [ts_builtin_sym_end] = ACTIONS(435), [sym_name] = ACTIONS(7), - [anon_sym_QMARK_GT] = ACTIONS(378), + [anon_sym_QMARK_GT] = ACTIONS(437), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), [aux_sym_global_declaration_token1] = ACTIONS(17), @@ -15166,162 +15077,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [14] = { - [sym_empty_statement] = STATE(491), - [sym_function_static_declaration] = STATE(491), - [sym_global_declaration] = STATE(491), - [sym_namespace_definition] = STATE(491), - [sym_namespace_use_declaration] = STATE(491), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(491), - [sym_interface_declaration] = STATE(491), - [sym_enum_declaration] = STATE(491), - [sym_class_declaration] = STATE(491), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(491), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(491), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(491), - [sym_exit_statement] = STATE(491), - [sym_unset_statement] = STATE(491), - [sym_declare_statement] = STATE(491), - [sym_try_statement] = STATE(491), - [sym_goto_statement] = STATE(491), - [sym_continue_statement] = STATE(491), - [sym_break_statement] = STATE(491), - [sym_return_statement] = STATE(491), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(491), - [sym_do_statement] = STATE(491), - [sym_for_statement] = STATE(491), - [sym_foreach_statement] = STATE(491), - [sym_if_statement] = STATE(491), - [sym_colon_block] = STATE(2606), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(491), - [sym_compound_statement] = STATE(491), - [sym_named_label_statement] = STATE(491), - [sym_expression_statement] = STATE(491), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(2), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), + [ts_builtin_sym_end] = ACTIONS(439), [sym_name] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(370), + [anon_sym_QMARK_GT] = ACTIONS(441), + [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), @@ -15333,169 +15251,350 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(372), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(341), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(343), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(345), - [aux_sym_foreach_statement_token1] = ACTIONS(347), - [aux_sym_if_statement_token1] = ACTIONS(349), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(374), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), }, [15] = { - [sym_empty_statement] = STATE(2), - [sym_function_static_declaration] = STATE(2), - [sym_global_declaration] = STATE(2), - [sym_namespace_definition] = STATE(2), - [sym_namespace_use_declaration] = STATE(2), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2), - [sym_interface_declaration] = STATE(2), - [sym_enum_declaration] = STATE(2), - [sym_class_declaration] = STATE(2), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(2), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(2), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(2), - [sym_compound_statement] = STATE(2), - [sym_named_label_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), + [sym_statement] = STATE(1991), + [sym_empty_statement] = STATE(2075), + [sym_function_static_declaration] = STATE(2075), + [sym_global_declaration] = STATE(2075), + [sym_namespace_definition] = STATE(2075), + [sym_namespace_use_declaration] = STATE(2075), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(2075), + [sym_interface_declaration] = STATE(2075), + [sym_enum_declaration] = STATE(2075), + [sym_class_declaration] = STATE(2075), + [sym_final_modifier] = STATE(1349), + [sym_abstract_modifier] = STATE(1349), + [sym_readonly_modifier] = STATE(1349), + [sym_const_declaration] = STATE(2075), + [sym__const_declaration] = STATE(2076), + [sym__modifier] = STATE(1349), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1349), + [sym_function_definition] = STATE(2075), + [sym__function_definition_header] = STATE(2209), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(2075), + [sym_exit_statement] = STATE(2075), + [sym_unset_statement] = STATE(2075), + [sym_declare_statement] = STATE(2075), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(2075), + [sym_goto_statement] = STATE(2075), + [sym_continue_statement] = STATE(2075), + [sym_break_statement] = STATE(2075), + [sym_return_statement] = STATE(2075), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(2075), + [sym_do_statement] = STATE(2075), + [sym_for_statement] = STATE(2075), + [sym_foreach_statement] = STATE(2075), + [sym_if_statement] = STATE(2075), + [sym_colon_block] = STATE(2449), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(2075), + [sym_compound_statement] = STATE(2075), + [sym_named_label_statement] = STATE(2075), + [sym_expression_statement] = STATE(2075), + [sym_expression] = STATE(1227), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1340), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1349), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(377), + [aux_sym_function_static_declaration_token1] = ACTIONS(379), + [aux_sym_global_declaration_token1] = ACTIONS(381), + [aux_sym_namespace_definition_token1] = ACTIONS(383), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(389), + [aux_sym_trait_declaration_token1] = ACTIONS(391), + [aux_sym_interface_declaration_token1] = ACTIONS(393), + [aux_sym_enum_declaration_token1] = ACTIONS(395), + [anon_sym_COLON] = ACTIONS(397), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [sym_var_modifier] = ACTIONS(401), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(403), + [aux_sym_exit_statement_token1] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(411), + [aux_sym_goto_statement_token1] = ACTIONS(413), + [aux_sym_continue_statement_token1] = ACTIONS(415), + [aux_sym_break_statement_token1] = ACTIONS(417), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(419), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(423), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(433), + }, + [16] = { + [sym_statement] = STATE(2), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(972), - [ts_builtin_sym_end] = ACTIONS(376), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), + [ts_builtin_sym_end] = ACTIONS(435), [sym_name] = ACTIONS(7), - [anon_sym_QMARK_GT] = ACTIONS(378), + [anon_sym_QMARK_GT] = ACTIONS(437), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), [aux_sym_global_declaration_token1] = ACTIONS(17), @@ -15512,510 +15611,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, - [16] = { - [sym_empty_statement] = STATE(1971), - [sym_function_static_declaration] = STATE(1971), - [sym_global_declaration] = STATE(1971), - [sym_namespace_definition] = STATE(1971), - [sym_namespace_use_declaration] = STATE(1971), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(1971), - [sym_interface_declaration] = STATE(1971), - [sym_enum_declaration] = STATE(1971), - [sym_class_declaration] = STATE(1971), - [sym_final_modifier] = STATE(1899), - [sym_abstract_modifier] = STATE(1899), - [sym_readonly_modifier] = STATE(2536), - [sym_const_declaration] = STATE(1971), - [sym__const_declaration] = STATE(2117), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2538), - [sym_function_definition] = STATE(1971), - [sym__function_definition_header] = STATE(2316), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(1971), - [sym_exit_statement] = STATE(1971), - [sym_unset_statement] = STATE(1971), - [sym_declare_statement] = STATE(1971), - [sym_try_statement] = STATE(1971), - [sym_goto_statement] = STATE(1971), - [sym_continue_statement] = STATE(1971), - [sym_break_statement] = STATE(1971), - [sym_return_statement] = STATE(1971), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(1971), - [sym_do_statement] = STATE(1971), - [sym_for_statement] = STATE(1971), - [sym_foreach_statement] = STATE(1971), - [sym_if_statement] = STATE(1971), - [sym_colon_block] = STATE(2452), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(1971), - [sym_compound_statement] = STATE(1971), - [sym_named_label_statement] = STATE(1971), - [sym_expression_statement] = STATE(1971), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(382), - [aux_sym_function_static_declaration_token1] = ACTIONS(384), - [aux_sym_global_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_definition_token1] = ACTIONS(388), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(390), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(392), - [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(394), - [aux_sym_trait_declaration_token1] = ACTIONS(396), - [aux_sym_interface_declaration_token1] = ACTIONS(398), - [aux_sym_enum_declaration_token1] = ACTIONS(400), - [anon_sym_COLON] = ACTIONS(372), - [aux_sym_class_declaration_token1] = ACTIONS(402), - [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(404), - [aux_sym_exit_statement_token1] = ACTIONS(406), - [anon_sym_unset] = ACTIONS(408), - [aux_sym_declare_statement_token1] = ACTIONS(410), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(412), - [aux_sym_goto_statement_token1] = ACTIONS(414), - [aux_sym_continue_statement_token1] = ACTIONS(416), - [aux_sym_break_statement_token1] = ACTIONS(418), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(420), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(422), - [aux_sym_do_statement_token1] = ACTIONS(424), - [aux_sym_for_statement_token1] = ACTIONS(426), - [aux_sym_foreach_statement_token1] = ACTIONS(428), - [aux_sym_if_statement_token1] = ACTIONS(430), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(434), - }, [17] = { - [sym_empty_statement] = STATE(1971), - [sym_function_static_declaration] = STATE(1971), - [sym_global_declaration] = STATE(1971), - [sym_namespace_definition] = STATE(1971), - [sym_namespace_use_declaration] = STATE(1971), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(1971), - [sym_interface_declaration] = STATE(1971), - [sym_enum_declaration] = STATE(1971), - [sym_class_declaration] = STATE(1971), - [sym_final_modifier] = STATE(1899), - [sym_abstract_modifier] = STATE(1899), - [sym_readonly_modifier] = STATE(2536), - [sym_const_declaration] = STATE(1971), - [sym__const_declaration] = STATE(2117), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2538), - [sym_function_definition] = STATE(1971), - [sym__function_definition_header] = STATE(2316), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(1971), - [sym_exit_statement] = STATE(1971), - [sym_unset_statement] = STATE(1971), - [sym_declare_statement] = STATE(1971), - [sym_try_statement] = STATE(1971), - [sym_goto_statement] = STATE(1971), - [sym_continue_statement] = STATE(1971), - [sym_break_statement] = STATE(1971), - [sym_return_statement] = STATE(1971), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(1971), - [sym_do_statement] = STATE(1971), - [sym_for_statement] = STATE(1971), - [sym_foreach_statement] = STATE(1971), - [sym_if_statement] = STATE(1971), - [sym_colon_block] = STATE(2452), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(1971), - [sym_compound_statement] = STATE(1971), - [sym_named_label_statement] = STATE(1971), - [sym_expression_statement] = STATE(1971), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(382), - [aux_sym_function_static_declaration_token1] = ACTIONS(384), - [aux_sym_global_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_definition_token1] = ACTIONS(388), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(390), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(392), - [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(394), - [aux_sym_trait_declaration_token1] = ACTIONS(396), - [aux_sym_interface_declaration_token1] = ACTIONS(398), - [aux_sym_enum_declaration_token1] = ACTIONS(400), - [anon_sym_COLON] = ACTIONS(372), - [aux_sym_class_declaration_token1] = ACTIONS(402), - [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(404), - [aux_sym_exit_statement_token1] = ACTIONS(406), - [anon_sym_unset] = ACTIONS(408), - [aux_sym_declare_statement_token1] = ACTIONS(436), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(412), - [aux_sym_goto_statement_token1] = ACTIONS(414), - [aux_sym_continue_statement_token1] = ACTIONS(416), - [aux_sym_break_statement_token1] = ACTIONS(418), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(420), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(438), - [aux_sym_do_statement_token1] = ACTIONS(424), - [aux_sym_for_statement_token1] = ACTIONS(440), - [aux_sym_foreach_statement_token1] = ACTIONS(442), - [aux_sym_if_statement_token1] = ACTIONS(444), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(434), - }, - [18] = { - [sym_empty_statement] = STATE(2), - [sym_function_static_declaration] = STATE(2), - [sym_global_declaration] = STATE(2), - [sym_namespace_definition] = STATE(2), - [sym_namespace_use_declaration] = STATE(2), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2), - [sym_interface_declaration] = STATE(2), - [sym_enum_declaration] = STATE(2), - [sym_class_declaration] = STATE(2), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(2), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(2), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(2), - [sym_compound_statement] = STATE(2), - [sym_named_label_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(972), - [ts_builtin_sym_end] = ACTIONS(446), + [sym_statement] = STATE(551), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_colon_block] = STATE(2538), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), - [anon_sym_QMARK_GT] = ACTIONS(448), - [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(453), [aux_sym_function_static_declaration_token1] = ACTIONS(15), [aux_sym_global_declaration_token1] = ACTIONS(17), [aux_sym_namespace_definition_token1] = ACTIONS(19), @@ -16027,165 +15783,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(397), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(455), }, - [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(513), - [sym_interface_declaration] = STATE(513), - [sym_enum_declaration] = STATE(513), - [sym_class_declaration] = STATE(513), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(513), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(513), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(513), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(513), - [sym_compound_statement] = STATE(513), - [sym_named_label_statement] = STATE(513), - [sym_expression_statement] = STATE(513), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), + [18] = { + [sym_statement] = STATE(551), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_colon_block] = STATE(2538), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(453), [aux_sym_function_static_declaration_token1] = ACTIONS(15), [aux_sym_global_declaration_token1] = ACTIONS(17), [aux_sym_namespace_definition_token1] = ACTIONS(19), @@ -16197,166 +15961,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(452), + [anon_sym_COLON] = ACTIONS(397), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(341), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(343), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(345), - [aux_sym_foreach_statement_token1] = ACTIONS(347), - [aux_sym_if_statement_token1] = ACTIONS(349), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(454), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(361), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(363), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(365), + [aux_sym_foreach_statement_token1] = ACTIONS(367), + [aux_sym_if_statement_token1] = ACTIONS(369), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(455), }, - [20] = { - [sym_empty_statement] = STATE(65), - [sym_function_static_declaration] = STATE(65), - [sym_global_declaration] = STATE(65), - [sym_namespace_definition] = STATE(65), - [sym_namespace_use_declaration] = STATE(65), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(65), - [sym_interface_declaration] = STATE(65), - [sym_enum_declaration] = STATE(65), - [sym_class_declaration] = STATE(65), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(65), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(65), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(65), - [sym_exit_statement] = STATE(65), - [sym_unset_statement] = STATE(65), - [sym_declare_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_goto_statement] = STATE(65), - [sym_continue_statement] = STATE(65), - [sym_break_statement] = STATE(65), - [sym_return_statement] = STATE(65), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(65), - [sym_do_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_foreach_statement] = STATE(65), - [sym_if_statement] = STATE(65), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(65), - [sym_compound_statement] = STATE(65), - [sym_named_label_statement] = STATE(65), - [sym_expression_statement] = STATE(65), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(65), - [aux_sym_attribute_list_repeat1] = STATE(972), + [19] = { + [sym_statement] = STATE(2), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -16374,162 +16143,521 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_for_statement_token2] = ACTIONS(456), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_for_statement_token2] = ACTIONS(457), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + }, + [20] = { + [sym_statement] = STATE(1909), + [sym_empty_statement] = STATE(2075), + [sym_function_static_declaration] = STATE(2075), + [sym_global_declaration] = STATE(2075), + [sym_namespace_definition] = STATE(2075), + [sym_namespace_use_declaration] = STATE(2075), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(2075), + [sym_interface_declaration] = STATE(2075), + [sym_enum_declaration] = STATE(2075), + [sym_class_declaration] = STATE(2075), + [sym_final_modifier] = STATE(1349), + [sym_abstract_modifier] = STATE(1349), + [sym_readonly_modifier] = STATE(1349), + [sym_const_declaration] = STATE(2075), + [sym__const_declaration] = STATE(2076), + [sym__modifier] = STATE(1349), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1349), + [sym_function_definition] = STATE(2075), + [sym__function_definition_header] = STATE(2209), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(2075), + [sym_exit_statement] = STATE(2075), + [sym_unset_statement] = STATE(2075), + [sym_declare_statement] = STATE(2075), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(2075), + [sym_goto_statement] = STATE(2075), + [sym_continue_statement] = STATE(2075), + [sym_break_statement] = STATE(2075), + [sym_return_statement] = STATE(2075), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(2075), + [sym_do_statement] = STATE(2075), + [sym_for_statement] = STATE(2075), + [sym_foreach_statement] = STATE(2075), + [sym_if_statement] = STATE(2075), + [sym_colon_block] = STATE(2484), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(2075), + [sym_compound_statement] = STATE(2075), + [sym_named_label_statement] = STATE(2075), + [sym_expression_statement] = STATE(2075), + [sym_expression] = STATE(1227), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1340), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1349), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(459), + [aux_sym_function_static_declaration_token1] = ACTIONS(379), + [aux_sym_global_declaration_token1] = ACTIONS(381), + [aux_sym_namespace_definition_token1] = ACTIONS(383), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(389), + [aux_sym_trait_declaration_token1] = ACTIONS(391), + [aux_sym_interface_declaration_token1] = ACTIONS(393), + [aux_sym_enum_declaration_token1] = ACTIONS(395), + [anon_sym_COLON] = ACTIONS(397), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [sym_var_modifier] = ACTIONS(401), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(403), + [aux_sym_exit_statement_token1] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(411), + [aux_sym_goto_statement_token1] = ACTIONS(413), + [aux_sym_continue_statement_token1] = ACTIONS(415), + [aux_sym_break_statement_token1] = ACTIONS(417), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(419), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(423), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [21] = { - [sym_empty_statement] = STATE(502), - [sym_function_static_declaration] = STATE(502), - [sym_global_declaration] = STATE(502), - [sym_namespace_definition] = STATE(502), - [sym_namespace_use_declaration] = STATE(502), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(502), - [sym_interface_declaration] = STATE(502), - [sym_enum_declaration] = STATE(502), - [sym_class_declaration] = STATE(502), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(502), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(502), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(502), - [sym_exit_statement] = STATE(502), - [sym_unset_statement] = STATE(502), - [sym_declare_statement] = STATE(502), - [sym_try_statement] = STATE(502), - [sym_goto_statement] = STATE(502), - [sym_continue_statement] = STATE(502), - [sym_break_statement] = STATE(502), - [sym_return_statement] = STATE(502), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(502), - [sym_do_statement] = STATE(502), - [sym_for_statement] = STATE(502), - [sym_foreach_statement] = STATE(502), - [sym_if_statement] = STATE(502), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(502), - [sym_compound_statement] = STATE(502), - [sym_named_label_statement] = STATE(502), - [sym_expression_statement] = STATE(502), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(1893), + [sym_empty_statement] = STATE(2075), + [sym_function_static_declaration] = STATE(2075), + [sym_global_declaration] = STATE(2075), + [sym_namespace_definition] = STATE(2075), + [sym_namespace_use_declaration] = STATE(2075), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(2075), + [sym_interface_declaration] = STATE(2075), + [sym_enum_declaration] = STATE(2075), + [sym_class_declaration] = STATE(2075), + [sym_final_modifier] = STATE(1349), + [sym_abstract_modifier] = STATE(1349), + [sym_readonly_modifier] = STATE(1349), + [sym_const_declaration] = STATE(2075), + [sym__const_declaration] = STATE(2076), + [sym__modifier] = STATE(1349), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1349), + [sym_function_definition] = STATE(2075), + [sym__function_definition_header] = STATE(2209), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(2075), + [sym_exit_statement] = STATE(2075), + [sym_unset_statement] = STATE(2075), + [sym_declare_statement] = STATE(2075), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(2075), + [sym_goto_statement] = STATE(2075), + [sym_continue_statement] = STATE(2075), + [sym_break_statement] = STATE(2075), + [sym_return_statement] = STATE(2075), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(2075), + [sym_do_statement] = STATE(2075), + [sym_for_statement] = STATE(2075), + [sym_foreach_statement] = STATE(2075), + [sym_if_statement] = STATE(2075), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(2075), + [sym_compound_statement] = STATE(2075), + [sym_named_label_statement] = STATE(2075), + [sym_expression_statement] = STATE(2075), + [sym_expression] = STATE(1227), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1340), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1349), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(461), + [aux_sym_function_static_declaration_token1] = ACTIONS(379), + [aux_sym_global_declaration_token1] = ACTIONS(381), + [aux_sym_namespace_definition_token1] = ACTIONS(383), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(389), + [aux_sym_trait_declaration_token1] = ACTIONS(391), + [aux_sym_interface_declaration_token1] = ACTIONS(393), + [aux_sym_enum_declaration_token1] = ACTIONS(395), + [anon_sym_COLON] = ACTIONS(463), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [sym_var_modifier] = ACTIONS(401), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(403), + [aux_sym_exit_statement_token1] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [aux_sym_declare_statement_token1] = ACTIONS(409), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(411), + [aux_sym_goto_statement_token1] = ACTIONS(413), + [aux_sym_continue_statement_token1] = ACTIONS(415), + [aux_sym_break_statement_token1] = ACTIONS(417), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(419), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(421), + [aux_sym_do_statement_token1] = ACTIONS(423), + [aux_sym_for_statement_token1] = ACTIONS(425), + [aux_sym_foreach_statement_token1] = ACTIONS(427), + [aux_sym_if_statement_token1] = ACTIONS(429), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(465), + }, + [22] = { + [sym_statement] = STATE(500), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(458), + [anon_sym_SEMI] = ACTIONS(467), [aux_sym_function_static_declaration_token1] = ACTIONS(15), [aux_sym_global_declaration_token1] = ACTIONS(17), [aux_sym_namespace_definition_token1] = ACTIONS(19), @@ -16541,338 +16669,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(460), + [anon_sym_COLON] = ACTIONS(469), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(462), - }, - [22] = { - [sym_empty_statement] = STATE(1949), - [sym_function_static_declaration] = STATE(1949), - [sym_global_declaration] = STATE(1949), - [sym_namespace_definition] = STATE(1949), - [sym_namespace_use_declaration] = STATE(1949), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(1949), - [sym_interface_declaration] = STATE(1949), - [sym_enum_declaration] = STATE(1949), - [sym_class_declaration] = STATE(1949), - [sym_final_modifier] = STATE(1899), - [sym_abstract_modifier] = STATE(1899), - [sym_readonly_modifier] = STATE(2536), - [sym_const_declaration] = STATE(1949), - [sym__const_declaration] = STATE(2117), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2538), - [sym_function_definition] = STATE(1949), - [sym__function_definition_header] = STATE(2316), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(1949), - [sym_exit_statement] = STATE(1949), - [sym_unset_statement] = STATE(1949), - [sym_declare_statement] = STATE(1949), - [sym_try_statement] = STATE(1949), - [sym_goto_statement] = STATE(1949), - [sym_continue_statement] = STATE(1949), - [sym_break_statement] = STATE(1949), - [sym_return_statement] = STATE(1949), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(1949), - [sym_do_statement] = STATE(1949), - [sym_for_statement] = STATE(1949), - [sym_foreach_statement] = STATE(1949), - [sym_if_statement] = STATE(1949), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(1949), - [sym_compound_statement] = STATE(1949), - [sym_named_label_statement] = STATE(1949), - [sym_expression_statement] = STATE(1949), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(464), - [aux_sym_function_static_declaration_token1] = ACTIONS(384), - [aux_sym_global_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_definition_token1] = ACTIONS(388), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(390), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(392), - [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(394), - [aux_sym_trait_declaration_token1] = ACTIONS(396), - [aux_sym_interface_declaration_token1] = ACTIONS(398), - [aux_sym_enum_declaration_token1] = ACTIONS(400), - [anon_sym_COLON] = ACTIONS(466), - [aux_sym_class_declaration_token1] = ACTIONS(402), - [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(404), - [aux_sym_exit_statement_token1] = ACTIONS(406), - [anon_sym_unset] = ACTIONS(408), - [aux_sym_declare_statement_token1] = ACTIONS(410), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(412), - [aux_sym_goto_statement_token1] = ACTIONS(414), - [aux_sym_continue_statement_token1] = ACTIONS(416), - [aux_sym_break_statement_token1] = ACTIONS(418), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(420), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(422), - [aux_sym_do_statement_token1] = ACTIONS(424), - [aux_sym_for_statement_token1] = ACTIONS(426), - [aux_sym_foreach_statement_token1] = ACTIONS(428), - [aux_sym_if_statement_token1] = ACTIONS(430), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(468), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(361), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(363), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(365), + [aux_sym_foreach_statement_token1] = ACTIONS(367), + [aux_sym_if_statement_token1] = ACTIONS(369), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(471), }, [23] = { - [sym_empty_statement] = STATE(73), - [sym_function_static_declaration] = STATE(73), - [sym_global_declaration] = STATE(73), - [sym_namespace_definition] = STATE(73), - [sym_namespace_use_declaration] = STATE(73), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(73), - [sym_interface_declaration] = STATE(73), - [sym_enum_declaration] = STATE(73), - [sym_class_declaration] = STATE(73), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(73), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(73), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(73), - [sym_exit_statement] = STATE(73), - [sym_unset_statement] = STATE(73), - [sym_declare_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_goto_statement] = STATE(73), - [sym_continue_statement] = STATE(73), - [sym_break_statement] = STATE(73), - [sym_return_statement] = STATE(73), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(73), - [sym_do_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_foreach_statement] = STATE(73), - [sym_if_statement] = STATE(73), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(73), - [sym_compound_statement] = STATE(73), - [sym_named_label_statement] = STATE(73), - [sym_expression_statement] = STATE(73), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(73), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(2), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -16890,333 +16851,343 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [aux_sym_declare_statement_token2] = ACTIONS(470), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [aux_sym_declare_statement_token2] = ACTIONS(473), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [24] = { - [sym_empty_statement] = STATE(1606), - [sym_function_static_declaration] = STATE(1606), - [sym_global_declaration] = STATE(1606), - [sym_namespace_definition] = STATE(1606), - [sym_namespace_use_declaration] = STATE(1606), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(1606), - [sym_interface_declaration] = STATE(1606), - [sym_enum_declaration] = STATE(1606), - [sym_class_declaration] = STATE(1606), - [sym_final_modifier] = STATE(1899), - [sym_abstract_modifier] = STATE(1899), - [sym_readonly_modifier] = STATE(2536), - [sym_const_declaration] = STATE(1606), - [sym__const_declaration] = STATE(2117), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2538), - [sym_function_definition] = STATE(1606), - [sym__function_definition_header] = STATE(2316), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(1606), - [sym_exit_statement] = STATE(1606), - [sym_unset_statement] = STATE(1606), - [sym_declare_statement] = STATE(1606), - [sym_try_statement] = STATE(1606), - [sym_goto_statement] = STATE(1606), - [sym_continue_statement] = STATE(1606), - [sym_break_statement] = STATE(1606), - [sym_return_statement] = STATE(1606), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(1606), - [sym_do_statement] = STATE(1606), - [sym_for_statement] = STATE(1606), - [sym_foreach_statement] = STATE(1606), - [sym_if_statement] = STATE(1606), - [sym_colon_block] = STATE(1605), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(1606), - [sym_compound_statement] = STATE(1606), - [sym_named_label_statement] = STATE(1606), - [sym_expression_statement] = STATE(1606), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(472), - [aux_sym_function_static_declaration_token1] = ACTIONS(384), - [aux_sym_global_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_definition_token1] = ACTIONS(388), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(390), + [sym_statement] = STATE(31), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(31), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), + [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(392), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(394), - [aux_sym_trait_declaration_token1] = ACTIONS(396), - [aux_sym_interface_declaration_token1] = ACTIONS(398), - [aux_sym_enum_declaration_token1] = ACTIONS(400), - [anon_sym_COLON] = ACTIONS(474), - [aux_sym_class_declaration_token1] = ACTIONS(402), + [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(404), - [aux_sym_exit_statement_token1] = ACTIONS(406), - [anon_sym_unset] = ACTIONS(408), - [aux_sym_declare_statement_token1] = ACTIONS(436), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(412), - [aux_sym_goto_statement_token1] = ACTIONS(414), - [aux_sym_continue_statement_token1] = ACTIONS(416), - [aux_sym_break_statement_token1] = ACTIONS(418), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(420), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(438), - [aux_sym_do_statement_token1] = ACTIONS(424), - [aux_sym_for_statement_token1] = ACTIONS(440), - [aux_sym_foreach_statement_token1] = ACTIONS(442), - [aux_sym_if_statement_token1] = ACTIONS(444), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_for_statement_token2] = ACTIONS(475), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [25] = { - [sym_empty_statement] = STATE(41), - [sym_function_static_declaration] = STATE(41), - [sym_global_declaration] = STATE(41), - [sym_namespace_definition] = STATE(41), - [sym_namespace_use_declaration] = STATE(41), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(41), - [sym_interface_declaration] = STATE(41), - [sym_enum_declaration] = STATE(41), - [sym_class_declaration] = STATE(41), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(41), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(41), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(41), - [sym_exit_statement] = STATE(41), - [sym_unset_statement] = STATE(41), - [sym_declare_statement] = STATE(41), - [sym_try_statement] = STATE(41), - [sym_goto_statement] = STATE(41), - [sym_continue_statement] = STATE(41), - [sym_break_statement] = STATE(41), - [sym_return_statement] = STATE(41), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(41), - [sym_do_statement] = STATE(41), - [sym_for_statement] = STATE(41), - [sym_foreach_statement] = STATE(41), - [sym_if_statement] = STATE(41), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(41), - [sym_compound_statement] = STATE(41), - [sym_named_label_statement] = STATE(41), - [sym_expression_statement] = STATE(41), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(41), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(63), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(63), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -17227,6 +17198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -17234,161 +17206,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_for_statement_token2] = ACTIONS(476), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [26] = { - [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(29), - [sym_interface_declaration] = STATE(29), - [sym_enum_declaration] = STATE(29), - [sym_class_declaration] = STATE(29), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(29), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(29), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(29), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(29), - [sym_compound_statement] = STATE(29), - [sym_named_label_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(29), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(2), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -17399,7 +17375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(478), + [anon_sym_RBRACE] = ACTIONS(479), [aux_sym_trait_declaration_token1] = ACTIONS(31), [aux_sym_interface_declaration_token1] = ACTIONS(33), [aux_sym_enum_declaration_token1] = ACTIONS(35), @@ -17407,162 +17383,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [27] = { - [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2), - [sym_interface_declaration] = STATE(2), - [sym_enum_declaration] = STATE(2), - [sym_class_declaration] = STATE(2), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(2), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(2), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(2), - [sym_compound_statement] = STATE(2), - [sym_named_label_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(526), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(481), [aux_sym_function_static_declaration_token1] = ACTIONS(15), [aux_sym_global_declaration_token1] = ACTIONS(17), [aux_sym_namespace_definition_token1] = ACTIONS(19), @@ -17574,166 +17554,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(483), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_for_statement_token2] = ACTIONS(476), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(361), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(363), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(365), + [aux_sym_foreach_statement_token1] = ACTIONS(367), + [aux_sym_if_statement_token1] = ACTIONS(369), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(485), }, [28] = { - [sym_empty_statement] = STATE(502), - [sym_function_static_declaration] = STATE(502), - [sym_global_declaration] = STATE(502), - [sym_namespace_definition] = STATE(502), - [sym_namespace_use_declaration] = STATE(502), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(502), - [sym_interface_declaration] = STATE(502), - [sym_enum_declaration] = STATE(502), - [sym_class_declaration] = STATE(502), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(502), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(502), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(502), - [sym_exit_statement] = STATE(502), - [sym_unset_statement] = STATE(502), - [sym_declare_statement] = STATE(502), - [sym_try_statement] = STATE(502), - [sym_goto_statement] = STATE(502), - [sym_continue_statement] = STATE(502), - [sym_break_statement] = STATE(502), - [sym_return_statement] = STATE(502), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(502), - [sym_do_statement] = STATE(502), - [sym_for_statement] = STATE(502), - [sym_foreach_statement] = STATE(502), - [sym_if_statement] = STATE(502), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(502), - [sym_compound_statement] = STATE(502), - [sym_named_label_statement] = STATE(502), - [sym_expression_statement] = STATE(502), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(2), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(458), + [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), @@ -17745,166 +17732,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(460), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(341), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(343), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(345), - [aux_sym_foreach_statement_token1] = ACTIONS(347), - [aux_sym_if_statement_token1] = ACTIONS(349), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(462), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_for_statement_token2] = ACTIONS(487), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), }, [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2), - [sym_interface_declaration] = STATE(2), - [sym_enum_declaration] = STATE(2), - [sym_class_declaration] = STATE(2), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(2), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(2), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(2), - [sym_compound_statement] = STATE(2), - [sym_named_label_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(53), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(53), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -17915,7 +17906,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(480), [aux_sym_trait_declaration_token1] = ACTIONS(31), [aux_sym_interface_declaration_token1] = ACTIONS(33), [aux_sym_enum_declaration_token1] = ACTIONS(35), @@ -17923,162 +17913,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_for_statement_token2] = ACTIONS(487), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [30] = { - [sym_empty_statement] = STATE(37), - [sym_function_static_declaration] = STATE(37), - [sym_global_declaration] = STATE(37), - [sym_namespace_definition] = STATE(37), - [sym_namespace_use_declaration] = STATE(37), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(37), - [sym_interface_declaration] = STATE(37), - [sym_enum_declaration] = STATE(37), - [sym_class_declaration] = STATE(37), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(37), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(37), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(37), - [sym_exit_statement] = STATE(37), - [sym_unset_statement] = STATE(37), - [sym_declare_statement] = STATE(37), - [sym_try_statement] = STATE(37), - [sym_goto_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_foreach_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(37), - [sym_compound_statement] = STATE(37), - [sym_named_label_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(37), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(490), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(489), [aux_sym_function_static_declaration_token1] = ACTIONS(15), [aux_sym_global_declaration_token1] = ACTIONS(17), [aux_sym_namespace_definition_token1] = ACTIONS(19), @@ -18090,166 +18085,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(491), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_for_statement_token2] = ACTIONS(482), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(493), }, [31] = { - [sym_empty_statement] = STATE(509), - [sym_function_static_declaration] = STATE(509), - [sym_global_declaration] = STATE(509), - [sym_namespace_definition] = STATE(509), - [sym_namespace_use_declaration] = STATE(509), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(509), - [sym_interface_declaration] = STATE(509), - [sym_enum_declaration] = STATE(509), - [sym_class_declaration] = STATE(509), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(509), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(509), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(509), - [sym_exit_statement] = STATE(509), - [sym_unset_statement] = STATE(509), - [sym_declare_statement] = STATE(509), - [sym_try_statement] = STATE(509), - [sym_goto_statement] = STATE(509), - [sym_continue_statement] = STATE(509), - [sym_break_statement] = STATE(509), - [sym_return_statement] = STATE(509), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(509), - [sym_do_statement] = STATE(509), - [sym_for_statement] = STATE(509), - [sym_foreach_statement] = STATE(509), - [sym_if_statement] = STATE(509), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(509), - [sym_compound_statement] = STATE(509), - [sym_named_label_statement] = STATE(509), - [sym_expression_statement] = STATE(509), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(2), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(484), + [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), @@ -18261,166 +18263,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(486), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(488), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_for_statement_token2] = ACTIONS(495), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), }, [32] = { - [sym_empty_statement] = STATE(27), - [sym_function_static_declaration] = STATE(27), - [sym_global_declaration] = STATE(27), - [sym_namespace_definition] = STATE(27), - [sym_namespace_use_declaration] = STATE(27), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(27), - [sym_interface_declaration] = STATE(27), - [sym_enum_declaration] = STATE(27), - [sym_class_declaration] = STATE(27), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(27), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(27), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(27), - [sym_exit_statement] = STATE(27), - [sym_unset_statement] = STATE(27), - [sym_declare_statement] = STATE(27), - [sym_try_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_foreach_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(27), - [sym_compound_statement] = STATE(27), - [sym_named_label_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(27), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(37), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(37), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -18431,6 +18437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(497), [aux_sym_trait_declaration_token1] = ACTIONS(31), [aux_sym_interface_declaration_token1] = ACTIONS(33), [aux_sym_enum_declaration_token1] = ACTIONS(35), @@ -18438,333 +18445,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_for_statement_token2] = ACTIONS(490), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [33] = { - [sym_empty_statement] = STATE(2053), - [sym_function_static_declaration] = STATE(2053), - [sym_global_declaration] = STATE(2053), - [sym_namespace_definition] = STATE(2053), - [sym_namespace_use_declaration] = STATE(2053), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2053), - [sym_interface_declaration] = STATE(2053), - [sym_enum_declaration] = STATE(2053), - [sym_class_declaration] = STATE(2053), - [sym_final_modifier] = STATE(1899), - [sym_abstract_modifier] = STATE(1899), - [sym_readonly_modifier] = STATE(2536), - [sym_const_declaration] = STATE(2053), - [sym__const_declaration] = STATE(2117), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2538), - [sym_function_definition] = STATE(2053), - [sym__function_definition_header] = STATE(2316), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2053), - [sym_exit_statement] = STATE(2053), - [sym_unset_statement] = STATE(2053), - [sym_declare_statement] = STATE(2053), - [sym_try_statement] = STATE(2053), - [sym_goto_statement] = STATE(2053), - [sym_continue_statement] = STATE(2053), - [sym_break_statement] = STATE(2053), - [sym_return_statement] = STATE(2053), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(2053), - [sym_do_statement] = STATE(2053), - [sym_for_statement] = STATE(2053), - [sym_foreach_statement] = STATE(2053), - [sym_if_statement] = STATE(2053), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(2053), - [sym_compound_statement] = STATE(2053), - [sym_named_label_statement] = STATE(2053), - [sym_expression_statement] = STATE(2053), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(492), - [aux_sym_function_static_declaration_token1] = ACTIONS(384), - [aux_sym_global_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_definition_token1] = ACTIONS(388), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(390), + [sym_statement] = STATE(514), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_colon_block] = STATE(2400), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), + [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(392), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(394), - [aux_sym_trait_declaration_token1] = ACTIONS(396), - [aux_sym_interface_declaration_token1] = ACTIONS(398), - [aux_sym_enum_declaration_token1] = ACTIONS(400), - [anon_sym_COLON] = ACTIONS(494), - [aux_sym_class_declaration_token1] = ACTIONS(402), + [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(397), + [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(404), - [aux_sym_exit_statement_token1] = ACTIONS(406), - [anon_sym_unset] = ACTIONS(408), - [aux_sym_declare_statement_token1] = ACTIONS(436), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(412), - [aux_sym_goto_statement_token1] = ACTIONS(414), - [aux_sym_continue_statement_token1] = ACTIONS(416), - [aux_sym_break_statement_token1] = ACTIONS(418), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(420), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(438), - [aux_sym_do_statement_token1] = ACTIONS(424), - [aux_sym_for_statement_token1] = ACTIONS(440), - [aux_sym_foreach_statement_token1] = ACTIONS(442), - [aux_sym_if_statement_token1] = ACTIONS(444), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(496), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), }, [34] = { - [sym_empty_statement] = STATE(2), - [sym_function_static_declaration] = STATE(2), - [sym_global_declaration] = STATE(2), - [sym_namespace_definition] = STATE(2), - [sym_namespace_use_declaration] = STATE(2), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2), - [sym_interface_declaration] = STATE(2), - [sym_enum_declaration] = STATE(2), - [sym_class_declaration] = STATE(2), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(2), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(2), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(2), - [sym_compound_statement] = STATE(2), - [sym_named_label_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(39), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(39), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -18782,163 +18798,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_for_statement_token2] = ACTIONS(490), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_for_statement_token2] = ACTIONS(495), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2), - [sym_interface_declaration] = STATE(2), - [sym_enum_declaration] = STATE(2), - [sym_class_declaration] = STATE(2), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(2), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(2), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(2), - [sym_compound_statement] = STATE(2), - [sym_named_label_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(490), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(489), [aux_sym_function_static_declaration_token1] = ACTIONS(15), [aux_sym_global_declaration_token1] = ACTIONS(17), [aux_sym_namespace_definition_token1] = ACTIONS(19), @@ -18947,168 +18967,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(498), [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(491), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(361), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(363), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(365), + [aux_sym_foreach_statement_token1] = ACTIONS(367), + [aux_sym_if_statement_token1] = ACTIONS(369), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(493), }, [36] = { - [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2), - [sym_interface_declaration] = STATE(2), - [sym_enum_declaration] = STATE(2), - [sym_class_declaration] = STATE(2), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(2), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(2), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(2), - [sym_compound_statement] = STATE(2), - [sym_named_label_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(425), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_colon_block] = STATE(1593), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -19122,165 +19148,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(499), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_for_statement_token2] = ACTIONS(500), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(361), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(363), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(365), + [aux_sym_foreach_statement_token1] = ACTIONS(367), + [aux_sym_if_statement_token1] = ACTIONS(369), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [37] = { - [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2), - [sym_interface_declaration] = STATE(2), - [sym_enum_declaration] = STATE(2), - [sym_class_declaration] = STATE(2), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(2), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(2), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(2), - [sym_compound_statement] = STATE(2), - [sym_named_label_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), + [sym_statement] = STATE(2), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(972), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -19291,6 +19322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(501), [aux_sym_trait_declaration_token1] = ACTIONS(31), [aux_sym_interface_declaration_token1] = ACTIONS(33), [aux_sym_enum_declaration_token1] = ACTIONS(35), @@ -19298,161 +19330,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_for_statement_token2] = ACTIONS(502), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [38] = { - [sym_empty_statement] = STATE(36), - [sym_function_static_declaration] = STATE(36), - [sym_global_declaration] = STATE(36), - [sym_namespace_definition] = STATE(36), - [sym_namespace_use_declaration] = STATE(36), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(36), - [sym_interface_declaration] = STATE(36), - [sym_enum_declaration] = STATE(36), - [sym_class_declaration] = STATE(36), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(36), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(36), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(36), - [sym_exit_statement] = STATE(36), - [sym_unset_statement] = STATE(36), - [sym_declare_statement] = STATE(36), - [sym_try_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_foreach_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(36), - [sym_compound_statement] = STATE(36), - [sym_named_label_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(36), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(2012), + [sym_empty_statement] = STATE(2075), + [sym_function_static_declaration] = STATE(2075), + [sym_global_declaration] = STATE(2075), + [sym_namespace_definition] = STATE(2075), + [sym_namespace_use_declaration] = STATE(2075), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(2075), + [sym_interface_declaration] = STATE(2075), + [sym_enum_declaration] = STATE(2075), + [sym_class_declaration] = STATE(2075), + [sym_final_modifier] = STATE(1349), + [sym_abstract_modifier] = STATE(1349), + [sym_readonly_modifier] = STATE(1349), + [sym_const_declaration] = STATE(2075), + [sym__const_declaration] = STATE(2076), + [sym__modifier] = STATE(1349), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1349), + [sym_function_definition] = STATE(2075), + [sym__function_definition_header] = STATE(2209), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(2075), + [sym_exit_statement] = STATE(2075), + [sym_unset_statement] = STATE(2075), + [sym_declare_statement] = STATE(2075), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(2075), + [sym_goto_statement] = STATE(2075), + [sym_continue_statement] = STATE(2075), + [sym_break_statement] = STATE(2075), + [sym_return_statement] = STATE(2075), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(2075), + [sym_do_statement] = STATE(2075), + [sym_for_statement] = STATE(2075), + [sym_foreach_statement] = STATE(2075), + [sym_if_statement] = STATE(2075), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(2075), + [sym_compound_statement] = STATE(2075), + [sym_named_label_statement] = STATE(2075), + [sym_expression_statement] = STATE(2075), + [sym_expression] = STATE(1227), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1340), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1349), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(503), + [aux_sym_function_static_declaration_token1] = ACTIONS(379), + [aux_sym_global_declaration_token1] = ACTIONS(381), + [aux_sym_namespace_definition_token1] = ACTIONS(383), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(389), + [aux_sym_trait_declaration_token1] = ACTIONS(391), + [aux_sym_interface_declaration_token1] = ACTIONS(393), + [aux_sym_enum_declaration_token1] = ACTIONS(395), + [anon_sym_COLON] = ACTIONS(505), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [sym_var_modifier] = ACTIONS(401), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(403), + [aux_sym_exit_statement_token1] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [aux_sym_declare_statement_token1] = ACTIONS(409), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(411), + [aux_sym_goto_statement_token1] = ACTIONS(413), + [aux_sym_continue_statement_token1] = ACTIONS(415), + [aux_sym_break_statement_token1] = ACTIONS(417), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(419), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(421), + [aux_sym_do_statement_token1] = ACTIONS(423), + [aux_sym_for_statement_token1] = ACTIONS(425), + [aux_sym_foreach_statement_token1] = ACTIONS(427), + [aux_sym_if_statement_token1] = ACTIONS(429), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(507), + }, + [39] = { + [sym_statement] = STATE(2), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -19470,161 +19683,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_for_statement_token2] = ACTIONS(502), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_for_statement_token2] = ACTIONS(509), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, - [39] = { - [sym_empty_statement] = STATE(66), - [sym_function_static_declaration] = STATE(66), - [sym_global_declaration] = STATE(66), - [sym_namespace_definition] = STATE(66), - [sym_namespace_use_declaration] = STATE(66), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(66), - [sym_interface_declaration] = STATE(66), - [sym_enum_declaration] = STATE(66), - [sym_class_declaration] = STATE(66), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(66), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(66), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(66), - [sym_exit_statement] = STATE(66), - [sym_unset_statement] = STATE(66), - [sym_declare_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_goto_statement] = STATE(66), - [sym_continue_statement] = STATE(66), - [sym_break_statement] = STATE(66), - [sym_return_statement] = STATE(66), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(66), - [sym_do_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_foreach_statement] = STATE(66), - [sym_if_statement] = STATE(66), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(66), - [sym_compound_statement] = STATE(66), - [sym_named_label_statement] = STATE(66), - [sym_expression_statement] = STATE(66), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(66), - [aux_sym_attribute_list_repeat1] = STATE(972), + [40] = { + [sym_statement] = STATE(43), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(43), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -19642,335 +19860,344 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_for_statement_token2] = ACTIONS(504), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_for_statement_token2] = ACTIONS(509), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, - [40] = { - [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2023), - [sym_interface_declaration] = STATE(2023), - [sym_enum_declaration] = STATE(2023), - [sym_class_declaration] = STATE(2023), - [sym_final_modifier] = STATE(1899), - [sym_abstract_modifier] = STATE(1899), - [sym_readonly_modifier] = STATE(2536), - [sym_const_declaration] = STATE(2023), - [sym__const_declaration] = STATE(2117), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2538), - [sym_function_definition] = STATE(2023), - [sym__function_definition_header] = STATE(2316), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2023), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(2023), - [sym_compound_statement] = STATE(2023), - [sym_named_label_statement] = STATE(2023), - [sym_expression_statement] = STATE(2023), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(506), - [aux_sym_function_static_declaration_token1] = ACTIONS(384), - [aux_sym_global_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_definition_token1] = ACTIONS(388), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(390), + [41] = { + [sym_statement] = STATE(1897), + [sym_empty_statement] = STATE(2075), + [sym_function_static_declaration] = STATE(2075), + [sym_global_declaration] = STATE(2075), + [sym_namespace_definition] = STATE(2075), + [sym_namespace_use_declaration] = STATE(2075), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(2075), + [sym_interface_declaration] = STATE(2075), + [sym_enum_declaration] = STATE(2075), + [sym_class_declaration] = STATE(2075), + [sym_final_modifier] = STATE(1349), + [sym_abstract_modifier] = STATE(1349), + [sym_readonly_modifier] = STATE(1349), + [sym_const_declaration] = STATE(2075), + [sym__const_declaration] = STATE(2076), + [sym__modifier] = STATE(1349), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1349), + [sym_function_definition] = STATE(2075), + [sym__function_definition_header] = STATE(2209), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(2075), + [sym_exit_statement] = STATE(2075), + [sym_unset_statement] = STATE(2075), + [sym_declare_statement] = STATE(2075), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(2075), + [sym_goto_statement] = STATE(2075), + [sym_continue_statement] = STATE(2075), + [sym_break_statement] = STATE(2075), + [sym_return_statement] = STATE(2075), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(2075), + [sym_do_statement] = STATE(2075), + [sym_for_statement] = STATE(2075), + [sym_foreach_statement] = STATE(2075), + [sym_if_statement] = STATE(2075), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(2075), + [sym_compound_statement] = STATE(2075), + [sym_named_label_statement] = STATE(2075), + [sym_expression_statement] = STATE(2075), + [sym_expression] = STATE(1227), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1340), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1349), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(511), + [aux_sym_function_static_declaration_token1] = ACTIONS(379), + [aux_sym_global_declaration_token1] = ACTIONS(381), + [aux_sym_namespace_definition_token1] = ACTIONS(383), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(392), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(394), - [aux_sym_trait_declaration_token1] = ACTIONS(396), - [aux_sym_interface_declaration_token1] = ACTIONS(398), - [aux_sym_enum_declaration_token1] = ACTIONS(400), - [anon_sym_COLON] = ACTIONS(508), - [aux_sym_class_declaration_token1] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(389), + [aux_sym_trait_declaration_token1] = ACTIONS(391), + [aux_sym_interface_declaration_token1] = ACTIONS(393), + [aux_sym_enum_declaration_token1] = ACTIONS(395), + [anon_sym_COLON] = ACTIONS(513), + [aux_sym_class_declaration_token1] = ACTIONS(399), [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(404), - [aux_sym_exit_statement_token1] = ACTIONS(406), - [anon_sym_unset] = ACTIONS(408), - [aux_sym_declare_statement_token1] = ACTIONS(436), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(412), - [aux_sym_goto_statement_token1] = ACTIONS(414), - [aux_sym_continue_statement_token1] = ACTIONS(416), - [aux_sym_break_statement_token1] = ACTIONS(418), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(420), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(438), - [aux_sym_do_statement_token1] = ACTIONS(424), - [aux_sym_for_statement_token1] = ACTIONS(440), - [aux_sym_foreach_statement_token1] = ACTIONS(442), - [aux_sym_if_statement_token1] = ACTIONS(444), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(510), + [sym_var_modifier] = ACTIONS(401), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(403), + [aux_sym_exit_statement_token1] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [aux_sym_declare_statement_token1] = ACTIONS(409), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(411), + [aux_sym_goto_statement_token1] = ACTIONS(413), + [aux_sym_continue_statement_token1] = ACTIONS(415), + [aux_sym_break_statement_token1] = ACTIONS(417), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(419), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(421), + [aux_sym_do_statement_token1] = ACTIONS(423), + [aux_sym_for_statement_token1] = ACTIONS(425), + [aux_sym_foreach_statement_token1] = ACTIONS(427), + [aux_sym_if_statement_token1] = ACTIONS(429), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(515), }, - [41] = { - [sym_empty_statement] = STATE(2), - [sym_function_static_declaration] = STATE(2), - [sym_global_declaration] = STATE(2), - [sym_namespace_definition] = STATE(2), - [sym_namespace_use_declaration] = STATE(2), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2), - [sym_interface_declaration] = STATE(2), - [sym_enum_declaration] = STATE(2), - [sym_class_declaration] = STATE(2), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(2), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(2), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(2), - [sym_compound_statement] = STATE(2), - [sym_named_label_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(972), + [42] = { + [sym_statement] = STATE(477), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(517), [aux_sym_function_static_declaration_token1] = ACTIONS(15), [aux_sym_global_declaration_token1] = ACTIONS(17), [aux_sym_namespace_definition_token1] = ACTIONS(19), @@ -19982,337 +20209,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(519), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_for_statement_token2] = ACTIONS(512), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - }, - [42] = { - [sym_empty_statement] = STATE(1985), - [sym_function_static_declaration] = STATE(1985), - [sym_global_declaration] = STATE(1985), - [sym_namespace_definition] = STATE(1985), - [sym_namespace_use_declaration] = STATE(1985), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(1985), - [sym_interface_declaration] = STATE(1985), - [sym_enum_declaration] = STATE(1985), - [sym_class_declaration] = STATE(1985), - [sym_final_modifier] = STATE(1899), - [sym_abstract_modifier] = STATE(1899), - [sym_readonly_modifier] = STATE(2536), - [sym_const_declaration] = STATE(1985), - [sym__const_declaration] = STATE(2117), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2538), - [sym_function_definition] = STATE(1985), - [sym__function_definition_header] = STATE(2316), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(1985), - [sym_exit_statement] = STATE(1985), - [sym_unset_statement] = STATE(1985), - [sym_declare_statement] = STATE(1985), - [sym_try_statement] = STATE(1985), - [sym_goto_statement] = STATE(1985), - [sym_continue_statement] = STATE(1985), - [sym_break_statement] = STATE(1985), - [sym_return_statement] = STATE(1985), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(1985), - [sym_do_statement] = STATE(1985), - [sym_for_statement] = STATE(1985), - [sym_foreach_statement] = STATE(1985), - [sym_if_statement] = STATE(1985), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(1985), - [sym_compound_statement] = STATE(1985), - [sym_named_label_statement] = STATE(1985), - [sym_expression_statement] = STATE(1985), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(514), - [aux_sym_function_static_declaration_token1] = ACTIONS(384), - [aux_sym_global_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_definition_token1] = ACTIONS(388), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(390), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(392), - [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(394), - [aux_sym_trait_declaration_token1] = ACTIONS(396), - [aux_sym_interface_declaration_token1] = ACTIONS(398), - [aux_sym_enum_declaration_token1] = ACTIONS(400), - [anon_sym_COLON] = ACTIONS(516), - [aux_sym_class_declaration_token1] = ACTIONS(402), - [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(404), - [aux_sym_exit_statement_token1] = ACTIONS(406), - [anon_sym_unset] = ACTIONS(408), - [aux_sym_declare_statement_token1] = ACTIONS(436), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(412), - [aux_sym_goto_statement_token1] = ACTIONS(414), - [aux_sym_continue_statement_token1] = ACTIONS(416), - [aux_sym_break_statement_token1] = ACTIONS(418), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(420), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(438), - [aux_sym_do_statement_token1] = ACTIONS(424), - [aux_sym_for_statement_token1] = ACTIONS(440), - [aux_sym_foreach_statement_token1] = ACTIONS(442), - [aux_sym_if_statement_token1] = ACTIONS(444), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(518), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(361), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(363), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(365), + [aux_sym_foreach_statement_token1] = ACTIONS(367), + [aux_sym_if_statement_token1] = ACTIONS(369), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(521), }, [43] = { - [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(424), - [sym_interface_declaration] = STATE(424), - [sym_enum_declaration] = STATE(424), - [sym_class_declaration] = STATE(424), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(424), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(424), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(424), - [sym_exit_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(1099), - [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(1578), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(424), - [sym_compound_statement] = STATE(424), - [sym_named_label_statement] = STATE(424), - [sym_expression_statement] = STATE(424), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(2), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -20326,338 +20387,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(474), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(341), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(343), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(345), - [aux_sym_foreach_statement_token1] = ACTIONS(347), - [aux_sym_if_statement_token1] = ACTIONS(349), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_for_statement_token2] = ACTIONS(523), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [44] = { - [sym_empty_statement] = STATE(1957), - [sym_function_static_declaration] = STATE(1957), - [sym_global_declaration] = STATE(1957), - [sym_namespace_definition] = STATE(1957), - [sym_namespace_use_declaration] = STATE(1957), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(1957), - [sym_interface_declaration] = STATE(1957), - [sym_enum_declaration] = STATE(1957), - [sym_class_declaration] = STATE(1957), - [sym_final_modifier] = STATE(1899), - [sym_abstract_modifier] = STATE(1899), - [sym_readonly_modifier] = STATE(2536), - [sym_const_declaration] = STATE(1957), - [sym__const_declaration] = STATE(2117), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2538), - [sym_function_definition] = STATE(1957), - [sym__function_definition_header] = STATE(2316), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(1957), - [sym_exit_statement] = STATE(1957), - [sym_unset_statement] = STATE(1957), - [sym_declare_statement] = STATE(1957), - [sym_try_statement] = STATE(1957), - [sym_goto_statement] = STATE(1957), - [sym_continue_statement] = STATE(1957), - [sym_break_statement] = STATE(1957), - [sym_return_statement] = STATE(1957), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(1957), - [sym_do_statement] = STATE(1957), - [sym_for_statement] = STATE(1957), - [sym_foreach_statement] = STATE(1957), - [sym_if_statement] = STATE(1957), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(1957), - [sym_compound_statement] = STATE(1957), - [sym_named_label_statement] = STATE(1957), - [sym_expression_statement] = STATE(1957), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(520), - [aux_sym_function_static_declaration_token1] = ACTIONS(384), - [aux_sym_global_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_definition_token1] = ACTIONS(388), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(390), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(392), - [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(394), - [aux_sym_trait_declaration_token1] = ACTIONS(396), - [aux_sym_interface_declaration_token1] = ACTIONS(398), - [aux_sym_enum_declaration_token1] = ACTIONS(400), - [anon_sym_COLON] = ACTIONS(522), - [aux_sym_class_declaration_token1] = ACTIONS(402), - [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(404), - [aux_sym_exit_statement_token1] = ACTIONS(406), - [anon_sym_unset] = ACTIONS(408), - [aux_sym_declare_statement_token1] = ACTIONS(410), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(412), - [aux_sym_goto_statement_token1] = ACTIONS(414), - [aux_sym_continue_statement_token1] = ACTIONS(416), - [aux_sym_break_statement_token1] = ACTIONS(418), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(420), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(422), - [aux_sym_do_statement_token1] = ACTIONS(424), - [aux_sym_for_statement_token1] = ACTIONS(426), - [aux_sym_foreach_statement_token1] = ACTIONS(428), - [aux_sym_if_statement_token1] = ACTIONS(430), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(524), - }, - [45] = { - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_enum_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(476), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(476), - [sym_exit_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(45), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(45), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(526), + [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), @@ -20669,166 +20564,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(528), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(341), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(343), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(345), - [aux_sym_foreach_statement_token1] = ACTIONS(347), - [aux_sym_if_statement_token1] = ACTIONS(349), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(530), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_for_statement_token2] = ACTIONS(523), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), }, - [46] = { - [sym_empty_statement] = STATE(425), - [sym_function_static_declaration] = STATE(425), - [sym_global_declaration] = STATE(425), - [sym_namespace_definition] = STATE(425), - [sym_namespace_use_declaration] = STATE(425), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(425), - [sym_interface_declaration] = STATE(425), - [sym_enum_declaration] = STATE(425), - [sym_class_declaration] = STATE(425), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(425), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(425), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(425), - [sym_exit_statement] = STATE(425), - [sym_unset_statement] = STATE(425), - [sym_declare_statement] = STATE(425), - [sym_try_statement] = STATE(425), - [sym_goto_statement] = STATE(425), - [sym_continue_statement] = STATE(425), - [sym_break_statement] = STATE(425), - [sym_return_statement] = STATE(425), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(425), - [sym_do_statement] = STATE(425), - [sym_for_statement] = STATE(425), - [sym_foreach_statement] = STATE(425), - [sym_if_statement] = STATE(425), - [sym_colon_block] = STATE(1578), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(425), - [sym_compound_statement] = STATE(425), - [sym_named_label_statement] = STATE(425), - [sym_expression_statement] = STATE(425), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), + [45] = { + [sym_statement] = STATE(2), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -20842,681 +20741,878 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(474), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(341), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(343), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(345), - [aux_sym_foreach_statement_token1] = ACTIONS(347), - [aux_sym_if_statement_token1] = ACTIONS(349), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_for_statement_token2] = ACTIONS(525), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, + [46] = { + [sym_statement] = STATE(1925), + [sym_empty_statement] = STATE(2075), + [sym_function_static_declaration] = STATE(2075), + [sym_global_declaration] = STATE(2075), + [sym_namespace_definition] = STATE(2075), + [sym_namespace_use_declaration] = STATE(2075), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(2075), + [sym_interface_declaration] = STATE(2075), + [sym_enum_declaration] = STATE(2075), + [sym_class_declaration] = STATE(2075), + [sym_final_modifier] = STATE(1349), + [sym_abstract_modifier] = STATE(1349), + [sym_readonly_modifier] = STATE(1349), + [sym_const_declaration] = STATE(2075), + [sym__const_declaration] = STATE(2076), + [sym__modifier] = STATE(1349), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1349), + [sym_function_definition] = STATE(2075), + [sym__function_definition_header] = STATE(2209), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(2075), + [sym_exit_statement] = STATE(2075), + [sym_unset_statement] = STATE(2075), + [sym_declare_statement] = STATE(2075), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(2075), + [sym_goto_statement] = STATE(2075), + [sym_continue_statement] = STATE(2075), + [sym_break_statement] = STATE(2075), + [sym_return_statement] = STATE(2075), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(2075), + [sym_do_statement] = STATE(2075), + [sym_for_statement] = STATE(2075), + [sym_foreach_statement] = STATE(2075), + [sym_if_statement] = STATE(2075), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(2075), + [sym_compound_statement] = STATE(2075), + [sym_named_label_statement] = STATE(2075), + [sym_expression_statement] = STATE(2075), + [sym_expression] = STATE(1227), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1340), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1349), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(527), + [aux_sym_function_static_declaration_token1] = ACTIONS(379), + [aux_sym_global_declaration_token1] = ACTIONS(381), + [aux_sym_namespace_definition_token1] = ACTIONS(383), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(389), + [aux_sym_trait_declaration_token1] = ACTIONS(391), + [aux_sym_interface_declaration_token1] = ACTIONS(393), + [aux_sym_enum_declaration_token1] = ACTIONS(395), + [anon_sym_COLON] = ACTIONS(529), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [sym_var_modifier] = ACTIONS(401), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(403), + [aux_sym_exit_statement_token1] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [aux_sym_declare_statement_token1] = ACTIONS(409), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(411), + [aux_sym_goto_statement_token1] = ACTIONS(413), + [aux_sym_continue_statement_token1] = ACTIONS(415), + [aux_sym_break_statement_token1] = ACTIONS(417), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(419), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(421), + [aux_sym_do_statement_token1] = ACTIONS(423), + [aux_sym_for_statement_token1] = ACTIONS(425), + [aux_sym_foreach_statement_token1] = ACTIONS(427), + [aux_sym_if_statement_token1] = ACTIONS(429), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(531), + }, [47] = { - [sym_empty_statement] = STATE(1985), - [sym_function_static_declaration] = STATE(1985), - [sym_global_declaration] = STATE(1985), - [sym_namespace_definition] = STATE(1985), - [sym_namespace_use_declaration] = STATE(1985), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(1985), - [sym_interface_declaration] = STATE(1985), - [sym_enum_declaration] = STATE(1985), - [sym_class_declaration] = STATE(1985), - [sym_final_modifier] = STATE(1899), - [sym_abstract_modifier] = STATE(1899), - [sym_readonly_modifier] = STATE(2536), - [sym_const_declaration] = STATE(1985), - [sym__const_declaration] = STATE(2117), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2538), - [sym_function_definition] = STATE(1985), - [sym__function_definition_header] = STATE(2316), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(1985), - [sym_exit_statement] = STATE(1985), - [sym_unset_statement] = STATE(1985), - [sym_declare_statement] = STATE(1985), - [sym_try_statement] = STATE(1985), - [sym_goto_statement] = STATE(1985), - [sym_continue_statement] = STATE(1985), - [sym_break_statement] = STATE(1985), - [sym_return_statement] = STATE(1985), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(1985), - [sym_do_statement] = STATE(1985), - [sym_for_statement] = STATE(1985), - [sym_foreach_statement] = STATE(1985), - [sym_if_statement] = STATE(1985), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(1985), - [sym_compound_statement] = STATE(1985), - [sym_named_label_statement] = STATE(1985), - [sym_expression_statement] = STATE(1985), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(514), - [aux_sym_function_static_declaration_token1] = ACTIONS(384), - [aux_sym_global_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_definition_token1] = ACTIONS(388), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(390), + [sym_statement] = STATE(1610), + [sym_empty_statement] = STATE(2075), + [sym_function_static_declaration] = STATE(2075), + [sym_global_declaration] = STATE(2075), + [sym_namespace_definition] = STATE(2075), + [sym_namespace_use_declaration] = STATE(2075), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(2075), + [sym_interface_declaration] = STATE(2075), + [sym_enum_declaration] = STATE(2075), + [sym_class_declaration] = STATE(2075), + [sym_final_modifier] = STATE(1349), + [sym_abstract_modifier] = STATE(1349), + [sym_readonly_modifier] = STATE(1349), + [sym_const_declaration] = STATE(2075), + [sym__const_declaration] = STATE(2076), + [sym__modifier] = STATE(1349), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1349), + [sym_function_definition] = STATE(2075), + [sym__function_definition_header] = STATE(2209), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(2075), + [sym_exit_statement] = STATE(2075), + [sym_unset_statement] = STATE(2075), + [sym_declare_statement] = STATE(2075), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(2075), + [sym_goto_statement] = STATE(2075), + [sym_continue_statement] = STATE(2075), + [sym_break_statement] = STATE(2075), + [sym_return_statement] = STATE(2075), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(2075), + [sym_do_statement] = STATE(2075), + [sym_for_statement] = STATE(2075), + [sym_foreach_statement] = STATE(2075), + [sym_if_statement] = STATE(2075), + [sym_colon_block] = STATE(1632), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(2075), + [sym_compound_statement] = STATE(2075), + [sym_named_label_statement] = STATE(2075), + [sym_expression_statement] = STATE(2075), + [sym_expression] = STATE(1227), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1340), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1349), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(459), + [aux_sym_function_static_declaration_token1] = ACTIONS(379), + [aux_sym_global_declaration_token1] = ACTIONS(381), + [aux_sym_namespace_definition_token1] = ACTIONS(383), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(392), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(394), - [aux_sym_trait_declaration_token1] = ACTIONS(396), - [aux_sym_interface_declaration_token1] = ACTIONS(398), - [aux_sym_enum_declaration_token1] = ACTIONS(400), - [anon_sym_COLON] = ACTIONS(516), - [aux_sym_class_declaration_token1] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(389), + [aux_sym_trait_declaration_token1] = ACTIONS(391), + [aux_sym_interface_declaration_token1] = ACTIONS(393), + [aux_sym_enum_declaration_token1] = ACTIONS(395), + [anon_sym_COLON] = ACTIONS(499), + [aux_sym_class_declaration_token1] = ACTIONS(399), [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(404), - [aux_sym_exit_statement_token1] = ACTIONS(406), - [anon_sym_unset] = ACTIONS(408), - [aux_sym_declare_statement_token1] = ACTIONS(410), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(412), - [aux_sym_goto_statement_token1] = ACTIONS(414), - [aux_sym_continue_statement_token1] = ACTIONS(416), - [aux_sym_break_statement_token1] = ACTIONS(418), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(420), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(422), - [aux_sym_do_statement_token1] = ACTIONS(424), - [aux_sym_for_statement_token1] = ACTIONS(426), - [aux_sym_foreach_statement_token1] = ACTIONS(428), - [aux_sym_if_statement_token1] = ACTIONS(430), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(518), + [sym_var_modifier] = ACTIONS(401), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(403), + [aux_sym_exit_statement_token1] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [aux_sym_declare_statement_token1] = ACTIONS(409), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(411), + [aux_sym_goto_statement_token1] = ACTIONS(413), + [aux_sym_continue_statement_token1] = ACTIONS(415), + [aux_sym_break_statement_token1] = ACTIONS(417), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(419), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(421), + [aux_sym_do_statement_token1] = ACTIONS(423), + [aux_sym_for_statement_token1] = ACTIONS(425), + [aux_sym_foreach_statement_token1] = ACTIONS(427), + [aux_sym_if_statement_token1] = ACTIONS(429), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), }, [48] = { - [sym_empty_statement] = STATE(1957), - [sym_function_static_declaration] = STATE(1957), - [sym_global_declaration] = STATE(1957), - [sym_namespace_definition] = STATE(1957), - [sym_namespace_use_declaration] = STATE(1957), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(1957), - [sym_interface_declaration] = STATE(1957), - [sym_enum_declaration] = STATE(1957), - [sym_class_declaration] = STATE(1957), - [sym_final_modifier] = STATE(1899), - [sym_abstract_modifier] = STATE(1899), - [sym_readonly_modifier] = STATE(2536), - [sym_const_declaration] = STATE(1957), - [sym__const_declaration] = STATE(2117), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2538), - [sym_function_definition] = STATE(1957), - [sym__function_definition_header] = STATE(2316), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(1957), - [sym_exit_statement] = STATE(1957), - [sym_unset_statement] = STATE(1957), - [sym_declare_statement] = STATE(1957), - [sym_try_statement] = STATE(1957), - [sym_goto_statement] = STATE(1957), - [sym_continue_statement] = STATE(1957), - [sym_break_statement] = STATE(1957), - [sym_return_statement] = STATE(1957), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(1957), - [sym_do_statement] = STATE(1957), - [sym_for_statement] = STATE(1957), - [sym_foreach_statement] = STATE(1957), - [sym_if_statement] = STATE(1957), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(1957), - [sym_compound_statement] = STATE(1957), - [sym_named_label_statement] = STATE(1957), - [sym_expression_statement] = STATE(1957), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(520), - [aux_sym_function_static_declaration_token1] = ACTIONS(384), - [aux_sym_global_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_definition_token1] = ACTIONS(388), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(390), + [sym_statement] = STATE(1909), + [sym_empty_statement] = STATE(2075), + [sym_function_static_declaration] = STATE(2075), + [sym_global_declaration] = STATE(2075), + [sym_namespace_definition] = STATE(2075), + [sym_namespace_use_declaration] = STATE(2075), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(2075), + [sym_interface_declaration] = STATE(2075), + [sym_enum_declaration] = STATE(2075), + [sym_class_declaration] = STATE(2075), + [sym_final_modifier] = STATE(1349), + [sym_abstract_modifier] = STATE(1349), + [sym_readonly_modifier] = STATE(1349), + [sym_const_declaration] = STATE(2075), + [sym__const_declaration] = STATE(2076), + [sym__modifier] = STATE(1349), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1349), + [sym_function_definition] = STATE(2075), + [sym__function_definition_header] = STATE(2209), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(2075), + [sym_exit_statement] = STATE(2075), + [sym_unset_statement] = STATE(2075), + [sym_declare_statement] = STATE(2075), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(2075), + [sym_goto_statement] = STATE(2075), + [sym_continue_statement] = STATE(2075), + [sym_break_statement] = STATE(2075), + [sym_return_statement] = STATE(2075), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(2075), + [sym_do_statement] = STATE(2075), + [sym_for_statement] = STATE(2075), + [sym_foreach_statement] = STATE(2075), + [sym_if_statement] = STATE(2075), + [sym_colon_block] = STATE(2484), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(2075), + [sym_compound_statement] = STATE(2075), + [sym_named_label_statement] = STATE(2075), + [sym_expression_statement] = STATE(2075), + [sym_expression] = STATE(1227), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1340), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1349), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(459), + [aux_sym_function_static_declaration_token1] = ACTIONS(379), + [aux_sym_global_declaration_token1] = ACTIONS(381), + [aux_sym_namespace_definition_token1] = ACTIONS(383), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(392), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(394), - [aux_sym_trait_declaration_token1] = ACTIONS(396), - [aux_sym_interface_declaration_token1] = ACTIONS(398), - [aux_sym_enum_declaration_token1] = ACTIONS(400), - [anon_sym_COLON] = ACTIONS(522), - [aux_sym_class_declaration_token1] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(389), + [aux_sym_trait_declaration_token1] = ACTIONS(391), + [aux_sym_interface_declaration_token1] = ACTIONS(393), + [aux_sym_enum_declaration_token1] = ACTIONS(395), + [anon_sym_COLON] = ACTIONS(397), + [aux_sym_class_declaration_token1] = ACTIONS(399), [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(404), - [aux_sym_exit_statement_token1] = ACTIONS(406), - [anon_sym_unset] = ACTIONS(408), - [aux_sym_declare_statement_token1] = ACTIONS(436), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(412), - [aux_sym_goto_statement_token1] = ACTIONS(414), - [aux_sym_continue_statement_token1] = ACTIONS(416), - [aux_sym_break_statement_token1] = ACTIONS(418), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(420), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(438), - [aux_sym_do_statement_token1] = ACTIONS(424), - [aux_sym_for_statement_token1] = ACTIONS(440), - [aux_sym_foreach_statement_token1] = ACTIONS(442), - [aux_sym_if_statement_token1] = ACTIONS(444), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(524), + [sym_var_modifier] = ACTIONS(401), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(403), + [aux_sym_exit_statement_token1] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [aux_sym_declare_statement_token1] = ACTIONS(409), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(411), + [aux_sym_goto_statement_token1] = ACTIONS(413), + [aux_sym_continue_statement_token1] = ACTIONS(415), + [aux_sym_break_statement_token1] = ACTIONS(417), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(419), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(421), + [aux_sym_do_statement_token1] = ACTIONS(423), + [aux_sym_for_statement_token1] = ACTIONS(425), + [aux_sym_foreach_statement_token1] = ACTIONS(427), + [aux_sym_if_statement_token1] = ACTIONS(429), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), }, [49] = { - [sym_empty_statement] = STATE(68), - [sym_function_static_declaration] = STATE(68), - [sym_global_declaration] = STATE(68), - [sym_namespace_definition] = STATE(68), - [sym_namespace_use_declaration] = STATE(68), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(68), - [sym_interface_declaration] = STATE(68), - [sym_enum_declaration] = STATE(68), - [sym_class_declaration] = STATE(68), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(68), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(68), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(68), - [sym_exit_statement] = STATE(68), - [sym_unset_statement] = STATE(68), - [sym_declare_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_goto_statement] = STATE(68), - [sym_continue_statement] = STATE(68), - [sym_break_statement] = STATE(68), - [sym_return_statement] = STATE(68), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(68), - [sym_do_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_foreach_statement] = STATE(68), - [sym_if_statement] = STATE(68), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(68), - [sym_compound_statement] = STATE(68), - [sym_named_label_statement] = STATE(68), - [sym_expression_statement] = STATE(68), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(68), - [aux_sym_attribute_list_repeat1] = STATE(972), - [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), + [sym_statement] = STATE(1925), + [sym_empty_statement] = STATE(2075), + [sym_function_static_declaration] = STATE(2075), + [sym_global_declaration] = STATE(2075), + [sym_namespace_definition] = STATE(2075), + [sym_namespace_use_declaration] = STATE(2075), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(2075), + [sym_interface_declaration] = STATE(2075), + [sym_enum_declaration] = STATE(2075), + [sym_class_declaration] = STATE(2075), + [sym_final_modifier] = STATE(1349), + [sym_abstract_modifier] = STATE(1349), + [sym_readonly_modifier] = STATE(1349), + [sym_const_declaration] = STATE(2075), + [sym__const_declaration] = STATE(2076), + [sym__modifier] = STATE(1349), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1349), + [sym_function_definition] = STATE(2075), + [sym__function_definition_header] = STATE(2209), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(2075), + [sym_exit_statement] = STATE(2075), + [sym_unset_statement] = STATE(2075), + [sym_declare_statement] = STATE(2075), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(2075), + [sym_goto_statement] = STATE(2075), + [sym_continue_statement] = STATE(2075), + [sym_break_statement] = STATE(2075), + [sym_return_statement] = STATE(2075), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(2075), + [sym_do_statement] = STATE(2075), + [sym_for_statement] = STATE(2075), + [sym_foreach_statement] = STATE(2075), + [sym_if_statement] = STATE(2075), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(2075), + [sym_compound_statement] = STATE(2075), + [sym_named_label_statement] = STATE(2075), + [sym_expression_statement] = STATE(2075), + [sym_expression] = STATE(1227), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1340), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1349), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(527), + [aux_sym_function_static_declaration_token1] = ACTIONS(379), + [aux_sym_global_declaration_token1] = ACTIONS(381), + [aux_sym_namespace_definition_token1] = ACTIONS(383), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(532), - [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), + [anon_sym_LBRACE] = ACTIONS(389), + [aux_sym_trait_declaration_token1] = ACTIONS(391), + [aux_sym_interface_declaration_token1] = ACTIONS(393), + [aux_sym_enum_declaration_token1] = ACTIONS(395), + [anon_sym_COLON] = ACTIONS(529), + [aux_sym_class_declaration_token1] = ACTIONS(399), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), + [sym_var_modifier] = ACTIONS(401), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(403), + [aux_sym_exit_statement_token1] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(411), + [aux_sym_goto_statement_token1] = ACTIONS(413), + [aux_sym_continue_statement_token1] = ACTIONS(415), + [aux_sym_break_statement_token1] = ACTIONS(417), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(419), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(423), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(531), }, [50] = { - [sym_empty_statement] = STATE(495), - [sym_function_static_declaration] = STATE(495), - [sym_global_declaration] = STATE(495), - [sym_namespace_definition] = STATE(495), - [sym_namespace_use_declaration] = STATE(495), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(495), - [sym_interface_declaration] = STATE(495), - [sym_enum_declaration] = STATE(495), - [sym_class_declaration] = STATE(495), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(495), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(495), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(495), - [sym_exit_statement] = STATE(495), - [sym_unset_statement] = STATE(495), - [sym_declare_statement] = STATE(495), - [sym_try_statement] = STATE(495), - [sym_goto_statement] = STATE(495), - [sym_continue_statement] = STATE(495), - [sym_break_statement] = STATE(495), - [sym_return_statement] = STATE(495), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(495), - [sym_do_statement] = STATE(495), - [sym_for_statement] = STATE(495), - [sym_foreach_statement] = STATE(495), - [sym_if_statement] = STATE(495), - [sym_colon_block] = STATE(2478), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(495), - [sym_compound_statement] = STATE(495), - [sym_named_label_statement] = STATE(495), - [sym_expression_statement] = STATE(495), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(428), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_colon_block] = STATE(1593), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -21530,167 +21626,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(372), + [anon_sym_COLON] = ACTIONS(499), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(361), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(363), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(365), + [aux_sym_foreach_statement_token1] = ACTIONS(367), + [aux_sym_if_statement_token1] = ACTIONS(369), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [51] = { - [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(70), - [sym_interface_declaration] = STATE(70), - [sym_enum_declaration] = STATE(70), - [sym_class_declaration] = STATE(70), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(70), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(70), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(70), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(70), - [sym_compound_statement] = STATE(70), - [sym_named_label_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(70), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(1897), + [sym_empty_statement] = STATE(2075), + [sym_function_static_declaration] = STATE(2075), + [sym_global_declaration] = STATE(2075), + [sym_namespace_definition] = STATE(2075), + [sym_namespace_use_declaration] = STATE(2075), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(2075), + [sym_interface_declaration] = STATE(2075), + [sym_enum_declaration] = STATE(2075), + [sym_class_declaration] = STATE(2075), + [sym_final_modifier] = STATE(1349), + [sym_abstract_modifier] = STATE(1349), + [sym_readonly_modifier] = STATE(1349), + [sym_const_declaration] = STATE(2075), + [sym__const_declaration] = STATE(2076), + [sym__modifier] = STATE(1349), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1349), + [sym_function_definition] = STATE(2075), + [sym__function_definition_header] = STATE(2209), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(2075), + [sym_exit_statement] = STATE(2075), + [sym_unset_statement] = STATE(2075), + [sym_declare_statement] = STATE(2075), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(2075), + [sym_goto_statement] = STATE(2075), + [sym_continue_statement] = STATE(2075), + [sym_break_statement] = STATE(2075), + [sym_return_statement] = STATE(2075), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(2075), + [sym_do_statement] = STATE(2075), + [sym_for_statement] = STATE(2075), + [sym_foreach_statement] = STATE(2075), + [sym_if_statement] = STATE(2075), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(2075), + [sym_compound_statement] = STATE(2075), + [sym_named_label_statement] = STATE(2075), + [sym_expression_statement] = STATE(2075), + [sym_expression] = STATE(1227), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1340), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1349), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(511), + [aux_sym_function_static_declaration_token1] = ACTIONS(379), + [aux_sym_global_declaration_token1] = ACTIONS(381), + [aux_sym_namespace_definition_token1] = ACTIONS(383), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(389), + [aux_sym_trait_declaration_token1] = ACTIONS(391), + [aux_sym_interface_declaration_token1] = ACTIONS(393), + [aux_sym_enum_declaration_token1] = ACTIONS(395), + [anon_sym_COLON] = ACTIONS(513), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [sym_var_modifier] = ACTIONS(401), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(403), + [aux_sym_exit_statement_token1] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(411), + [aux_sym_goto_statement_token1] = ACTIONS(413), + [aux_sym_continue_statement_token1] = ACTIONS(415), + [aux_sym_break_statement_token1] = ACTIONS(417), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(419), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(423), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(515), + }, + [52] = { + [sym_statement] = STATE(493), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(533), [aux_sym_function_static_declaration_token1] = ACTIONS(15), [aux_sym_global_declaration_token1] = ACTIONS(17), [aux_sym_namespace_definition_token1] = ACTIONS(19), @@ -21702,338 +21979,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(535), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [aux_sym_declare_statement_token2] = ACTIONS(534), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - }, - [52] = { - [sym_empty_statement] = STATE(1949), - [sym_function_static_declaration] = STATE(1949), - [sym_global_declaration] = STATE(1949), - [sym_namespace_definition] = STATE(1949), - [sym_namespace_use_declaration] = STATE(1949), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(1949), - [sym_interface_declaration] = STATE(1949), - [sym_enum_declaration] = STATE(1949), - [sym_class_declaration] = STATE(1949), - [sym_final_modifier] = STATE(1899), - [sym_abstract_modifier] = STATE(1899), - [sym_readonly_modifier] = STATE(2536), - [sym_const_declaration] = STATE(1949), - [sym__const_declaration] = STATE(2117), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2538), - [sym_function_definition] = STATE(1949), - [sym__function_definition_header] = STATE(2316), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(1949), - [sym_exit_statement] = STATE(1949), - [sym_unset_statement] = STATE(1949), - [sym_declare_statement] = STATE(1949), - [sym_try_statement] = STATE(1949), - [sym_goto_statement] = STATE(1949), - [sym_continue_statement] = STATE(1949), - [sym_break_statement] = STATE(1949), - [sym_return_statement] = STATE(1949), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(1949), - [sym_do_statement] = STATE(1949), - [sym_for_statement] = STATE(1949), - [sym_foreach_statement] = STATE(1949), - [sym_if_statement] = STATE(1949), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(1949), - [sym_compound_statement] = STATE(1949), - [sym_named_label_statement] = STATE(1949), - [sym_expression_statement] = STATE(1949), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(464), - [aux_sym_function_static_declaration_token1] = ACTIONS(384), - [aux_sym_global_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_definition_token1] = ACTIONS(388), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(390), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(392), - [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(394), - [aux_sym_trait_declaration_token1] = ACTIONS(396), - [aux_sym_interface_declaration_token1] = ACTIONS(398), - [aux_sym_enum_declaration_token1] = ACTIONS(400), - [anon_sym_COLON] = ACTIONS(466), - [aux_sym_class_declaration_token1] = ACTIONS(402), - [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(404), - [aux_sym_exit_statement_token1] = ACTIONS(406), - [anon_sym_unset] = ACTIONS(408), - [aux_sym_declare_statement_token1] = ACTIONS(436), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(412), - [aux_sym_goto_statement_token1] = ACTIONS(414), - [aux_sym_continue_statement_token1] = ACTIONS(416), - [aux_sym_break_statement_token1] = ACTIONS(418), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(420), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(438), - [aux_sym_do_statement_token1] = ACTIONS(424), - [aux_sym_for_statement_token1] = ACTIONS(440), - [aux_sym_foreach_statement_token1] = ACTIONS(442), - [aux_sym_if_statement_token1] = ACTIONS(444), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(468), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(537), }, [53] = { - [sym_empty_statement] = STATE(560), - [sym_function_static_declaration] = STATE(560), - [sym_global_declaration] = STATE(560), - [sym_namespace_definition] = STATE(560), - [sym_namespace_use_declaration] = STATE(560), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(560), - [sym_interface_declaration] = STATE(560), - [sym_enum_declaration] = STATE(560), - [sym_class_declaration] = STATE(560), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(560), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(560), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(560), - [sym_exit_statement] = STATE(560), - [sym_unset_statement] = STATE(560), - [sym_declare_statement] = STATE(560), - [sym_try_statement] = STATE(560), - [sym_goto_statement] = STATE(560), - [sym_continue_statement] = STATE(560), - [sym_break_statement] = STATE(560), - [sym_return_statement] = STATE(560), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(560), - [sym_do_statement] = STATE(560), - [sym_for_statement] = STATE(560), - [sym_foreach_statement] = STATE(560), - [sym_if_statement] = STATE(560), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(560), - [sym_compound_statement] = STATE(560), - [sym_named_label_statement] = STATE(560), - [sym_expression_statement] = STATE(560), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(2), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(536), + [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), @@ -22045,167 +22157,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(538), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(540), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_for_statement_token2] = ACTIONS(539), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), }, [54] = { - [sym_empty_statement] = STATE(509), - [sym_function_static_declaration] = STATE(509), - [sym_global_declaration] = STATE(509), - [sym_namespace_definition] = STATE(509), - [sym_namespace_use_declaration] = STATE(509), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(509), - [sym_interface_declaration] = STATE(509), - [sym_enum_declaration] = STATE(509), - [sym_class_declaration] = STATE(509), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(509), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(509), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(509), - [sym_exit_statement] = STATE(509), - [sym_unset_statement] = STATE(509), - [sym_declare_statement] = STATE(509), - [sym_try_statement] = STATE(509), - [sym_goto_statement] = STATE(509), - [sym_continue_statement] = STATE(509), - [sym_break_statement] = STATE(509), - [sym_return_statement] = STATE(509), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(509), - [sym_do_statement] = STATE(509), - [sym_for_statement] = STATE(509), - [sym_foreach_statement] = STATE(509), - [sym_if_statement] = STATE(509), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(509), - [sym_compound_statement] = STATE(509), - [sym_named_label_statement] = STATE(509), - [sym_expression_statement] = STATE(509), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(19), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(484), + [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), @@ -22217,168 +22334,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(486), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(341), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(343), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(345), - [aux_sym_foreach_statement_token1] = ACTIONS(347), - [aux_sym_if_statement_token1] = ACTIONS(349), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(488), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_for_statement_token2] = ACTIONS(539), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), }, [55] = { - [sym_empty_statement] = STATE(495), - [sym_function_static_declaration] = STATE(495), - [sym_global_declaration] = STATE(495), - [sym_namespace_definition] = STATE(495), - [sym_namespace_use_declaration] = STATE(495), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(495), - [sym_interface_declaration] = STATE(495), - [sym_enum_declaration] = STATE(495), - [sym_class_declaration] = STATE(495), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(495), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(495), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(495), - [sym_exit_statement] = STATE(495), - [sym_unset_statement] = STATE(495), - [sym_declare_statement] = STATE(495), - [sym_try_statement] = STATE(495), - [sym_goto_statement] = STATE(495), - [sym_continue_statement] = STATE(495), - [sym_break_statement] = STATE(495), - [sym_return_statement] = STATE(495), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(495), - [sym_do_statement] = STATE(495), - [sym_for_statement] = STATE(495), - [sym_foreach_statement] = STATE(495), - [sym_if_statement] = STATE(495), - [sym_colon_block] = STATE(2478), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(495), - [sym_compound_statement] = STATE(495), - [sym_named_label_statement] = STATE(495), - [sym_expression_statement] = STATE(495), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(493), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(533), [aux_sym_function_static_declaration_token1] = ACTIONS(15), [aux_sym_global_declaration_token1] = ACTIONS(17), [aux_sym_namespace_definition_token1] = ACTIONS(19), @@ -22390,166 +22510,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(372), + [anon_sym_COLON] = ACTIONS(535), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(341), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(343), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(345), - [aux_sym_foreach_statement_token1] = ACTIONS(347), - [aux_sym_if_statement_token1] = ACTIONS(349), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(361), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(363), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(365), + [aux_sym_foreach_statement_token1] = ACTIONS(367), + [aux_sym_if_statement_token1] = ACTIONS(369), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(537), }, [56] = { - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_enum_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(476), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(476), - [sym_exit_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(477), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(517), [aux_sym_function_static_declaration_token1] = ACTIONS(15), [aux_sym_global_declaration_token1] = ACTIONS(17), [aux_sym_namespace_definition_token1] = ACTIONS(19), @@ -22561,167 +22687,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(528), + [anon_sym_COLON] = ACTIONS(519), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(530), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(521), }, [57] = { - [sym_empty_statement] = STATE(560), - [sym_function_static_declaration] = STATE(560), - [sym_global_declaration] = STATE(560), - [sym_namespace_definition] = STATE(560), - [sym_namespace_use_declaration] = STATE(560), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(560), - [sym_interface_declaration] = STATE(560), - [sym_enum_declaration] = STATE(560), - [sym_class_declaration] = STATE(560), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(560), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(560), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(560), - [sym_exit_statement] = STATE(560), - [sym_unset_statement] = STATE(560), - [sym_declare_statement] = STATE(560), - [sym_try_statement] = STATE(560), - [sym_goto_statement] = STATE(560), - [sym_continue_statement] = STATE(560), - [sym_break_statement] = STATE(560), - [sym_return_statement] = STATE(560), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(560), - [sym_do_statement] = STATE(560), - [sym_for_statement] = STATE(560), - [sym_foreach_statement] = STATE(560), - [sym_if_statement] = STATE(560), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(560), - [sym_compound_statement] = STATE(560), - [sym_named_label_statement] = STATE(560), - [sym_expression_statement] = STATE(560), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(2), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(536), + [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), @@ -22730,1029 +22862,1058 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(541), [aux_sym_trait_declaration_token1] = ACTIONS(31), [aux_sym_interface_declaration_token1] = ACTIONS(33), [aux_sym_enum_declaration_token1] = ACTIONS(35), - [anon_sym_COLON] = ACTIONS(538), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(341), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(343), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(345), - [aux_sym_foreach_statement_token1] = ACTIONS(347), - [aux_sym_if_statement_token1] = ACTIONS(349), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(540), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), }, [58] = { - [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2023), - [sym_interface_declaration] = STATE(2023), - [sym_enum_declaration] = STATE(2023), - [sym_class_declaration] = STATE(2023), - [sym_final_modifier] = STATE(1899), - [sym_abstract_modifier] = STATE(1899), - [sym_readonly_modifier] = STATE(2536), - [sym_const_declaration] = STATE(2023), - [sym__const_declaration] = STATE(2117), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2538), - [sym_function_definition] = STATE(2023), - [sym__function_definition_header] = STATE(2316), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2023), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(2023), - [sym_compound_statement] = STATE(2023), - [sym_named_label_statement] = STATE(2023), - [sym_expression_statement] = STATE(2023), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(506), - [aux_sym_function_static_declaration_token1] = ACTIONS(384), - [aux_sym_global_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_definition_token1] = ACTIONS(388), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(390), + [sym_statement] = STATE(60), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(60), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), + [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(392), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(394), - [aux_sym_trait_declaration_token1] = ACTIONS(396), - [aux_sym_interface_declaration_token1] = ACTIONS(398), - [aux_sym_enum_declaration_token1] = ACTIONS(400), - [anon_sym_COLON] = ACTIONS(508), - [aux_sym_class_declaration_token1] = ACTIONS(402), + [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(404), - [aux_sym_exit_statement_token1] = ACTIONS(406), - [anon_sym_unset] = ACTIONS(408), - [aux_sym_declare_statement_token1] = ACTIONS(410), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(412), - [aux_sym_goto_statement_token1] = ACTIONS(414), - [aux_sym_continue_statement_token1] = ACTIONS(416), - [aux_sym_break_statement_token1] = ACTIONS(418), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(420), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(422), - [aux_sym_do_statement_token1] = ACTIONS(424), - [aux_sym_for_statement_token1] = ACTIONS(426), - [aux_sym_foreach_statement_token1] = ACTIONS(428), - [aux_sym_if_statement_token1] = ACTIONS(430), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(510), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_for_statement_token2] = ACTIONS(457), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), }, [59] = { - [sym_empty_statement] = STATE(1619), - [sym_function_static_declaration] = STATE(1619), - [sym_global_declaration] = STATE(1619), - [sym_namespace_definition] = STATE(1619), - [sym_namespace_use_declaration] = STATE(1619), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(1619), - [sym_interface_declaration] = STATE(1619), - [sym_enum_declaration] = STATE(1619), - [sym_class_declaration] = STATE(1619), - [sym_final_modifier] = STATE(1899), - [sym_abstract_modifier] = STATE(1899), - [sym_readonly_modifier] = STATE(2536), - [sym_const_declaration] = STATE(1619), - [sym__const_declaration] = STATE(2117), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2538), - [sym_function_definition] = STATE(1619), - [sym__function_definition_header] = STATE(2316), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(1619), - [sym_exit_statement] = STATE(1619), - [sym_unset_statement] = STATE(1619), - [sym_declare_statement] = STATE(1619), - [sym_try_statement] = STATE(1619), - [sym_goto_statement] = STATE(1619), - [sym_continue_statement] = STATE(1619), - [sym_break_statement] = STATE(1619), - [sym_return_statement] = STATE(1619), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(1619), - [sym_do_statement] = STATE(1619), - [sym_for_statement] = STATE(1619), - [sym_foreach_statement] = STATE(1619), - [sym_if_statement] = STATE(1619), - [sym_colon_block] = STATE(1605), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(1619), - [sym_compound_statement] = STATE(1619), - [sym_named_label_statement] = STATE(1619), - [sym_expression_statement] = STATE(1619), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(472), - [aux_sym_function_static_declaration_token1] = ACTIONS(384), - [aux_sym_global_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_definition_token1] = ACTIONS(388), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(390), + [sym_statement] = STATE(2012), + [sym_empty_statement] = STATE(2075), + [sym_function_static_declaration] = STATE(2075), + [sym_global_declaration] = STATE(2075), + [sym_namespace_definition] = STATE(2075), + [sym_namespace_use_declaration] = STATE(2075), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(2075), + [sym_interface_declaration] = STATE(2075), + [sym_enum_declaration] = STATE(2075), + [sym_class_declaration] = STATE(2075), + [sym_final_modifier] = STATE(1349), + [sym_abstract_modifier] = STATE(1349), + [sym_readonly_modifier] = STATE(1349), + [sym_const_declaration] = STATE(2075), + [sym__const_declaration] = STATE(2076), + [sym__modifier] = STATE(1349), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1349), + [sym_function_definition] = STATE(2075), + [sym__function_definition_header] = STATE(2209), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(2075), + [sym_exit_statement] = STATE(2075), + [sym_unset_statement] = STATE(2075), + [sym_declare_statement] = STATE(2075), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(2075), + [sym_goto_statement] = STATE(2075), + [sym_continue_statement] = STATE(2075), + [sym_break_statement] = STATE(2075), + [sym_return_statement] = STATE(2075), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(2075), + [sym_do_statement] = STATE(2075), + [sym_for_statement] = STATE(2075), + [sym_foreach_statement] = STATE(2075), + [sym_if_statement] = STATE(2075), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(2075), + [sym_compound_statement] = STATE(2075), + [sym_named_label_statement] = STATE(2075), + [sym_expression_statement] = STATE(2075), + [sym_expression] = STATE(1227), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1340), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1349), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(503), + [aux_sym_function_static_declaration_token1] = ACTIONS(379), + [aux_sym_global_declaration_token1] = ACTIONS(381), + [aux_sym_namespace_definition_token1] = ACTIONS(383), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(392), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(394), - [aux_sym_trait_declaration_token1] = ACTIONS(396), - [aux_sym_interface_declaration_token1] = ACTIONS(398), - [aux_sym_enum_declaration_token1] = ACTIONS(400), - [anon_sym_COLON] = ACTIONS(474), - [aux_sym_class_declaration_token1] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(389), + [aux_sym_trait_declaration_token1] = ACTIONS(391), + [aux_sym_interface_declaration_token1] = ACTIONS(393), + [aux_sym_enum_declaration_token1] = ACTIONS(395), + [anon_sym_COLON] = ACTIONS(505), + [aux_sym_class_declaration_token1] = ACTIONS(399), [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(404), - [aux_sym_exit_statement_token1] = ACTIONS(406), - [anon_sym_unset] = ACTIONS(408), - [aux_sym_declare_statement_token1] = ACTIONS(436), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(412), - [aux_sym_goto_statement_token1] = ACTIONS(414), - [aux_sym_continue_statement_token1] = ACTIONS(416), - [aux_sym_break_statement_token1] = ACTIONS(418), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(420), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(438), - [aux_sym_do_statement_token1] = ACTIONS(424), - [aux_sym_for_statement_token1] = ACTIONS(440), - [aux_sym_foreach_statement_token1] = ACTIONS(442), - [aux_sym_if_statement_token1] = ACTIONS(444), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), + [sym_var_modifier] = ACTIONS(401), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(403), + [aux_sym_exit_statement_token1] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(411), + [aux_sym_goto_statement_token1] = ACTIONS(413), + [aux_sym_continue_statement_token1] = ACTIONS(415), + [aux_sym_break_statement_token1] = ACTIONS(417), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(419), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(423), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(507), }, [60] = { - [sym_empty_statement] = STATE(2053), - [sym_function_static_declaration] = STATE(2053), - [sym_global_declaration] = STATE(2053), - [sym_namespace_definition] = STATE(2053), - [sym_namespace_use_declaration] = STATE(2053), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2053), - [sym_interface_declaration] = STATE(2053), - [sym_enum_declaration] = STATE(2053), - [sym_class_declaration] = STATE(2053), - [sym_final_modifier] = STATE(1899), - [sym_abstract_modifier] = STATE(1899), - [sym_readonly_modifier] = STATE(2536), - [sym_const_declaration] = STATE(2053), - [sym__const_declaration] = STATE(2117), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2538), - [sym_function_definition] = STATE(2053), - [sym__function_definition_header] = STATE(2316), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2053), - [sym_exit_statement] = STATE(2053), - [sym_unset_statement] = STATE(2053), - [sym_declare_statement] = STATE(2053), - [sym_try_statement] = STATE(2053), - [sym_goto_statement] = STATE(2053), - [sym_continue_statement] = STATE(2053), - [sym_break_statement] = STATE(2053), - [sym_return_statement] = STATE(2053), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(2053), - [sym_do_statement] = STATE(2053), - [sym_for_statement] = STATE(2053), - [sym_foreach_statement] = STATE(2053), - [sym_if_statement] = STATE(2053), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(2053), - [sym_compound_statement] = STATE(2053), - [sym_named_label_statement] = STATE(2053), - [sym_expression_statement] = STATE(2053), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(492), - [aux_sym_function_static_declaration_token1] = ACTIONS(384), - [aux_sym_global_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_definition_token1] = ACTIONS(388), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(390), + [sym_statement] = STATE(2), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), + [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(392), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(394), - [aux_sym_trait_declaration_token1] = ACTIONS(396), - [aux_sym_interface_declaration_token1] = ACTIONS(398), - [aux_sym_enum_declaration_token1] = ACTIONS(400), - [anon_sym_COLON] = ACTIONS(494), - [aux_sym_class_declaration_token1] = ACTIONS(402), + [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(404), - [aux_sym_exit_statement_token1] = ACTIONS(406), - [anon_sym_unset] = ACTIONS(408), - [aux_sym_declare_statement_token1] = ACTIONS(410), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(412), - [aux_sym_goto_statement_token1] = ACTIONS(414), - [aux_sym_continue_statement_token1] = ACTIONS(416), - [aux_sym_break_statement_token1] = ACTIONS(418), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(420), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(422), - [aux_sym_do_statement_token1] = ACTIONS(424), - [aux_sym_for_statement_token1] = ACTIONS(426), - [aux_sym_foreach_statement_token1] = ACTIONS(428), - [aux_sym_if_statement_token1] = ACTIONS(430), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(496), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_for_statement_token2] = ACTIONS(543), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), }, [61] = { - [sym_empty_statement] = STATE(2089), - [sym_function_static_declaration] = STATE(2089), - [sym_global_declaration] = STATE(2089), - [sym_namespace_definition] = STATE(2089), - [sym_namespace_use_declaration] = STATE(2089), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2089), - [sym_interface_declaration] = STATE(2089), - [sym_enum_declaration] = STATE(2089), - [sym_class_declaration] = STATE(2089), - [sym_final_modifier] = STATE(1899), - [sym_abstract_modifier] = STATE(1899), - [sym_readonly_modifier] = STATE(2536), - [sym_const_declaration] = STATE(2089), - [sym__const_declaration] = STATE(2117), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2538), - [sym_function_definition] = STATE(2089), - [sym__function_definition_header] = STATE(2316), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2089), - [sym_exit_statement] = STATE(2089), - [sym_unset_statement] = STATE(2089), - [sym_declare_statement] = STATE(2089), - [sym_try_statement] = STATE(2089), - [sym_goto_statement] = STATE(2089), - [sym_continue_statement] = STATE(2089), - [sym_break_statement] = STATE(2089), - [sym_return_statement] = STATE(2089), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(2089), - [sym_do_statement] = STATE(2089), - [sym_for_statement] = STATE(2089), - [sym_foreach_statement] = STATE(2089), - [sym_if_statement] = STATE(2089), - [sym_colon_block] = STATE(2504), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(2089), - [sym_compound_statement] = STATE(2089), - [sym_named_label_statement] = STATE(2089), - [sym_expression_statement] = STATE(2089), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(472), - [aux_sym_function_static_declaration_token1] = ACTIONS(384), - [aux_sym_global_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_definition_token1] = ACTIONS(388), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(390), + [sym_statement] = STATE(2045), + [sym_empty_statement] = STATE(2075), + [sym_function_static_declaration] = STATE(2075), + [sym_global_declaration] = STATE(2075), + [sym_namespace_definition] = STATE(2075), + [sym_namespace_use_declaration] = STATE(2075), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(2075), + [sym_interface_declaration] = STATE(2075), + [sym_enum_declaration] = STATE(2075), + [sym_class_declaration] = STATE(2075), + [sym_final_modifier] = STATE(1349), + [sym_abstract_modifier] = STATE(1349), + [sym_readonly_modifier] = STATE(1349), + [sym_const_declaration] = STATE(2075), + [sym__const_declaration] = STATE(2076), + [sym__modifier] = STATE(1349), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1349), + [sym_function_definition] = STATE(2075), + [sym__function_definition_header] = STATE(2209), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(2075), + [sym_exit_statement] = STATE(2075), + [sym_unset_statement] = STATE(2075), + [sym_declare_statement] = STATE(2075), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(2075), + [sym_goto_statement] = STATE(2075), + [sym_continue_statement] = STATE(2075), + [sym_break_statement] = STATE(2075), + [sym_return_statement] = STATE(2075), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(2075), + [sym_do_statement] = STATE(2075), + [sym_for_statement] = STATE(2075), + [sym_foreach_statement] = STATE(2075), + [sym_if_statement] = STATE(2075), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(2075), + [sym_compound_statement] = STATE(2075), + [sym_named_label_statement] = STATE(2075), + [sym_expression_statement] = STATE(2075), + [sym_expression] = STATE(1227), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1340), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1349), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(379), + [aux_sym_global_declaration_token1] = ACTIONS(381), + [aux_sym_namespace_definition_token1] = ACTIONS(383), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(392), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(394), - [aux_sym_trait_declaration_token1] = ACTIONS(396), - [aux_sym_interface_declaration_token1] = ACTIONS(398), - [aux_sym_enum_declaration_token1] = ACTIONS(400), - [anon_sym_COLON] = ACTIONS(372), - [aux_sym_class_declaration_token1] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(389), + [aux_sym_trait_declaration_token1] = ACTIONS(391), + [aux_sym_interface_declaration_token1] = ACTIONS(393), + [aux_sym_enum_declaration_token1] = ACTIONS(395), + [anon_sym_COLON] = ACTIONS(547), + [aux_sym_class_declaration_token1] = ACTIONS(399), [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(404), - [aux_sym_exit_statement_token1] = ACTIONS(406), - [anon_sym_unset] = ACTIONS(408), - [aux_sym_declare_statement_token1] = ACTIONS(410), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(412), - [aux_sym_goto_statement_token1] = ACTIONS(414), - [aux_sym_continue_statement_token1] = ACTIONS(416), - [aux_sym_break_statement_token1] = ACTIONS(418), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(420), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(422), - [aux_sym_do_statement_token1] = ACTIONS(424), - [aux_sym_for_statement_token1] = ACTIONS(426), - [aux_sym_foreach_statement_token1] = ACTIONS(428), - [aux_sym_if_statement_token1] = ACTIONS(430), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), + [sym_var_modifier] = ACTIONS(401), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(403), + [aux_sym_exit_statement_token1] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [aux_sym_declare_statement_token1] = ACTIONS(409), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(411), + [aux_sym_goto_statement_token1] = ACTIONS(413), + [aux_sym_continue_statement_token1] = ACTIONS(415), + [aux_sym_break_statement_token1] = ACTIONS(417), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(419), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(421), + [aux_sym_do_statement_token1] = ACTIONS(423), + [aux_sym_for_statement_token1] = ACTIONS(425), + [aux_sym_foreach_statement_token1] = ACTIONS(427), + [aux_sym_if_statement_token1] = ACTIONS(429), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(549), }, [62] = { - [sym_empty_statement] = STATE(64), - [sym_function_static_declaration] = STATE(64), - [sym_global_declaration] = STATE(64), - [sym_namespace_definition] = STATE(64), - [sym_namespace_use_declaration] = STATE(64), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(64), - [sym_interface_declaration] = STATE(64), - [sym_enum_declaration] = STATE(64), - [sym_class_declaration] = STATE(64), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(64), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(64), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(64), - [sym_exit_statement] = STATE(64), - [sym_unset_statement] = STATE(64), - [sym_declare_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_goto_statement] = STATE(64), - [sym_continue_statement] = STATE(64), - [sym_break_statement] = STATE(64), - [sym_return_statement] = STATE(64), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(64), - [sym_do_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_foreach_statement] = STATE(64), - [sym_if_statement] = STATE(64), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(64), - [sym_compound_statement] = STATE(64), - [sym_named_label_statement] = STATE(64), - [sym_expression_statement] = STATE(64), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(64), - [aux_sym_attribute_list_repeat1] = STATE(972), - [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), + [sym_statement] = STATE(1893), + [sym_empty_statement] = STATE(2075), + [sym_function_static_declaration] = STATE(2075), + [sym_global_declaration] = STATE(2075), + [sym_namespace_definition] = STATE(2075), + [sym_namespace_use_declaration] = STATE(2075), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(2075), + [sym_interface_declaration] = STATE(2075), + [sym_enum_declaration] = STATE(2075), + [sym_class_declaration] = STATE(2075), + [sym_final_modifier] = STATE(1349), + [sym_abstract_modifier] = STATE(1349), + [sym_readonly_modifier] = STATE(1349), + [sym_const_declaration] = STATE(2075), + [sym__const_declaration] = STATE(2076), + [sym__modifier] = STATE(1349), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1349), + [sym_function_definition] = STATE(2075), + [sym__function_definition_header] = STATE(2209), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(2075), + [sym_exit_statement] = STATE(2075), + [sym_unset_statement] = STATE(2075), + [sym_declare_statement] = STATE(2075), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(2075), + [sym_goto_statement] = STATE(2075), + [sym_continue_statement] = STATE(2075), + [sym_break_statement] = STATE(2075), + [sym_return_statement] = STATE(2075), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(2075), + [sym_do_statement] = STATE(2075), + [sym_for_statement] = STATE(2075), + [sym_foreach_statement] = STATE(2075), + [sym_if_statement] = STATE(2075), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(2075), + [sym_compound_statement] = STATE(2075), + [sym_named_label_statement] = STATE(2075), + [sym_expression_statement] = STATE(2075), + [sym_expression] = STATE(1227), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1340), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1349), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(461), + [aux_sym_function_static_declaration_token1] = ACTIONS(379), + [aux_sym_global_declaration_token1] = ACTIONS(381), + [aux_sym_namespace_definition_token1] = ACTIONS(383), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(542), - [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), + [anon_sym_LBRACE] = ACTIONS(389), + [aux_sym_trait_declaration_token1] = ACTIONS(391), + [aux_sym_interface_declaration_token1] = ACTIONS(393), + [aux_sym_enum_declaration_token1] = ACTIONS(395), + [anon_sym_COLON] = ACTIONS(463), + [aux_sym_class_declaration_token1] = ACTIONS(399), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), + [sym_var_modifier] = ACTIONS(401), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(403), + [aux_sym_exit_statement_token1] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(411), + [aux_sym_goto_statement_token1] = ACTIONS(413), + [aux_sym_continue_statement_token1] = ACTIONS(415), + [aux_sym_break_statement_token1] = ACTIONS(417), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(419), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(423), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(465), }, [63] = { - [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(35), - [sym_interface_declaration] = STATE(35), - [sym_enum_declaration] = STATE(35), - [sym_class_declaration] = STATE(35), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(35), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(35), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(35), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(35), - [sym_compound_statement] = STATE(35), - [sym_named_label_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(35), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(2), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -23763,7 +23924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(544), + [anon_sym_RBRACE] = ACTIONS(551), [aux_sym_trait_declaration_token1] = ACTIONS(31), [aux_sym_interface_declaration_token1] = ACTIONS(33), [aux_sym_enum_declaration_token1] = ACTIONS(35), @@ -23771,160 +23932,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [64] = { - [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2), - [sym_interface_declaration] = STATE(2), - [sym_enum_declaration] = STATE(2), - [sym_class_declaration] = STATE(2), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(2), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(2), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(2), - [sym_compound_statement] = STATE(2), - [sym_named_label_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(26), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -23935,7 +24101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(546), + [anon_sym_RBRACE] = ACTIONS(553), [aux_sym_trait_declaration_token1] = ACTIONS(31), [aux_sym_interface_declaration_token1] = ACTIONS(33), [aux_sym_enum_declaration_token1] = ACTIONS(35), @@ -23943,160 +24109,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [65] = { - [sym_empty_statement] = STATE(2), - [sym_function_static_declaration] = STATE(2), - [sym_global_declaration] = STATE(2), - [sym_namespace_definition] = STATE(2), - [sym_namespace_use_declaration] = STATE(2), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2), - [sym_interface_declaration] = STATE(2), - [sym_enum_declaration] = STATE(2), - [sym_class_declaration] = STATE(2), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(2), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(2), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(2), - [sym_compound_statement] = STATE(2), - [sym_named_label_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(514), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_colon_block] = STATE(2400), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -24110,165 +24281,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(397), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_for_statement_token2] = ACTIONS(548), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(361), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(363), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(365), + [aux_sym_foreach_statement_token1] = ACTIONS(367), + [aux_sym_if_statement_token1] = ACTIONS(369), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [66] = { - [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2), - [sym_interface_declaration] = STATE(2), - [sym_enum_declaration] = STATE(2), - [sym_class_declaration] = STATE(2), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(2), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(2), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(2), - [sym_compound_statement] = STATE(2), - [sym_named_label_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(71), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(71), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -24286,161 +24462,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_for_statement_token2] = ACTIONS(482), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [aux_sym_declare_statement_token2] = ACTIONS(555), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [67] = { - [sym_empty_statement] = STATE(34), - [sym_function_static_declaration] = STATE(34), - [sym_global_declaration] = STATE(34), - [sym_namespace_definition] = STATE(34), - [sym_namespace_use_declaration] = STATE(34), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(34), - [sym_interface_declaration] = STATE(34), - [sym_enum_declaration] = STATE(34), - [sym_class_declaration] = STATE(34), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(34), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(34), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(34), - [sym_exit_statement] = STATE(34), - [sym_unset_statement] = STATE(34), - [sym_declare_statement] = STATE(34), - [sym_try_statement] = STATE(34), - [sym_goto_statement] = STATE(34), - [sym_continue_statement] = STATE(34), - [sym_break_statement] = STATE(34), - [sym_return_statement] = STATE(34), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(34), - [sym_do_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_foreach_statement] = STATE(34), - [sym_if_statement] = STATE(34), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(34), - [sym_compound_statement] = STATE(34), - [sym_named_label_statement] = STATE(34), - [sym_expression_statement] = STATE(34), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(34), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(23), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -24458,334 +24639,522 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_for_statement_token2] = ACTIONS(548), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [aux_sym_declare_statement_token2] = ACTIONS(557), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [68] = { - [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2), - [sym_interface_declaration] = STATE(2), - [sym_enum_declaration] = STATE(2), - [sym_class_declaration] = STATE(2), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(2), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(2), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(2), - [sym_compound_statement] = STATE(2), - [sym_named_label_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(972), - [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), + [sym_statement] = STATE(1583), + [sym_empty_statement] = STATE(2075), + [sym_function_static_declaration] = STATE(2075), + [sym_global_declaration] = STATE(2075), + [sym_namespace_definition] = STATE(2075), + [sym_namespace_use_declaration] = STATE(2075), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(2075), + [sym_interface_declaration] = STATE(2075), + [sym_enum_declaration] = STATE(2075), + [sym_class_declaration] = STATE(2075), + [sym_final_modifier] = STATE(1349), + [sym_abstract_modifier] = STATE(1349), + [sym_readonly_modifier] = STATE(1349), + [sym_const_declaration] = STATE(2075), + [sym__const_declaration] = STATE(2076), + [sym__modifier] = STATE(1349), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1349), + [sym_function_definition] = STATE(2075), + [sym__function_definition_header] = STATE(2209), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(2075), + [sym_exit_statement] = STATE(2075), + [sym_unset_statement] = STATE(2075), + [sym_declare_statement] = STATE(2075), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(2075), + [sym_goto_statement] = STATE(2075), + [sym_continue_statement] = STATE(2075), + [sym_break_statement] = STATE(2075), + [sym_return_statement] = STATE(2075), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(2075), + [sym_do_statement] = STATE(2075), + [sym_for_statement] = STATE(2075), + [sym_foreach_statement] = STATE(2075), + [sym_if_statement] = STATE(2075), + [sym_colon_block] = STATE(1632), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(2075), + [sym_compound_statement] = STATE(2075), + [sym_named_label_statement] = STATE(2075), + [sym_expression_statement] = STATE(2075), + [sym_expression] = STATE(1227), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1340), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1349), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(459), + [aux_sym_function_static_declaration_token1] = ACTIONS(379), + [aux_sym_global_declaration_token1] = ACTIONS(381), + [aux_sym_namespace_definition_token1] = ACTIONS(383), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(550), - [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), + [anon_sym_LBRACE] = ACTIONS(389), + [aux_sym_trait_declaration_token1] = ACTIONS(391), + [aux_sym_interface_declaration_token1] = ACTIONS(393), + [aux_sym_enum_declaration_token1] = ACTIONS(395), + [anon_sym_COLON] = ACTIONS(499), + [aux_sym_class_declaration_token1] = ACTIONS(399), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(401), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(403), + [aux_sym_exit_statement_token1] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [aux_sym_declare_statement_token1] = ACTIONS(409), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(411), + [aux_sym_goto_statement_token1] = ACTIONS(413), + [aux_sym_continue_statement_token1] = ACTIONS(415), + [aux_sym_break_statement_token1] = ACTIONS(417), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(419), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(421), + [aux_sym_do_statement_token1] = ACTIONS(423), + [aux_sym_for_statement_token1] = ACTIONS(425), + [aux_sym_foreach_statement_token1] = ACTIONS(427), + [aux_sym_if_statement_token1] = ACTIONS(429), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [69] = { - [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(513), - [sym_interface_declaration] = STATE(513), - [sym_enum_declaration] = STATE(513), - [sym_class_declaration] = STATE(513), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(513), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(513), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(513), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(513), - [sym_compound_statement] = STATE(513), - [sym_named_label_statement] = STATE(513), - [sym_expression_statement] = STATE(513), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(2045), + [sym_empty_statement] = STATE(2075), + [sym_function_static_declaration] = STATE(2075), + [sym_global_declaration] = STATE(2075), + [sym_namespace_definition] = STATE(2075), + [sym_namespace_use_declaration] = STATE(2075), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(2075), + [sym_interface_declaration] = STATE(2075), + [sym_enum_declaration] = STATE(2075), + [sym_class_declaration] = STATE(2075), + [sym_final_modifier] = STATE(1349), + [sym_abstract_modifier] = STATE(1349), + [sym_readonly_modifier] = STATE(1349), + [sym_const_declaration] = STATE(2075), + [sym__const_declaration] = STATE(2076), + [sym__modifier] = STATE(1349), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1349), + [sym_function_definition] = STATE(2075), + [sym__function_definition_header] = STATE(2209), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(2075), + [sym_exit_statement] = STATE(2075), + [sym_unset_statement] = STATE(2075), + [sym_declare_statement] = STATE(2075), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(2075), + [sym_goto_statement] = STATE(2075), + [sym_continue_statement] = STATE(2075), + [sym_break_statement] = STATE(2075), + [sym_return_statement] = STATE(2075), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(2075), + [sym_do_statement] = STATE(2075), + [sym_for_statement] = STATE(2075), + [sym_foreach_statement] = STATE(2075), + [sym_if_statement] = STATE(2075), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(2075), + [sym_compound_statement] = STATE(2075), + [sym_named_label_statement] = STATE(2075), + [sym_expression_statement] = STATE(2075), + [sym_expression] = STATE(1227), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1340), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1349), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(379), + [aux_sym_global_declaration_token1] = ACTIONS(381), + [aux_sym_namespace_definition_token1] = ACTIONS(383), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(389), + [aux_sym_trait_declaration_token1] = ACTIONS(391), + [aux_sym_interface_declaration_token1] = ACTIONS(393), + [aux_sym_enum_declaration_token1] = ACTIONS(395), + [anon_sym_COLON] = ACTIONS(547), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [sym_var_modifier] = ACTIONS(401), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(403), + [aux_sym_exit_statement_token1] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(411), + [aux_sym_goto_statement_token1] = ACTIONS(413), + [aux_sym_continue_statement_token1] = ACTIONS(415), + [aux_sym_break_statement_token1] = ACTIONS(417), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(419), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(423), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(549), + }, + [70] = { + [sym_statement] = STATE(57), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(57), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(450), + [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), @@ -24794,169 +25163,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(559), [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(452), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(454), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2), - [sym_interface_declaration] = STATE(2), - [sym_enum_declaration] = STATE(2), - [sym_class_declaration] = STATE(2), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(2), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(2), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(2), - [sym_compound_statement] = STATE(2), - [sym_named_label_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), + [71] = { + [sym_statement] = STATE(2), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(972), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -24974,335 +25347,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [aux_sym_declare_statement_token2] = ACTIONS(552), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - }, - [71] = { - [sym_empty_statement] = STATE(2089), - [sym_function_static_declaration] = STATE(2089), - [sym_global_declaration] = STATE(2089), - [sym_namespace_definition] = STATE(2089), - [sym_namespace_use_declaration] = STATE(2089), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2089), - [sym_interface_declaration] = STATE(2089), - [sym_enum_declaration] = STATE(2089), - [sym_class_declaration] = STATE(2089), - [sym_final_modifier] = STATE(1899), - [sym_abstract_modifier] = STATE(1899), - [sym_readonly_modifier] = STATE(2536), - [sym_const_declaration] = STATE(2089), - [sym__const_declaration] = STATE(2117), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2538), - [sym_function_definition] = STATE(2089), - [sym__function_definition_header] = STATE(2316), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2089), - [sym_exit_statement] = STATE(2089), - [sym_unset_statement] = STATE(2089), - [sym_declare_statement] = STATE(2089), - [sym_try_statement] = STATE(2089), - [sym_goto_statement] = STATE(2089), - [sym_continue_statement] = STATE(2089), - [sym_break_statement] = STATE(2089), - [sym_return_statement] = STATE(2089), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(2089), - [sym_do_statement] = STATE(2089), - [sym_for_statement] = STATE(2089), - [sym_foreach_statement] = STATE(2089), - [sym_if_statement] = STATE(2089), - [sym_colon_block] = STATE(2504), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(2089), - [sym_compound_statement] = STATE(2089), - [sym_named_label_statement] = STATE(2089), - [sym_expression_statement] = STATE(2089), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(472), - [aux_sym_function_static_declaration_token1] = ACTIONS(384), - [aux_sym_global_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_definition_token1] = ACTIONS(388), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(390), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(392), - [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(394), - [aux_sym_trait_declaration_token1] = ACTIONS(396), - [aux_sym_interface_declaration_token1] = ACTIONS(398), - [aux_sym_enum_declaration_token1] = ACTIONS(400), - [anon_sym_COLON] = ACTIONS(372), - [aux_sym_class_declaration_token1] = ACTIONS(402), - [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(404), - [aux_sym_exit_statement_token1] = ACTIONS(406), - [anon_sym_unset] = ACTIONS(408), - [aux_sym_declare_statement_token1] = ACTIONS(436), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(412), - [aux_sym_goto_statement_token1] = ACTIONS(414), - [aux_sym_continue_statement_token1] = ACTIONS(416), - [aux_sym_break_statement_token1] = ACTIONS(418), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(420), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(438), - [aux_sym_do_statement_token1] = ACTIONS(424), - [aux_sym_for_statement_token1] = ACTIONS(440), - [aux_sym_foreach_statement_token1] = ACTIONS(442), - [aux_sym_if_statement_token1] = ACTIONS(444), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [aux_sym_declare_statement_token2] = ACTIONS(561), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [72] = { - [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2), - [sym_interface_declaration] = STATE(2), - [sym_enum_declaration] = STATE(2), - [sym_class_declaration] = STATE(2), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(2), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(2), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(2), - [sym_compound_statement] = STATE(2), - [sym_named_label_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(500), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(467), [aux_sym_function_static_declaration_token1] = ACTIONS(15), [aux_sym_global_declaration_token1] = ACTIONS(17), [aux_sym_namespace_definition_token1] = ACTIONS(19), @@ -25314,167 +25519,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(469), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_for_statement_token2] = ACTIONS(554), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(471), }, [73] = { - [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(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2), - [sym_interface_declaration] = STATE(2), - [sym_enum_declaration] = STATE(2), - [sym_class_declaration] = STATE(2), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(2), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(2), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2), - [sym_exit_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(1099), - [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(1077), - [sym_switch_statement] = STATE(2), - [sym_compound_statement] = STATE(2), - [sym_named_label_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(526), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(481), [aux_sym_function_static_declaration_token1] = ACTIONS(15), [aux_sym_global_declaration_token1] = ACTIONS(17), [aux_sym_namespace_definition_token1] = ACTIONS(19), @@ -25486,165 +25696,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(483), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [aux_sym_declare_statement_token2] = ACTIONS(556), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(485), }, [74] = { - [sym_empty_statement] = STATE(72), - [sym_function_static_declaration] = STATE(72), - [sym_global_declaration] = STATE(72), - [sym_namespace_definition] = STATE(72), - [sym_namespace_use_declaration] = STATE(72), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(72), - [sym_interface_declaration] = STATE(72), - [sym_enum_declaration] = STATE(72), - [sym_class_declaration] = STATE(72), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(72), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(72), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(72), - [sym_exit_statement] = STATE(72), - [sym_unset_statement] = STATE(72), - [sym_declare_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_goto_statement] = STATE(72), - [sym_continue_statement] = STATE(72), - [sym_break_statement] = STATE(72), - [sym_return_statement] = STATE(72), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(72), - [sym_do_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_foreach_statement] = STATE(72), - [sym_if_statement] = STATE(72), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(72), - [sym_compound_statement] = STATE(72), - [sym_named_label_statement] = STATE(72), - [sym_expression_statement] = STATE(72), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_program_repeat1] = STATE(72), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(28), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_program_repeat1] = STATE(28), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -25662,1010 +25878,1215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_for_statement_token2] = ACTIONS(500), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_for_statement_token2] = ACTIONS(563), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [75] = { - [sym_empty_statement] = STATE(2049), - [sym_function_static_declaration] = STATE(2049), - [sym_global_declaration] = STATE(2049), - [sym_namespace_definition] = STATE(2049), - [sym_namespace_use_declaration] = STATE(2049), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2049), - [sym_interface_declaration] = STATE(2049), - [sym_enum_declaration] = STATE(2049), - [sym_class_declaration] = STATE(2049), - [sym_final_modifier] = STATE(1899), - [sym_abstract_modifier] = STATE(1899), - [sym_readonly_modifier] = STATE(2536), - [sym_const_declaration] = STATE(2049), - [sym__const_declaration] = STATE(2117), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2538), - [sym_function_definition] = STATE(2049), - [sym__function_definition_header] = STATE(2316), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2049), - [sym_exit_statement] = STATE(2049), - [sym_unset_statement] = STATE(2049), - [sym_declare_statement] = STATE(2049), - [sym_try_statement] = STATE(2049), - [sym_goto_statement] = STATE(2049), - [sym_continue_statement] = STATE(2049), - [sym_break_statement] = STATE(2049), - [sym_return_statement] = STATE(2049), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(2049), - [sym_do_statement] = STATE(2049), - [sym_for_statement] = STATE(2049), - [sym_foreach_statement] = STATE(2049), - [sym_if_statement] = STATE(2049), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(2049), - [sym_compound_statement] = STATE(2049), - [sym_named_label_statement] = STATE(2049), - [sym_expression_statement] = STATE(2049), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(472), - [aux_sym_function_static_declaration_token1] = ACTIONS(384), - [aux_sym_global_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_definition_token1] = ACTIONS(388), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(390), + [sym_statement] = STATE(2027), + [sym_empty_statement] = STATE(2075), + [sym_function_static_declaration] = STATE(2075), + [sym_global_declaration] = STATE(2075), + [sym_namespace_definition] = STATE(2075), + [sym_namespace_use_declaration] = STATE(2075), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(2075), + [sym_interface_declaration] = STATE(2075), + [sym_enum_declaration] = STATE(2075), + [sym_class_declaration] = STATE(2075), + [sym_final_modifier] = STATE(1349), + [sym_abstract_modifier] = STATE(1349), + [sym_readonly_modifier] = STATE(1349), + [sym_const_declaration] = STATE(2075), + [sym__const_declaration] = STATE(2076), + [sym__modifier] = STATE(1349), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1349), + [sym_function_definition] = STATE(2075), + [sym__function_definition_header] = STATE(2209), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(2075), + [sym_exit_statement] = STATE(2075), + [sym_unset_statement] = STATE(2075), + [sym_declare_statement] = STATE(2075), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(2075), + [sym_goto_statement] = STATE(2075), + [sym_continue_statement] = STATE(2075), + [sym_break_statement] = STATE(2075), + [sym_return_statement] = STATE(2075), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(2075), + [sym_do_statement] = STATE(2075), + [sym_for_statement] = STATE(2075), + [sym_foreach_statement] = STATE(2075), + [sym_if_statement] = STATE(2075), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(2075), + [sym_compound_statement] = STATE(2075), + [sym_named_label_statement] = STATE(2075), + [sym_expression_statement] = STATE(2075), + [sym_expression] = STATE(1227), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1340), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1349), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(459), + [aux_sym_function_static_declaration_token1] = ACTIONS(379), + [aux_sym_global_declaration_token1] = ACTIONS(381), + [aux_sym_namespace_definition_token1] = ACTIONS(383), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(392), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(394), - [aux_sym_trait_declaration_token1] = ACTIONS(396), - [aux_sym_interface_declaration_token1] = ACTIONS(398), - [aux_sym_enum_declaration_token1] = ACTIONS(400), - [aux_sym_class_declaration_token1] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(389), + [aux_sym_trait_declaration_token1] = ACTIONS(391), + [aux_sym_interface_declaration_token1] = ACTIONS(393), + [aux_sym_enum_declaration_token1] = ACTIONS(395), + [aux_sym_class_declaration_token1] = ACTIONS(399), [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(404), - [aux_sym_exit_statement_token1] = ACTIONS(406), - [anon_sym_unset] = ACTIONS(408), - [aux_sym_declare_statement_token1] = ACTIONS(410), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(412), - [aux_sym_goto_statement_token1] = ACTIONS(414), - [aux_sym_continue_statement_token1] = ACTIONS(416), - [aux_sym_break_statement_token1] = ACTIONS(418), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(420), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(422), - [aux_sym_do_statement_token1] = ACTIONS(424), - [aux_sym_for_statement_token1] = ACTIONS(426), - [aux_sym_foreach_statement_token1] = ACTIONS(428), - [aux_sym_if_statement_token1] = ACTIONS(430), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(401), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(403), + [aux_sym_exit_statement_token1] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [aux_sym_declare_statement_token1] = ACTIONS(409), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(411), + [aux_sym_goto_statement_token1] = ACTIONS(413), + [aux_sym_continue_statement_token1] = ACTIONS(415), + [aux_sym_break_statement_token1] = ACTIONS(417), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(419), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(421), + [aux_sym_do_statement_token1] = ACTIONS(423), + [aux_sym_for_statement_token1] = ACTIONS(425), + [aux_sym_foreach_statement_token1] = ACTIONS(427), + [aux_sym_if_statement_token1] = ACTIONS(429), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [76] = { - [sym_empty_statement] = STATE(2049), - [sym_function_static_declaration] = STATE(2049), - [sym_global_declaration] = STATE(2049), - [sym_namespace_definition] = STATE(2049), - [sym_namespace_use_declaration] = STATE(2049), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2049), - [sym_interface_declaration] = STATE(2049), - [sym_enum_declaration] = STATE(2049), - [sym_class_declaration] = STATE(2049), - [sym_final_modifier] = STATE(1899), - [sym_abstract_modifier] = STATE(1899), - [sym_readonly_modifier] = STATE(2536), - [sym_const_declaration] = STATE(2049), - [sym__const_declaration] = STATE(2117), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2538), - [sym_function_definition] = STATE(2049), - [sym__function_definition_header] = STATE(2316), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2049), - [sym_exit_statement] = STATE(2049), - [sym_unset_statement] = STATE(2049), - [sym_declare_statement] = STATE(2049), - [sym_try_statement] = STATE(2049), - [sym_goto_statement] = STATE(2049), - [sym_continue_statement] = STATE(2049), - [sym_break_statement] = STATE(2049), - [sym_return_statement] = STATE(2049), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(2049), - [sym_do_statement] = STATE(2049), - [sym_for_statement] = STATE(2049), - [sym_foreach_statement] = STATE(2049), - [sym_if_statement] = STATE(2049), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(2049), - [sym_compound_statement] = STATE(2049), - [sym_named_label_statement] = STATE(2049), - [sym_expression_statement] = STATE(2049), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(472), - [aux_sym_function_static_declaration_token1] = ACTIONS(384), - [aux_sym_global_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_definition_token1] = ACTIONS(388), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(390), + [sym_statement] = STATE(2508), + [sym_empty_statement] = STATE(2075), + [sym_function_static_declaration] = STATE(2075), + [sym_global_declaration] = STATE(2075), + [sym_namespace_definition] = STATE(2075), + [sym_namespace_use_declaration] = STATE(2075), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(2075), + [sym_interface_declaration] = STATE(2075), + [sym_enum_declaration] = STATE(2075), + [sym_class_declaration] = STATE(2075), + [sym_final_modifier] = STATE(1349), + [sym_abstract_modifier] = STATE(1349), + [sym_readonly_modifier] = STATE(1349), + [sym_const_declaration] = STATE(2075), + [sym__const_declaration] = STATE(2076), + [sym__modifier] = STATE(1349), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1349), + [sym_function_definition] = STATE(2075), + [sym__function_definition_header] = STATE(2209), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(2075), + [sym_exit_statement] = STATE(2075), + [sym_unset_statement] = STATE(2075), + [sym_declare_statement] = STATE(2075), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(2075), + [sym_goto_statement] = STATE(2075), + [sym_continue_statement] = STATE(2075), + [sym_break_statement] = STATE(2075), + [sym_return_statement] = STATE(2075), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(2075), + [sym_do_statement] = STATE(2075), + [sym_for_statement] = STATE(2075), + [sym_foreach_statement] = STATE(2075), + [sym_if_statement] = STATE(2075), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(2075), + [sym_compound_statement] = STATE(2075), + [sym_named_label_statement] = STATE(2075), + [sym_expression_statement] = STATE(2075), + [sym_expression] = STATE(1227), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1340), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1349), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(459), + [aux_sym_function_static_declaration_token1] = ACTIONS(379), + [aux_sym_global_declaration_token1] = ACTIONS(381), + [aux_sym_namespace_definition_token1] = ACTIONS(383), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(392), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(394), - [aux_sym_trait_declaration_token1] = ACTIONS(396), - [aux_sym_interface_declaration_token1] = ACTIONS(398), - [aux_sym_enum_declaration_token1] = ACTIONS(400), - [aux_sym_class_declaration_token1] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(389), + [aux_sym_trait_declaration_token1] = ACTIONS(391), + [aux_sym_interface_declaration_token1] = ACTIONS(393), + [aux_sym_enum_declaration_token1] = ACTIONS(395), + [aux_sym_class_declaration_token1] = ACTIONS(399), [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(404), - [aux_sym_exit_statement_token1] = ACTIONS(406), - [anon_sym_unset] = ACTIONS(408), - [aux_sym_declare_statement_token1] = ACTIONS(436), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(412), - [aux_sym_goto_statement_token1] = ACTIONS(414), - [aux_sym_continue_statement_token1] = ACTIONS(416), - [aux_sym_break_statement_token1] = ACTIONS(418), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(420), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(438), - [aux_sym_do_statement_token1] = ACTIONS(424), - [aux_sym_for_statement_token1] = ACTIONS(440), - [aux_sym_foreach_statement_token1] = ACTIONS(442), - [aux_sym_if_statement_token1] = ACTIONS(444), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(401), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(403), + [aux_sym_exit_statement_token1] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(411), + [aux_sym_goto_statement_token1] = ACTIONS(413), + [aux_sym_continue_statement_token1] = ACTIONS(415), + [aux_sym_break_statement_token1] = ACTIONS(417), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(419), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(423), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [77] = { - [sym_empty_statement] = STATE(2562), - [sym_function_static_declaration] = STATE(2562), - [sym_global_declaration] = STATE(2562), - [sym_namespace_definition] = STATE(2562), - [sym_namespace_use_declaration] = STATE(2562), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2562), - [sym_interface_declaration] = STATE(2562), - [sym_enum_declaration] = STATE(2562), - [sym_class_declaration] = STATE(2562), - [sym_final_modifier] = STATE(1899), - [sym_abstract_modifier] = STATE(1899), - [sym_readonly_modifier] = STATE(2536), - [sym_const_declaration] = STATE(2562), - [sym__const_declaration] = STATE(2117), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2538), - [sym_function_definition] = STATE(2562), - [sym__function_definition_header] = STATE(2316), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2562), - [sym_exit_statement] = STATE(2562), - [sym_unset_statement] = STATE(2562), - [sym_declare_statement] = STATE(2562), - [sym_try_statement] = STATE(2562), - [sym_goto_statement] = STATE(2562), - [sym_continue_statement] = STATE(2562), - [sym_break_statement] = STATE(2562), - [sym_return_statement] = STATE(2562), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(2562), - [sym_do_statement] = STATE(2562), - [sym_for_statement] = STATE(2562), - [sym_foreach_statement] = STATE(2562), - [sym_if_statement] = STATE(2562), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(2562), - [sym_compound_statement] = STATE(2562), - [sym_named_label_statement] = STATE(2562), - [sym_expression_statement] = STATE(2562), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(472), - [aux_sym_function_static_declaration_token1] = ACTIONS(384), - [aux_sym_global_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_definition_token1] = ACTIONS(388), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(390), + [sym_statement] = STATE(485), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), + [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(392), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(394), - [aux_sym_trait_declaration_token1] = ACTIONS(396), - [aux_sym_interface_declaration_token1] = ACTIONS(398), - [aux_sym_enum_declaration_token1] = ACTIONS(400), - [aux_sym_class_declaration_token1] = ACTIONS(402), + [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(404), - [aux_sym_exit_statement_token1] = ACTIONS(406), - [anon_sym_unset] = ACTIONS(408), - [aux_sym_declare_statement_token1] = ACTIONS(410), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(412), - [aux_sym_goto_statement_token1] = ACTIONS(414), - [aux_sym_continue_statement_token1] = ACTIONS(416), - [aux_sym_break_statement_token1] = ACTIONS(418), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(420), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(422), - [aux_sym_do_statement_token1] = ACTIONS(424), - [aux_sym_for_statement_token1] = ACTIONS(426), - [aux_sym_foreach_statement_token1] = ACTIONS(428), - [aux_sym_if_statement_token1] = ACTIONS(430), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(361), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(363), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(365), + [aux_sym_foreach_statement_token1] = ACTIONS(367), + [aux_sym_if_statement_token1] = ACTIONS(369), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [78] = { - [sym_empty_statement] = STATE(2543), - [sym_function_static_declaration] = STATE(2543), - [sym_global_declaration] = STATE(2543), - [sym_namespace_definition] = STATE(2543), - [sym_namespace_use_declaration] = STATE(2543), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2543), - [sym_interface_declaration] = STATE(2543), - [sym_enum_declaration] = STATE(2543), - [sym_class_declaration] = STATE(2543), - [sym_final_modifier] = STATE(1899), - [sym_abstract_modifier] = STATE(1899), - [sym_readonly_modifier] = STATE(2536), - [sym_const_declaration] = STATE(2543), - [sym__const_declaration] = STATE(2117), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2538), - [sym_function_definition] = STATE(2543), - [sym__function_definition_header] = STATE(2316), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2543), - [sym_exit_statement] = STATE(2543), - [sym_unset_statement] = STATE(2543), - [sym_declare_statement] = STATE(2543), - [sym_try_statement] = STATE(2543), - [sym_goto_statement] = STATE(2543), - [sym_continue_statement] = STATE(2543), - [sym_break_statement] = STATE(2543), - [sym_return_statement] = STATE(2543), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(2543), - [sym_do_statement] = STATE(2543), - [sym_for_statement] = STATE(2543), - [sym_foreach_statement] = STATE(2543), - [sym_if_statement] = STATE(2543), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(2543), - [sym_compound_statement] = STATE(2543), - [sym_named_label_statement] = STATE(2543), - [sym_expression_statement] = STATE(2543), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(472), - [aux_sym_function_static_declaration_token1] = ACTIONS(384), - [aux_sym_global_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_definition_token1] = ACTIONS(388), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(390), + [sym_statement] = STATE(2027), + [sym_empty_statement] = STATE(2075), + [sym_function_static_declaration] = STATE(2075), + [sym_global_declaration] = STATE(2075), + [sym_namespace_definition] = STATE(2075), + [sym_namespace_use_declaration] = STATE(2075), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(2075), + [sym_interface_declaration] = STATE(2075), + [sym_enum_declaration] = STATE(2075), + [sym_class_declaration] = STATE(2075), + [sym_final_modifier] = STATE(1349), + [sym_abstract_modifier] = STATE(1349), + [sym_readonly_modifier] = STATE(1349), + [sym_const_declaration] = STATE(2075), + [sym__const_declaration] = STATE(2076), + [sym__modifier] = STATE(1349), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1349), + [sym_function_definition] = STATE(2075), + [sym__function_definition_header] = STATE(2209), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(2075), + [sym_exit_statement] = STATE(2075), + [sym_unset_statement] = STATE(2075), + [sym_declare_statement] = STATE(2075), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(2075), + [sym_goto_statement] = STATE(2075), + [sym_continue_statement] = STATE(2075), + [sym_break_statement] = STATE(2075), + [sym_return_statement] = STATE(2075), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(2075), + [sym_do_statement] = STATE(2075), + [sym_for_statement] = STATE(2075), + [sym_foreach_statement] = STATE(2075), + [sym_if_statement] = STATE(2075), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(2075), + [sym_compound_statement] = STATE(2075), + [sym_named_label_statement] = STATE(2075), + [sym_expression_statement] = STATE(2075), + [sym_expression] = STATE(1227), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1340), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1349), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(459), + [aux_sym_function_static_declaration_token1] = ACTIONS(379), + [aux_sym_global_declaration_token1] = ACTIONS(381), + [aux_sym_namespace_definition_token1] = ACTIONS(383), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(392), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(394), - [aux_sym_trait_declaration_token1] = ACTIONS(396), - [aux_sym_interface_declaration_token1] = ACTIONS(398), - [aux_sym_enum_declaration_token1] = ACTIONS(400), - [aux_sym_class_declaration_token1] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(389), + [aux_sym_trait_declaration_token1] = ACTIONS(391), + [aux_sym_interface_declaration_token1] = ACTIONS(393), + [aux_sym_enum_declaration_token1] = ACTIONS(395), + [aux_sym_class_declaration_token1] = ACTIONS(399), [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(404), - [aux_sym_exit_statement_token1] = ACTIONS(406), - [anon_sym_unset] = ACTIONS(408), - [aux_sym_declare_statement_token1] = ACTIONS(410), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(412), - [aux_sym_goto_statement_token1] = ACTIONS(414), - [aux_sym_continue_statement_token1] = ACTIONS(416), - [aux_sym_break_statement_token1] = ACTIONS(418), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(420), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(422), - [aux_sym_do_statement_token1] = ACTIONS(424), - [aux_sym_for_statement_token1] = ACTIONS(426), - [aux_sym_foreach_statement_token1] = ACTIONS(428), - [aux_sym_if_statement_token1] = ACTIONS(430), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(401), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(403), + [aux_sym_exit_statement_token1] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(411), + [aux_sym_goto_statement_token1] = ACTIONS(413), + [aux_sym_continue_statement_token1] = ACTIONS(415), + [aux_sym_break_statement_token1] = ACTIONS(417), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(419), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(423), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [79] = { - [sym_empty_statement] = STATE(484), - [sym_function_static_declaration] = STATE(484), - [sym_global_declaration] = STATE(484), - [sym_namespace_definition] = STATE(484), - [sym_namespace_use_declaration] = STATE(484), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(484), - [sym_interface_declaration] = STATE(484), - [sym_enum_declaration] = STATE(484), - [sym_class_declaration] = STATE(484), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(484), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(484), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(484), - [sym_exit_statement] = STATE(484), - [sym_unset_statement] = STATE(484), - [sym_declare_statement] = STATE(484), - [sym_try_statement] = STATE(484), - [sym_goto_statement] = STATE(484), - [sym_continue_statement] = STATE(484), - [sym_break_statement] = STATE(484), - [sym_return_statement] = STATE(484), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(484), - [sym_do_statement] = STATE(484), - [sym_for_statement] = STATE(484), - [sym_foreach_statement] = STATE(484), - [sym_if_statement] = STATE(484), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(484), - [sym_compound_statement] = STATE(484), - [sym_named_label_statement] = STATE(484), - [sym_expression_statement] = STATE(484), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [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), + [sym_statement] = STATE(1946), + [sym_empty_statement] = STATE(2075), + [sym_function_static_declaration] = STATE(2075), + [sym_global_declaration] = STATE(2075), + [sym_namespace_definition] = STATE(2075), + [sym_namespace_use_declaration] = STATE(2075), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(2075), + [sym_interface_declaration] = STATE(2075), + [sym_enum_declaration] = STATE(2075), + [sym_class_declaration] = STATE(2075), + [sym_final_modifier] = STATE(1349), + [sym_abstract_modifier] = STATE(1349), + [sym_readonly_modifier] = STATE(1349), + [sym_const_declaration] = STATE(2075), + [sym__const_declaration] = STATE(2076), + [sym__modifier] = STATE(1349), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1349), + [sym_function_definition] = STATE(2075), + [sym__function_definition_header] = STATE(2209), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(2075), + [sym_exit_statement] = STATE(2075), + [sym_unset_statement] = STATE(2075), + [sym_declare_statement] = STATE(2075), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(2075), + [sym_goto_statement] = STATE(2075), + [sym_continue_statement] = STATE(2075), + [sym_break_statement] = STATE(2075), + [sym_return_statement] = STATE(2075), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(2075), + [sym_do_statement] = STATE(2075), + [sym_for_statement] = STATE(2075), + [sym_foreach_statement] = STATE(2075), + [sym_if_statement] = STATE(2075), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(2075), + [sym_compound_statement] = STATE(2075), + [sym_named_label_statement] = STATE(2075), + [sym_expression_statement] = STATE(2075), + [sym_expression] = STATE(1227), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1340), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1349), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(459), + [aux_sym_function_static_declaration_token1] = ACTIONS(379), + [aux_sym_global_declaration_token1] = ACTIONS(381), + [aux_sym_namespace_definition_token1] = ACTIONS(383), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), [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), + [anon_sym_LBRACE] = ACTIONS(389), + [aux_sym_trait_declaration_token1] = ACTIONS(391), + [aux_sym_interface_declaration_token1] = ACTIONS(393), + [aux_sym_enum_declaration_token1] = ACTIONS(395), + [aux_sym_class_declaration_token1] = ACTIONS(399), [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(341), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(343), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(345), - [aux_sym_foreach_statement_token1] = ACTIONS(347), - [aux_sym_if_statement_token1] = ACTIONS(349), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(401), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(403), + [aux_sym_exit_statement_token1] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [aux_sym_declare_statement_token1] = ACTIONS(409), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(411), + [aux_sym_goto_statement_token1] = ACTIONS(413), + [aux_sym_continue_statement_token1] = ACTIONS(415), + [aux_sym_break_statement_token1] = ACTIONS(417), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(419), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(421), + [aux_sym_do_statement_token1] = ACTIONS(423), + [aux_sym_for_statement_token1] = ACTIONS(425), + [aux_sym_foreach_statement_token1] = ACTIONS(427), + [aux_sym_if_statement_token1] = ACTIONS(429), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [80] = { - [sym_empty_statement] = STATE(484), - [sym_function_static_declaration] = STATE(484), - [sym_global_declaration] = STATE(484), - [sym_namespace_definition] = STATE(484), - [sym_namespace_use_declaration] = STATE(484), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(484), - [sym_interface_declaration] = STATE(484), - [sym_enum_declaration] = STATE(484), - [sym_class_declaration] = STATE(484), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(484), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(484), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(484), - [sym_exit_statement] = STATE(484), - [sym_unset_statement] = STATE(484), - [sym_declare_statement] = STATE(484), - [sym_try_statement] = STATE(484), - [sym_goto_statement] = STATE(484), - [sym_continue_statement] = STATE(484), - [sym_break_statement] = STATE(484), - [sym_return_statement] = STATE(484), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(484), - [sym_do_statement] = STATE(484), - [sym_for_statement] = STATE(484), - [sym_foreach_statement] = STATE(484), - [sym_if_statement] = STATE(484), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(484), - [sym_compound_statement] = STATE(484), - [sym_named_label_statement] = STATE(484), - [sym_expression_statement] = STATE(484), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), + [sym_statement] = STATE(2486), + [sym_empty_statement] = STATE(2075), + [sym_function_static_declaration] = STATE(2075), + [sym_global_declaration] = STATE(2075), + [sym_namespace_definition] = STATE(2075), + [sym_namespace_use_declaration] = STATE(2075), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(2075), + [sym_interface_declaration] = STATE(2075), + [sym_enum_declaration] = STATE(2075), + [sym_class_declaration] = STATE(2075), + [sym_final_modifier] = STATE(1349), + [sym_abstract_modifier] = STATE(1349), + [sym_readonly_modifier] = STATE(1349), + [sym_const_declaration] = STATE(2075), + [sym__const_declaration] = STATE(2076), + [sym__modifier] = STATE(1349), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1349), + [sym_function_definition] = STATE(2075), + [sym__function_definition_header] = STATE(2209), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(2075), + [sym_exit_statement] = STATE(2075), + [sym_unset_statement] = STATE(2075), + [sym_declare_statement] = STATE(2075), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(2075), + [sym_goto_statement] = STATE(2075), + [sym_continue_statement] = STATE(2075), + [sym_break_statement] = STATE(2075), + [sym_return_statement] = STATE(2075), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(2075), + [sym_do_statement] = STATE(2075), + [sym_for_statement] = STATE(2075), + [sym_foreach_statement] = STATE(2075), + [sym_if_statement] = STATE(2075), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(2075), + [sym_compound_statement] = STATE(2075), + [sym_named_label_statement] = STATE(2075), + [sym_expression_statement] = STATE(2075), + [sym_expression] = STATE(1227), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1340), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1349), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(459), + [aux_sym_function_static_declaration_token1] = ACTIONS(379), + [aux_sym_global_declaration_token1] = ACTIONS(381), + [aux_sym_namespace_definition_token1] = ACTIONS(383), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(389), + [aux_sym_trait_declaration_token1] = ACTIONS(391), + [aux_sym_interface_declaration_token1] = ACTIONS(393), + [aux_sym_enum_declaration_token1] = ACTIONS(395), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [sym_var_modifier] = ACTIONS(401), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(403), + [aux_sym_exit_statement_token1] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [aux_sym_declare_statement_token1] = ACTIONS(443), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(411), + [aux_sym_goto_statement_token1] = ACTIONS(413), + [aux_sym_continue_statement_token1] = ACTIONS(415), + [aux_sym_break_statement_token1] = ACTIONS(417), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(419), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(445), + [aux_sym_do_statement_token1] = ACTIONS(423), + [aux_sym_for_statement_token1] = ACTIONS(447), + [aux_sym_foreach_statement_token1] = ACTIONS(449), + [aux_sym_if_statement_token1] = ACTIONS(451), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + }, + [81] = { + [sym_statement] = STATE(485), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -26683,159 +27104,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(75), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(79), - [aux_sym_foreach_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token1] = ACTIONS(83), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(77), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(81), + [aux_sym_foreach_statement_token1] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, - [81] = { - [sym_empty_statement] = STATE(554), - [sym_function_static_declaration] = STATE(554), - [sym_global_declaration] = STATE(554), - [sym_namespace_definition] = STATE(554), - [sym_namespace_use_declaration] = STATE(554), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(554), - [sym_interface_declaration] = STATE(554), - [sym_enum_declaration] = STATE(554), - [sym_class_declaration] = STATE(554), - [sym_final_modifier] = STATE(1885), - [sym_abstract_modifier] = STATE(1885), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(554), - [sym__const_declaration] = STATE(503), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2594), - [sym_function_definition] = STATE(554), - [sym__function_definition_header] = STATE(2195), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(554), - [sym_exit_statement] = STATE(554), - [sym_unset_statement] = STATE(554), - [sym_declare_statement] = STATE(554), - [sym_try_statement] = STATE(554), - [sym_goto_statement] = STATE(554), - [sym_continue_statement] = STATE(554), - [sym_break_statement] = STATE(554), - [sym_return_statement] = STATE(554), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(554), - [sym_do_statement] = STATE(554), - [sym_for_statement] = STATE(554), - [sym_foreach_statement] = STATE(554), - [sym_if_statement] = STATE(554), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(554), - [sym_compound_statement] = STATE(554), - [sym_named_label_statement] = STATE(554), - [sym_expression_statement] = STATE(554), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1390), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), + [82] = { + [sym_statement] = STATE(451), + [sym_empty_statement] = STATE(464), + [sym_function_static_declaration] = STATE(464), + [sym_global_declaration] = STATE(464), + [sym_namespace_definition] = STATE(464), + [sym_namespace_use_declaration] = STATE(464), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_trait_declaration] = STATE(464), + [sym_interface_declaration] = STATE(464), + [sym_enum_declaration] = STATE(464), + [sym_class_declaration] = STATE(464), + [sym_final_modifier] = STATE(1346), + [sym_abstract_modifier] = STATE(1346), + [sym_readonly_modifier] = STATE(1346), + [sym_const_declaration] = STATE(464), + [sym__const_declaration] = STATE(453), + [sym__modifier] = STATE(1346), + [sym_static_modifier] = STATE(1410), + [sym_visibility_modifier] = STATE(1346), + [sym_function_definition] = STATE(464), + [sym__function_definition_header] = STATE(2177), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_echo_statement] = STATE(464), + [sym_exit_statement] = STATE(464), + [sym_unset_statement] = STATE(464), + [sym_declare_statement] = STATE(464), + [sym_literal] = STATE(1068), + [sym_try_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_throw_expression] = STATE(1068), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_foreach_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_match_expression] = STATE(1069), + [sym_switch_statement] = STATE(464), + [sym_compound_statement] = STATE(464), + [sym_named_label_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_expression] = STATE(1229), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1342), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_class_declaration_repeat1] = STATE(1346), + [aux_sym_attribute_list_repeat1] = STATE(970), [sym_name] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(13), [aux_sym_function_static_declaration_token1] = ACTIONS(15), @@ -26853,37356 +27279,37562 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_exit_statement_token1] = ACTIONS(55), - [anon_sym_unset] = ACTIONS(57), - [aux_sym_declare_statement_token1] = ACTIONS(341), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(63), - [aux_sym_goto_statement_token1] = ACTIONS(65), - [aux_sym_continue_statement_token1] = ACTIONS(67), - [aux_sym_break_statement_token1] = ACTIONS(69), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(71), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(343), - [aux_sym_do_statement_token1] = ACTIONS(77), - [aux_sym_for_statement_token1] = ACTIONS(345), - [aux_sym_foreach_statement_token1] = ACTIONS(347), - [aux_sym_if_statement_token1] = ACTIONS(349), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - }, - [82] = { - [sym_empty_statement] = STATE(2012), - [sym_function_static_declaration] = STATE(2012), - [sym_global_declaration] = STATE(2012), - [sym_namespace_definition] = STATE(2012), - [sym_namespace_use_declaration] = STATE(2012), - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_trait_declaration] = STATE(2012), - [sym_interface_declaration] = STATE(2012), - [sym_enum_declaration] = STATE(2012), - [sym_class_declaration] = STATE(2012), - [sym_final_modifier] = STATE(1899), - [sym_abstract_modifier] = STATE(1899), - [sym_readonly_modifier] = STATE(2536), - [sym_const_declaration] = STATE(2012), - [sym__const_declaration] = STATE(2117), - [sym_static_modifier] = STATE(2191), - [sym_visibility_modifier] = STATE(2538), - [sym_function_definition] = STATE(2012), - [sym__function_definition_header] = STATE(2316), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_echo_statement] = STATE(2012), - [sym_exit_statement] = STATE(2012), - [sym_unset_statement] = STATE(2012), - [sym_declare_statement] = STATE(2012), - [sym_try_statement] = STATE(2012), - [sym_goto_statement] = STATE(2012), - [sym_continue_statement] = STATE(2012), - [sym_break_statement] = STATE(2012), - [sym_return_statement] = STATE(2012), - [sym_throw_expression] = STATE(1099), - [sym_while_statement] = STATE(2012), - [sym_do_statement] = STATE(2012), - [sym_for_statement] = STATE(2012), - [sym_foreach_statement] = STATE(2012), - [sym_if_statement] = STATE(2012), - [sym_match_expression] = STATE(1077), - [sym_switch_statement] = STATE(2012), - [sym_compound_statement] = STATE(2012), - [sym_named_label_statement] = STATE(2012), - [sym_expression_statement] = STATE(2012), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(472), - [aux_sym_function_static_declaration_token1] = ACTIONS(384), - [aux_sym_global_declaration_token1] = ACTIONS(386), - [aux_sym_namespace_definition_token1] = ACTIONS(388), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(390), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(392), - [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(394), - [aux_sym_trait_declaration_token1] = ACTIONS(396), - [aux_sym_interface_declaration_token1] = ACTIONS(398), - [aux_sym_enum_declaration_token1] = ACTIONS(400), - [aux_sym_class_declaration_token1] = ACTIONS(402), - [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(404), - [aux_sym_exit_statement_token1] = ACTIONS(406), - [anon_sym_unset] = ACTIONS(408), - [aux_sym_declare_statement_token1] = ACTIONS(436), - [sym_float] = ACTIONS(61), - [aux_sym_try_statement_token1] = ACTIONS(412), - [aux_sym_goto_statement_token1] = ACTIONS(414), - [aux_sym_continue_statement_token1] = ACTIONS(416), - [aux_sym_break_statement_token1] = ACTIONS(418), - [sym_integer] = ACTIONS(61), - [aux_sym_return_statement_token1] = ACTIONS(420), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_while_statement_token1] = ACTIONS(438), - [aux_sym_do_statement_token1] = ACTIONS(424), - [aux_sym_for_statement_token1] = ACTIONS(440), - [aux_sym_foreach_statement_token1] = ACTIONS(442), - [aux_sym_if_statement_token1] = ACTIONS(444), - [aux_sym_match_expression_token1] = ACTIONS(85), - [aux_sym_switch_statement_token1] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [sym_var_modifier] = ACTIONS(45), + [aux_sym_visibility_modifier_token1] = ACTIONS(47), + [aux_sym_visibility_modifier_token2] = ACTIONS(47), + [aux_sym_visibility_modifier_token3] = ACTIONS(47), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [aux_sym_echo_statement_token1] = ACTIONS(55), + [aux_sym_exit_statement_token1] = ACTIONS(57), + [anon_sym_unset] = ACTIONS(59), + [aux_sym_declare_statement_token1] = ACTIONS(361), + [sym_float] = ACTIONS(63), + [aux_sym_try_statement_token1] = ACTIONS(65), + [aux_sym_goto_statement_token1] = ACTIONS(67), + [aux_sym_continue_statement_token1] = ACTIONS(69), + [aux_sym_break_statement_token1] = ACTIONS(71), + [sym_integer] = ACTIONS(63), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_while_statement_token1] = ACTIONS(363), + [aux_sym_do_statement_token1] = ACTIONS(79), + [aux_sym_for_statement_token1] = ACTIONS(365), + [aux_sym_foreach_statement_token1] = ACTIONS(367), + [aux_sym_if_statement_token1] = ACTIONS(369), + [aux_sym_match_expression_token1] = ACTIONS(87), + [aux_sym_switch_statement_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [83] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1000), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(941), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(941), - [sym_yield_expression] = STATE(956), - [sym_array_element_initializer] = STATE(966), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_SEMI] = ACTIONS(560), - [anon_sym_AMP] = ACTIONS(562), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(982), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_variadic_unpacking] = STATE(943), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_by_ref] = STATE(943), + [sym_yield_expression] = STATE(950), + [sym_array_element_initializer] = STATE(906), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(569), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(570), - [anon_sym_RBRACE] = ACTIONS(560), - [anon_sym_COLON] = ACTIONS(560), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(572), - [anon_sym_RPAREN] = ACTIONS(560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(574), - [anon_sym_QMARK] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(570), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(584), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_yield_expression_token2] = ACTIONS(616), - [aux_sym_binary_expression_token1] = ACTIONS(570), - [anon_sym_QMARK_QMARK] = ACTIONS(560), - [anon_sym_STAR_STAR] = ACTIONS(560), - [aux_sym_binary_expression_token2] = ACTIONS(570), - [aux_sym_binary_expression_token3] = ACTIONS(570), - [aux_sym_binary_expression_token4] = ACTIONS(570), - [anon_sym_PIPE_PIPE] = ACTIONS(560), - [anon_sym_AMP_AMP] = ACTIONS(560), - [anon_sym_CARET] = ACTIONS(560), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT_GT] = ACTIONS(560), - [anon_sym_EQ_EQ_EQ] = ACTIONS(560), - [anon_sym_BANG_EQ_EQ] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(570), - [anon_sym_GT] = ACTIONS(570), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(560), - [anon_sym_LT_EQ_GT] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(570), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_DOT] = ACTIONS(570), - [anon_sym_STAR] = ACTIONS(570), - [anon_sym_SLASH] = ACTIONS(570), - [anon_sym_PERCENT] = ACTIONS(560), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(577), + [anon_sym_RBRACE] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(567), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(579), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_yield_expression_token2] = ACTIONS(623), + [aux_sym_binary_expression_token1] = ACTIONS(577), + [anon_sym_QMARK_QMARK] = ACTIONS(567), + [anon_sym_STAR_STAR] = ACTIONS(567), + [aux_sym_binary_expression_token2] = ACTIONS(577), + [aux_sym_binary_expression_token3] = ACTIONS(577), + [aux_sym_binary_expression_token4] = ACTIONS(577), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(577), + [anon_sym_BANG_EQ] = ACTIONS(577), + [anon_sym_LT_GT] = ACTIONS(567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT_EQ] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ_GT] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(567), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [84] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1038), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_variadic_unpacking] = STATE(941), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_by_ref] = STATE(941), - [sym_yield_expression] = STATE(956), - [sym_array_element_initializer] = STATE(966), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_SEMI] = ACTIONS(560), - [anon_sym_AMP] = ACTIONS(562), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(560), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1033), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_variadic_unpacking] = STATE(943), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_by_ref] = STATE(943), + [sym_yield_expression] = STATE(950), + [sym_array_element_initializer] = STATE(906), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(569), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(567), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(560), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - [anon_sym_QMARK] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(570), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(632), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_RBRACK] = ACTIONS(560), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_yield_expression_token2] = ACTIONS(646), - [aux_sym_binary_expression_token1] = ACTIONS(570), - [anon_sym_QMARK_QMARK] = ACTIONS(560), - [anon_sym_STAR_STAR] = ACTIONS(560), - [aux_sym_binary_expression_token2] = ACTIONS(570), - [aux_sym_binary_expression_token3] = ACTIONS(570), - [aux_sym_binary_expression_token4] = ACTIONS(570), - [anon_sym_PIPE_PIPE] = ACTIONS(560), - [anon_sym_AMP_AMP] = ACTIONS(560), - [anon_sym_CARET] = ACTIONS(560), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT_GT] = ACTIONS(560), - [anon_sym_EQ_EQ_EQ] = ACTIONS(560), - [anon_sym_BANG_EQ_EQ] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(570), - [anon_sym_GT] = ACTIONS(570), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(560), - [anon_sym_LT_EQ_GT] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(570), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_DOT] = ACTIONS(570), - [anon_sym_STAR] = ACTIONS(570), - [anon_sym_SLASH] = ACTIONS(570), - [anon_sym_PERCENT] = ACTIONS(560), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(567), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(567), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_yield_expression_token2] = ACTIONS(653), + [aux_sym_binary_expression_token1] = ACTIONS(577), + [anon_sym_QMARK_QMARK] = ACTIONS(567), + [anon_sym_STAR_STAR] = ACTIONS(567), + [aux_sym_binary_expression_token2] = ACTIONS(577), + [aux_sym_binary_expression_token3] = ACTIONS(577), + [aux_sym_binary_expression_token4] = ACTIONS(577), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(577), + [anon_sym_BANG_EQ] = ACTIONS(577), + [anon_sym_LT_GT] = ACTIONS(567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT_EQ] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ_GT] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(567), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [85] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1132), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_variadic_unpacking] = STATE(1097), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_by_ref] = STATE(1097), - [sym_yield_expression] = STATE(1077), - [sym_array_element_initializer] = STATE(1133), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [anon_sym_SEMI] = ACTIONS(560), - [anon_sym_AMP] = ACTIONS(658), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(560), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1099), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_variadic_unpacking] = STATE(1137), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_by_ref] = STATE(1137), + [sym_yield_expression] = STATE(1069), + [sym_array_element_initializer] = STATE(1100), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(665), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(567), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(49), - [anon_sym_DOT_DOT_DOT] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(570), - [aux_sym_cast_type_token1] = ACTIONS(51), - [sym_float] = ACTIONS(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_yield_expression_token2] = ACTIONS(664), - [aux_sym_binary_expression_token1] = ACTIONS(570), - [anon_sym_QMARK_QMARK] = ACTIONS(560), - [anon_sym_STAR_STAR] = ACTIONS(560), - [aux_sym_binary_expression_token2] = ACTIONS(570), - [aux_sym_binary_expression_token3] = ACTIONS(570), - [aux_sym_binary_expression_token4] = ACTIONS(570), - [anon_sym_PIPE_PIPE] = ACTIONS(560), - [anon_sym_AMP_AMP] = ACTIONS(560), - [anon_sym_CARET] = ACTIONS(560), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT_GT] = ACTIONS(560), - [anon_sym_EQ_EQ_EQ] = ACTIONS(560), - [anon_sym_BANG_EQ_EQ] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(570), - [anon_sym_GT] = ACTIONS(570), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(560), - [anon_sym_LT_EQ_GT] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(570), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_DOT] = ACTIONS(570), - [anon_sym_STAR] = ACTIONS(570), - [anon_sym_SLASH] = ACTIONS(570), - [anon_sym_PERCENT] = ACTIONS(560), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(560), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(51), + [anon_sym_DOT_DOT_DOT] = ACTIONS(669), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_yield_expression_token2] = ACTIONS(671), + [aux_sym_binary_expression_token1] = ACTIONS(577), + [anon_sym_QMARK_QMARK] = ACTIONS(567), + [anon_sym_STAR_STAR] = ACTIONS(567), + [aux_sym_binary_expression_token2] = ACTIONS(577), + [aux_sym_binary_expression_token3] = ACTIONS(577), + [aux_sym_binary_expression_token4] = ACTIONS(577), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(577), + [anon_sym_BANG_EQ] = ACTIONS(577), + [anon_sym_LT_GT] = ACTIONS(567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT_EQ] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ_GT] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(567), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(567), }, [86] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1175), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(941), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_by_ref] = STATE(941), - [sym_yield_expression] = STATE(956), - [sym_array_element_initializer] = STATE(966), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(562), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(560), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1167), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(943), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_by_ref] = STATE(943), + [sym_yield_expression] = STATE(950), + [sym_array_element_initializer] = STATE(906), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(569), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(567), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [anon_sym_QMARK] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(570), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(672), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_yield_expression_token2] = ACTIONS(686), - [aux_sym_binary_expression_token1] = ACTIONS(570), - [anon_sym_QMARK_QMARK] = ACTIONS(560), - [anon_sym_STAR_STAR] = ACTIONS(560), - [aux_sym_binary_expression_token2] = ACTIONS(570), - [aux_sym_binary_expression_token3] = ACTIONS(570), - [aux_sym_binary_expression_token4] = ACTIONS(570), - [anon_sym_PIPE_PIPE] = ACTIONS(560), - [anon_sym_AMP_AMP] = ACTIONS(560), - [anon_sym_CARET] = ACTIONS(560), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT_GT] = ACTIONS(560), - [anon_sym_EQ_EQ_EQ] = ACTIONS(560), - [anon_sym_BANG_EQ_EQ] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(570), - [anon_sym_GT] = ACTIONS(570), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(560), - [anon_sym_LT_EQ_GT] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(570), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_DOT] = ACTIONS(570), - [anon_sym_STAR] = ACTIONS(570), - [anon_sym_SLASH] = ACTIONS(570), - [anon_sym_PERCENT] = ACTIONS(560), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_yield_expression_token2] = ACTIONS(693), + [aux_sym_binary_expression_token1] = ACTIONS(577), + [anon_sym_QMARK_QMARK] = ACTIONS(567), + [anon_sym_STAR_STAR] = ACTIONS(567), + [aux_sym_binary_expression_token2] = ACTIONS(577), + [aux_sym_binary_expression_token3] = ACTIONS(577), + [aux_sym_binary_expression_token4] = ACTIONS(577), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(577), + [anon_sym_BANG_EQ] = ACTIONS(577), + [anon_sym_LT_GT] = ACTIONS(567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT_EQ] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ_GT] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(567), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [87] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_cast_type] = STATE(2566), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1272), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_cast_type] = STATE(2470), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1281), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(696), - [aux_sym_cast_type_token2] = ACTIONS(698), - [aux_sym_cast_type_token3] = ACTIONS(698), - [aux_sym_cast_type_token4] = ACTIONS(698), - [aux_sym_cast_type_token5] = ACTIONS(698), - [aux_sym_cast_type_token6] = ACTIONS(698), - [aux_sym_cast_type_token7] = ACTIONS(698), - [aux_sym_cast_type_token8] = ACTIONS(698), - [aux_sym_cast_type_token9] = ACTIONS(698), - [aux_sym_cast_type_token10] = ACTIONS(698), - [aux_sym_cast_type_token11] = ACTIONS(698), - [aux_sym_cast_type_token12] = ACTIONS(698), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(703), + [aux_sym_cast_type_token2] = ACTIONS(705), + [aux_sym_cast_type_token3] = ACTIONS(705), + [aux_sym_cast_type_token4] = ACTIONS(705), + [aux_sym_cast_type_token5] = ACTIONS(705), + [aux_sym_cast_type_token6] = ACTIONS(705), + [aux_sym_cast_type_token7] = ACTIONS(705), + [aux_sym_cast_type_token8] = ACTIONS(705), + [aux_sym_cast_type_token9] = ACTIONS(705), + [aux_sym_cast_type_token10] = ACTIONS(705), + [aux_sym_cast_type_token11] = ACTIONS(705), + [aux_sym_cast_type_token12] = ACTIONS(705), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [88] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_cast_type] = STATE(2535), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_cast_type] = STATE(2410), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1281), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(696), - [aux_sym_cast_type_token2] = ACTIONS(698), - [aux_sym_cast_type_token3] = ACTIONS(698), - [aux_sym_cast_type_token4] = ACTIONS(698), - [aux_sym_cast_type_token5] = ACTIONS(698), - [aux_sym_cast_type_token6] = ACTIONS(698), - [aux_sym_cast_type_token7] = ACTIONS(698), - [aux_sym_cast_type_token8] = ACTIONS(698), - [aux_sym_cast_type_token9] = ACTIONS(698), - [aux_sym_cast_type_token10] = ACTIONS(698), - [aux_sym_cast_type_token11] = ACTIONS(698), - [aux_sym_cast_type_token12] = ACTIONS(698), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(703), + [aux_sym_cast_type_token2] = ACTIONS(705), + [aux_sym_cast_type_token3] = ACTIONS(705), + [aux_sym_cast_type_token4] = ACTIONS(705), + [aux_sym_cast_type_token5] = ACTIONS(705), + [aux_sym_cast_type_token6] = ACTIONS(705), + [aux_sym_cast_type_token7] = ACTIONS(705), + [aux_sym_cast_type_token8] = ACTIONS(705), + [aux_sym_cast_type_token9] = ACTIONS(705), + [aux_sym_cast_type_token10] = ACTIONS(705), + [aux_sym_cast_type_token11] = ACTIONS(705), + [aux_sym_cast_type_token12] = ACTIONS(705), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [89] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_cast_type] = STATE(2475), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_cast_type] = STATE(2494), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1275), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(696), - [aux_sym_cast_type_token2] = ACTIONS(698), - [aux_sym_cast_type_token3] = ACTIONS(698), - [aux_sym_cast_type_token4] = ACTIONS(698), - [aux_sym_cast_type_token5] = ACTIONS(698), - [aux_sym_cast_type_token6] = ACTIONS(698), - [aux_sym_cast_type_token7] = ACTIONS(698), - [aux_sym_cast_type_token8] = ACTIONS(698), - [aux_sym_cast_type_token9] = ACTIONS(698), - [aux_sym_cast_type_token10] = ACTIONS(698), - [aux_sym_cast_type_token11] = ACTIONS(698), - [aux_sym_cast_type_token12] = ACTIONS(698), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(703), + [aux_sym_cast_type_token2] = ACTIONS(705), + [aux_sym_cast_type_token3] = ACTIONS(705), + [aux_sym_cast_type_token4] = ACTIONS(705), + [aux_sym_cast_type_token5] = ACTIONS(705), + [aux_sym_cast_type_token6] = ACTIONS(705), + [aux_sym_cast_type_token7] = ACTIONS(705), + [aux_sym_cast_type_token8] = ACTIONS(705), + [aux_sym_cast_type_token9] = ACTIONS(705), + [aux_sym_cast_type_token10] = ACTIONS(705), + [aux_sym_cast_type_token11] = ACTIONS(705), + [aux_sym_cast_type_token12] = ACTIONS(705), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [90] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_cast_type] = STATE(2475), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1272), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_cast_type] = STATE(2570), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1281), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(696), - [aux_sym_cast_type_token2] = ACTIONS(698), - [aux_sym_cast_type_token3] = ACTIONS(698), - [aux_sym_cast_type_token4] = ACTIONS(698), - [aux_sym_cast_type_token5] = ACTIONS(698), - [aux_sym_cast_type_token6] = ACTIONS(698), - [aux_sym_cast_type_token7] = ACTIONS(698), - [aux_sym_cast_type_token8] = ACTIONS(698), - [aux_sym_cast_type_token9] = ACTIONS(698), - [aux_sym_cast_type_token10] = ACTIONS(698), - [aux_sym_cast_type_token11] = ACTIONS(698), - [aux_sym_cast_type_token12] = ACTIONS(698), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(703), + [aux_sym_cast_type_token2] = ACTIONS(705), + [aux_sym_cast_type_token3] = ACTIONS(705), + [aux_sym_cast_type_token4] = ACTIONS(705), + [aux_sym_cast_type_token5] = ACTIONS(705), + [aux_sym_cast_type_token6] = ACTIONS(705), + [aux_sym_cast_type_token7] = ACTIONS(705), + [aux_sym_cast_type_token8] = ACTIONS(705), + [aux_sym_cast_type_token9] = ACTIONS(705), + [aux_sym_cast_type_token10] = ACTIONS(705), + [aux_sym_cast_type_token11] = ACTIONS(705), + [aux_sym_cast_type_token12] = ACTIONS(705), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [91] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_cast_type] = STATE(2429), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_cast_type] = STATE(2478), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1281), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(696), - [aux_sym_cast_type_token2] = ACTIONS(698), - [aux_sym_cast_type_token3] = ACTIONS(698), - [aux_sym_cast_type_token4] = ACTIONS(698), - [aux_sym_cast_type_token5] = ACTIONS(698), - [aux_sym_cast_type_token6] = ACTIONS(698), - [aux_sym_cast_type_token7] = ACTIONS(698), - [aux_sym_cast_type_token8] = ACTIONS(698), - [aux_sym_cast_type_token9] = ACTIONS(698), - [aux_sym_cast_type_token10] = ACTIONS(698), - [aux_sym_cast_type_token11] = ACTIONS(698), - [aux_sym_cast_type_token12] = ACTIONS(698), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(703), + [aux_sym_cast_type_token2] = ACTIONS(705), + [aux_sym_cast_type_token3] = ACTIONS(705), + [aux_sym_cast_type_token4] = ACTIONS(705), + [aux_sym_cast_type_token5] = ACTIONS(705), + [aux_sym_cast_type_token6] = ACTIONS(705), + [aux_sym_cast_type_token7] = ACTIONS(705), + [aux_sym_cast_type_token8] = ACTIONS(705), + [aux_sym_cast_type_token9] = ACTIONS(705), + [aux_sym_cast_type_token10] = ACTIONS(705), + [aux_sym_cast_type_token11] = ACTIONS(705), + [aux_sym_cast_type_token12] = ACTIONS(705), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [92] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_cast_type] = STATE(2505), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_cast_type] = STATE(2482), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1275), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(696), - [aux_sym_cast_type_token2] = ACTIONS(698), - [aux_sym_cast_type_token3] = ACTIONS(698), - [aux_sym_cast_type_token4] = ACTIONS(698), - [aux_sym_cast_type_token5] = ACTIONS(698), - [aux_sym_cast_type_token6] = ACTIONS(698), - [aux_sym_cast_type_token7] = ACTIONS(698), - [aux_sym_cast_type_token8] = ACTIONS(698), - [aux_sym_cast_type_token9] = ACTIONS(698), - [aux_sym_cast_type_token10] = ACTIONS(698), - [aux_sym_cast_type_token11] = ACTIONS(698), - [aux_sym_cast_type_token12] = ACTIONS(698), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(703), + [aux_sym_cast_type_token2] = ACTIONS(705), + [aux_sym_cast_type_token3] = ACTIONS(705), + [aux_sym_cast_type_token4] = ACTIONS(705), + [aux_sym_cast_type_token5] = ACTIONS(705), + [aux_sym_cast_type_token6] = ACTIONS(705), + [aux_sym_cast_type_token7] = ACTIONS(705), + [aux_sym_cast_type_token8] = ACTIONS(705), + [aux_sym_cast_type_token9] = ACTIONS(705), + [aux_sym_cast_type_token10] = ACTIONS(705), + [aux_sym_cast_type_token11] = ACTIONS(705), + [aux_sym_cast_type_token12] = ACTIONS(705), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [93] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_cast_type] = STATE(2503), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_cast_type] = STATE(2414), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1281), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(696), - [aux_sym_cast_type_token2] = ACTIONS(698), - [aux_sym_cast_type_token3] = ACTIONS(698), - [aux_sym_cast_type_token4] = ACTIONS(698), - [aux_sym_cast_type_token5] = ACTIONS(698), - [aux_sym_cast_type_token6] = ACTIONS(698), - [aux_sym_cast_type_token7] = ACTIONS(698), - [aux_sym_cast_type_token8] = ACTIONS(698), - [aux_sym_cast_type_token9] = ACTIONS(698), - [aux_sym_cast_type_token10] = ACTIONS(698), - [aux_sym_cast_type_token11] = ACTIONS(698), - [aux_sym_cast_type_token12] = ACTIONS(698), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(703), + [aux_sym_cast_type_token2] = ACTIONS(705), + [aux_sym_cast_type_token3] = ACTIONS(705), + [aux_sym_cast_type_token4] = ACTIONS(705), + [aux_sym_cast_type_token5] = ACTIONS(705), + [aux_sym_cast_type_token6] = ACTIONS(705), + [aux_sym_cast_type_token7] = ACTIONS(705), + [aux_sym_cast_type_token8] = ACTIONS(705), + [aux_sym_cast_type_token9] = ACTIONS(705), + [aux_sym_cast_type_token10] = ACTIONS(705), + [aux_sym_cast_type_token11] = ACTIONS(705), + [aux_sym_cast_type_token12] = ACTIONS(705), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [94] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_cast_type] = STATE(2511), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_cast_type] = STATE(2482), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1281), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(696), - [aux_sym_cast_type_token2] = ACTIONS(698), - [aux_sym_cast_type_token3] = ACTIONS(698), - [aux_sym_cast_type_token4] = ACTIONS(698), - [aux_sym_cast_type_token5] = ACTIONS(698), - [aux_sym_cast_type_token6] = ACTIONS(698), - [aux_sym_cast_type_token7] = ACTIONS(698), - [aux_sym_cast_type_token8] = ACTIONS(698), - [aux_sym_cast_type_token9] = ACTIONS(698), - [aux_sym_cast_type_token10] = ACTIONS(698), - [aux_sym_cast_type_token11] = ACTIONS(698), - [aux_sym_cast_type_token12] = ACTIONS(698), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(703), + [aux_sym_cast_type_token2] = ACTIONS(705), + [aux_sym_cast_type_token3] = ACTIONS(705), + [aux_sym_cast_type_token4] = ACTIONS(705), + [aux_sym_cast_type_token5] = ACTIONS(705), + [aux_sym_cast_type_token6] = ACTIONS(705), + [aux_sym_cast_type_token7] = ACTIONS(705), + [aux_sym_cast_type_token8] = ACTIONS(705), + [aux_sym_cast_type_token9] = ACTIONS(705), + [aux_sym_cast_type_token10] = ACTIONS(705), + [aux_sym_cast_type_token11] = ACTIONS(705), + [aux_sym_cast_type_token12] = ACTIONS(705), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [95] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_cast_type] = STATE(2476), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_cast_type] = STATE(2488), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1281), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(696), - [aux_sym_cast_type_token2] = ACTIONS(698), - [aux_sym_cast_type_token3] = ACTIONS(698), - [aux_sym_cast_type_token4] = ACTIONS(698), - [aux_sym_cast_type_token5] = ACTIONS(698), - [aux_sym_cast_type_token6] = ACTIONS(698), - [aux_sym_cast_type_token7] = ACTIONS(698), - [aux_sym_cast_type_token8] = ACTIONS(698), - [aux_sym_cast_type_token9] = ACTIONS(698), - [aux_sym_cast_type_token10] = ACTIONS(698), - [aux_sym_cast_type_token11] = ACTIONS(698), - [aux_sym_cast_type_token12] = ACTIONS(698), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(703), + [aux_sym_cast_type_token2] = ACTIONS(705), + [aux_sym_cast_type_token3] = ACTIONS(705), + [aux_sym_cast_type_token4] = ACTIONS(705), + [aux_sym_cast_type_token5] = ACTIONS(705), + [aux_sym_cast_type_token6] = ACTIONS(705), + [aux_sym_cast_type_token7] = ACTIONS(705), + [aux_sym_cast_type_token8] = ACTIONS(705), + [aux_sym_cast_type_token9] = ACTIONS(705), + [aux_sym_cast_type_token10] = ACTIONS(705), + [aux_sym_cast_type_token11] = ACTIONS(705), + [aux_sym_cast_type_token12] = ACTIONS(705), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [96] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_cast_type] = STATE(2502), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_cast_type] = STATE(2410), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1275), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(696), - [aux_sym_cast_type_token2] = ACTIONS(698), - [aux_sym_cast_type_token3] = ACTIONS(698), - [aux_sym_cast_type_token4] = ACTIONS(698), - [aux_sym_cast_type_token5] = ACTIONS(698), - [aux_sym_cast_type_token6] = ACTIONS(698), - [aux_sym_cast_type_token7] = ACTIONS(698), - [aux_sym_cast_type_token8] = ACTIONS(698), - [aux_sym_cast_type_token9] = ACTIONS(698), - [aux_sym_cast_type_token10] = ACTIONS(698), - [aux_sym_cast_type_token11] = ACTIONS(698), - [aux_sym_cast_type_token12] = ACTIONS(698), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(703), + [aux_sym_cast_type_token2] = ACTIONS(705), + [aux_sym_cast_type_token3] = ACTIONS(705), + [aux_sym_cast_type_token4] = ACTIONS(705), + [aux_sym_cast_type_token5] = ACTIONS(705), + [aux_sym_cast_type_token6] = ACTIONS(705), + [aux_sym_cast_type_token7] = ACTIONS(705), + [aux_sym_cast_type_token8] = ACTIONS(705), + [aux_sym_cast_type_token9] = ACTIONS(705), + [aux_sym_cast_type_token10] = ACTIONS(705), + [aux_sym_cast_type_token11] = ACTIONS(705), + [aux_sym_cast_type_token12] = ACTIONS(705), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [97] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_cast_type] = STATE(2496), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_cast_type] = STATE(2417), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1281), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(696), - [aux_sym_cast_type_token2] = ACTIONS(698), - [aux_sym_cast_type_token3] = ACTIONS(698), - [aux_sym_cast_type_token4] = ACTIONS(698), - [aux_sym_cast_type_token5] = ACTIONS(698), - [aux_sym_cast_type_token6] = ACTIONS(698), - [aux_sym_cast_type_token7] = ACTIONS(698), - [aux_sym_cast_type_token8] = ACTIONS(698), - [aux_sym_cast_type_token9] = ACTIONS(698), - [aux_sym_cast_type_token10] = ACTIONS(698), - [aux_sym_cast_type_token11] = ACTIONS(698), - [aux_sym_cast_type_token12] = ACTIONS(698), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(703), + [aux_sym_cast_type_token2] = ACTIONS(705), + [aux_sym_cast_type_token3] = ACTIONS(705), + [aux_sym_cast_type_token4] = ACTIONS(705), + [aux_sym_cast_type_token5] = ACTIONS(705), + [aux_sym_cast_type_token6] = ACTIONS(705), + [aux_sym_cast_type_token7] = ACTIONS(705), + [aux_sym_cast_type_token8] = ACTIONS(705), + [aux_sym_cast_type_token9] = ACTIONS(705), + [aux_sym_cast_type_token10] = ACTIONS(705), + [aux_sym_cast_type_token11] = ACTIONS(705), + [aux_sym_cast_type_token12] = ACTIONS(705), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [98] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_variadic_placeholder] = STATE(2565), - [sym_argument] = STATE(2150), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [anon_sym_COMMA] = ACTIONS(706), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_cast_type] = STATE(2463), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1281), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(703), + [aux_sym_cast_type_token2] = ACTIONS(705), + [aux_sym_cast_type_token3] = ACTIONS(705), + [aux_sym_cast_type_token4] = ACTIONS(705), + [aux_sym_cast_type_token5] = ACTIONS(705), + [aux_sym_cast_type_token6] = ACTIONS(705), + [aux_sym_cast_type_token7] = ACTIONS(705), + [aux_sym_cast_type_token8] = ACTIONS(705), + [aux_sym_cast_type_token9] = ACTIONS(705), + [aux_sym_cast_type_token10] = ACTIONS(705), + [aux_sym_cast_type_token11] = ACTIONS(705), + [aux_sym_cast_type_token12] = ACTIONS(705), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [99] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1185), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(638), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(638), - [sym_nullsafe_member_access_expression] = STATE(638), - [sym_scoped_property_access_expression] = STATE(638), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(1890), - [sym__array_destructing_element] = STATE(1891), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(941), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_by_ref] = STATE(2229), - [sym_yield_expression] = STATE(956), - [sym_array_element_initializer] = STATE(1905), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym__array_destructing_repeat1] = STATE(1895), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(730), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_variadic_placeholder] = STATE(2430), + [sym_argument] = STATE(1933), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(713), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(732), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_DOT_DOT_DOT] = ACTIONS(723), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [100] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_variadic_placeholder] = STATE(2564), - [sym_argument] = STATE(2086), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [anon_sym_COMMA] = ACTIONS(734), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_variadic_placeholder] = STATE(2409), + [sym_argument] = STATE(1875), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(735), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(737), + [anon_sym_DOT_DOT_DOT] = ACTIONS(723), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [101] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_variadic_placeholder] = STATE(2598), - [sym_argument] = STATE(2133), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [anon_sym_COMMA] = ACTIONS(738), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_variadic_placeholder] = STATE(2596), + [sym_argument] = STATE(2119), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(739), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(740), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_DOT_DOT_DOT] = ACTIONS(723), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [102] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1185), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(638), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(638), - [sym_nullsafe_member_access_expression] = STATE(638), - [sym_scoped_property_access_expression] = STATE(638), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(1890), - [sym__array_destructing_element] = STATE(1891), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(941), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_by_ref] = STATE(2229), - [sym_yield_expression] = STATE(956), - [sym_array_element_initializer] = STATE(1905), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym__array_destructing_repeat1] = STATE(1895), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(730), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_variadic_placeholder] = STATE(2515), + [sym_argument] = STATE(2053), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(743), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(742), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(745), + [anon_sym_DOT_DOT_DOT] = ACTIONS(723), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [103] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1185), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(638), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(638), - [sym_nullsafe_member_access_expression] = STATE(638), - [sym_scoped_property_access_expression] = STATE(638), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(1890), - [sym__array_destructing_element] = STATE(1891), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(941), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_by_ref] = STATE(2229), - [sym_yield_expression] = STATE(956), - [sym_array_element_initializer] = STATE(1892), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym__array_destructing_repeat1] = STATE(1895), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(744), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_variadic_placeholder] = STATE(2576), + [sym_argument] = STATE(2109), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(747), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(746), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_DOT_DOT_DOT] = ACTIONS(723), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [104] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1185), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(638), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(638), - [sym_nullsafe_member_access_expression] = STATE(638), - [sym_scoped_property_access_expression] = STATE(638), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(1890), - [sym__array_destructing_element] = STATE(1891), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(941), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_by_ref] = STATE(2229), - [sym_yield_expression] = STATE(956), - [sym_array_element_initializer] = STATE(1905), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym__array_destructing_repeat1] = STATE(1895), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(730), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1181), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(628), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(628), + [sym_nullsafe_member_access_expression] = STATE(628), + [sym_scoped_property_access_expression] = STATE(628), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(1969), + [sym__array_destructing_element] = STATE(1968), + [sym_function_call_expression] = STATE(609), + [sym_scoped_call_expression] = STATE(609), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(609), + [sym_nullsafe_member_call_expression] = STATE(609), + [sym_variadic_unpacking] = STATE(943), + [sym_subscript_expression] = STATE(609), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(609), + [sym_variable_name] = STATE(609), + [sym_by_ref] = STATE(2246), + [sym_yield_expression] = STATE(950), + [sym_array_element_initializer] = STATE(1951), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym__array_destructing_repeat1] = STATE(1962), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(753), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(748), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_RBRACK] = ACTIONS(755), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [105] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_variadic_placeholder] = STATE(2459), - [sym_argument] = STATE(1925), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [anon_sym_COMMA] = ACTIONS(750), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1181), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(628), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(628), + [sym_nullsafe_member_access_expression] = STATE(628), + [sym_scoped_property_access_expression] = STATE(628), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(1969), + [sym__array_destructing_element] = STATE(1968), + [sym_function_call_expression] = STATE(609), + [sym_scoped_call_expression] = STATE(609), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(609), + [sym_nullsafe_member_call_expression] = STATE(609), + [sym_variadic_unpacking] = STATE(943), + [sym_subscript_expression] = STATE(609), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(609), + [sym_variable_name] = STATE(609), + [sym_by_ref] = STATE(2246), + [sym_yield_expression] = STATE(950), + [sym_array_element_initializer] = STATE(1966), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym__array_destructing_repeat1] = STATE(1962), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(757), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(752), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_RBRACK] = ACTIONS(759), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [106] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_variadic_placeholder] = STATE(2519), - [sym_argument] = STATE(1902), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [anon_sym_COMMA] = ACTIONS(754), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1181), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(628), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(628), + [sym_nullsafe_member_access_expression] = STATE(628), + [sym_scoped_property_access_expression] = STATE(628), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(1969), + [sym__array_destructing_element] = STATE(1968), + [sym_function_call_expression] = STATE(609), + [sym_scoped_call_expression] = STATE(609), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(609), + [sym_nullsafe_member_call_expression] = STATE(609), + [sym_variadic_unpacking] = STATE(943), + [sym_subscript_expression] = STATE(609), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(609), + [sym_variable_name] = STATE(609), + [sym_by_ref] = STATE(2246), + [sym_yield_expression] = STATE(950), + [sym_array_element_initializer] = STATE(1951), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym__array_destructing_repeat1] = STATE(1962), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(753), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_RBRACK] = ACTIONS(761), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [107] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_variadic_placeholder] = STATE(2584), - [sym_argument] = STATE(2126), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [anon_sym_COMMA] = ACTIONS(758), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1181), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(628), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(628), + [sym_nullsafe_member_access_expression] = STATE(628), + [sym_scoped_property_access_expression] = STATE(628), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(1969), + [sym__array_destructing_element] = STATE(1968), + [sym_function_call_expression] = STATE(609), + [sym_scoped_call_expression] = STATE(609), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(609), + [sym_nullsafe_member_call_expression] = STATE(609), + [sym_variadic_unpacking] = STATE(943), + [sym_subscript_expression] = STATE(609), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(609), + [sym_variable_name] = STATE(609), + [sym_by_ref] = STATE(2246), + [sym_yield_expression] = STATE(950), + [sym_array_element_initializer] = STATE(1951), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym__array_destructing_repeat1] = STATE(1962), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(753), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_RBRACK] = ACTIONS(763), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [108] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_variadic_placeholder] = STATE(2624), - [sym_argument] = STATE(2143), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [anon_sym_COMMA] = ACTIONS(762), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_variadic_placeholder] = STATE(2598), + [sym_argument] = STATE(1940), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(765), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(723), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [109] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_variadic_placeholder] = STATE(2583), - [sym_argument] = STATE(2124), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [anon_sym_COMMA] = ACTIONS(766), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_variadic_placeholder] = STATE(2564), + [sym_argument] = STATE(2086), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(769), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(768), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_DOT_DOT_DOT] = ACTIONS(723), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [110] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1185), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(638), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(638), - [sym_nullsafe_member_access_expression] = STATE(638), - [sym_scoped_property_access_expression] = STATE(638), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(1890), - [sym__array_destructing_element] = STATE(1891), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(941), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_by_ref] = STATE(2229), - [sym_yield_expression] = STATE(956), - [sym_array_element_initializer] = STATE(1905), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym__array_destructing_repeat1] = STATE(1895), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(730), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_variadic_placeholder] = STATE(2566), + [sym_argument] = STATE(2093), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(773), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(770), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_DOT_DOT_DOT] = ACTIONS(723), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [111] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_argument] = STATE(2192), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1181), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(628), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(628), + [sym_nullsafe_member_access_expression] = STATE(628), + [sym_scoped_property_access_expression] = STATE(628), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(1969), + [sym__array_destructing_element] = STATE(1968), + [sym_function_call_expression] = STATE(609), + [sym_scoped_call_expression] = STATE(609), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(609), + [sym_nullsafe_member_call_expression] = STATE(609), + [sym_variadic_unpacking] = STATE(943), + [sym_subscript_expression] = STATE(609), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(609), + [sym_variable_name] = STATE(609), + [sym_by_ref] = STATE(2246), + [sym_yield_expression] = STATE(950), + [sym_array_element_initializer] = STATE(1951), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym__array_destructing_repeat1] = STATE(1962), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(753), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_RBRACK] = ACTIONS(777), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [112] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_argument] = STATE(2192), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_argument] = STATE(2217), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(774), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [113] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_argument] = STATE(2192), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_argument] = STATE(2217), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(781), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [114] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_argument] = STATE(2192), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1178), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(943), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_by_ref] = STATE(943), + [sym_yield_expression] = STATE(950), + [sym_array_element_initializer] = STATE(1895), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(783), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(785), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [115] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1180), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_variadic_unpacking] = STATE(941), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_by_ref] = STATE(941), - [sym_yield_expression] = STATE(956), - [sym_array_element_initializer] = STATE(1905), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(780), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_argument] = STATE(2217), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_RBRACK] = ACTIONS(782), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [116] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_argument] = STATE(2192), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_argument] = STATE(2217), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(784), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [117] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_argument] = STATE(2192), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_argument] = STATE(2217), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(786), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [118] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_argument] = STATE(2192), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_argument] = STATE(2217), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(788), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [119] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_argument] = STATE(2192), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_argument] = STATE(2217), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [120] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_argument] = STATE(2192), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1188), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_variadic_unpacking] = STATE(943), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_by_ref] = STATE(943), + [sym_yield_expression] = STATE(950), + [sym_array_element_initializer] = STATE(1951), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(797), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(792), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(799), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [121] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_argument] = STATE(2192), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_argument] = STATE(2217), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [122] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1186), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(941), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_by_ref] = STATE(941), - [sym_yield_expression] = STATE(956), - [sym_array_element_initializer] = STATE(1884), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(796), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_argument] = STATE(2217), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [123] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_argument] = STATE(2192), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_argument] = STATE(2217), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(800), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [124] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1186), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(941), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_by_ref] = STATE(941), - [sym_yield_expression] = STATE(956), - [sym_array_element_initializer] = STATE(1915), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(802), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1188), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_variadic_unpacking] = STATE(943), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_by_ref] = STATE(943), + [sym_yield_expression] = STATE(950), + [sym_array_element_initializer] = STATE(1966), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(807), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(809), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [125] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_argument] = STATE(2192), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1178), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(943), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_by_ref] = STATE(943), + [sym_yield_expression] = STATE(950), + [sym_array_element_initializer] = STATE(1874), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(811), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(806), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(813), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [126] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1180), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_variadic_unpacking] = STATE(941), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_by_ref] = STATE(941), - [sym_yield_expression] = STATE(956), - [sym_array_element_initializer] = STATE(1892), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(808), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_argument] = STATE(2217), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_RBRACK] = ACTIONS(810), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [127] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_argument] = STATE(2192), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_argument] = STATE(2217), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(812), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [128] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_argument] = STATE(2192), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_argument] = STATE(2217), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(814), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(819), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [129] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_argument] = STATE(2192), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_argument] = STATE(2217), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(816), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [130] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_argument] = STATE(2192), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_argument] = STATE(2217), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(818), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(823), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [131] = { - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_argument] = STATE(2192), - [sym__argument_name] = STATE(154), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2329), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1493), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(704), - [aux_sym_namespace_definition_token1] = ACTIONS(708), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(710), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_argument] = STATE(2217), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(718), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(722), - [anon_sym_parent] = ACTIONS(722), - [aux_sym__argument_name_token1] = ACTIONS(724), - [aux_sym__argument_name_token2] = ACTIONS(726), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(825), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [132] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1186), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(941), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_by_ref] = STATE(941), - [sym_yield_expression] = STATE(956), - [sym_array_element_initializer] = STATE(1987), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1188), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_variadic_unpacking] = STATE(943), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_by_ref] = STATE(943), + [sym_yield_expression] = STATE(950), + [sym_array_element_initializer] = STATE(2070), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(820), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(827), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [133] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1180), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_variadic_unpacking] = STATE(941), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_by_ref] = STATE(941), - [sym_yield_expression] = STATE(956), - [sym_array_element_initializer] = STATE(1987), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_match_condition_list] = STATE(2491), + [sym_match_conditional_expression] = STATE(2032), + [sym_match_default_expression] = STATE(2032), + [sym_expression] = STATE(1179), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(829), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_RBRACK] = ACTIONS(822), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(831), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [aux_sym_match_default_expression_token1] = ACTIONS(833), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [134] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1180), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_variadic_unpacking] = STATE(941), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_by_ref] = STATE(941), - [sym_yield_expression] = STATE(956), - [sym_array_element_initializer] = STATE(1987), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1178), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(943), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_by_ref] = STATE(943), + [sym_yield_expression] = STATE(950), + [sym_array_element_initializer] = STATE(2070), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_RBRACK] = ACTIONS(824), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [135] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1180), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_variadic_unpacking] = STATE(941), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_by_ref] = STATE(941), - [sym_yield_expression] = STATE(956), - [sym_array_element_initializer] = STATE(1987), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_reference_modifier] = STATE(198), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1222), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_argument] = STATE(2217), + [sym__argument_name] = STATE(155), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2350), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1470), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(711), + [aux_sym_namespace_definition_token1] = ACTIONS(715), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(717), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_RBRACK] = ACTIONS(826), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(725), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(729), + [anon_sym_parent] = ACTIONS(729), + [aux_sym__argument_name_token1] = ACTIONS(731), + [aux_sym__argument_name_token2] = ACTIONS(733), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [136] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1186), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(941), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_by_ref] = STATE(941), - [sym_yield_expression] = STATE(956), - [sym_array_element_initializer] = STATE(1987), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1188), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_variadic_unpacking] = STATE(943), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_by_ref] = STATE(943), + [sym_yield_expression] = STATE(950), + [sym_array_element_initializer] = STATE(2070), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(837), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [137] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym_match_condition_list] = STATE(2441), - [sym_match_conditional_expression] = STATE(1935), - [sym_match_default_expression] = STATE(1935), - [sym__expression] = STATE(1177), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(830), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1178), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(943), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_by_ref] = STATE(943), + [sym_yield_expression] = STATE(950), + [sym_array_element_initializer] = STATE(2070), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(832), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [aux_sym_match_default_expression_token1] = ACTIONS(834), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [138] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym_match_condition_list] = STATE(2441), - [sym_match_conditional_expression] = STATE(1976), - [sym_match_default_expression] = STATE(1976), - [sym__expression] = STATE(1177), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(836), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1188), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_variadic_unpacking] = STATE(943), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_by_ref] = STATE(943), + [sym_yield_expression] = STATE(950), + [sym_array_element_initializer] = STATE(2070), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(838), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [aux_sym_match_default_expression_token1] = ACTIONS(834), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(841), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [139] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1186), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(941), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_by_ref] = STATE(941), - [sym_yield_expression] = STATE(956), - [sym_array_element_initializer] = STATE(1987), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1178), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(943), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_by_ref] = STATE(943), + [sym_yield_expression] = STATE(950), + [sym_array_element_initializer] = STATE(2070), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(840), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [140] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1180), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_variadic_unpacking] = STATE(941), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_by_ref] = STATE(941), - [sym_yield_expression] = STATE(956), - [sym_array_element_initializer] = STATE(1987), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1178), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(943), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_by_ref] = STATE(943), + [sym_yield_expression] = STATE(950), + [sym_array_element_initializer] = STATE(2070), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_RBRACK] = ACTIONS(842), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(845), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [141] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1186), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(941), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_by_ref] = STATE(941), - [sym_yield_expression] = STATE(956), - [sym_array_element_initializer] = STATE(1987), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1188), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_variadic_unpacking] = STATE(943), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_by_ref] = STATE(943), + [sym_yield_expression] = STATE(950), + [sym_array_element_initializer] = STATE(2070), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(847), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [142] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1180), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_variadic_unpacking] = STATE(941), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_by_ref] = STATE(941), - [sym_yield_expression] = STATE(956), - [sym_array_element_initializer] = STATE(1987), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_match_condition_list] = STATE(2491), + [sym_match_conditional_expression] = STATE(1908), + [sym_match_default_expression] = STATE(1908), + [sym_expression] = STATE(1179), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(849), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(851), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [aux_sym_match_default_expression_token1] = ACTIONS(833), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [143] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym_match_condition_list] = STATE(2441), - [sym_match_conditional_expression] = STATE(2189), - [sym_match_default_expression] = STATE(2189), - [sym__expression] = STATE(1177), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_match_condition_list] = STATE(2491), + [sym_match_conditional_expression] = STATE(2328), + [sym_match_default_expression] = STATE(2328), + [sym_expression] = STATE(1179), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(846), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [aux_sym_match_default_expression_token1] = ACTIONS(834), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(853), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [aux_sym_match_default_expression_token1] = ACTIONS(833), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [144] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1263), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(1890), - [sym__array_destructing_element] = STATE(2313), - [sym_function_call_expression] = STATE(629), - [sym_scoped_call_expression] = STATE(629), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(629), - [sym_nullsafe_member_call_expression] = STATE(629), - [sym_subscript_expression] = STATE(629), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(629), - [sym_variable_name] = STATE(629), - [sym_by_ref] = STATE(2313), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(848), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1188), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_variadic_unpacking] = STATE(943), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_by_ref] = STATE(943), + [sym_yield_expression] = STATE(950), + [sym_array_element_initializer] = STATE(2070), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(850), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(852), - [anon_sym_RBRACK] = ACTIONS(848), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(635), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [145] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym_match_condition_list] = STATE(2441), - [sym_match_conditional_expression] = STATE(2189), - [sym_match_default_expression] = STATE(2189), - [sym__expression] = STATE(1177), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_match_condition_list] = STATE(2491), + [sym_match_conditional_expression] = STATE(2328), + [sym_match_default_expression] = STATE(2328), + [sym_expression] = STATE(1179), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(854), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [aux_sym_match_default_expression_token1] = ACTIONS(834), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(855), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [aux_sym_match_default_expression_token1] = ACTIONS(833), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [146] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1262), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(1779), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_by_ref] = STATE(1917), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym__list_destructing_repeat1] = STATE(1918), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(856), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1273), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(629), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(629), + [sym_nullsafe_member_access_expression] = STATE(629), + [sym_scoped_property_access_expression] = STATE(629), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(1969), + [sym__array_destructing_element] = STATE(2377), + [sym_function_call_expression] = STATE(608), + [sym_scoped_call_expression] = STATE(608), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(608), + [sym_nullsafe_member_call_expression] = STATE(608), + [sym_subscript_expression] = STATE(608), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(608), + [sym_variable_name] = STATE(608), + [sym_by_ref] = STATE(2377), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(857), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(850), - [anon_sym_RPAREN] = ACTIONS(858), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(859), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_RBRACK] = ACTIONS(863), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [147] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1263), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(1890), - [sym__array_destructing_element] = STATE(2313), - [sym_function_call_expression] = STATE(629), - [sym_scoped_call_expression] = STATE(629), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(629), - [sym_nullsafe_member_call_expression] = STATE(629), - [sym_subscript_expression] = STATE(629), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(629), - [sym_variable_name] = STATE(629), - [sym_by_ref] = STATE(2313), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(848), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_match_condition_list] = STATE(2491), + [sym_match_conditional_expression] = STATE(2328), + [sym_match_default_expression] = STATE(2328), + [sym_expression] = STATE(1179), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(850), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(852), - [anon_sym_RBRACK] = ACTIONS(860), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(866), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [aux_sym_match_default_expression_token1] = ACTIONS(833), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [148] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym_match_condition_list] = STATE(2441), - [sym_match_conditional_expression] = STATE(2189), - [sym_match_default_expression] = STATE(2189), - [sym__expression] = STATE(1177), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1273), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(629), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(629), + [sym_nullsafe_member_access_expression] = STATE(629), + [sym_scoped_property_access_expression] = STATE(629), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(1969), + [sym__array_destructing_element] = STATE(2377), + [sym_function_call_expression] = STATE(608), + [sym_scoped_call_expression] = STATE(608), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(608), + [sym_nullsafe_member_call_expression] = STATE(608), + [sym_subscript_expression] = STATE(608), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(608), + [sym_variable_name] = STATE(608), + [sym_by_ref] = STATE(2377), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(857), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(863), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [aux_sym_match_default_expression_token1] = ACTIONS(834), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(859), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_RBRACK] = ACTIONS(857), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [149] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1263), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(1890), - [sym__array_destructing_element] = STATE(2313), - [sym_function_call_expression] = STATE(629), - [sym_scoped_call_expression] = STATE(629), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(629), - [sym_nullsafe_member_call_expression] = STATE(629), - [sym_subscript_expression] = STATE(629), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(629), - [sym_variable_name] = STATE(629), - [sym_by_ref] = STATE(2313), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(848), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_match_condition_list] = STATE(2491), + [sym_match_conditional_expression] = STATE(2328), + [sym_match_default_expression] = STATE(2328), + [sym_expression] = STATE(1179), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(850), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(852), - [anon_sym_RBRACK] = ACTIONS(865), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(868), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [aux_sym_match_default_expression_token1] = ACTIONS(833), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [150] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym_match_condition_list] = STATE(2441), - [sym_match_conditional_expression] = STATE(2189), - [sym_match_default_expression] = STATE(2189), - [sym__expression] = STATE(1177), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1178), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(943), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_by_ref] = STATE(943), + [sym_yield_expression] = STATE(950), + [sym_array_element_initializer] = STATE(2070), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(868), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [aux_sym_match_default_expression_token1] = ACTIONS(834), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [151] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1186), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(941), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_by_ref] = STATE(941), - [sym_yield_expression] = STATE(956), - [sym_array_element_initializer] = STATE(1987), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1277), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(627), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(627), + [sym_nullsafe_member_access_expression] = STATE(627), + [sym_scoped_property_access_expression] = STATE(627), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(1858), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_by_ref] = STATE(1900), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym__list_destructing_repeat1] = STATE(1901), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(870), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(859), + [anon_sym_RPAREN] = ACTIONS(872), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [152] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(1978), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(621), - [sym_scoped_call_expression] = STATE(621), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(621), - [sym_nullsafe_member_call_expression] = STATE(621), - [sym_subscript_expression] = STATE(621), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(621), - [sym_variable_name] = STATE(621), - [sym_by_ref] = STATE(2379), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(870), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1273), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(629), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(629), + [sym_nullsafe_member_access_expression] = STATE(629), + [sym_scoped_property_access_expression] = STATE(629), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(1969), + [sym__array_destructing_element] = STATE(2377), + [sym_function_call_expression] = STATE(608), + [sym_scoped_call_expression] = STATE(608), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(608), + [sym_nullsafe_member_call_expression] = STATE(608), + [sym_subscript_expression] = STATE(608), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(608), + [sym_variable_name] = STATE(608), + [sym_by_ref] = STATE(2377), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(857), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(850), - [anon_sym_RPAREN] = ACTIONS(870), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(859), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_RBRACK] = ACTIONS(874), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [153] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym_match_condition_list] = STATE(2441), - [sym_match_conditional_expression] = STATE(2189), - [sym_match_default_expression] = STATE(2189), - [sym__expression] = STATE(1177), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1298), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(630), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(630), + [sym_nullsafe_member_access_expression] = STATE(630), + [sym_scoped_property_access_expression] = STATE(630), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2044), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(2213), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(877), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [aux_sym_match_default_expression_token1] = ACTIONS(834), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(859), + [anon_sym_RPAREN] = ACTIONS(877), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [154] = { - [sym_reference_modifier] = STATE(190), - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1216), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2361), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1467), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(702), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_match_condition_list] = STATE(2491), + [sym_match_conditional_expression] = STATE(2328), + [sym_match_default_expression] = STATE(2328), + [sym_expression] = STATE(1179), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [aux_sym_match_default_expression_token1] = ACTIONS(833), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [155] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2576), - [sym_sequence_expression] = STATE(2576), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1211), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_reference_modifier] = STATE(188), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1225), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2168), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1475), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(709), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(872), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [156] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2593), - [sym_sequence_expression] = STATE(2593), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1211), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2408), + [sym_sequence_expression] = STATE(2408), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1220), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(874), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(879), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [157] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2483), - [sym_sequence_expression] = STATE(2483), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1211), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2453), + [sym_sequence_expression] = STATE(2453), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1220), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(876), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(881), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [158] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2486), - [sym_sequence_expression] = STATE(2486), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_SEMI] = ACTIONS(878), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_foreach_pair] = STATE(2542), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1206), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2185), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_by_ref] = STATE(2542), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [159] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2595), - [sym_sequence_expression] = STATE(2595), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_SEMI] = ACTIONS(880), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2543), + [sym_sequence_expression] = STATE(2543), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1237), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(883), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [160] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2422), - [sym_sequence_expression] = STATE(2422), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_SEMI] = ACTIONS(882), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2533), + [sym_sequence_expression] = STATE(2533), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1237), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(885), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [161] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2570), - [sym_sequence_expression] = STATE(2570), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_SEMI] = ACTIONS(884), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2544), + [sym_sequence_expression] = STATE(2544), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1220), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(887), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [162] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2453), - [sym_sequence_expression] = STATE(2453), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1211), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2595), + [sym_sequence_expression] = STATE(2595), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1237), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(889), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(886), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [163] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_foreach_pair] = STATE(2466), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1236), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2318), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(2466), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2471), + [sym_sequence_expression] = STATE(2471), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1220), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(891), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [164] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2618), - [sym_sequence_expression] = STATE(2618), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1211), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2588), + [sym_sequence_expression] = STATE(2588), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1237), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(893), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(888), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [165] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2625), - [sym_sequence_expression] = STATE(2625), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_SEMI] = ACTIONS(890), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_foreach_pair] = STATE(2469), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1230), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2285), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_by_ref] = STATE(2469), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [166] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2574), - [sym_sequence_expression] = STATE(2574), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1211), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2401), + [sym_sequence_expression] = STATE(2401), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1237), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(895), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(892), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [167] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2456), - [sym_sequence_expression] = STATE(2456), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1211), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2500), + [sym_sequence_expression] = STATE(2500), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1220), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(894), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(897), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [168] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2578), - [sym_sequence_expression] = STATE(2578), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_SEMI] = ACTIONS(896), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2526), + [sym_sequence_expression] = STATE(2526), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1237), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(899), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [169] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_foreach_pair] = STATE(2488), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2292), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(2488), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2537), + [sym_sequence_expression] = STATE(2537), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1220), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(901), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [170] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2425), - [sym_sequence_expression] = STATE(2425), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1211), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2531), + [sym_sequence_expression] = STATE(2531), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1220), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(898), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(903), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [171] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2430), - [sym_sequence_expression] = STATE(2430), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1211), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2501), + [sym_sequence_expression] = STATE(2501), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1220), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(900), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(905), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [172] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2432), - [sym_sequence_expression] = STATE(2432), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1211), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2412), + [sym_sequence_expression] = STATE(2412), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1220), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(902), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(907), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [173] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2617), - [sym_sequence_expression] = STATE(2617), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_SEMI] = ACTIONS(904), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2474), + [sym_sequence_expression] = STATE(2474), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1237), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(909), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [174] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2619), - [sym_sequence_expression] = STATE(2619), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_SEMI] = ACTIONS(906), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_foreach_pair] = STATE(2405), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1236), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2396), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_by_ref] = STATE(2405), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [175] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2568), - [sym_sequence_expression] = STATE(2568), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1211), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2502), + [sym_sequence_expression] = STATE(2502), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1220), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(908), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(911), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [176] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2591), - [sym_sequence_expression] = STATE(2591), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_SEMI] = ACTIONS(910), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2558), + [sym_sequence_expression] = STATE(2558), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1237), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(913), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [177] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2622), - [sym_sequence_expression] = STATE(2622), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_SEMI] = ACTIONS(912), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_foreach_pair] = STATE(2534), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1218), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2188), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_by_ref] = STATE(2534), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [178] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_foreach_pair] = STATE(2427), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1235), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2407), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(2427), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2585), + [sym_sequence_expression] = STATE(2585), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1237), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(915), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [179] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2632), - [sym_sequence_expression] = STATE(2632), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_SEMI] = ACTIONS(914), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2532), + [sym_sequence_expression] = STATE(2532), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1220), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(917), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [180] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_foreach_pair] = STATE(2571), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1212), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2219), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(2571), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2582), + [sym_sequence_expression] = STATE(2582), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1237), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(919), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [181] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2563), - [sym_sequence_expression] = STATE(2563), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_SEMI] = ACTIONS(916), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2554), + [sym_sequence_expression] = STATE(2554), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1237), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(921), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [182] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__expressions] = STATE(2468), - [sym_sequence_expression] = STATE(2468), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1211), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2452), + [sym_sequence_expression] = STATE(2452), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1220), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(918), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(923), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [183] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1024), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_by_ref] = STATE(955), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(920), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__expressions] = STATE(2580), + [sym_sequence_expression] = STATE(2580), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1237), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(925), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [184] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym__expressions] = STATE(2270), - [sym_sequence_expression] = STATE(2270), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1183), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1205), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(927), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(927), }, [185] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1224), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [anon_sym_SEMI] = ACTIONS(922), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1261), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2186), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_by_ref] = STATE(2541), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(922), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), + [sym_comment] = ACTIONS(3), }, [186] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [anon_sym_SEMI] = ACTIONS(924), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1038), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(632), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(632), + [sym_nullsafe_member_access_expression] = STATE(632), + [sym_scoped_property_access_expression] = STATE(632), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2062), + [sym_function_call_expression] = STATE(626), + [sym_scoped_call_expression] = STATE(626), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(626), + [sym_nullsafe_member_call_expression] = STATE(626), + [sym_subscript_expression] = STATE(626), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(626), + [sym_variable_name] = STATE(626), + [sym_by_ref] = STATE(2193), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(924), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), + [sym_comment] = ACTIONS(3), }, [187] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1222), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2363), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1194), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(929), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), - [sym_comment] = ACTIONS(3), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(929), }, [188] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(994), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(955), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(920), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1228), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2326), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1489), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [189] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1171), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_by_ref] = STATE(955), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym__expressions] = STATE(2231), + [sym_sequence_expression] = STATE(2231), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1180), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [190] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1195), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(2253), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1448), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1038), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_by_ref] = STATE(915), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [191] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [anon_sym_SEMI] = ACTIONS(926), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1195), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(931), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(926), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(931), }, [192] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1054), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_by_ref] = STATE(1106), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(928), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1204), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(933), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(933), }, [193] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1215), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [anon_sym_SEMI] = ACTIONS(930), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(986), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_by_ref] = STATE(915), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(935), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(930), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), + [sym_comment] = ACTIONS(3), }, [194] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym__expressions] = STATE(2152), - [sym_sequence_expression] = STATE(2152), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1183), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1038), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_by_ref] = STATE(915), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(935), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [195] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1250), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2202), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(2605), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1175), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_by_ref] = STATE(915), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(751), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [196] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1171), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_by_ref] = STATE(955), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(920), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1196), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(937), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), - [sym_comment] = ACTIONS(3), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(937), }, [197] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [anon_sym_SEMI] = ACTIONS(932), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym__expressions] = STATE(2239), + [sym_sequence_expression] = STATE(2239), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1180), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(932), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), }, [198] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1024), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(1986), - [sym_function_call_expression] = STATE(632), - [sym_scoped_call_expression] = STATE(632), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(632), - [sym_nullsafe_member_call_expression] = STATE(632), - [sym_subscript_expression] = STATE(632), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(632), - [sym_variable_name] = STATE(632), - [sym_by_ref] = STATE(2373), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1217), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_variadic_unpacking] = STATE(2170), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1473), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [199] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [anon_sym_SEMI] = ACTIONS(934), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1223), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(939), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(934), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(939), }, [200] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1024), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_by_ref] = STATE(955), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(728), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1175), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_by_ref] = STATE(915), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(935), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [201] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1164), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(936), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1084), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_by_ref] = STATE(1118), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(941), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [202] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1249), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1192), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [anon_sym_RPAREN] = ACTIONS(938), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_EQ_GT] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [203] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1221), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1265), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(940), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(945), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [204] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1284), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(999), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(947), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_COLON] = ACTIONS(942), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [205] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1285), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1276), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_RBRACK] = ACTIONS(944), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [anon_sym_COLON] = ACTIONS(949), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [206] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1253), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_sequence_expression] = STATE(2332), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1190), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [anon_sym_RPAREN] = ACTIONS(946), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [207] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(976), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(948), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1254), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(951), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [208] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_sequence_expression] = STATE(2254), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1198), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1282), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(953), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [209] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1304), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1192), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_RBRACK] = ACTIONS(950), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_EQ_GT] = ACTIONS(955), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [210] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_sequence_expression] = STATE(2401), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1182), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1258), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(957), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [211] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1260), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1306), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_RBRACK] = ACTIONS(952), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [anon_sym_COLON] = ACTIONS(959), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [212] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1056), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(954), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_sequence_expression] = STATE(2332), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1191), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [213] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_sequence_expression] = STATE(2254), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1199), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1165), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(961), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [214] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1027), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(956), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1243), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [anon_sym_COLON] = ACTIONS(963), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [215] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1303), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1283), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_COLON] = ACTIONS(958), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(965), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [216] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1305), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1176), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_COLON] = ACTIONS(960), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(967), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [217] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1290), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1305), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_RBRACK] = ACTIONS(962), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [anon_sym_RPAREN] = ACTIONS(969), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [218] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1281), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1097), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(971), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_RBRACK] = ACTIONS(964), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [219] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1170), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_sequence_expression] = STATE(2268), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1186), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(966), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [220] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1276), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1266), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_RBRACK] = ACTIONS(968), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [anon_sym_COLON] = ACTIONS(973), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [221] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1287), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1020), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(975), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [anon_sym_COLON] = ACTIONS(970), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [222] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1221), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1240), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(977), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [223] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1019), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1295), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [anon_sym_RPAREN] = ACTIONS(979), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [224] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(992), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1050), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [225] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1265), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1036), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [226] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1301), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1241), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [227] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(975), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1242), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [228] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1298), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1216), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [229] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1300), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1251), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [230] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1221), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [231] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1246), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1207), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [232] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1248), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1172), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [233] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1254), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1209), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [234] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1184), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1213), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [235] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1035), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1210), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [236] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1013), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1110), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [237] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(977), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1189), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [238] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1105), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1109), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [239] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(978), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1114), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [240] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1052), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1041), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [241] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1102), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1048), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [242] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1101), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1049), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [243] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1098), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(990), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [244] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1052), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [245] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1095), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1053), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [246] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1094), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1055), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [247] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1090), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1056), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [248] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1088), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1062), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [249] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1086), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1063), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [250] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1079), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1074), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [251] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1068), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1083), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [252] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1065), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1086), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [253] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1062), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1087), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [254] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1061), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1224), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [255] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1057), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1263), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [256] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1209), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1132), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [257] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(973), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1106), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [258] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1055), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1212), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [259] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1229), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1288), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [260] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1278), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1250), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [261] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1207), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1289), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [262] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1307), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1290), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [263] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1280), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1247), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [264] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1232), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1291), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [265] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1225), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1278), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [266] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1144), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1171), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [267] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1308), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1200), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [268] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(995), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(984), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [269] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1297), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1219), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [270] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1275), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1255), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [271] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1272), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1281), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [272] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1279), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1245), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [273] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1123), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1293), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [274] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(979), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(987), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [275] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1282), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1214), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [276] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(980), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1185), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [277] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1283), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1294), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [278] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1032), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1302), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [279] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1181), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1271), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [280] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1170), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1182), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [281] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1286), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1284), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [282] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(974), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1215), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [283] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1288), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1296), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [284] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(981), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1280), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [285] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1244), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1299), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [286] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1245), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1246), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [287] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1299), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1192), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [288] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1259), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1259), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [289] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1296), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1260), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [290] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1295), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1090), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [291] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1277), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(997), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [292] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1270), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1262), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [293] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1214), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1169), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [294] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1126), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1113), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [295] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1127), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1091), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [296] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1153), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1002), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [297] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(960), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1003), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [298] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1201), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1297), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [299] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1292), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1004), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [300] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1129), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1093), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [301] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1241), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1005), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [302] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(982), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(974), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [303] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1247), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1001), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [304] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1261), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1168), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [305] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1269), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1308), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [306] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1242), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1000), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [307] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1243), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1173), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [308] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1271), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1140), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [309] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(983), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1162), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [310] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(984), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1159), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [311] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(985), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1158), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [312] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1256), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(998), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [313] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(986), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1155), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [314] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1208), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(996), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [315] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(987), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1153), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [316] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1172), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1152), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [317] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(988), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1151), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [318] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1179), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(995), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [319] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(960), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1187), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [320] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1150), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [321] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(962), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(993), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [322] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(989), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(992), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [323] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1111), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(991), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [324] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1135), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(985), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [325] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1173), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(976), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [326] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(990), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1211), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [327] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(991), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1149), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [328] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(960), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1148), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [329] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(996), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1031), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [330] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1176), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(981), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [331] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1136), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(957), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [332] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1252), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(958), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [333] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1156), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1147), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [334] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1138), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1032), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [335] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1169), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(983), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [336] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1289), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1146), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [337] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1143), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1034), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [338] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1165), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1035), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [339] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1151), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1145), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [340] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1228), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1144), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [341] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1293), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1037), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [342] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(993), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1143), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [343] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1174), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1279), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [344] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1051), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1164), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [345] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1149), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1154), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [346] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1031), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1028), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [347] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1152), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1027), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [348] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1030), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1160), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [349] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1089), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1161), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [350] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1190), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1166), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [351] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1160), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1024), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [352] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1191), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1007), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [353] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1192), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1022), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [354] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1238), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1300), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [355] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1193), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1170), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [356] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1140), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1021), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [357] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1158), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(989), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [358] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1145), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1019), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [359] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1028), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1018), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [360] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1274), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(958), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [361] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1161), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(957), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [362] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1026), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1141), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [363] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1017), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1014), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [364] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1016), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1013), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [365] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1015), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1012), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [366] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1306), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1011), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [367] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1266), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1010), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [368] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1014), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1198), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [369] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1267), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1009), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [370] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1302), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1023), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [371] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1005), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1015), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [372] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1016), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [373] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1162), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1264), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [374] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1008), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1078), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [375] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1230), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1017), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [376] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1219), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1025), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [377] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1268), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1256), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [378] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1009), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1275), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [379] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1116), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1257), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [380] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1251), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1292), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [381] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1264), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1252), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [382] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1291), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1301), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [383] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1221), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1238), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [384] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1255), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1248), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [385] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1010), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1267), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [386] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(998), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1244), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [387] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1011), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1303), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [388] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1012), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1304), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [389] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1018), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1131), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [390] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1069), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1108), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [391] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1004), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1274), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [392] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1003), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1176), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [393] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1268), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [394] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(997), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1269), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [395] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1168), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1101), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [396] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1001), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1130), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [397] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1189), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1102), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [398] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1273), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1029), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [399] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1020), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(973), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [400] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1021), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1199), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [401] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1006), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1008), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [402] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1023), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(957), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [403] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(999), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1197), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [404] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym_match_expression] = STATE(1077), - [sym__expression] = STATE(1114), - [sym__unary_expression] = STATE(1082), - [sym_unary_op_expression] = STATE(1082), - [sym_error_suppression_expression] = STATE(1077), - [sym_clone_expression] = STATE(1082), - [sym__primary_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1082), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(1077), - [sym_reference_assignment_expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2590), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_yield_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_include_expression] = STATE(1077), - [sym_include_once_expression] = STATE(1077), - [sym_require_expression] = STATE(1077), - [sym_require_once_expression] = STATE(1077), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(958), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_match_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_yield_expression_token1] = ACTIONS(125), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [aux_sym_require_expression_token1] = ACTIONS(131), - [aux_sym_require_once_expression_token1] = ACTIONS(133), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [405] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1037), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1193), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [406] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1039), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1287), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [407] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1147), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(988), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [408] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1146), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1226), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(631), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(631), + [sym_nullsafe_member_access_expression] = STATE(631), + [sym_scoped_property_access_expression] = STATE(631), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(691), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), + [aux_sym_require_expression_token1] = ACTIONS(699), + [aux_sym_require_once_expression_token1] = ACTIONS(701), [sym_comment] = ACTIONS(3), }, [409] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1034), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1103), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [410] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1148), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(980), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [411] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1217), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1030), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [412] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1150), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(979), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [413] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1166), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(978), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [414] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1227), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(977), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [415] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1036), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(994), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [416] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_match_expression] = STATE(1069), + [sym_expression] = STATE(1105), + [sym__unary_expression] = STATE(1070), + [sym_unary_op_expression] = STATE(1070), + [sym_error_suppression_expression] = STATE(1069), + [sym_clone_expression] = STATE(1070), + [sym_primary_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1070), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(1069), + [sym_reference_assignment_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_augmented_assignment_expression] = STATE(1069), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2552), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym_yield_expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_include_expression] = STATE(1069), + [sym_include_once_expression] = STATE(1069), + [sym_require_expression] = STATE(1069), + [sym_require_once_expression] = STATE(1069), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_match_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_yield_expression_token1] = ACTIONS(127), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [aux_sym_require_expression_token1] = ACTIONS(133), + [aux_sym_require_once_expression_token1] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [417] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1141), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1307), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [418] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(962), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(605), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(605), - [sym_nullsafe_member_access_expression] = STATE(605), - [sym_scoped_property_access_expression] = STATE(605), - [sym_list_literal] = STATE(2470), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1270), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(588), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [419] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1142), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1286), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [420] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(962), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2434), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(599), - [sym_scoped_call_expression] = STATE(599), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(599), - [sym_nullsafe_member_call_expression] = STATE(599), - [sym_subscript_expression] = STATE(599), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(599), - [sym_variable_name] = STATE(599), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1239), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(644), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [aux_sym_require_expression_token1] = ACTIONS(652), - [aux_sym_require_once_expression_token1] = ACTIONS(654), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [421] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym_match_expression] = STATE(956), - [sym__expression] = STATE(1157), - [sym__unary_expression] = STATE(928), - [sym_unary_op_expression] = STATE(928), - [sym_error_suppression_expression] = STATE(956), - [sym_clone_expression] = STATE(928), - [sym__primary_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(928), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(956), - [sym_reference_assignment_expression] = STATE(956), - [sym_conditional_expression] = STATE(956), - [sym_augmented_assignment_expression] = STATE(956), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2494), - [sym__list_destructing] = STATE(2196), - [sym__array_destructing] = STATE(2196), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(956), - [sym_binary_expression] = STATE(956), - [sym_include_expression] = STATE(956), - [sym_include_once_expression] = STATE(956), - [sym_require_expression] = STATE(956), - [sym_require_once_expression] = STATE(956), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1006), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2419), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(590), + [sym_scoped_call_expression] = STATE(590), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(590), + [sym_nullsafe_member_call_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(590), + [sym_variable_name] = STATE(590), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_match_expression_token1] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [aux_sym__list_destructing_token1] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_yield_expression_token1] = ACTIONS(684), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [aux_sym_require_expression_token1] = ACTIONS(692), - [aux_sym_require_once_expression_token1] = ACTIONS(694), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(651), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), + [aux_sym_require_expression_token1] = ACTIONS(659), + [aux_sym_require_once_expression_token1] = ACTIONS(661), [sym_comment] = ACTIONS(3), }, [422] = { - [sym_catch_clause] = STATE(423), - [sym_finally_clause] = STATE(423), - [aux_sym_try_statement_repeat1] = STATE(423), - [ts_builtin_sym_end] = ACTIONS(974), - [sym_name] = ACTIONS(976), - [anon_sym_QMARK_GT] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [aux_sym_function_static_declaration_token1] = ACTIONS(976), - [aux_sym_global_declaration_token1] = ACTIONS(976), - [aux_sym_namespace_definition_token1] = ACTIONS(976), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(976), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(976), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(976), - [anon_sym_BSLASH] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_RBRACE] = ACTIONS(974), - [aux_sym_trait_declaration_token1] = ACTIONS(976), - [aux_sym_interface_declaration_token1] = ACTIONS(976), - [aux_sym_enum_declaration_token1] = ACTIONS(976), - [aux_sym_enum_case_token1] = ACTIONS(976), - [aux_sym_class_declaration_token1] = ACTIONS(976), - [aux_sym_final_modifier_token1] = ACTIONS(976), - [aux_sym_abstract_modifier_token1] = ACTIONS(976), - [aux_sym_readonly_modifier_token1] = ACTIONS(976), - [aux_sym_visibility_modifier_token1] = ACTIONS(976), - [aux_sym_visibility_modifier_token2] = ACTIONS(976), - [aux_sym_visibility_modifier_token3] = ACTIONS(976), - [aux_sym__arrow_function_header_token1] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(974), - [aux_sym_cast_type_token1] = ACTIONS(976), - [aux_sym_echo_statement_token1] = ACTIONS(976), - [aux_sym_exit_statement_token1] = ACTIONS(976), - [anon_sym_unset] = ACTIONS(976), - [aux_sym_declare_statement_token1] = ACTIONS(976), - [aux_sym_declare_statement_token2] = ACTIONS(976), - [sym_float] = ACTIONS(976), - [aux_sym_try_statement_token1] = ACTIONS(976), - [aux_sym_catch_clause_token1] = ACTIONS(978), - [aux_sym_finally_clause_token1] = ACTIONS(980), - [aux_sym_goto_statement_token1] = ACTIONS(976), - [aux_sym_continue_statement_token1] = ACTIONS(976), - [aux_sym_break_statement_token1] = ACTIONS(976), - [sym_integer] = ACTIONS(976), - [aux_sym_return_statement_token1] = ACTIONS(976), - [aux_sym_throw_expression_token1] = ACTIONS(976), - [aux_sym_while_statement_token1] = ACTIONS(976), - [aux_sym_while_statement_token2] = ACTIONS(976), - [aux_sym_do_statement_token1] = ACTIONS(976), - [aux_sym_for_statement_token1] = ACTIONS(976), - [aux_sym_for_statement_token2] = ACTIONS(976), - [aux_sym_foreach_statement_token1] = ACTIONS(976), - [aux_sym_foreach_statement_token2] = ACTIONS(976), - [aux_sym_if_statement_token1] = ACTIONS(976), - [aux_sym_if_statement_token2] = ACTIONS(976), - [aux_sym_else_if_clause_token1] = ACTIONS(976), - [aux_sym_else_clause_token1] = ACTIONS(976), - [aux_sym_match_expression_token1] = ACTIONS(976), - [aux_sym_match_default_expression_token1] = ACTIONS(976), - [aux_sym_switch_statement_token1] = ACTIONS(976), - [aux_sym_switch_block_token1] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_TILDE] = ACTIONS(974), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_AT] = ACTIONS(974), - [aux_sym_clone_expression_token1] = ACTIONS(976), - [aux_sym_print_intrinsic_token1] = ACTIONS(976), - [aux_sym_object_creation_expression_token1] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [aux_sym__list_destructing_token1] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_self] = ACTIONS(976), - [anon_sym_parent] = ACTIONS(976), - [aux_sym__argument_name_token1] = ACTIONS(976), - [aux_sym__argument_name_token2] = ACTIONS(976), - [anon_sym_POUND_LBRACK] = ACTIONS(974), - [aux_sym_encapsed_string_token1] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [aux_sym_string_token1] = ACTIONS(974), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_LT_LT_LT] = ACTIONS(974), - [anon_sym_BQUOTE] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(974), - [aux_sym_yield_expression_token1] = ACTIONS(976), - [aux_sym_include_expression_token1] = ACTIONS(976), - [aux_sym_include_once_expression_token1] = ACTIONS(976), - [aux_sym_require_expression_token1] = ACTIONS(976), - [aux_sym_require_once_expression_token1] = ACTIONS(976), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_match_expression] = STATE(950), + [sym_expression] = STATE(1272), + [sym__unary_expression] = STATE(951), + [sym_unary_op_expression] = STATE(951), + [sym_error_suppression_expression] = STATE(950), + [sym_clone_expression] = STATE(951), + [sym_primary_expression] = STATE(951), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(951), + [sym_cast_variable] = STATE(599), + [sym_assignment_expression] = STATE(950), + [sym_reference_assignment_expression] = STATE(950), + [sym_conditional_expression] = STATE(950), + [sym_augmented_assignment_expression] = STATE(950), + [sym_member_access_expression] = STATE(599), + [sym_nullsafe_member_access_expression] = STATE(599), + [sym_scoped_property_access_expression] = STATE(599), + [sym_list_literal] = STATE(2505), + [sym__list_destructing] = STATE(2179), + [sym__array_destructing] = STATE(2179), + [sym_function_call_expression] = STATE(588), + [sym_scoped_call_expression] = STATE(588), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(588), + [sym_nullsafe_member_call_expression] = STATE(588), + [sym_subscript_expression] = STATE(588), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(588), + [sym_variable_name] = STATE(588), + [sym_yield_expression] = STATE(950), + [sym_binary_expression] = STATE(950), + [sym_include_expression] = STATE(950), + [sym_include_once_expression] = STATE(950), + [sym_require_expression] = STATE(950), + [sym_require_once_expression] = STATE(950), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_match_expression_token1] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [aux_sym__list_destructing_token1] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_yield_expression_token1] = ACTIONS(621), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), + [aux_sym_require_expression_token1] = ACTIONS(629), + [aux_sym_require_once_expression_token1] = ACTIONS(631), [sym_comment] = ACTIONS(3), }, [423] = { [sym_catch_clause] = STATE(423), [sym_finally_clause] = STATE(423), [aux_sym_try_statement_repeat1] = STATE(423), - [ts_builtin_sym_end] = ACTIONS(982), - [sym_name] = ACTIONS(984), - [anon_sym_QMARK_GT] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(982), - [aux_sym_function_static_declaration_token1] = ACTIONS(984), - [aux_sym_global_declaration_token1] = ACTIONS(984), - [aux_sym_namespace_definition_token1] = ACTIONS(984), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(984), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(984), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(984), - [anon_sym_BSLASH] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [aux_sym_trait_declaration_token1] = ACTIONS(984), - [aux_sym_interface_declaration_token1] = ACTIONS(984), - [aux_sym_enum_declaration_token1] = ACTIONS(984), - [aux_sym_enum_case_token1] = ACTIONS(984), - [aux_sym_class_declaration_token1] = ACTIONS(984), - [aux_sym_final_modifier_token1] = ACTIONS(984), - [aux_sym_abstract_modifier_token1] = ACTIONS(984), - [aux_sym_readonly_modifier_token1] = ACTIONS(984), - [aux_sym_visibility_modifier_token1] = ACTIONS(984), - [aux_sym_visibility_modifier_token2] = ACTIONS(984), - [aux_sym_visibility_modifier_token3] = ACTIONS(984), - [aux_sym__arrow_function_header_token1] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(982), - [aux_sym_cast_type_token1] = ACTIONS(984), - [aux_sym_echo_statement_token1] = ACTIONS(984), - [aux_sym_exit_statement_token1] = ACTIONS(984), - [anon_sym_unset] = ACTIONS(984), - [aux_sym_declare_statement_token1] = ACTIONS(984), - [aux_sym_declare_statement_token2] = ACTIONS(984), - [sym_float] = ACTIONS(984), - [aux_sym_try_statement_token1] = ACTIONS(984), - [aux_sym_catch_clause_token1] = ACTIONS(986), - [aux_sym_finally_clause_token1] = ACTIONS(989), - [aux_sym_goto_statement_token1] = ACTIONS(984), - [aux_sym_continue_statement_token1] = ACTIONS(984), - [aux_sym_break_statement_token1] = ACTIONS(984), - [sym_integer] = ACTIONS(984), - [aux_sym_return_statement_token1] = ACTIONS(984), - [aux_sym_throw_expression_token1] = ACTIONS(984), - [aux_sym_while_statement_token1] = ACTIONS(984), - [aux_sym_while_statement_token2] = ACTIONS(984), - [aux_sym_do_statement_token1] = ACTIONS(984), - [aux_sym_for_statement_token1] = ACTIONS(984), - [aux_sym_for_statement_token2] = ACTIONS(984), - [aux_sym_foreach_statement_token1] = ACTIONS(984), - [aux_sym_foreach_statement_token2] = ACTIONS(984), - [aux_sym_if_statement_token1] = ACTIONS(984), - [aux_sym_if_statement_token2] = ACTIONS(984), - [aux_sym_else_if_clause_token1] = ACTIONS(984), - [aux_sym_else_clause_token1] = ACTIONS(984), - [aux_sym_match_expression_token1] = ACTIONS(984), - [aux_sym_match_default_expression_token1] = ACTIONS(984), - [aux_sym_switch_statement_token1] = ACTIONS(984), - [aux_sym_switch_block_token1] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_AT] = ACTIONS(982), - [aux_sym_clone_expression_token1] = ACTIONS(984), - [aux_sym_print_intrinsic_token1] = ACTIONS(984), - [aux_sym_object_creation_expression_token1] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [aux_sym__list_destructing_token1] = ACTIONS(984), - [anon_sym_LBRACK] = ACTIONS(982), - [anon_sym_self] = ACTIONS(984), - [anon_sym_parent] = ACTIONS(984), - [aux_sym__argument_name_token1] = ACTIONS(984), - [aux_sym__argument_name_token2] = ACTIONS(984), - [anon_sym_POUND_LBRACK] = ACTIONS(982), - [aux_sym_encapsed_string_token1] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_string_token1] = ACTIONS(982), - [anon_sym_SQUOTE] = ACTIONS(982), - [anon_sym_LT_LT_LT] = ACTIONS(982), - [anon_sym_BQUOTE] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [aux_sym_yield_expression_token1] = ACTIONS(984), - [aux_sym_include_expression_token1] = ACTIONS(984), - [aux_sym_include_once_expression_token1] = ACTIONS(984), - [aux_sym_require_expression_token1] = ACTIONS(984), - [aux_sym_require_once_expression_token1] = ACTIONS(984), + [ts_builtin_sym_end] = ACTIONS(981), + [sym_name] = ACTIONS(983), + [anon_sym_QMARK_GT] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(981), + [aux_sym_function_static_declaration_token1] = ACTIONS(983), + [aux_sym_global_declaration_token1] = ACTIONS(983), + [aux_sym_namespace_definition_token1] = ACTIONS(983), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(983), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(983), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(983), + [anon_sym_BSLASH] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(981), + [anon_sym_RBRACE] = ACTIONS(981), + [aux_sym_trait_declaration_token1] = ACTIONS(983), + [aux_sym_interface_declaration_token1] = ACTIONS(983), + [aux_sym_enum_declaration_token1] = ACTIONS(983), + [aux_sym_enum_case_token1] = ACTIONS(983), + [aux_sym_class_declaration_token1] = ACTIONS(983), + [aux_sym_final_modifier_token1] = ACTIONS(983), + [aux_sym_abstract_modifier_token1] = ACTIONS(983), + [aux_sym_readonly_modifier_token1] = ACTIONS(983), + [sym_var_modifier] = ACTIONS(983), + [aux_sym_visibility_modifier_token1] = ACTIONS(983), + [aux_sym_visibility_modifier_token2] = ACTIONS(983), + [aux_sym_visibility_modifier_token3] = ACTIONS(983), + [aux_sym__arrow_function_header_token1] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(981), + [aux_sym_cast_type_token1] = ACTIONS(983), + [aux_sym_echo_statement_token1] = ACTIONS(983), + [aux_sym_exit_statement_token1] = ACTIONS(983), + [anon_sym_unset] = ACTIONS(983), + [aux_sym_declare_statement_token1] = ACTIONS(983), + [aux_sym_declare_statement_token2] = ACTIONS(983), + [sym_float] = ACTIONS(983), + [aux_sym_try_statement_token1] = ACTIONS(983), + [aux_sym_catch_clause_token1] = ACTIONS(985), + [aux_sym_finally_clause_token1] = ACTIONS(988), + [aux_sym_goto_statement_token1] = ACTIONS(983), + [aux_sym_continue_statement_token1] = ACTIONS(983), + [aux_sym_break_statement_token1] = ACTIONS(983), + [sym_integer] = ACTIONS(983), + [aux_sym_return_statement_token1] = ACTIONS(983), + [aux_sym_throw_expression_token1] = ACTIONS(983), + [aux_sym_while_statement_token1] = ACTIONS(983), + [aux_sym_while_statement_token2] = ACTIONS(983), + [aux_sym_do_statement_token1] = ACTIONS(983), + [aux_sym_for_statement_token1] = ACTIONS(983), + [aux_sym_for_statement_token2] = ACTIONS(983), + [aux_sym_foreach_statement_token1] = ACTIONS(983), + [aux_sym_foreach_statement_token2] = ACTIONS(983), + [aux_sym_if_statement_token1] = ACTIONS(983), + [aux_sym_if_statement_token2] = ACTIONS(983), + [aux_sym_else_if_clause_token1] = ACTIONS(983), + [aux_sym_else_clause_token1] = ACTIONS(983), + [aux_sym_match_expression_token1] = ACTIONS(983), + [aux_sym_match_default_expression_token1] = ACTIONS(983), + [aux_sym_switch_statement_token1] = ACTIONS(983), + [aux_sym_switch_block_token1] = ACTIONS(983), + [anon_sym_PLUS] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_AT] = ACTIONS(981), + [aux_sym_clone_expression_token1] = ACTIONS(983), + [aux_sym_print_intrinsic_token1] = ACTIONS(983), + [aux_sym_object_creation_expression_token1] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [aux_sym__list_destructing_token1] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(981), + [anon_sym_self] = ACTIONS(983), + [anon_sym_parent] = ACTIONS(983), + [aux_sym__argument_name_token1] = ACTIONS(983), + [aux_sym__argument_name_token2] = ACTIONS(983), + [anon_sym_POUND_LBRACK] = ACTIONS(981), + [aux_sym_encapsed_string_token1] = ACTIONS(981), + [anon_sym_DQUOTE] = ACTIONS(981), + [aux_sym_string_token1] = ACTIONS(981), + [anon_sym_SQUOTE] = ACTIONS(981), + [anon_sym_LT_LT_LT] = ACTIONS(981), + [anon_sym_BQUOTE] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(981), + [aux_sym_yield_expression_token1] = ACTIONS(983), + [aux_sym_include_expression_token1] = ACTIONS(983), + [aux_sym_include_once_expression_token1] = ACTIONS(983), + [aux_sym_require_expression_token1] = ACTIONS(983), + [aux_sym_require_once_expression_token1] = ACTIONS(983), [sym_comment] = ACTIONS(3), }, [424] = { - [sym_else_if_clause] = STATE(548), - [sym_else_clause] = STATE(543), - [aux_sym_if_statement_repeat1] = STATE(427), - [ts_builtin_sym_end] = ACTIONS(992), - [sym_name] = ACTIONS(994), - [anon_sym_QMARK_GT] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [aux_sym_function_static_declaration_token1] = ACTIONS(994), - [aux_sym_global_declaration_token1] = ACTIONS(994), - [aux_sym_namespace_definition_token1] = ACTIONS(994), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(994), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(994), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(994), - [anon_sym_BSLASH] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [aux_sym_trait_declaration_token1] = ACTIONS(994), - [aux_sym_interface_declaration_token1] = ACTIONS(994), - [aux_sym_enum_declaration_token1] = ACTIONS(994), - [aux_sym_enum_case_token1] = ACTIONS(994), - [aux_sym_class_declaration_token1] = ACTIONS(994), - [aux_sym_final_modifier_token1] = ACTIONS(994), - [aux_sym_abstract_modifier_token1] = ACTIONS(994), - [aux_sym_readonly_modifier_token1] = ACTIONS(994), - [aux_sym_visibility_modifier_token1] = ACTIONS(994), - [aux_sym_visibility_modifier_token2] = ACTIONS(994), - [aux_sym_visibility_modifier_token3] = ACTIONS(994), - [aux_sym__arrow_function_header_token1] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(992), - [aux_sym_cast_type_token1] = ACTIONS(994), - [aux_sym_echo_statement_token1] = ACTIONS(994), - [aux_sym_exit_statement_token1] = ACTIONS(994), - [anon_sym_unset] = ACTIONS(994), - [aux_sym_declare_statement_token1] = ACTIONS(994), - [aux_sym_declare_statement_token2] = ACTIONS(994), - [sym_float] = ACTIONS(994), - [aux_sym_try_statement_token1] = ACTIONS(994), - [aux_sym_goto_statement_token1] = ACTIONS(994), - [aux_sym_continue_statement_token1] = ACTIONS(994), - [aux_sym_break_statement_token1] = ACTIONS(994), - [sym_integer] = ACTIONS(994), - [aux_sym_return_statement_token1] = ACTIONS(994), - [aux_sym_throw_expression_token1] = ACTIONS(994), - [aux_sym_while_statement_token1] = ACTIONS(994), - [aux_sym_while_statement_token2] = ACTIONS(994), - [aux_sym_do_statement_token1] = ACTIONS(994), - [aux_sym_for_statement_token1] = ACTIONS(994), - [aux_sym_for_statement_token2] = ACTIONS(994), - [aux_sym_foreach_statement_token1] = ACTIONS(994), - [aux_sym_foreach_statement_token2] = ACTIONS(994), - [aux_sym_if_statement_token1] = ACTIONS(994), - [aux_sym_if_statement_token2] = ACTIONS(994), - [aux_sym_else_if_clause_token1] = ACTIONS(996), - [aux_sym_else_clause_token1] = ACTIONS(998), - [aux_sym_match_expression_token1] = ACTIONS(994), - [aux_sym_match_default_expression_token1] = ACTIONS(994), - [aux_sym_switch_statement_token1] = ACTIONS(994), - [aux_sym_switch_block_token1] = ACTIONS(994), - [anon_sym_PLUS] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(992), - [anon_sym_BANG] = ACTIONS(992), - [anon_sym_AT] = ACTIONS(992), - [aux_sym_clone_expression_token1] = ACTIONS(994), - [aux_sym_print_intrinsic_token1] = ACTIONS(994), - [aux_sym_object_creation_expression_token1] = ACTIONS(994), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [aux_sym__list_destructing_token1] = ACTIONS(994), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_self] = ACTIONS(994), - [anon_sym_parent] = ACTIONS(994), - [aux_sym__argument_name_token1] = ACTIONS(994), - [aux_sym__argument_name_token2] = ACTIONS(994), - [anon_sym_POUND_LBRACK] = ACTIONS(992), - [aux_sym_encapsed_string_token1] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [aux_sym_string_token1] = ACTIONS(992), - [anon_sym_SQUOTE] = ACTIONS(992), - [anon_sym_LT_LT_LT] = ACTIONS(992), - [anon_sym_BQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [aux_sym_yield_expression_token1] = ACTIONS(994), - [aux_sym_include_expression_token1] = ACTIONS(994), - [aux_sym_include_once_expression_token1] = ACTIONS(994), - [aux_sym_require_expression_token1] = ACTIONS(994), - [aux_sym_require_once_expression_token1] = ACTIONS(994), + [sym_catch_clause] = STATE(423), + [sym_finally_clause] = STATE(423), + [aux_sym_try_statement_repeat1] = STATE(423), + [ts_builtin_sym_end] = ACTIONS(991), + [sym_name] = ACTIONS(993), + [anon_sym_QMARK_GT] = ACTIONS(991), + [anon_sym_SEMI] = ACTIONS(991), + [aux_sym_function_static_declaration_token1] = ACTIONS(993), + [aux_sym_global_declaration_token1] = ACTIONS(993), + [aux_sym_namespace_definition_token1] = ACTIONS(993), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(993), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(993), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(993), + [anon_sym_BSLASH] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [aux_sym_trait_declaration_token1] = ACTIONS(993), + [aux_sym_interface_declaration_token1] = ACTIONS(993), + [aux_sym_enum_declaration_token1] = ACTIONS(993), + [aux_sym_enum_case_token1] = ACTIONS(993), + [aux_sym_class_declaration_token1] = ACTIONS(993), + [aux_sym_final_modifier_token1] = ACTIONS(993), + [aux_sym_abstract_modifier_token1] = ACTIONS(993), + [aux_sym_readonly_modifier_token1] = ACTIONS(993), + [sym_var_modifier] = ACTIONS(993), + [aux_sym_visibility_modifier_token1] = ACTIONS(993), + [aux_sym_visibility_modifier_token2] = ACTIONS(993), + [aux_sym_visibility_modifier_token3] = ACTIONS(993), + [aux_sym__arrow_function_header_token1] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(991), + [aux_sym_cast_type_token1] = ACTIONS(993), + [aux_sym_echo_statement_token1] = ACTIONS(993), + [aux_sym_exit_statement_token1] = ACTIONS(993), + [anon_sym_unset] = ACTIONS(993), + [aux_sym_declare_statement_token1] = ACTIONS(993), + [aux_sym_declare_statement_token2] = ACTIONS(993), + [sym_float] = ACTIONS(993), + [aux_sym_try_statement_token1] = ACTIONS(993), + [aux_sym_catch_clause_token1] = ACTIONS(995), + [aux_sym_finally_clause_token1] = ACTIONS(997), + [aux_sym_goto_statement_token1] = ACTIONS(993), + [aux_sym_continue_statement_token1] = ACTIONS(993), + [aux_sym_break_statement_token1] = ACTIONS(993), + [sym_integer] = ACTIONS(993), + [aux_sym_return_statement_token1] = ACTIONS(993), + [aux_sym_throw_expression_token1] = ACTIONS(993), + [aux_sym_while_statement_token1] = ACTIONS(993), + [aux_sym_while_statement_token2] = ACTIONS(993), + [aux_sym_do_statement_token1] = ACTIONS(993), + [aux_sym_for_statement_token1] = ACTIONS(993), + [aux_sym_for_statement_token2] = ACTIONS(993), + [aux_sym_foreach_statement_token1] = ACTIONS(993), + [aux_sym_foreach_statement_token2] = ACTIONS(993), + [aux_sym_if_statement_token1] = ACTIONS(993), + [aux_sym_if_statement_token2] = ACTIONS(993), + [aux_sym_else_if_clause_token1] = ACTIONS(993), + [aux_sym_else_clause_token1] = ACTIONS(993), + [aux_sym_match_expression_token1] = ACTIONS(993), + [aux_sym_match_default_expression_token1] = ACTIONS(993), + [aux_sym_switch_statement_token1] = ACTIONS(993), + [aux_sym_switch_block_token1] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_TILDE] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_AT] = ACTIONS(991), + [aux_sym_clone_expression_token1] = ACTIONS(993), + [aux_sym_print_intrinsic_token1] = ACTIONS(993), + [aux_sym_object_creation_expression_token1] = ACTIONS(993), + [anon_sym_DASH_DASH] = ACTIONS(991), + [anon_sym_PLUS_PLUS] = ACTIONS(991), + [aux_sym__list_destructing_token1] = ACTIONS(993), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_self] = ACTIONS(993), + [anon_sym_parent] = ACTIONS(993), + [aux_sym__argument_name_token1] = ACTIONS(993), + [aux_sym__argument_name_token2] = ACTIONS(993), + [anon_sym_POUND_LBRACK] = ACTIONS(991), + [aux_sym_encapsed_string_token1] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [aux_sym_string_token1] = ACTIONS(991), + [anon_sym_SQUOTE] = ACTIONS(991), + [anon_sym_LT_LT_LT] = ACTIONS(991), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_DOLLAR] = ACTIONS(991), + [aux_sym_yield_expression_token1] = ACTIONS(993), + [aux_sym_include_expression_token1] = ACTIONS(993), + [aux_sym_include_once_expression_token1] = ACTIONS(993), + [aux_sym_require_expression_token1] = ACTIONS(993), + [aux_sym_require_once_expression_token1] = ACTIONS(993), [sym_comment] = ACTIONS(3), }, [425] = { - [sym_else_if_clause] = STATE(548), - [sym_else_clause] = STATE(543), + [sym_else_if_clause] = STATE(479), + [sym_else_clause] = STATE(475), [aux_sym_if_statement_repeat1] = STATE(426), - [ts_builtin_sym_end] = ACTIONS(992), - [sym_name] = ACTIONS(994), - [anon_sym_QMARK_GT] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [aux_sym_function_static_declaration_token1] = ACTIONS(994), - [aux_sym_global_declaration_token1] = ACTIONS(994), - [aux_sym_namespace_definition_token1] = ACTIONS(994), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(994), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(994), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(994), - [anon_sym_BSLASH] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [aux_sym_trait_declaration_token1] = ACTIONS(994), - [aux_sym_interface_declaration_token1] = ACTIONS(994), - [aux_sym_enum_declaration_token1] = ACTIONS(994), - [aux_sym_enum_case_token1] = ACTIONS(994), - [aux_sym_class_declaration_token1] = ACTIONS(994), - [aux_sym_final_modifier_token1] = ACTIONS(994), - [aux_sym_abstract_modifier_token1] = ACTIONS(994), - [aux_sym_readonly_modifier_token1] = ACTIONS(994), - [aux_sym_visibility_modifier_token1] = ACTIONS(994), - [aux_sym_visibility_modifier_token2] = ACTIONS(994), - [aux_sym_visibility_modifier_token3] = ACTIONS(994), - [aux_sym__arrow_function_header_token1] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(992), - [aux_sym_cast_type_token1] = ACTIONS(994), - [aux_sym_echo_statement_token1] = ACTIONS(994), - [aux_sym_exit_statement_token1] = ACTIONS(994), - [anon_sym_unset] = ACTIONS(994), - [aux_sym_declare_statement_token1] = ACTIONS(994), - [aux_sym_declare_statement_token2] = ACTIONS(994), - [sym_float] = ACTIONS(994), - [aux_sym_try_statement_token1] = ACTIONS(994), - [aux_sym_goto_statement_token1] = ACTIONS(994), - [aux_sym_continue_statement_token1] = ACTIONS(994), - [aux_sym_break_statement_token1] = ACTIONS(994), - [sym_integer] = ACTIONS(994), - [aux_sym_return_statement_token1] = ACTIONS(994), - [aux_sym_throw_expression_token1] = ACTIONS(994), - [aux_sym_while_statement_token1] = ACTIONS(994), - [aux_sym_while_statement_token2] = ACTIONS(994), - [aux_sym_do_statement_token1] = ACTIONS(994), - [aux_sym_for_statement_token1] = ACTIONS(994), - [aux_sym_for_statement_token2] = ACTIONS(994), - [aux_sym_foreach_statement_token1] = ACTIONS(994), - [aux_sym_foreach_statement_token2] = ACTIONS(994), - [aux_sym_if_statement_token1] = ACTIONS(994), - [aux_sym_if_statement_token2] = ACTIONS(994), - [aux_sym_else_if_clause_token1] = ACTIONS(1000), - [aux_sym_else_clause_token1] = ACTIONS(1003), - [aux_sym_match_expression_token1] = ACTIONS(994), - [aux_sym_match_default_expression_token1] = ACTIONS(994), - [aux_sym_switch_statement_token1] = ACTIONS(994), - [aux_sym_switch_block_token1] = ACTIONS(994), - [anon_sym_PLUS] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(992), - [anon_sym_BANG] = ACTIONS(992), - [anon_sym_AT] = ACTIONS(992), - [aux_sym_clone_expression_token1] = ACTIONS(994), - [aux_sym_print_intrinsic_token1] = ACTIONS(994), - [aux_sym_object_creation_expression_token1] = ACTIONS(994), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [aux_sym__list_destructing_token1] = ACTIONS(994), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_self] = ACTIONS(994), - [anon_sym_parent] = ACTIONS(994), - [aux_sym__argument_name_token1] = ACTIONS(994), - [aux_sym__argument_name_token2] = ACTIONS(994), - [anon_sym_POUND_LBRACK] = ACTIONS(992), - [aux_sym_encapsed_string_token1] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [aux_sym_string_token1] = ACTIONS(992), - [anon_sym_SQUOTE] = ACTIONS(992), - [anon_sym_LT_LT_LT] = ACTIONS(992), - [anon_sym_BQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [aux_sym_yield_expression_token1] = ACTIONS(994), - [aux_sym_include_expression_token1] = ACTIONS(994), - [aux_sym_include_once_expression_token1] = ACTIONS(994), - [aux_sym_require_expression_token1] = ACTIONS(994), - [aux_sym_require_once_expression_token1] = ACTIONS(994), + [ts_builtin_sym_end] = ACTIONS(999), + [sym_name] = ACTIONS(1001), + [anon_sym_QMARK_GT] = ACTIONS(999), + [anon_sym_SEMI] = ACTIONS(999), + [aux_sym_function_static_declaration_token1] = ACTIONS(1001), + [aux_sym_global_declaration_token1] = ACTIONS(1001), + [aux_sym_namespace_definition_token1] = ACTIONS(1001), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1001), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1001), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1001), + [anon_sym_BSLASH] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(999), + [anon_sym_RBRACE] = ACTIONS(999), + [aux_sym_trait_declaration_token1] = ACTIONS(1001), + [aux_sym_interface_declaration_token1] = ACTIONS(1001), + [aux_sym_enum_declaration_token1] = ACTIONS(1001), + [aux_sym_enum_case_token1] = ACTIONS(1001), + [aux_sym_class_declaration_token1] = ACTIONS(1001), + [aux_sym_final_modifier_token1] = ACTIONS(1001), + [aux_sym_abstract_modifier_token1] = ACTIONS(1001), + [aux_sym_readonly_modifier_token1] = ACTIONS(1001), + [sym_var_modifier] = ACTIONS(1001), + [aux_sym_visibility_modifier_token1] = ACTIONS(1001), + [aux_sym_visibility_modifier_token2] = ACTIONS(1001), + [aux_sym_visibility_modifier_token3] = ACTIONS(1001), + [aux_sym__arrow_function_header_token1] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(999), + [aux_sym_cast_type_token1] = ACTIONS(1001), + [aux_sym_echo_statement_token1] = ACTIONS(1001), + [aux_sym_exit_statement_token1] = ACTIONS(1001), + [anon_sym_unset] = ACTIONS(1001), + [aux_sym_declare_statement_token1] = ACTIONS(1001), + [aux_sym_declare_statement_token2] = ACTIONS(1001), + [sym_float] = ACTIONS(1001), + [aux_sym_try_statement_token1] = ACTIONS(1001), + [aux_sym_goto_statement_token1] = ACTIONS(1001), + [aux_sym_continue_statement_token1] = ACTIONS(1001), + [aux_sym_break_statement_token1] = ACTIONS(1001), + [sym_integer] = ACTIONS(1001), + [aux_sym_return_statement_token1] = ACTIONS(1001), + [aux_sym_throw_expression_token1] = ACTIONS(1001), + [aux_sym_while_statement_token1] = ACTIONS(1001), + [aux_sym_while_statement_token2] = ACTIONS(1001), + [aux_sym_do_statement_token1] = ACTIONS(1001), + [aux_sym_for_statement_token1] = ACTIONS(1001), + [aux_sym_for_statement_token2] = ACTIONS(1001), + [aux_sym_foreach_statement_token1] = ACTIONS(1001), + [aux_sym_foreach_statement_token2] = ACTIONS(1001), + [aux_sym_if_statement_token1] = ACTIONS(1001), + [aux_sym_if_statement_token2] = ACTIONS(1001), + [aux_sym_else_if_clause_token1] = ACTIONS(1003), + [aux_sym_else_clause_token1] = ACTIONS(1005), + [aux_sym_match_expression_token1] = ACTIONS(1001), + [aux_sym_match_default_expression_token1] = ACTIONS(1001), + [aux_sym_switch_statement_token1] = ACTIONS(1001), + [aux_sym_switch_block_token1] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_AT] = ACTIONS(999), + [aux_sym_clone_expression_token1] = ACTIONS(1001), + [aux_sym_print_intrinsic_token1] = ACTIONS(1001), + [aux_sym_object_creation_expression_token1] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [aux_sym__list_destructing_token1] = ACTIONS(1001), + [anon_sym_LBRACK] = ACTIONS(999), + [anon_sym_self] = ACTIONS(1001), + [anon_sym_parent] = ACTIONS(1001), + [aux_sym__argument_name_token1] = ACTIONS(1001), + [aux_sym__argument_name_token2] = ACTIONS(1001), + [anon_sym_POUND_LBRACK] = ACTIONS(999), + [aux_sym_encapsed_string_token1] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(999), + [aux_sym_string_token1] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_LT_LT_LT] = ACTIONS(999), + [anon_sym_BQUOTE] = ACTIONS(999), + [anon_sym_DOLLAR] = ACTIONS(999), + [aux_sym_yield_expression_token1] = ACTIONS(1001), + [aux_sym_include_expression_token1] = ACTIONS(1001), + [aux_sym_include_once_expression_token1] = ACTIONS(1001), + [aux_sym_require_expression_token1] = ACTIONS(1001), + [aux_sym_require_once_expression_token1] = ACTIONS(1001), [sym_comment] = ACTIONS(3), }, [426] = { - [sym_else_if_clause] = STATE(548), - [sym_else_clause] = STATE(485), - [aux_sym_if_statement_repeat1] = STATE(429), - [ts_builtin_sym_end] = ACTIONS(1006), - [sym_name] = ACTIONS(1008), - [anon_sym_QMARK_GT] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [aux_sym_function_static_declaration_token1] = ACTIONS(1008), - [aux_sym_global_declaration_token1] = ACTIONS(1008), - [aux_sym_namespace_definition_token1] = ACTIONS(1008), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1008), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1008), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1008), - [anon_sym_BSLASH] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [aux_sym_trait_declaration_token1] = ACTIONS(1008), - [aux_sym_interface_declaration_token1] = ACTIONS(1008), - [aux_sym_enum_declaration_token1] = ACTIONS(1008), - [aux_sym_enum_case_token1] = ACTIONS(1008), - [aux_sym_class_declaration_token1] = ACTIONS(1008), - [aux_sym_final_modifier_token1] = ACTIONS(1008), - [aux_sym_abstract_modifier_token1] = ACTIONS(1008), - [aux_sym_readonly_modifier_token1] = ACTIONS(1008), - [aux_sym_visibility_modifier_token1] = ACTIONS(1008), - [aux_sym_visibility_modifier_token2] = ACTIONS(1008), - [aux_sym_visibility_modifier_token3] = ACTIONS(1008), - [aux_sym__arrow_function_header_token1] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1006), - [aux_sym_cast_type_token1] = ACTIONS(1008), - [aux_sym_echo_statement_token1] = ACTIONS(1008), - [aux_sym_exit_statement_token1] = ACTIONS(1008), - [anon_sym_unset] = ACTIONS(1008), - [aux_sym_declare_statement_token1] = ACTIONS(1008), - [aux_sym_declare_statement_token2] = ACTIONS(1008), - [sym_float] = ACTIONS(1008), - [aux_sym_try_statement_token1] = ACTIONS(1008), - [aux_sym_goto_statement_token1] = ACTIONS(1008), - [aux_sym_continue_statement_token1] = ACTIONS(1008), - [aux_sym_break_statement_token1] = ACTIONS(1008), - [sym_integer] = ACTIONS(1008), - [aux_sym_return_statement_token1] = ACTIONS(1008), - [aux_sym_throw_expression_token1] = ACTIONS(1008), - [aux_sym_while_statement_token1] = ACTIONS(1008), - [aux_sym_while_statement_token2] = ACTIONS(1008), - [aux_sym_do_statement_token1] = ACTIONS(1008), - [aux_sym_for_statement_token1] = ACTIONS(1008), - [aux_sym_for_statement_token2] = ACTIONS(1008), - [aux_sym_foreach_statement_token1] = ACTIONS(1008), - [aux_sym_foreach_statement_token2] = ACTIONS(1008), - [aux_sym_if_statement_token1] = ACTIONS(1008), - [aux_sym_if_statement_token2] = ACTIONS(1008), - [aux_sym_else_if_clause_token1] = ACTIONS(1010), - [aux_sym_else_clause_token1] = ACTIONS(1013), - [aux_sym_match_expression_token1] = ACTIONS(1008), - [aux_sym_match_default_expression_token1] = ACTIONS(1008), - [aux_sym_switch_statement_token1] = ACTIONS(1008), - [aux_sym_switch_block_token1] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_AT] = ACTIONS(1006), - [aux_sym_clone_expression_token1] = ACTIONS(1008), - [aux_sym_print_intrinsic_token1] = ACTIONS(1008), - [aux_sym_object_creation_expression_token1] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [aux_sym__list_destructing_token1] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_self] = ACTIONS(1008), - [anon_sym_parent] = ACTIONS(1008), - [aux_sym__argument_name_token1] = ACTIONS(1008), - [aux_sym__argument_name_token2] = ACTIONS(1008), - [anon_sym_POUND_LBRACK] = ACTIONS(1006), - [aux_sym_encapsed_string_token1] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [aux_sym_string_token1] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_LT_LT_LT] = ACTIONS(1006), - [anon_sym_BQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [aux_sym_yield_expression_token1] = ACTIONS(1008), - [aux_sym_include_expression_token1] = ACTIONS(1008), - [aux_sym_include_once_expression_token1] = ACTIONS(1008), - [aux_sym_require_expression_token1] = ACTIONS(1008), - [aux_sym_require_once_expression_token1] = ACTIONS(1008), + [sym_else_if_clause] = STATE(479), + [sym_else_clause] = STATE(488), + [aux_sym_if_statement_repeat1] = STATE(433), + [ts_builtin_sym_end] = ACTIONS(1007), + [sym_name] = ACTIONS(1009), + [anon_sym_QMARK_GT] = ACTIONS(1007), + [anon_sym_SEMI] = ACTIONS(1007), + [aux_sym_function_static_declaration_token1] = ACTIONS(1009), + [aux_sym_global_declaration_token1] = ACTIONS(1009), + [aux_sym_namespace_definition_token1] = ACTIONS(1009), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1009), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1009), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1009), + [anon_sym_BSLASH] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1007), + [aux_sym_trait_declaration_token1] = ACTIONS(1009), + [aux_sym_interface_declaration_token1] = ACTIONS(1009), + [aux_sym_enum_declaration_token1] = ACTIONS(1009), + [aux_sym_enum_case_token1] = ACTIONS(1009), + [aux_sym_class_declaration_token1] = ACTIONS(1009), + [aux_sym_final_modifier_token1] = ACTIONS(1009), + [aux_sym_abstract_modifier_token1] = ACTIONS(1009), + [aux_sym_readonly_modifier_token1] = ACTIONS(1009), + [sym_var_modifier] = ACTIONS(1009), + [aux_sym_visibility_modifier_token1] = ACTIONS(1009), + [aux_sym_visibility_modifier_token2] = ACTIONS(1009), + [aux_sym_visibility_modifier_token3] = ACTIONS(1009), + [aux_sym__arrow_function_header_token1] = ACTIONS(1009), + [anon_sym_LPAREN] = ACTIONS(1007), + [aux_sym_cast_type_token1] = ACTIONS(1009), + [aux_sym_echo_statement_token1] = ACTIONS(1009), + [aux_sym_exit_statement_token1] = ACTIONS(1009), + [anon_sym_unset] = ACTIONS(1009), + [aux_sym_declare_statement_token1] = ACTIONS(1009), + [aux_sym_declare_statement_token2] = ACTIONS(1009), + [sym_float] = ACTIONS(1009), + [aux_sym_try_statement_token1] = ACTIONS(1009), + [aux_sym_goto_statement_token1] = ACTIONS(1009), + [aux_sym_continue_statement_token1] = ACTIONS(1009), + [aux_sym_break_statement_token1] = ACTIONS(1009), + [sym_integer] = ACTIONS(1009), + [aux_sym_return_statement_token1] = ACTIONS(1009), + [aux_sym_throw_expression_token1] = ACTIONS(1009), + [aux_sym_while_statement_token1] = ACTIONS(1009), + [aux_sym_while_statement_token2] = ACTIONS(1009), + [aux_sym_do_statement_token1] = ACTIONS(1009), + [aux_sym_for_statement_token1] = ACTIONS(1009), + [aux_sym_for_statement_token2] = ACTIONS(1009), + [aux_sym_foreach_statement_token1] = ACTIONS(1009), + [aux_sym_foreach_statement_token2] = ACTIONS(1009), + [aux_sym_if_statement_token1] = ACTIONS(1009), + [aux_sym_if_statement_token2] = ACTIONS(1009), + [aux_sym_else_if_clause_token1] = ACTIONS(1003), + [aux_sym_else_clause_token1] = ACTIONS(1005), + [aux_sym_match_expression_token1] = ACTIONS(1009), + [aux_sym_match_default_expression_token1] = ACTIONS(1009), + [aux_sym_switch_statement_token1] = ACTIONS(1009), + [aux_sym_switch_block_token1] = ACTIONS(1009), + [anon_sym_PLUS] = ACTIONS(1009), + [anon_sym_DASH] = ACTIONS(1009), + [anon_sym_TILDE] = ACTIONS(1007), + [anon_sym_BANG] = ACTIONS(1007), + [anon_sym_AT] = ACTIONS(1007), + [aux_sym_clone_expression_token1] = ACTIONS(1009), + [aux_sym_print_intrinsic_token1] = ACTIONS(1009), + [aux_sym_object_creation_expression_token1] = ACTIONS(1009), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [aux_sym__list_destructing_token1] = ACTIONS(1009), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_self] = ACTIONS(1009), + [anon_sym_parent] = ACTIONS(1009), + [aux_sym__argument_name_token1] = ACTIONS(1009), + [aux_sym__argument_name_token2] = ACTIONS(1009), + [anon_sym_POUND_LBRACK] = ACTIONS(1007), + [aux_sym_encapsed_string_token1] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [aux_sym_string_token1] = ACTIONS(1007), + [anon_sym_SQUOTE] = ACTIONS(1007), + [anon_sym_LT_LT_LT] = ACTIONS(1007), + [anon_sym_BQUOTE] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1007), + [aux_sym_yield_expression_token1] = ACTIONS(1009), + [aux_sym_include_expression_token1] = ACTIONS(1009), + [aux_sym_include_once_expression_token1] = ACTIONS(1009), + [aux_sym_require_expression_token1] = ACTIONS(1009), + [aux_sym_require_once_expression_token1] = ACTIONS(1009), [sym_comment] = ACTIONS(3), }, [427] = { - [sym_else_if_clause] = STATE(548), - [sym_else_clause] = STATE(485), - [aux_sym_if_statement_repeat1] = STATE(429), - [ts_builtin_sym_end] = ACTIONS(1006), - [sym_name] = ACTIONS(1008), - [anon_sym_QMARK_GT] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [aux_sym_function_static_declaration_token1] = ACTIONS(1008), - [aux_sym_global_declaration_token1] = ACTIONS(1008), - [aux_sym_namespace_definition_token1] = ACTIONS(1008), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1008), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1008), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1008), - [anon_sym_BSLASH] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [aux_sym_trait_declaration_token1] = ACTIONS(1008), - [aux_sym_interface_declaration_token1] = ACTIONS(1008), - [aux_sym_enum_declaration_token1] = ACTIONS(1008), - [aux_sym_enum_case_token1] = ACTIONS(1008), - [aux_sym_class_declaration_token1] = ACTIONS(1008), - [aux_sym_final_modifier_token1] = ACTIONS(1008), - [aux_sym_abstract_modifier_token1] = ACTIONS(1008), - [aux_sym_readonly_modifier_token1] = ACTIONS(1008), - [aux_sym_visibility_modifier_token1] = ACTIONS(1008), - [aux_sym_visibility_modifier_token2] = ACTIONS(1008), - [aux_sym_visibility_modifier_token3] = ACTIONS(1008), - [aux_sym__arrow_function_header_token1] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1006), - [aux_sym_cast_type_token1] = ACTIONS(1008), - [aux_sym_echo_statement_token1] = ACTIONS(1008), - [aux_sym_exit_statement_token1] = ACTIONS(1008), - [anon_sym_unset] = ACTIONS(1008), - [aux_sym_declare_statement_token1] = ACTIONS(1008), - [aux_sym_declare_statement_token2] = ACTIONS(1008), - [sym_float] = ACTIONS(1008), - [aux_sym_try_statement_token1] = ACTIONS(1008), - [aux_sym_goto_statement_token1] = ACTIONS(1008), - [aux_sym_continue_statement_token1] = ACTIONS(1008), - [aux_sym_break_statement_token1] = ACTIONS(1008), - [sym_integer] = ACTIONS(1008), - [aux_sym_return_statement_token1] = ACTIONS(1008), - [aux_sym_throw_expression_token1] = ACTIONS(1008), - [aux_sym_while_statement_token1] = ACTIONS(1008), - [aux_sym_while_statement_token2] = ACTIONS(1008), - [aux_sym_do_statement_token1] = ACTIONS(1008), - [aux_sym_for_statement_token1] = ACTIONS(1008), - [aux_sym_for_statement_token2] = ACTIONS(1008), - [aux_sym_foreach_statement_token1] = ACTIONS(1008), - [aux_sym_foreach_statement_token2] = ACTIONS(1008), - [aux_sym_if_statement_token1] = ACTIONS(1008), - [aux_sym_if_statement_token2] = ACTIONS(1008), - [aux_sym_else_if_clause_token1] = ACTIONS(996), - [aux_sym_else_clause_token1] = ACTIONS(998), - [aux_sym_match_expression_token1] = ACTIONS(1008), - [aux_sym_match_default_expression_token1] = ACTIONS(1008), - [aux_sym_switch_statement_token1] = ACTIONS(1008), - [aux_sym_switch_block_token1] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_AT] = ACTIONS(1006), - [aux_sym_clone_expression_token1] = ACTIONS(1008), - [aux_sym_print_intrinsic_token1] = ACTIONS(1008), - [aux_sym_object_creation_expression_token1] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [aux_sym__list_destructing_token1] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_self] = ACTIONS(1008), - [anon_sym_parent] = ACTIONS(1008), - [aux_sym__argument_name_token1] = ACTIONS(1008), - [aux_sym__argument_name_token2] = ACTIONS(1008), - [anon_sym_POUND_LBRACK] = ACTIONS(1006), - [aux_sym_encapsed_string_token1] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [aux_sym_string_token1] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_LT_LT_LT] = ACTIONS(1006), - [anon_sym_BQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [aux_sym_yield_expression_token1] = ACTIONS(1008), - [aux_sym_include_expression_token1] = ACTIONS(1008), - [aux_sym_include_once_expression_token1] = ACTIONS(1008), - [aux_sym_require_expression_token1] = ACTIONS(1008), - [aux_sym_require_once_expression_token1] = ACTIONS(1008), + [sym_else_if_clause] = STATE(479), + [sym_else_clause] = STATE(488), + [aux_sym_if_statement_repeat1] = STATE(433), + [ts_builtin_sym_end] = ACTIONS(1007), + [sym_name] = ACTIONS(1009), + [anon_sym_QMARK_GT] = ACTIONS(1007), + [anon_sym_SEMI] = ACTIONS(1007), + [aux_sym_function_static_declaration_token1] = ACTIONS(1009), + [aux_sym_global_declaration_token1] = ACTIONS(1009), + [aux_sym_namespace_definition_token1] = ACTIONS(1009), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1009), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1009), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1009), + [anon_sym_BSLASH] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1007), + [aux_sym_trait_declaration_token1] = ACTIONS(1009), + [aux_sym_interface_declaration_token1] = ACTIONS(1009), + [aux_sym_enum_declaration_token1] = ACTIONS(1009), + [aux_sym_enum_case_token1] = ACTIONS(1009), + [aux_sym_class_declaration_token1] = ACTIONS(1009), + [aux_sym_final_modifier_token1] = ACTIONS(1009), + [aux_sym_abstract_modifier_token1] = ACTIONS(1009), + [aux_sym_readonly_modifier_token1] = ACTIONS(1009), + [sym_var_modifier] = ACTIONS(1009), + [aux_sym_visibility_modifier_token1] = ACTIONS(1009), + [aux_sym_visibility_modifier_token2] = ACTIONS(1009), + [aux_sym_visibility_modifier_token3] = ACTIONS(1009), + [aux_sym__arrow_function_header_token1] = ACTIONS(1009), + [anon_sym_LPAREN] = ACTIONS(1007), + [aux_sym_cast_type_token1] = ACTIONS(1009), + [aux_sym_echo_statement_token1] = ACTIONS(1009), + [aux_sym_exit_statement_token1] = ACTIONS(1009), + [anon_sym_unset] = ACTIONS(1009), + [aux_sym_declare_statement_token1] = ACTIONS(1009), + [aux_sym_declare_statement_token2] = ACTIONS(1009), + [sym_float] = ACTIONS(1009), + [aux_sym_try_statement_token1] = ACTIONS(1009), + [aux_sym_goto_statement_token1] = ACTIONS(1009), + [aux_sym_continue_statement_token1] = ACTIONS(1009), + [aux_sym_break_statement_token1] = ACTIONS(1009), + [sym_integer] = ACTIONS(1009), + [aux_sym_return_statement_token1] = ACTIONS(1009), + [aux_sym_throw_expression_token1] = ACTIONS(1009), + [aux_sym_while_statement_token1] = ACTIONS(1009), + [aux_sym_while_statement_token2] = ACTIONS(1009), + [aux_sym_do_statement_token1] = ACTIONS(1009), + [aux_sym_for_statement_token1] = ACTIONS(1009), + [aux_sym_for_statement_token2] = ACTIONS(1009), + [aux_sym_foreach_statement_token1] = ACTIONS(1009), + [aux_sym_foreach_statement_token2] = ACTIONS(1009), + [aux_sym_if_statement_token1] = ACTIONS(1009), + [aux_sym_if_statement_token2] = ACTIONS(1009), + [aux_sym_else_if_clause_token1] = ACTIONS(1011), + [aux_sym_else_clause_token1] = ACTIONS(1014), + [aux_sym_match_expression_token1] = ACTIONS(1009), + [aux_sym_match_default_expression_token1] = ACTIONS(1009), + [aux_sym_switch_statement_token1] = ACTIONS(1009), + [aux_sym_switch_block_token1] = ACTIONS(1009), + [anon_sym_PLUS] = ACTIONS(1009), + [anon_sym_DASH] = ACTIONS(1009), + [anon_sym_TILDE] = ACTIONS(1007), + [anon_sym_BANG] = ACTIONS(1007), + [anon_sym_AT] = ACTIONS(1007), + [aux_sym_clone_expression_token1] = ACTIONS(1009), + [aux_sym_print_intrinsic_token1] = ACTIONS(1009), + [aux_sym_object_creation_expression_token1] = ACTIONS(1009), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [aux_sym__list_destructing_token1] = ACTIONS(1009), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_self] = ACTIONS(1009), + [anon_sym_parent] = ACTIONS(1009), + [aux_sym__argument_name_token1] = ACTIONS(1009), + [aux_sym__argument_name_token2] = ACTIONS(1009), + [anon_sym_POUND_LBRACK] = ACTIONS(1007), + [aux_sym_encapsed_string_token1] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [aux_sym_string_token1] = ACTIONS(1007), + [anon_sym_SQUOTE] = ACTIONS(1007), + [anon_sym_LT_LT_LT] = ACTIONS(1007), + [anon_sym_BQUOTE] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1007), + [aux_sym_yield_expression_token1] = ACTIONS(1009), + [aux_sym_include_expression_token1] = ACTIONS(1009), + [aux_sym_include_once_expression_token1] = ACTIONS(1009), + [aux_sym_require_expression_token1] = ACTIONS(1009), + [aux_sym_require_once_expression_token1] = ACTIONS(1009), [sym_comment] = ACTIONS(3), }, [428] = { - [ts_builtin_sym_end] = ACTIONS(1016), - [sym_name] = ACTIONS(1018), - [anon_sym_QMARK_GT] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [aux_sym_function_static_declaration_token1] = ACTIONS(1018), - [aux_sym_global_declaration_token1] = ACTIONS(1018), - [aux_sym_namespace_definition_token1] = ACTIONS(1018), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1018), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1018), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1018), - [anon_sym_BSLASH] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [aux_sym_trait_declaration_token1] = ACTIONS(1018), - [aux_sym_interface_declaration_token1] = ACTIONS(1018), - [aux_sym_enum_declaration_token1] = ACTIONS(1018), - [aux_sym_enum_case_token1] = ACTIONS(1018), - [aux_sym_class_declaration_token1] = ACTIONS(1018), - [aux_sym_final_modifier_token1] = ACTIONS(1018), - [aux_sym_abstract_modifier_token1] = ACTIONS(1018), - [aux_sym_readonly_modifier_token1] = ACTIONS(1018), - [aux_sym_visibility_modifier_token1] = ACTIONS(1018), - [aux_sym_visibility_modifier_token2] = ACTIONS(1018), - [aux_sym_visibility_modifier_token3] = ACTIONS(1018), - [aux_sym__arrow_function_header_token1] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1016), - [aux_sym_cast_type_token1] = ACTIONS(1018), - [aux_sym_echo_statement_token1] = ACTIONS(1018), - [aux_sym_exit_statement_token1] = ACTIONS(1018), - [anon_sym_unset] = ACTIONS(1018), - [aux_sym_declare_statement_token1] = ACTIONS(1018), - [aux_sym_declare_statement_token2] = ACTIONS(1018), - [sym_float] = ACTIONS(1018), - [aux_sym_try_statement_token1] = ACTIONS(1018), - [aux_sym_catch_clause_token1] = ACTIONS(1018), - [aux_sym_finally_clause_token1] = ACTIONS(1018), - [aux_sym_goto_statement_token1] = ACTIONS(1018), - [aux_sym_continue_statement_token1] = ACTIONS(1018), - [aux_sym_break_statement_token1] = ACTIONS(1018), - [sym_integer] = ACTIONS(1018), - [aux_sym_return_statement_token1] = ACTIONS(1018), - [aux_sym_throw_expression_token1] = ACTIONS(1018), - [aux_sym_while_statement_token1] = ACTIONS(1018), - [aux_sym_while_statement_token2] = ACTIONS(1018), - [aux_sym_do_statement_token1] = ACTIONS(1018), - [aux_sym_for_statement_token1] = ACTIONS(1018), - [aux_sym_for_statement_token2] = ACTIONS(1018), - [aux_sym_foreach_statement_token1] = ACTIONS(1018), - [aux_sym_foreach_statement_token2] = ACTIONS(1018), - [aux_sym_if_statement_token1] = ACTIONS(1018), - [aux_sym_if_statement_token2] = ACTIONS(1018), - [aux_sym_else_if_clause_token1] = ACTIONS(1018), - [aux_sym_else_clause_token1] = ACTIONS(1018), - [aux_sym_match_expression_token1] = ACTIONS(1018), - [aux_sym_match_default_expression_token1] = ACTIONS(1018), - [aux_sym_switch_statement_token1] = ACTIONS(1018), - [aux_sym_switch_block_token1] = ACTIONS(1018), - [anon_sym_PLUS] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_AT] = ACTIONS(1016), - [aux_sym_clone_expression_token1] = ACTIONS(1018), - [aux_sym_print_intrinsic_token1] = ACTIONS(1018), - [aux_sym_object_creation_expression_token1] = ACTIONS(1018), - [anon_sym_DASH_DASH] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [aux_sym__list_destructing_token1] = ACTIONS(1018), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_self] = ACTIONS(1018), - [anon_sym_parent] = ACTIONS(1018), - [aux_sym__argument_name_token1] = ACTIONS(1018), - [aux_sym__argument_name_token2] = ACTIONS(1018), - [anon_sym_POUND_LBRACK] = ACTIONS(1016), - [aux_sym_encapsed_string_token1] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1016), - [aux_sym_string_token1] = ACTIONS(1016), - [anon_sym_SQUOTE] = ACTIONS(1016), - [anon_sym_LT_LT_LT] = ACTIONS(1016), - [anon_sym_BQUOTE] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1016), - [aux_sym_yield_expression_token1] = ACTIONS(1018), - [aux_sym_include_expression_token1] = ACTIONS(1018), - [aux_sym_include_once_expression_token1] = ACTIONS(1018), - [aux_sym_require_expression_token1] = ACTIONS(1018), - [aux_sym_require_once_expression_token1] = ACTIONS(1018), + [sym_else_if_clause] = STATE(479), + [sym_else_clause] = STATE(475), + [aux_sym_if_statement_repeat1] = STATE(427), + [ts_builtin_sym_end] = ACTIONS(999), + [sym_name] = ACTIONS(1001), + [anon_sym_QMARK_GT] = ACTIONS(999), + [anon_sym_SEMI] = ACTIONS(999), + [aux_sym_function_static_declaration_token1] = ACTIONS(1001), + [aux_sym_global_declaration_token1] = ACTIONS(1001), + [aux_sym_namespace_definition_token1] = ACTIONS(1001), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1001), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1001), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1001), + [anon_sym_BSLASH] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(999), + [anon_sym_RBRACE] = ACTIONS(999), + [aux_sym_trait_declaration_token1] = ACTIONS(1001), + [aux_sym_interface_declaration_token1] = ACTIONS(1001), + [aux_sym_enum_declaration_token1] = ACTIONS(1001), + [aux_sym_enum_case_token1] = ACTIONS(1001), + [aux_sym_class_declaration_token1] = ACTIONS(1001), + [aux_sym_final_modifier_token1] = ACTIONS(1001), + [aux_sym_abstract_modifier_token1] = ACTIONS(1001), + [aux_sym_readonly_modifier_token1] = ACTIONS(1001), + [sym_var_modifier] = ACTIONS(1001), + [aux_sym_visibility_modifier_token1] = ACTIONS(1001), + [aux_sym_visibility_modifier_token2] = ACTIONS(1001), + [aux_sym_visibility_modifier_token3] = ACTIONS(1001), + [aux_sym__arrow_function_header_token1] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(999), + [aux_sym_cast_type_token1] = ACTIONS(1001), + [aux_sym_echo_statement_token1] = ACTIONS(1001), + [aux_sym_exit_statement_token1] = ACTIONS(1001), + [anon_sym_unset] = ACTIONS(1001), + [aux_sym_declare_statement_token1] = ACTIONS(1001), + [aux_sym_declare_statement_token2] = ACTIONS(1001), + [sym_float] = ACTIONS(1001), + [aux_sym_try_statement_token1] = ACTIONS(1001), + [aux_sym_goto_statement_token1] = ACTIONS(1001), + [aux_sym_continue_statement_token1] = ACTIONS(1001), + [aux_sym_break_statement_token1] = ACTIONS(1001), + [sym_integer] = ACTIONS(1001), + [aux_sym_return_statement_token1] = ACTIONS(1001), + [aux_sym_throw_expression_token1] = ACTIONS(1001), + [aux_sym_while_statement_token1] = ACTIONS(1001), + [aux_sym_while_statement_token2] = ACTIONS(1001), + [aux_sym_do_statement_token1] = ACTIONS(1001), + [aux_sym_for_statement_token1] = ACTIONS(1001), + [aux_sym_for_statement_token2] = ACTIONS(1001), + [aux_sym_foreach_statement_token1] = ACTIONS(1001), + [aux_sym_foreach_statement_token2] = ACTIONS(1001), + [aux_sym_if_statement_token1] = ACTIONS(1001), + [aux_sym_if_statement_token2] = ACTIONS(1001), + [aux_sym_else_if_clause_token1] = ACTIONS(1017), + [aux_sym_else_clause_token1] = ACTIONS(1020), + [aux_sym_match_expression_token1] = ACTIONS(1001), + [aux_sym_match_default_expression_token1] = ACTIONS(1001), + [aux_sym_switch_statement_token1] = ACTIONS(1001), + [aux_sym_switch_block_token1] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_AT] = ACTIONS(999), + [aux_sym_clone_expression_token1] = ACTIONS(1001), + [aux_sym_print_intrinsic_token1] = ACTIONS(1001), + [aux_sym_object_creation_expression_token1] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [aux_sym__list_destructing_token1] = ACTIONS(1001), + [anon_sym_LBRACK] = ACTIONS(999), + [anon_sym_self] = ACTIONS(1001), + [anon_sym_parent] = ACTIONS(1001), + [aux_sym__argument_name_token1] = ACTIONS(1001), + [aux_sym__argument_name_token2] = ACTIONS(1001), + [anon_sym_POUND_LBRACK] = ACTIONS(999), + [aux_sym_encapsed_string_token1] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(999), + [aux_sym_string_token1] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_LT_LT_LT] = ACTIONS(999), + [anon_sym_BQUOTE] = ACTIONS(999), + [anon_sym_DOLLAR] = ACTIONS(999), + [aux_sym_yield_expression_token1] = ACTIONS(1001), + [aux_sym_include_expression_token1] = ACTIONS(1001), + [aux_sym_include_once_expression_token1] = ACTIONS(1001), + [aux_sym_require_expression_token1] = ACTIONS(1001), + [aux_sym_require_once_expression_token1] = ACTIONS(1001), [sym_comment] = ACTIONS(3), }, [429] = { - [sym_else_if_clause] = STATE(548), - [aux_sym_if_statement_repeat1] = STATE(429), - [ts_builtin_sym_end] = ACTIONS(1020), - [sym_name] = ACTIONS(1022), - [anon_sym_QMARK_GT] = ACTIONS(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [aux_sym_function_static_declaration_token1] = ACTIONS(1022), - [aux_sym_global_declaration_token1] = ACTIONS(1022), - [aux_sym_namespace_definition_token1] = ACTIONS(1022), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1022), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1022), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1022), - [anon_sym_BSLASH] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_RBRACE] = ACTIONS(1020), - [aux_sym_trait_declaration_token1] = ACTIONS(1022), - [aux_sym_interface_declaration_token1] = ACTIONS(1022), - [aux_sym_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), - [aux_sym_exit_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(1024), - [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_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1020), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1020), - [anon_sym_PLUS_PLUS] = ACTIONS(1020), - [aux_sym__list_destructing_token1] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(1020), - [anon_sym_self] = ACTIONS(1022), - [anon_sym_parent] = ACTIONS(1022), - [aux_sym__argument_name_token1] = ACTIONS(1022), - [aux_sym__argument_name_token2] = ACTIONS(1022), - [anon_sym_POUND_LBRACK] = ACTIONS(1020), - [aux_sym_encapsed_string_token1] = ACTIONS(1020), - [anon_sym_DQUOTE] = ACTIONS(1020), - [aux_sym_string_token1] = ACTIONS(1020), - [anon_sym_SQUOTE] = ACTIONS(1020), - [anon_sym_LT_LT_LT] = ACTIONS(1020), - [anon_sym_BQUOTE] = ACTIONS(1020), - [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), + [ts_builtin_sym_end] = ACTIONS(1023), + [sym_name] = ACTIONS(1025), + [anon_sym_QMARK_GT] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1023), + [aux_sym_function_static_declaration_token1] = ACTIONS(1025), + [aux_sym_global_declaration_token1] = ACTIONS(1025), + [aux_sym_namespace_definition_token1] = ACTIONS(1025), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1025), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1025), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1025), + [anon_sym_BSLASH] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1023), + [aux_sym_trait_declaration_token1] = ACTIONS(1025), + [aux_sym_interface_declaration_token1] = ACTIONS(1025), + [aux_sym_enum_declaration_token1] = ACTIONS(1025), + [aux_sym_enum_case_token1] = ACTIONS(1025), + [aux_sym_class_declaration_token1] = ACTIONS(1025), + [aux_sym_final_modifier_token1] = ACTIONS(1025), + [aux_sym_abstract_modifier_token1] = ACTIONS(1025), + [aux_sym_readonly_modifier_token1] = ACTIONS(1025), + [sym_var_modifier] = ACTIONS(1025), + [aux_sym_visibility_modifier_token1] = ACTIONS(1025), + [aux_sym_visibility_modifier_token2] = ACTIONS(1025), + [aux_sym_visibility_modifier_token3] = ACTIONS(1025), + [aux_sym__arrow_function_header_token1] = ACTIONS(1025), + [anon_sym_LPAREN] = ACTIONS(1023), + [aux_sym_cast_type_token1] = ACTIONS(1025), + [aux_sym_echo_statement_token1] = ACTIONS(1025), + [aux_sym_exit_statement_token1] = ACTIONS(1025), + [anon_sym_unset] = ACTIONS(1025), + [aux_sym_declare_statement_token1] = ACTIONS(1025), + [aux_sym_declare_statement_token2] = ACTIONS(1025), + [sym_float] = ACTIONS(1025), + [aux_sym_try_statement_token1] = ACTIONS(1025), + [aux_sym_catch_clause_token1] = ACTIONS(1025), + [aux_sym_finally_clause_token1] = ACTIONS(1025), + [aux_sym_goto_statement_token1] = ACTIONS(1025), + [aux_sym_continue_statement_token1] = ACTIONS(1025), + [aux_sym_break_statement_token1] = ACTIONS(1025), + [sym_integer] = ACTIONS(1025), + [aux_sym_return_statement_token1] = ACTIONS(1025), + [aux_sym_throw_expression_token1] = ACTIONS(1025), + [aux_sym_while_statement_token1] = ACTIONS(1025), + [aux_sym_while_statement_token2] = ACTIONS(1025), + [aux_sym_do_statement_token1] = ACTIONS(1025), + [aux_sym_for_statement_token1] = ACTIONS(1025), + [aux_sym_for_statement_token2] = ACTIONS(1025), + [aux_sym_foreach_statement_token1] = ACTIONS(1025), + [aux_sym_foreach_statement_token2] = ACTIONS(1025), + [aux_sym_if_statement_token1] = ACTIONS(1025), + [aux_sym_if_statement_token2] = ACTIONS(1025), + [aux_sym_else_if_clause_token1] = ACTIONS(1025), + [aux_sym_else_clause_token1] = ACTIONS(1025), + [aux_sym_match_expression_token1] = ACTIONS(1025), + [aux_sym_match_default_expression_token1] = ACTIONS(1025), + [aux_sym_switch_statement_token1] = ACTIONS(1025), + [aux_sym_switch_block_token1] = ACTIONS(1025), + [anon_sym_PLUS] = ACTIONS(1025), + [anon_sym_DASH] = ACTIONS(1025), + [anon_sym_TILDE] = ACTIONS(1023), + [anon_sym_BANG] = ACTIONS(1023), + [anon_sym_AT] = ACTIONS(1023), + [aux_sym_clone_expression_token1] = ACTIONS(1025), + [aux_sym_print_intrinsic_token1] = ACTIONS(1025), + [aux_sym_object_creation_expression_token1] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [aux_sym__list_destructing_token1] = ACTIONS(1025), + [anon_sym_LBRACK] = ACTIONS(1023), + [anon_sym_self] = ACTIONS(1025), + [anon_sym_parent] = ACTIONS(1025), + [aux_sym__argument_name_token1] = ACTIONS(1025), + [aux_sym__argument_name_token2] = ACTIONS(1025), + [anon_sym_POUND_LBRACK] = ACTIONS(1023), + [aux_sym_encapsed_string_token1] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [aux_sym_string_token1] = ACTIONS(1023), + [anon_sym_SQUOTE] = ACTIONS(1023), + [anon_sym_LT_LT_LT] = ACTIONS(1023), + [anon_sym_BQUOTE] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1023), + [aux_sym_yield_expression_token1] = ACTIONS(1025), + [aux_sym_include_expression_token1] = ACTIONS(1025), + [aux_sym_include_once_expression_token1] = ACTIONS(1025), + [aux_sym_require_expression_token1] = ACTIONS(1025), + [aux_sym_require_once_expression_token1] = ACTIONS(1025), [sym_comment] = ACTIONS(3), }, [430] = { @@ -64227,6 +64859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_final_modifier_token1] = ACTIONS(1029), [aux_sym_abstract_modifier_token1] = ACTIONS(1029), [aux_sym_readonly_modifier_token1] = ACTIONS(1029), + [sym_var_modifier] = ACTIONS(1029), [aux_sym_visibility_modifier_token1] = ACTIONS(1029), [aux_sym_visibility_modifier_token2] = ACTIONS(1029), [aux_sym_visibility_modifier_token3] = ACTIONS(1029), @@ -64316,6 +64949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_final_modifier_token1] = ACTIONS(1033), [aux_sym_abstract_modifier_token1] = ACTIONS(1033), [aux_sym_readonly_modifier_token1] = ACTIONS(1033), + [sym_var_modifier] = ACTIONS(1033), [aux_sym_visibility_modifier_token1] = ACTIONS(1033), [aux_sym_visibility_modifier_token2] = ACTIONS(1033), [aux_sym_visibility_modifier_token3] = ACTIONS(1033), @@ -64405,6 +65039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_final_modifier_token1] = ACTIONS(1037), [aux_sym_abstract_modifier_token1] = ACTIONS(1037), [aux_sym_readonly_modifier_token1] = ACTIONS(1037), + [sym_var_modifier] = ACTIONS(1037), [aux_sym_visibility_modifier_token1] = ACTIONS(1037), [aux_sym_visibility_modifier_token2] = ACTIONS(1037), [aux_sym_visibility_modifier_token3] = ACTIONS(1037), @@ -64473,6 +65108,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [433] = { + [sym_else_if_clause] = STATE(479), + [aux_sym_if_statement_repeat1] = STATE(433), [ts_builtin_sym_end] = ACTIONS(1039), [sym_name] = ACTIONS(1041), [anon_sym_QMARK_GT] = ACTIONS(1039), @@ -64494,6 +65131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_final_modifier_token1] = ACTIONS(1041), [aux_sym_abstract_modifier_token1] = ACTIONS(1041), [aux_sym_readonly_modifier_token1] = ACTIONS(1041), + [sym_var_modifier] = ACTIONS(1041), [aux_sym_visibility_modifier_token1] = ACTIONS(1041), [aux_sym_visibility_modifier_token2] = ACTIONS(1041), [aux_sym_visibility_modifier_token3] = ACTIONS(1041), @@ -64507,8 +65145,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_declare_statement_token2] = ACTIONS(1041), [sym_float] = ACTIONS(1041), [aux_sym_try_statement_token1] = ACTIONS(1041), - [aux_sym_catch_clause_token1] = ACTIONS(1041), - [aux_sym_finally_clause_token1] = ACTIONS(1041), [aux_sym_goto_statement_token1] = ACTIONS(1041), [aux_sym_continue_statement_token1] = ACTIONS(1041), [aux_sym_break_statement_token1] = ACTIONS(1041), @@ -64524,7 +65160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_foreach_statement_token2] = ACTIONS(1041), [aux_sym_if_statement_token1] = ACTIONS(1041), [aux_sym_if_statement_token2] = ACTIONS(1041), - [aux_sym_else_if_clause_token1] = ACTIONS(1041), + [aux_sym_else_if_clause_token1] = ACTIONS(1043), [aux_sym_else_clause_token1] = ACTIONS(1041), [aux_sym_match_expression_token1] = ACTIONS(1041), [aux_sym_match_default_expression_token1] = ACTIONS(1041), @@ -64562,12139 +65198,11484 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [434] = { - [ts_builtin_sym_end] = ACTIONS(1043), - [sym_name] = ACTIONS(1045), - [anon_sym_QMARK_GT] = ACTIONS(1043), - [anon_sym_SEMI] = ACTIONS(1047), - [aux_sym_function_static_declaration_token1] = ACTIONS(1045), - [aux_sym_global_declaration_token1] = ACTIONS(1045), - [aux_sym_namespace_definition_token1] = ACTIONS(1045), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1045), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1045), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1045), - [anon_sym_BSLASH] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_RBRACE] = ACTIONS(1043), - [aux_sym_trait_declaration_token1] = ACTIONS(1045), - [aux_sym_interface_declaration_token1] = ACTIONS(1045), - [aux_sym_enum_declaration_token1] = ACTIONS(1045), - [aux_sym_enum_case_token1] = ACTIONS(1045), - [aux_sym_class_declaration_token1] = ACTIONS(1045), - [aux_sym_final_modifier_token1] = ACTIONS(1045), - [aux_sym_abstract_modifier_token1] = ACTIONS(1045), - [aux_sym_readonly_modifier_token1] = ACTIONS(1045), - [aux_sym_visibility_modifier_token1] = ACTIONS(1045), - [aux_sym_visibility_modifier_token2] = ACTIONS(1045), - [aux_sym_visibility_modifier_token3] = ACTIONS(1045), - [aux_sym__arrow_function_header_token1] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_cast_type_token1] = ACTIONS(1045), - [aux_sym_echo_statement_token1] = ACTIONS(1045), - [aux_sym_exit_statement_token1] = ACTIONS(1045), - [anon_sym_unset] = ACTIONS(1045), - [aux_sym_declare_statement_token1] = ACTIONS(1045), - [aux_sym_declare_statement_token2] = ACTIONS(1045), - [sym_float] = ACTIONS(1045), - [aux_sym_try_statement_token1] = ACTIONS(1045), - [aux_sym_goto_statement_token1] = ACTIONS(1045), - [aux_sym_continue_statement_token1] = ACTIONS(1045), - [aux_sym_break_statement_token1] = ACTIONS(1045), - [sym_integer] = ACTIONS(1045), - [aux_sym_return_statement_token1] = ACTIONS(1045), - [aux_sym_throw_expression_token1] = ACTIONS(1045), - [aux_sym_while_statement_token1] = ACTIONS(1045), - [aux_sym_while_statement_token2] = ACTIONS(1045), - [aux_sym_do_statement_token1] = ACTIONS(1045), - [aux_sym_for_statement_token1] = ACTIONS(1045), - [aux_sym_for_statement_token2] = ACTIONS(1045), - [aux_sym_foreach_statement_token1] = ACTIONS(1045), - [aux_sym_foreach_statement_token2] = ACTIONS(1045), - [aux_sym_if_statement_token1] = ACTIONS(1045), - [aux_sym_if_statement_token2] = ACTIONS(1045), - [aux_sym_else_if_clause_token1] = ACTIONS(1045), - [aux_sym_else_clause_token1] = ACTIONS(1045), - [aux_sym_match_expression_token1] = ACTIONS(1045), - [aux_sym_match_default_expression_token1] = ACTIONS(1045), - [aux_sym_switch_statement_token1] = ACTIONS(1045), - [aux_sym_switch_block_token1] = ACTIONS(1045), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(1043), - [anon_sym_BANG] = ACTIONS(1043), - [anon_sym_AT] = ACTIONS(1043), - [aux_sym_clone_expression_token1] = ACTIONS(1045), - [aux_sym_print_intrinsic_token1] = ACTIONS(1045), - [aux_sym_object_creation_expression_token1] = ACTIONS(1045), - [anon_sym_DASH_DASH] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1043), - [aux_sym__list_destructing_token1] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1043), - [anon_sym_self] = ACTIONS(1045), - [anon_sym_parent] = ACTIONS(1045), - [aux_sym__argument_name_token1] = ACTIONS(1045), - [aux_sym__argument_name_token2] = ACTIONS(1045), - [anon_sym_POUND_LBRACK] = ACTIONS(1043), - [aux_sym_encapsed_string_token1] = ACTIONS(1043), - [anon_sym_DQUOTE] = ACTIONS(1043), - [aux_sym_string_token1] = ACTIONS(1043), - [anon_sym_SQUOTE] = ACTIONS(1043), - [anon_sym_LT_LT_LT] = ACTIONS(1043), - [anon_sym_BQUOTE] = ACTIONS(1043), - [anon_sym_DOLLAR] = ACTIONS(1043), - [aux_sym_yield_expression_token1] = ACTIONS(1045), - [aux_sym_include_expression_token1] = ACTIONS(1045), - [aux_sym_include_once_expression_token1] = ACTIONS(1045), - [aux_sym_require_expression_token1] = ACTIONS(1045), - [aux_sym_require_once_expression_token1] = ACTIONS(1045), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(1047), + [ts_builtin_sym_end] = ACTIONS(1046), + [sym_name] = ACTIONS(1048), + [anon_sym_QMARK_GT] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1046), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_catch_clause_token1] = ACTIONS(1048), + [aux_sym_finally_clause_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_PLUS] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1046), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1046), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [aux_sym__list_destructing_token1] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_self] = ACTIONS(1048), + [anon_sym_parent] = ACTIONS(1048), + [aux_sym__argument_name_token1] = ACTIONS(1048), + [aux_sym__argument_name_token2] = ACTIONS(1048), + [anon_sym_POUND_LBRACK] = ACTIONS(1046), + [aux_sym_encapsed_string_token1] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [aux_sym_string_token1] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(1046), + [anon_sym_LT_LT_LT] = ACTIONS(1046), + [anon_sym_BQUOTE] = ACTIONS(1046), + [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), }, [435] = { - [ts_builtin_sym_end] = ACTIONS(1049), - [sym_name] = ACTIONS(1051), - [anon_sym_QMARK_GT] = ACTIONS(1049), - [anon_sym_SEMI] = ACTIONS(1053), - [aux_sym_function_static_declaration_token1] = ACTIONS(1051), - [aux_sym_global_declaration_token1] = ACTIONS(1051), - [aux_sym_namespace_definition_token1] = ACTIONS(1051), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1051), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1051), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1051), - [anon_sym_BSLASH] = ACTIONS(1049), - [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_RBRACE] = ACTIONS(1049), - [aux_sym_trait_declaration_token1] = ACTIONS(1051), - [aux_sym_interface_declaration_token1] = ACTIONS(1051), - [aux_sym_enum_declaration_token1] = ACTIONS(1051), - [aux_sym_enum_case_token1] = ACTIONS(1051), - [aux_sym_class_declaration_token1] = ACTIONS(1051), - [aux_sym_final_modifier_token1] = ACTIONS(1051), - [aux_sym_abstract_modifier_token1] = ACTIONS(1051), - [aux_sym_readonly_modifier_token1] = ACTIONS(1051), - [aux_sym_visibility_modifier_token1] = ACTIONS(1051), - [aux_sym_visibility_modifier_token2] = ACTIONS(1051), - [aux_sym_visibility_modifier_token3] = ACTIONS(1051), - [aux_sym__arrow_function_header_token1] = ACTIONS(1051), - [anon_sym_LPAREN] = ACTIONS(1049), - [aux_sym_cast_type_token1] = ACTIONS(1051), - [aux_sym_echo_statement_token1] = ACTIONS(1051), - [aux_sym_exit_statement_token1] = ACTIONS(1051), - [anon_sym_unset] = ACTIONS(1051), - [aux_sym_declare_statement_token1] = ACTIONS(1051), - [aux_sym_declare_statement_token2] = ACTIONS(1051), - [sym_float] = ACTIONS(1051), - [aux_sym_try_statement_token1] = ACTIONS(1051), - [aux_sym_goto_statement_token1] = ACTIONS(1051), - [aux_sym_continue_statement_token1] = ACTIONS(1051), - [aux_sym_break_statement_token1] = ACTIONS(1051), - [sym_integer] = ACTIONS(1051), - [aux_sym_return_statement_token1] = ACTIONS(1051), - [aux_sym_throw_expression_token1] = ACTIONS(1051), - [aux_sym_while_statement_token1] = ACTIONS(1051), - [aux_sym_while_statement_token2] = ACTIONS(1051), - [aux_sym_do_statement_token1] = ACTIONS(1051), - [aux_sym_for_statement_token1] = ACTIONS(1051), - [aux_sym_for_statement_token2] = ACTIONS(1051), - [aux_sym_foreach_statement_token1] = ACTIONS(1051), - [aux_sym_foreach_statement_token2] = ACTIONS(1051), - [aux_sym_if_statement_token1] = ACTIONS(1051), - [aux_sym_if_statement_token2] = ACTIONS(1051), - [aux_sym_else_if_clause_token1] = ACTIONS(1051), - [aux_sym_else_clause_token1] = ACTIONS(1051), - [aux_sym_match_expression_token1] = ACTIONS(1051), - [aux_sym_match_default_expression_token1] = ACTIONS(1051), - [aux_sym_switch_statement_token1] = ACTIONS(1051), - [aux_sym_switch_block_token1] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1051), - [anon_sym_DASH] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1049), - [anon_sym_BANG] = ACTIONS(1049), - [anon_sym_AT] = ACTIONS(1049), - [aux_sym_clone_expression_token1] = ACTIONS(1051), - [aux_sym_print_intrinsic_token1] = ACTIONS(1051), - [aux_sym_object_creation_expression_token1] = ACTIONS(1051), - [anon_sym_DASH_DASH] = ACTIONS(1049), - [anon_sym_PLUS_PLUS] = ACTIONS(1049), - [aux_sym__list_destructing_token1] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1049), - [anon_sym_self] = ACTIONS(1051), - [anon_sym_parent] = ACTIONS(1051), - [aux_sym__argument_name_token1] = ACTIONS(1051), - [aux_sym__argument_name_token2] = ACTIONS(1051), - [anon_sym_POUND_LBRACK] = ACTIONS(1049), - [aux_sym_encapsed_string_token1] = ACTIONS(1049), - [anon_sym_DQUOTE] = ACTIONS(1049), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_LT_LT_LT] = ACTIONS(1049), - [anon_sym_BQUOTE] = ACTIONS(1049), - [anon_sym_DOLLAR] = ACTIONS(1049), - [aux_sym_yield_expression_token1] = ACTIONS(1051), - [aux_sym_include_expression_token1] = ACTIONS(1051), - [aux_sym_include_once_expression_token1] = ACTIONS(1051), - [aux_sym_require_expression_token1] = ACTIONS(1051), - [aux_sym_require_once_expression_token1] = ACTIONS(1051), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(1053), + [ts_builtin_sym_end] = ACTIONS(1050), + [sym_name] = ACTIONS(1052), + [anon_sym_QMARK_GT] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1054), + [aux_sym_function_static_declaration_token1] = ACTIONS(1052), + [aux_sym_global_declaration_token1] = ACTIONS(1052), + [aux_sym_namespace_definition_token1] = ACTIONS(1052), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1052), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1052), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1052), + [anon_sym_BSLASH] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1050), + [aux_sym_trait_declaration_token1] = ACTIONS(1052), + [aux_sym_interface_declaration_token1] = ACTIONS(1052), + [aux_sym_enum_declaration_token1] = ACTIONS(1052), + [aux_sym_enum_case_token1] = ACTIONS(1052), + [aux_sym_class_declaration_token1] = ACTIONS(1052), + [aux_sym_final_modifier_token1] = ACTIONS(1052), + [aux_sym_abstract_modifier_token1] = ACTIONS(1052), + [aux_sym_readonly_modifier_token1] = ACTIONS(1052), + [sym_var_modifier] = ACTIONS(1052), + [aux_sym_visibility_modifier_token1] = ACTIONS(1052), + [aux_sym_visibility_modifier_token2] = ACTIONS(1052), + [aux_sym_visibility_modifier_token3] = ACTIONS(1052), + [aux_sym__arrow_function_header_token1] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1050), + [aux_sym_cast_type_token1] = ACTIONS(1052), + [aux_sym_echo_statement_token1] = ACTIONS(1052), + [aux_sym_exit_statement_token1] = ACTIONS(1052), + [anon_sym_unset] = ACTIONS(1052), + [aux_sym_declare_statement_token1] = ACTIONS(1052), + [aux_sym_declare_statement_token2] = ACTIONS(1052), + [sym_float] = ACTIONS(1052), + [aux_sym_try_statement_token1] = ACTIONS(1052), + [aux_sym_goto_statement_token1] = ACTIONS(1052), + [aux_sym_continue_statement_token1] = ACTIONS(1052), + [aux_sym_break_statement_token1] = ACTIONS(1052), + [sym_integer] = ACTIONS(1052), + [aux_sym_return_statement_token1] = ACTIONS(1052), + [aux_sym_throw_expression_token1] = ACTIONS(1052), + [aux_sym_while_statement_token1] = ACTIONS(1052), + [aux_sym_while_statement_token2] = ACTIONS(1052), + [aux_sym_do_statement_token1] = ACTIONS(1052), + [aux_sym_for_statement_token1] = ACTIONS(1052), + [aux_sym_for_statement_token2] = ACTIONS(1052), + [aux_sym_foreach_statement_token1] = ACTIONS(1052), + [aux_sym_foreach_statement_token2] = ACTIONS(1052), + [aux_sym_if_statement_token1] = ACTIONS(1052), + [aux_sym_if_statement_token2] = ACTIONS(1052), + [aux_sym_else_if_clause_token1] = ACTIONS(1052), + [aux_sym_else_clause_token1] = ACTIONS(1052), + [aux_sym_match_expression_token1] = ACTIONS(1052), + [aux_sym_match_default_expression_token1] = ACTIONS(1052), + [aux_sym_switch_statement_token1] = ACTIONS(1052), + [aux_sym_switch_block_token1] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1050), + [anon_sym_AT] = ACTIONS(1050), + [aux_sym_clone_expression_token1] = ACTIONS(1052), + [aux_sym_print_intrinsic_token1] = ACTIONS(1052), + [aux_sym_object_creation_expression_token1] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [aux_sym__list_destructing_token1] = ACTIONS(1052), + [anon_sym_LBRACK] = ACTIONS(1050), + [anon_sym_self] = ACTIONS(1052), + [anon_sym_parent] = ACTIONS(1052), + [aux_sym__argument_name_token1] = ACTIONS(1052), + [aux_sym__argument_name_token2] = ACTIONS(1052), + [anon_sym_POUND_LBRACK] = ACTIONS(1050), + [aux_sym_encapsed_string_token1] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [aux_sym_string_token1] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(1050), + [anon_sym_LT_LT_LT] = ACTIONS(1050), + [anon_sym_BQUOTE] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [aux_sym_yield_expression_token1] = ACTIONS(1052), + [aux_sym_include_expression_token1] = ACTIONS(1052), + [aux_sym_include_once_expression_token1] = ACTIONS(1052), + [aux_sym_require_expression_token1] = ACTIONS(1052), + [aux_sym_require_once_expression_token1] = ACTIONS(1052), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1054), }, [436] = { - [ts_builtin_sym_end] = ACTIONS(1055), - [sym_name] = ACTIONS(1057), - [anon_sym_QMARK_GT] = ACTIONS(1055), - [anon_sym_SEMI] = ACTIONS(1059), - [aux_sym_function_static_declaration_token1] = ACTIONS(1057), - [aux_sym_global_declaration_token1] = ACTIONS(1057), - [aux_sym_namespace_definition_token1] = ACTIONS(1057), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1057), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1057), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1057), - [anon_sym_BSLASH] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(1055), - [aux_sym_trait_declaration_token1] = ACTIONS(1057), - [aux_sym_interface_declaration_token1] = ACTIONS(1057), - [aux_sym_enum_declaration_token1] = ACTIONS(1057), - [aux_sym_enum_case_token1] = ACTIONS(1057), - [aux_sym_class_declaration_token1] = ACTIONS(1057), - [aux_sym_final_modifier_token1] = ACTIONS(1057), - [aux_sym_abstract_modifier_token1] = ACTIONS(1057), - [aux_sym_readonly_modifier_token1] = ACTIONS(1057), - [aux_sym_visibility_modifier_token1] = ACTIONS(1057), - [aux_sym_visibility_modifier_token2] = ACTIONS(1057), - [aux_sym_visibility_modifier_token3] = ACTIONS(1057), - [aux_sym__arrow_function_header_token1] = ACTIONS(1057), - [anon_sym_LPAREN] = ACTIONS(1055), - [aux_sym_cast_type_token1] = ACTIONS(1057), - [aux_sym_echo_statement_token1] = ACTIONS(1057), - [aux_sym_exit_statement_token1] = ACTIONS(1057), - [anon_sym_unset] = ACTIONS(1057), - [aux_sym_declare_statement_token1] = ACTIONS(1057), - [aux_sym_declare_statement_token2] = ACTIONS(1057), - [sym_float] = ACTIONS(1057), - [aux_sym_try_statement_token1] = ACTIONS(1057), - [aux_sym_goto_statement_token1] = ACTIONS(1057), - [aux_sym_continue_statement_token1] = ACTIONS(1057), - [aux_sym_break_statement_token1] = ACTIONS(1057), - [sym_integer] = ACTIONS(1057), - [aux_sym_return_statement_token1] = ACTIONS(1057), - [aux_sym_throw_expression_token1] = ACTIONS(1057), - [aux_sym_while_statement_token1] = ACTIONS(1057), - [aux_sym_while_statement_token2] = ACTIONS(1057), - [aux_sym_do_statement_token1] = ACTIONS(1057), - [aux_sym_for_statement_token1] = ACTIONS(1057), - [aux_sym_for_statement_token2] = ACTIONS(1057), - [aux_sym_foreach_statement_token1] = ACTIONS(1057), - [aux_sym_foreach_statement_token2] = ACTIONS(1057), - [aux_sym_if_statement_token1] = ACTIONS(1057), - [aux_sym_if_statement_token2] = ACTIONS(1057), - [aux_sym_else_if_clause_token1] = ACTIONS(1057), - [aux_sym_else_clause_token1] = ACTIONS(1057), - [aux_sym_match_expression_token1] = ACTIONS(1057), - [aux_sym_match_default_expression_token1] = ACTIONS(1057), - [aux_sym_switch_statement_token1] = ACTIONS(1057), - [aux_sym_switch_block_token1] = ACTIONS(1057), - [anon_sym_PLUS] = ACTIONS(1057), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_TILDE] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_AT] = ACTIONS(1055), - [aux_sym_clone_expression_token1] = ACTIONS(1057), - [aux_sym_print_intrinsic_token1] = ACTIONS(1057), - [aux_sym_object_creation_expression_token1] = ACTIONS(1057), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [aux_sym__list_destructing_token1] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1055), - [anon_sym_self] = ACTIONS(1057), - [anon_sym_parent] = ACTIONS(1057), - [aux_sym__argument_name_token1] = ACTIONS(1057), - [aux_sym__argument_name_token2] = ACTIONS(1057), - [anon_sym_POUND_LBRACK] = ACTIONS(1055), - [aux_sym_encapsed_string_token1] = ACTIONS(1055), - [anon_sym_DQUOTE] = ACTIONS(1055), - [aux_sym_string_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1055), - [anon_sym_LT_LT_LT] = ACTIONS(1055), - [anon_sym_BQUOTE] = ACTIONS(1055), - [anon_sym_DOLLAR] = ACTIONS(1055), - [aux_sym_yield_expression_token1] = ACTIONS(1057), - [aux_sym_include_expression_token1] = ACTIONS(1057), - [aux_sym_include_once_expression_token1] = ACTIONS(1057), - [aux_sym_require_expression_token1] = ACTIONS(1057), - [aux_sym_require_once_expression_token1] = ACTIONS(1057), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(1059), + [ts_builtin_sym_end] = ACTIONS(1056), + [sym_name] = ACTIONS(1058), + [anon_sym_QMARK_GT] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1060), + [aux_sym_function_static_declaration_token1] = ACTIONS(1058), + [aux_sym_global_declaration_token1] = ACTIONS(1058), + [aux_sym_namespace_definition_token1] = ACTIONS(1058), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1058), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1058), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1058), + [anon_sym_BSLASH] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1056), + [aux_sym_trait_declaration_token1] = ACTIONS(1058), + [aux_sym_interface_declaration_token1] = ACTIONS(1058), + [aux_sym_enum_declaration_token1] = ACTIONS(1058), + [aux_sym_enum_case_token1] = ACTIONS(1058), + [aux_sym_class_declaration_token1] = ACTIONS(1058), + [aux_sym_final_modifier_token1] = ACTIONS(1058), + [aux_sym_abstract_modifier_token1] = ACTIONS(1058), + [aux_sym_readonly_modifier_token1] = ACTIONS(1058), + [sym_var_modifier] = ACTIONS(1058), + [aux_sym_visibility_modifier_token1] = ACTIONS(1058), + [aux_sym_visibility_modifier_token2] = ACTIONS(1058), + [aux_sym_visibility_modifier_token3] = ACTIONS(1058), + [aux_sym__arrow_function_header_token1] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1056), + [aux_sym_cast_type_token1] = ACTIONS(1058), + [aux_sym_echo_statement_token1] = ACTIONS(1058), + [aux_sym_exit_statement_token1] = ACTIONS(1058), + [anon_sym_unset] = ACTIONS(1058), + [aux_sym_declare_statement_token1] = ACTIONS(1058), + [aux_sym_declare_statement_token2] = ACTIONS(1058), + [sym_float] = ACTIONS(1058), + [aux_sym_try_statement_token1] = ACTIONS(1058), + [aux_sym_goto_statement_token1] = ACTIONS(1058), + [aux_sym_continue_statement_token1] = ACTIONS(1058), + [aux_sym_break_statement_token1] = ACTIONS(1058), + [sym_integer] = ACTIONS(1058), + [aux_sym_return_statement_token1] = ACTIONS(1058), + [aux_sym_throw_expression_token1] = ACTIONS(1058), + [aux_sym_while_statement_token1] = ACTIONS(1058), + [aux_sym_while_statement_token2] = ACTIONS(1058), + [aux_sym_do_statement_token1] = ACTIONS(1058), + [aux_sym_for_statement_token1] = ACTIONS(1058), + [aux_sym_for_statement_token2] = ACTIONS(1058), + [aux_sym_foreach_statement_token1] = ACTIONS(1058), + [aux_sym_foreach_statement_token2] = ACTIONS(1058), + [aux_sym_if_statement_token1] = ACTIONS(1058), + [aux_sym_if_statement_token2] = ACTIONS(1058), + [aux_sym_else_if_clause_token1] = ACTIONS(1058), + [aux_sym_else_clause_token1] = ACTIONS(1058), + [aux_sym_match_expression_token1] = ACTIONS(1058), + [aux_sym_match_default_expression_token1] = ACTIONS(1058), + [aux_sym_switch_statement_token1] = ACTIONS(1058), + [aux_sym_switch_block_token1] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_AT] = ACTIONS(1056), + [aux_sym_clone_expression_token1] = ACTIONS(1058), + [aux_sym_print_intrinsic_token1] = ACTIONS(1058), + [aux_sym_object_creation_expression_token1] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [aux_sym__list_destructing_token1] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_self] = ACTIONS(1058), + [anon_sym_parent] = ACTIONS(1058), + [aux_sym__argument_name_token1] = ACTIONS(1058), + [aux_sym__argument_name_token2] = ACTIONS(1058), + [anon_sym_POUND_LBRACK] = ACTIONS(1056), + [aux_sym_encapsed_string_token1] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [aux_sym_string_token1] = ACTIONS(1056), + [anon_sym_SQUOTE] = ACTIONS(1056), + [anon_sym_LT_LT_LT] = ACTIONS(1056), + [anon_sym_BQUOTE] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1056), + [aux_sym_yield_expression_token1] = ACTIONS(1058), + [aux_sym_include_expression_token1] = ACTIONS(1058), + [aux_sym_include_once_expression_token1] = ACTIONS(1058), + [aux_sym_require_expression_token1] = ACTIONS(1058), + [aux_sym_require_once_expression_token1] = ACTIONS(1058), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1060), }, [437] = { - [ts_builtin_sym_end] = ACTIONS(1061), - [sym_name] = ACTIONS(1063), - [anon_sym_QMARK_GT] = ACTIONS(1061), - [anon_sym_SEMI] = ACTIONS(1065), - [aux_sym_function_static_declaration_token1] = ACTIONS(1063), - [aux_sym_global_declaration_token1] = ACTIONS(1063), - [aux_sym_namespace_definition_token1] = ACTIONS(1063), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1063), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1063), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1061), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_RBRACE] = ACTIONS(1061), - [aux_sym_trait_declaration_token1] = ACTIONS(1063), - [aux_sym_interface_declaration_token1] = ACTIONS(1063), - [aux_sym_enum_declaration_token1] = ACTIONS(1063), - [aux_sym_enum_case_token1] = ACTIONS(1063), - [aux_sym_class_declaration_token1] = ACTIONS(1063), - [aux_sym_final_modifier_token1] = ACTIONS(1063), - [aux_sym_abstract_modifier_token1] = ACTIONS(1063), - [aux_sym_readonly_modifier_token1] = ACTIONS(1063), - [aux_sym_visibility_modifier_token1] = ACTIONS(1063), - [aux_sym_visibility_modifier_token2] = ACTIONS(1063), - [aux_sym_visibility_modifier_token3] = ACTIONS(1063), - [aux_sym__arrow_function_header_token1] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1061), - [aux_sym_cast_type_token1] = ACTIONS(1063), - [aux_sym_echo_statement_token1] = ACTIONS(1063), - [aux_sym_exit_statement_token1] = ACTIONS(1063), - [anon_sym_unset] = ACTIONS(1063), - [aux_sym_declare_statement_token1] = ACTIONS(1063), - [aux_sym_declare_statement_token2] = ACTIONS(1063), - [sym_float] = ACTIONS(1063), - [aux_sym_try_statement_token1] = ACTIONS(1063), - [aux_sym_goto_statement_token1] = ACTIONS(1063), - [aux_sym_continue_statement_token1] = ACTIONS(1063), - [aux_sym_break_statement_token1] = ACTIONS(1063), - [sym_integer] = ACTIONS(1063), - [aux_sym_return_statement_token1] = ACTIONS(1063), - [aux_sym_throw_expression_token1] = ACTIONS(1063), - [aux_sym_while_statement_token1] = ACTIONS(1063), - [aux_sym_while_statement_token2] = ACTIONS(1063), - [aux_sym_do_statement_token1] = ACTIONS(1063), - [aux_sym_for_statement_token1] = ACTIONS(1063), - [aux_sym_for_statement_token2] = ACTIONS(1063), - [aux_sym_foreach_statement_token1] = ACTIONS(1063), - [aux_sym_foreach_statement_token2] = ACTIONS(1063), - [aux_sym_if_statement_token1] = ACTIONS(1063), - [aux_sym_if_statement_token2] = ACTIONS(1063), - [aux_sym_else_if_clause_token1] = ACTIONS(1063), - [aux_sym_else_clause_token1] = ACTIONS(1063), - [aux_sym_match_expression_token1] = ACTIONS(1063), - [aux_sym_match_default_expression_token1] = ACTIONS(1063), - [aux_sym_switch_statement_token1] = ACTIONS(1063), - [aux_sym_switch_block_token1] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_AT] = ACTIONS(1061), - [aux_sym_clone_expression_token1] = ACTIONS(1063), - [aux_sym_print_intrinsic_token1] = ACTIONS(1063), - [aux_sym_object_creation_expression_token1] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1061), - [anon_sym_PLUS_PLUS] = ACTIONS(1061), - [aux_sym__list_destructing_token1] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1061), - [anon_sym_self] = ACTIONS(1063), - [anon_sym_parent] = ACTIONS(1063), - [aux_sym__argument_name_token1] = ACTIONS(1063), - [aux_sym__argument_name_token2] = ACTIONS(1063), - [anon_sym_POUND_LBRACK] = ACTIONS(1061), - [aux_sym_encapsed_string_token1] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1061), - [aux_sym_string_token1] = ACTIONS(1061), - [anon_sym_SQUOTE] = ACTIONS(1061), - [anon_sym_LT_LT_LT] = ACTIONS(1061), - [anon_sym_BQUOTE] = ACTIONS(1061), - [anon_sym_DOLLAR] = ACTIONS(1061), - [aux_sym_yield_expression_token1] = ACTIONS(1063), - [aux_sym_include_expression_token1] = ACTIONS(1063), - [aux_sym_include_once_expression_token1] = ACTIONS(1063), - [aux_sym_require_expression_token1] = ACTIONS(1063), - [aux_sym_require_once_expression_token1] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(1065), + [ts_builtin_sym_end] = ACTIONS(1062), + [sym_name] = ACTIONS(1064), + [anon_sym_QMARK_GT] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [aux_sym_function_static_declaration_token1] = ACTIONS(1064), + [aux_sym_global_declaration_token1] = ACTIONS(1064), + [aux_sym_namespace_definition_token1] = ACTIONS(1064), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1064), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1064), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1064), + [anon_sym_BSLASH] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), + [aux_sym_trait_declaration_token1] = ACTIONS(1064), + [aux_sym_interface_declaration_token1] = ACTIONS(1064), + [aux_sym_enum_declaration_token1] = ACTIONS(1064), + [aux_sym_enum_case_token1] = ACTIONS(1064), + [aux_sym_class_declaration_token1] = ACTIONS(1064), + [aux_sym_final_modifier_token1] = ACTIONS(1064), + [aux_sym_abstract_modifier_token1] = ACTIONS(1064), + [aux_sym_readonly_modifier_token1] = ACTIONS(1064), + [sym_var_modifier] = ACTIONS(1064), + [aux_sym_visibility_modifier_token1] = ACTIONS(1064), + [aux_sym_visibility_modifier_token2] = ACTIONS(1064), + [aux_sym_visibility_modifier_token3] = ACTIONS(1064), + [aux_sym__arrow_function_header_token1] = ACTIONS(1064), + [anon_sym_LPAREN] = ACTIONS(1062), + [aux_sym_cast_type_token1] = ACTIONS(1064), + [aux_sym_echo_statement_token1] = ACTIONS(1064), + [aux_sym_exit_statement_token1] = ACTIONS(1064), + [anon_sym_unset] = ACTIONS(1064), + [aux_sym_declare_statement_token1] = ACTIONS(1064), + [aux_sym_declare_statement_token2] = ACTIONS(1064), + [sym_float] = ACTIONS(1064), + [aux_sym_try_statement_token1] = ACTIONS(1064), + [aux_sym_goto_statement_token1] = ACTIONS(1064), + [aux_sym_continue_statement_token1] = ACTIONS(1064), + [aux_sym_break_statement_token1] = ACTIONS(1064), + [sym_integer] = ACTIONS(1064), + [aux_sym_return_statement_token1] = ACTIONS(1064), + [aux_sym_throw_expression_token1] = ACTIONS(1064), + [aux_sym_while_statement_token1] = ACTIONS(1064), + [aux_sym_while_statement_token2] = ACTIONS(1064), + [aux_sym_do_statement_token1] = ACTIONS(1064), + [aux_sym_for_statement_token1] = ACTIONS(1064), + [aux_sym_for_statement_token2] = ACTIONS(1064), + [aux_sym_foreach_statement_token1] = ACTIONS(1064), + [aux_sym_foreach_statement_token2] = ACTIONS(1064), + [aux_sym_if_statement_token1] = ACTIONS(1064), + [aux_sym_if_statement_token2] = ACTIONS(1064), + [aux_sym_else_if_clause_token1] = ACTIONS(1064), + [aux_sym_else_clause_token1] = ACTIONS(1064), + [aux_sym_match_expression_token1] = ACTIONS(1064), + [aux_sym_match_default_expression_token1] = ACTIONS(1064), + [aux_sym_switch_statement_token1] = ACTIONS(1064), + [aux_sym_switch_block_token1] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(1062), + [aux_sym_clone_expression_token1] = ACTIONS(1064), + [aux_sym_print_intrinsic_token1] = ACTIONS(1064), + [aux_sym_object_creation_expression_token1] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [aux_sym__list_destructing_token1] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(1062), + [anon_sym_self] = ACTIONS(1064), + [anon_sym_parent] = ACTIONS(1064), + [aux_sym__argument_name_token1] = ACTIONS(1064), + [aux_sym__argument_name_token2] = ACTIONS(1064), + [anon_sym_POUND_LBRACK] = ACTIONS(1062), + [aux_sym_encapsed_string_token1] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [aux_sym_string_token1] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_LT_LT_LT] = ACTIONS(1062), + [anon_sym_BQUOTE] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1062), + [aux_sym_yield_expression_token1] = ACTIONS(1064), + [aux_sym_include_expression_token1] = ACTIONS(1064), + [aux_sym_include_once_expression_token1] = ACTIONS(1064), + [aux_sym_require_expression_token1] = ACTIONS(1064), + [aux_sym_require_once_expression_token1] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1062), }, [438] = { - [ts_builtin_sym_end] = ACTIONS(1067), - [sym_name] = ACTIONS(1069), - [anon_sym_QMARK_GT] = ACTIONS(1067), - [anon_sym_SEMI] = ACTIONS(1067), - [aux_sym_function_static_declaration_token1] = ACTIONS(1069), - [aux_sym_global_declaration_token1] = ACTIONS(1069), - [aux_sym_namespace_definition_token1] = ACTIONS(1069), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1069), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1069), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1069), - [anon_sym_BSLASH] = ACTIONS(1067), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_RBRACE] = ACTIONS(1067), - [aux_sym_trait_declaration_token1] = ACTIONS(1069), - [aux_sym_interface_declaration_token1] = ACTIONS(1069), - [aux_sym_enum_declaration_token1] = ACTIONS(1069), - [aux_sym_enum_case_token1] = ACTIONS(1069), - [aux_sym_class_declaration_token1] = ACTIONS(1069), - [aux_sym_final_modifier_token1] = ACTIONS(1069), - [aux_sym_abstract_modifier_token1] = ACTIONS(1069), - [aux_sym_readonly_modifier_token1] = ACTIONS(1069), - [sym_var_modifier] = ACTIONS(1069), - [aux_sym_visibility_modifier_token1] = ACTIONS(1069), - [aux_sym_visibility_modifier_token2] = ACTIONS(1069), - [aux_sym_visibility_modifier_token3] = ACTIONS(1069), - [aux_sym__arrow_function_header_token1] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_cast_type_token1] = ACTIONS(1069), - [aux_sym_echo_statement_token1] = ACTIONS(1069), - [aux_sym_exit_statement_token1] = ACTIONS(1069), - [anon_sym_unset] = ACTIONS(1069), - [aux_sym_declare_statement_token1] = ACTIONS(1069), - [aux_sym_declare_statement_token2] = ACTIONS(1069), - [sym_float] = ACTIONS(1069), - [aux_sym_try_statement_token1] = ACTIONS(1069), - [aux_sym_goto_statement_token1] = ACTIONS(1069), - [aux_sym_continue_statement_token1] = ACTIONS(1069), - [aux_sym_break_statement_token1] = ACTIONS(1069), - [sym_integer] = ACTIONS(1069), - [aux_sym_return_statement_token1] = ACTIONS(1069), - [aux_sym_throw_expression_token1] = ACTIONS(1069), - [aux_sym_while_statement_token1] = ACTIONS(1069), - [aux_sym_while_statement_token2] = ACTIONS(1069), - [aux_sym_do_statement_token1] = ACTIONS(1069), - [aux_sym_for_statement_token1] = ACTIONS(1069), - [aux_sym_for_statement_token2] = ACTIONS(1069), - [aux_sym_foreach_statement_token1] = ACTIONS(1069), - [aux_sym_foreach_statement_token2] = ACTIONS(1069), - [aux_sym_if_statement_token1] = ACTIONS(1069), - [aux_sym_if_statement_token2] = ACTIONS(1069), - [aux_sym_else_if_clause_token1] = ACTIONS(1069), - [aux_sym_else_clause_token1] = ACTIONS(1069), - [aux_sym_match_expression_token1] = ACTIONS(1069), - [aux_sym_match_default_expression_token1] = ACTIONS(1069), - [aux_sym_switch_statement_token1] = ACTIONS(1069), - [aux_sym_switch_block_token1] = ACTIONS(1069), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AT] = ACTIONS(1067), - [aux_sym_clone_expression_token1] = ACTIONS(1069), - [aux_sym_print_intrinsic_token1] = ACTIONS(1069), - [aux_sym_object_creation_expression_token1] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [aux_sym__list_destructing_token1] = ACTIONS(1069), - [anon_sym_LBRACK] = ACTIONS(1067), - [anon_sym_self] = ACTIONS(1069), - [anon_sym_parent] = ACTIONS(1069), - [aux_sym__argument_name_token1] = ACTIONS(1069), - [aux_sym__argument_name_token2] = ACTIONS(1069), - [anon_sym_POUND_LBRACK] = ACTIONS(1067), - [aux_sym_encapsed_string_token1] = ACTIONS(1067), - [anon_sym_DQUOTE] = ACTIONS(1067), - [aux_sym_string_token1] = ACTIONS(1067), - [anon_sym_SQUOTE] = ACTIONS(1067), - [anon_sym_LT_LT_LT] = ACTIONS(1067), - [anon_sym_BQUOTE] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1067), - [aux_sym_yield_expression_token1] = ACTIONS(1069), - [aux_sym_include_expression_token1] = ACTIONS(1069), - [aux_sym_include_once_expression_token1] = ACTIONS(1069), - [aux_sym_require_expression_token1] = ACTIONS(1069), - [aux_sym_require_once_expression_token1] = ACTIONS(1069), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1066), + [sym_name] = ACTIONS(1068), + [anon_sym_QMARK_GT] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [aux_sym_function_static_declaration_token1] = ACTIONS(1068), + [aux_sym_global_declaration_token1] = ACTIONS(1068), + [aux_sym_namespace_definition_token1] = ACTIONS(1068), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1068), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1068), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1068), + [anon_sym_BSLASH] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1066), + [aux_sym_trait_declaration_token1] = ACTIONS(1068), + [aux_sym_interface_declaration_token1] = ACTIONS(1068), + [aux_sym_enum_declaration_token1] = ACTIONS(1068), + [aux_sym_enum_case_token1] = ACTIONS(1068), + [aux_sym_class_declaration_token1] = ACTIONS(1068), + [aux_sym_final_modifier_token1] = ACTIONS(1068), + [aux_sym_abstract_modifier_token1] = ACTIONS(1068), + [aux_sym_readonly_modifier_token1] = ACTIONS(1068), + [sym_var_modifier] = ACTIONS(1068), + [aux_sym_visibility_modifier_token1] = ACTIONS(1068), + [aux_sym_visibility_modifier_token2] = ACTIONS(1068), + [aux_sym_visibility_modifier_token3] = ACTIONS(1068), + [aux_sym__arrow_function_header_token1] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1066), + [aux_sym_cast_type_token1] = ACTIONS(1068), + [aux_sym_echo_statement_token1] = ACTIONS(1068), + [aux_sym_exit_statement_token1] = ACTIONS(1068), + [anon_sym_unset] = ACTIONS(1068), + [aux_sym_declare_statement_token1] = ACTIONS(1068), + [aux_sym_declare_statement_token2] = ACTIONS(1068), + [sym_float] = ACTIONS(1068), + [aux_sym_try_statement_token1] = ACTIONS(1068), + [aux_sym_goto_statement_token1] = ACTIONS(1068), + [aux_sym_continue_statement_token1] = ACTIONS(1068), + [aux_sym_break_statement_token1] = ACTIONS(1068), + [sym_integer] = ACTIONS(1068), + [aux_sym_return_statement_token1] = ACTIONS(1068), + [aux_sym_throw_expression_token1] = ACTIONS(1068), + [aux_sym_while_statement_token1] = ACTIONS(1068), + [aux_sym_while_statement_token2] = ACTIONS(1068), + [aux_sym_do_statement_token1] = ACTIONS(1068), + [aux_sym_for_statement_token1] = ACTIONS(1068), + [aux_sym_for_statement_token2] = ACTIONS(1068), + [aux_sym_foreach_statement_token1] = ACTIONS(1068), + [aux_sym_foreach_statement_token2] = ACTIONS(1068), + [aux_sym_if_statement_token1] = ACTIONS(1068), + [aux_sym_if_statement_token2] = ACTIONS(1068), + [aux_sym_else_if_clause_token1] = ACTIONS(1068), + [aux_sym_else_clause_token1] = ACTIONS(1068), + [aux_sym_match_expression_token1] = ACTIONS(1068), + [aux_sym_match_default_expression_token1] = ACTIONS(1068), + [aux_sym_switch_statement_token1] = ACTIONS(1068), + [aux_sym_switch_block_token1] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AT] = ACTIONS(1066), + [aux_sym_clone_expression_token1] = ACTIONS(1068), + [aux_sym_print_intrinsic_token1] = ACTIONS(1068), + [aux_sym_object_creation_expression_token1] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [aux_sym__list_destructing_token1] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_self] = ACTIONS(1068), + [anon_sym_parent] = ACTIONS(1068), + [aux_sym__argument_name_token1] = ACTIONS(1068), + [aux_sym__argument_name_token2] = ACTIONS(1068), + [anon_sym_POUND_LBRACK] = ACTIONS(1066), + [aux_sym_encapsed_string_token1] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [aux_sym_string_token1] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_LT_LT_LT] = ACTIONS(1066), + [anon_sym_BQUOTE] = ACTIONS(1066), + [anon_sym_DOLLAR] = ACTIONS(1066), + [aux_sym_yield_expression_token1] = ACTIONS(1068), + [aux_sym_include_expression_token1] = ACTIONS(1068), + [aux_sym_include_once_expression_token1] = ACTIONS(1068), + [aux_sym_require_expression_token1] = ACTIONS(1068), + [aux_sym_require_once_expression_token1] = ACTIONS(1068), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1066), }, [439] = { - [ts_builtin_sym_end] = ACTIONS(1071), - [sym_name] = ACTIONS(1073), - [anon_sym_QMARK_GT] = ACTIONS(1071), - [anon_sym_SEMI] = ACTIONS(1071), - [aux_sym_function_static_declaration_token1] = ACTIONS(1073), - [aux_sym_global_declaration_token1] = ACTIONS(1073), - [aux_sym_namespace_definition_token1] = ACTIONS(1073), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1073), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1073), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1073), - [anon_sym_BSLASH] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1071), - [anon_sym_RBRACE] = ACTIONS(1071), - [aux_sym_trait_declaration_token1] = ACTIONS(1073), - [aux_sym_interface_declaration_token1] = ACTIONS(1073), - [aux_sym_enum_declaration_token1] = ACTIONS(1073), - [aux_sym_enum_case_token1] = ACTIONS(1073), - [aux_sym_class_declaration_token1] = ACTIONS(1073), - [aux_sym_final_modifier_token1] = ACTIONS(1073), - [aux_sym_abstract_modifier_token1] = ACTIONS(1073), - [aux_sym_readonly_modifier_token1] = ACTIONS(1073), - [sym_var_modifier] = ACTIONS(1073), - [aux_sym_visibility_modifier_token1] = ACTIONS(1073), - [aux_sym_visibility_modifier_token2] = ACTIONS(1073), - [aux_sym_visibility_modifier_token3] = ACTIONS(1073), - [aux_sym__arrow_function_header_token1] = ACTIONS(1073), - [anon_sym_LPAREN] = ACTIONS(1071), - [aux_sym_cast_type_token1] = ACTIONS(1073), - [aux_sym_echo_statement_token1] = ACTIONS(1073), - [aux_sym_exit_statement_token1] = ACTIONS(1073), - [anon_sym_unset] = ACTIONS(1073), - [aux_sym_declare_statement_token1] = ACTIONS(1073), - [aux_sym_declare_statement_token2] = ACTIONS(1073), - [sym_float] = ACTIONS(1073), - [aux_sym_try_statement_token1] = ACTIONS(1073), - [aux_sym_goto_statement_token1] = ACTIONS(1073), - [aux_sym_continue_statement_token1] = ACTIONS(1073), - [aux_sym_break_statement_token1] = ACTIONS(1073), - [sym_integer] = ACTIONS(1073), - [aux_sym_return_statement_token1] = ACTIONS(1073), - [aux_sym_throw_expression_token1] = ACTIONS(1073), - [aux_sym_while_statement_token1] = ACTIONS(1073), - [aux_sym_while_statement_token2] = ACTIONS(1073), - [aux_sym_do_statement_token1] = ACTIONS(1073), - [aux_sym_for_statement_token1] = ACTIONS(1073), - [aux_sym_for_statement_token2] = ACTIONS(1073), - [aux_sym_foreach_statement_token1] = ACTIONS(1073), - [aux_sym_foreach_statement_token2] = ACTIONS(1073), - [aux_sym_if_statement_token1] = ACTIONS(1073), - [aux_sym_if_statement_token2] = ACTIONS(1073), - [aux_sym_else_if_clause_token1] = ACTIONS(1073), - [aux_sym_else_clause_token1] = ACTIONS(1073), - [aux_sym_match_expression_token1] = ACTIONS(1073), - [aux_sym_match_default_expression_token1] = ACTIONS(1073), - [aux_sym_switch_statement_token1] = ACTIONS(1073), - [aux_sym_switch_block_token1] = ACTIONS(1073), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_TILDE] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AT] = ACTIONS(1071), - [aux_sym_clone_expression_token1] = ACTIONS(1073), - [aux_sym_print_intrinsic_token1] = ACTIONS(1073), - [aux_sym_object_creation_expression_token1] = ACTIONS(1073), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [aux_sym__list_destructing_token1] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(1071), - [anon_sym_self] = ACTIONS(1073), - [anon_sym_parent] = ACTIONS(1073), - [aux_sym__argument_name_token1] = ACTIONS(1073), - [aux_sym__argument_name_token2] = ACTIONS(1073), - [anon_sym_POUND_LBRACK] = ACTIONS(1071), - [aux_sym_encapsed_string_token1] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1071), - [aux_sym_string_token1] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1071), - [anon_sym_LT_LT_LT] = ACTIONS(1071), - [anon_sym_BQUOTE] = ACTIONS(1071), - [anon_sym_DOLLAR] = ACTIONS(1071), - [aux_sym_yield_expression_token1] = ACTIONS(1073), - [aux_sym_include_expression_token1] = ACTIONS(1073), - [aux_sym_include_once_expression_token1] = ACTIONS(1073), - [aux_sym_require_expression_token1] = ACTIONS(1073), - [aux_sym_require_once_expression_token1] = ACTIONS(1073), - [sym_comment] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_TILDE] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [aux_sym__list_destructing_token1] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_self] = ACTIONS(1072), + [anon_sym_parent] = ACTIONS(1072), + [aux_sym__argument_name_token1] = ACTIONS(1072), + [aux_sym__argument_name_token2] = ACTIONS(1072), + [anon_sym_POUND_LBRACK] = ACTIONS(1070), + [aux_sym_encapsed_string_token1] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [aux_sym_string_token1] = ACTIONS(1070), + [anon_sym_SQUOTE] = ACTIONS(1070), + [anon_sym_LT_LT_LT] = ACTIONS(1070), + [anon_sym_BQUOTE] = ACTIONS(1070), + [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), }, [440] = { - [ts_builtin_sym_end] = ACTIONS(1075), - [sym_name] = ACTIONS(1077), - [anon_sym_QMARK_GT] = ACTIONS(1075), - [anon_sym_SEMI] = ACTIONS(1079), - [aux_sym_function_static_declaration_token1] = ACTIONS(1077), - [aux_sym_global_declaration_token1] = ACTIONS(1077), - [aux_sym_namespace_definition_token1] = ACTIONS(1077), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1077), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1077), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1077), - [anon_sym_BSLASH] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1075), - [aux_sym_trait_declaration_token1] = ACTIONS(1077), - [aux_sym_interface_declaration_token1] = ACTIONS(1077), - [aux_sym_enum_declaration_token1] = ACTIONS(1077), - [aux_sym_enum_case_token1] = ACTIONS(1077), - [aux_sym_class_declaration_token1] = ACTIONS(1077), - [aux_sym_final_modifier_token1] = ACTIONS(1077), - [aux_sym_abstract_modifier_token1] = ACTIONS(1077), - [aux_sym_readonly_modifier_token1] = ACTIONS(1077), - [aux_sym_visibility_modifier_token1] = ACTIONS(1077), - [aux_sym_visibility_modifier_token2] = ACTIONS(1077), - [aux_sym_visibility_modifier_token3] = ACTIONS(1077), - [aux_sym__arrow_function_header_token1] = ACTIONS(1077), - [anon_sym_LPAREN] = ACTIONS(1075), - [aux_sym_cast_type_token1] = ACTIONS(1077), - [aux_sym_echo_statement_token1] = ACTIONS(1077), - [aux_sym_exit_statement_token1] = ACTIONS(1077), - [anon_sym_unset] = ACTIONS(1077), - [aux_sym_declare_statement_token1] = ACTIONS(1077), - [aux_sym_declare_statement_token2] = ACTIONS(1077), - [sym_float] = ACTIONS(1077), - [aux_sym_try_statement_token1] = ACTIONS(1077), - [aux_sym_goto_statement_token1] = ACTIONS(1077), - [aux_sym_continue_statement_token1] = ACTIONS(1077), - [aux_sym_break_statement_token1] = ACTIONS(1077), - [sym_integer] = ACTIONS(1077), - [aux_sym_return_statement_token1] = ACTIONS(1077), - [aux_sym_throw_expression_token1] = ACTIONS(1077), - [aux_sym_while_statement_token1] = ACTIONS(1077), - [aux_sym_while_statement_token2] = ACTIONS(1077), - [aux_sym_do_statement_token1] = ACTIONS(1077), - [aux_sym_for_statement_token1] = ACTIONS(1077), - [aux_sym_for_statement_token2] = ACTIONS(1077), - [aux_sym_foreach_statement_token1] = ACTIONS(1077), - [aux_sym_foreach_statement_token2] = ACTIONS(1077), - [aux_sym_if_statement_token1] = ACTIONS(1077), - [aux_sym_if_statement_token2] = ACTIONS(1077), - [aux_sym_else_if_clause_token1] = ACTIONS(1077), - [aux_sym_else_clause_token1] = ACTIONS(1077), - [aux_sym_match_expression_token1] = ACTIONS(1077), - [aux_sym_match_default_expression_token1] = ACTIONS(1077), - [aux_sym_switch_statement_token1] = ACTIONS(1077), - [aux_sym_switch_block_token1] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_AT] = ACTIONS(1075), - [aux_sym_clone_expression_token1] = ACTIONS(1077), - [aux_sym_print_intrinsic_token1] = ACTIONS(1077), - [aux_sym_object_creation_expression_token1] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [aux_sym__list_destructing_token1] = ACTIONS(1077), - [anon_sym_LBRACK] = ACTIONS(1075), - [anon_sym_self] = ACTIONS(1077), - [anon_sym_parent] = ACTIONS(1077), - [aux_sym__argument_name_token1] = ACTIONS(1077), - [aux_sym__argument_name_token2] = ACTIONS(1077), - [anon_sym_POUND_LBRACK] = ACTIONS(1075), - [aux_sym_encapsed_string_token1] = ACTIONS(1075), - [anon_sym_DQUOTE] = ACTIONS(1075), - [aux_sym_string_token1] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1075), - [anon_sym_LT_LT_LT] = ACTIONS(1075), - [anon_sym_BQUOTE] = ACTIONS(1075), - [anon_sym_DOLLAR] = ACTIONS(1075), - [aux_sym_yield_expression_token1] = ACTIONS(1077), - [aux_sym_include_expression_token1] = ACTIONS(1077), - [aux_sym_include_once_expression_token1] = ACTIONS(1077), - [aux_sym_require_expression_token1] = ACTIONS(1077), - [aux_sym_require_once_expression_token1] = ACTIONS(1077), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(1079), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [aux_sym__list_destructing_token1] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_self] = ACTIONS(1078), + [anon_sym_parent] = ACTIONS(1078), + [aux_sym__argument_name_token1] = ACTIONS(1078), + [aux_sym__argument_name_token2] = ACTIONS(1078), + [anon_sym_POUND_LBRACK] = ACTIONS(1076), + [aux_sym_encapsed_string_token1] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [aux_sym_string_token1] = ACTIONS(1076), + [anon_sym_SQUOTE] = ACTIONS(1076), + [anon_sym_LT_LT_LT] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(1076), + [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), }, [441] = { - [ts_builtin_sym_end] = ACTIONS(1081), - [sym_name] = ACTIONS(1083), - [anon_sym_QMARK_GT] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1085), - [aux_sym_function_static_declaration_token1] = ACTIONS(1083), - [aux_sym_global_declaration_token1] = ACTIONS(1083), - [aux_sym_namespace_definition_token1] = ACTIONS(1083), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1083), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1083), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1083), - [anon_sym_BSLASH] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [aux_sym_trait_declaration_token1] = ACTIONS(1083), - [aux_sym_interface_declaration_token1] = ACTIONS(1083), - [aux_sym_enum_declaration_token1] = ACTIONS(1083), - [aux_sym_enum_case_token1] = ACTIONS(1083), - [aux_sym_class_declaration_token1] = ACTIONS(1083), - [aux_sym_final_modifier_token1] = ACTIONS(1083), - [aux_sym_abstract_modifier_token1] = ACTIONS(1083), - [aux_sym_readonly_modifier_token1] = ACTIONS(1083), - [aux_sym_visibility_modifier_token1] = ACTIONS(1083), - [aux_sym_visibility_modifier_token2] = ACTIONS(1083), - [aux_sym_visibility_modifier_token3] = ACTIONS(1083), - [aux_sym__arrow_function_header_token1] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1081), - [aux_sym_cast_type_token1] = ACTIONS(1083), - [aux_sym_echo_statement_token1] = ACTIONS(1083), - [aux_sym_exit_statement_token1] = ACTIONS(1083), - [anon_sym_unset] = ACTIONS(1083), - [aux_sym_declare_statement_token1] = ACTIONS(1083), - [aux_sym_declare_statement_token2] = ACTIONS(1083), - [sym_float] = ACTIONS(1083), - [aux_sym_try_statement_token1] = ACTIONS(1083), - [aux_sym_goto_statement_token1] = ACTIONS(1083), - [aux_sym_continue_statement_token1] = ACTIONS(1083), - [aux_sym_break_statement_token1] = ACTIONS(1083), - [sym_integer] = ACTIONS(1083), - [aux_sym_return_statement_token1] = ACTIONS(1083), - [aux_sym_throw_expression_token1] = ACTIONS(1083), - [aux_sym_while_statement_token1] = ACTIONS(1083), - [aux_sym_while_statement_token2] = ACTIONS(1083), - [aux_sym_do_statement_token1] = ACTIONS(1083), - [aux_sym_for_statement_token1] = ACTIONS(1083), - [aux_sym_for_statement_token2] = ACTIONS(1083), - [aux_sym_foreach_statement_token1] = ACTIONS(1083), - [aux_sym_foreach_statement_token2] = ACTIONS(1083), - [aux_sym_if_statement_token1] = ACTIONS(1083), - [aux_sym_if_statement_token2] = ACTIONS(1083), - [aux_sym_else_if_clause_token1] = ACTIONS(1083), - [aux_sym_else_clause_token1] = ACTIONS(1083), - [aux_sym_match_expression_token1] = ACTIONS(1083), - [aux_sym_match_default_expression_token1] = ACTIONS(1083), - [aux_sym_switch_statement_token1] = ACTIONS(1083), - [aux_sym_switch_block_token1] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1081), - [aux_sym_clone_expression_token1] = ACTIONS(1083), - [aux_sym_print_intrinsic_token1] = ACTIONS(1083), - [aux_sym_object_creation_expression_token1] = ACTIONS(1083), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [aux_sym__list_destructing_token1] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_self] = ACTIONS(1083), - [anon_sym_parent] = ACTIONS(1083), - [aux_sym__argument_name_token1] = ACTIONS(1083), - [aux_sym__argument_name_token2] = ACTIONS(1083), - [anon_sym_POUND_LBRACK] = ACTIONS(1081), - [aux_sym_encapsed_string_token1] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1081), - [aux_sym_string_token1] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(1081), - [anon_sym_LT_LT_LT] = ACTIONS(1081), - [anon_sym_BQUOTE] = ACTIONS(1081), - [anon_sym_DOLLAR] = ACTIONS(1081), - [aux_sym_yield_expression_token1] = ACTIONS(1083), - [aux_sym_include_expression_token1] = ACTIONS(1083), - [aux_sym_include_once_expression_token1] = ACTIONS(1083), - [aux_sym_require_expression_token1] = ACTIONS(1083), - [aux_sym_require_once_expression_token1] = ACTIONS(1083), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(1085), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [aux_sym__list_destructing_token1] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_self] = ACTIONS(1084), + [anon_sym_parent] = ACTIONS(1084), + [aux_sym__argument_name_token1] = ACTIONS(1084), + [aux_sym__argument_name_token2] = ACTIONS(1084), + [anon_sym_POUND_LBRACK] = ACTIONS(1082), + [aux_sym_encapsed_string_token1] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [aux_sym_string_token1] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [anon_sym_LT_LT_LT] = ACTIONS(1082), + [anon_sym_BQUOTE] = ACTIONS(1082), + [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), }, [442] = { - [ts_builtin_sym_end] = ACTIONS(1087), - [sym_name] = ACTIONS(1089), - [anon_sym_QMARK_GT] = ACTIONS(1087), - [anon_sym_SEMI] = ACTIONS(1087), - [aux_sym_function_static_declaration_token1] = ACTIONS(1089), - [aux_sym_global_declaration_token1] = ACTIONS(1089), - [aux_sym_namespace_definition_token1] = ACTIONS(1089), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1089), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1089), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1089), - [anon_sym_BSLASH] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_RBRACE] = ACTIONS(1087), - [aux_sym_trait_declaration_token1] = ACTIONS(1089), - [aux_sym_interface_declaration_token1] = ACTIONS(1089), - [aux_sym_enum_declaration_token1] = ACTIONS(1089), - [aux_sym_enum_case_token1] = ACTIONS(1089), - [aux_sym_class_declaration_token1] = ACTIONS(1089), - [aux_sym_final_modifier_token1] = ACTIONS(1089), - [aux_sym_abstract_modifier_token1] = ACTIONS(1089), - [aux_sym_readonly_modifier_token1] = ACTIONS(1089), - [sym_var_modifier] = ACTIONS(1089), - [aux_sym_visibility_modifier_token1] = ACTIONS(1089), - [aux_sym_visibility_modifier_token2] = ACTIONS(1089), - [aux_sym_visibility_modifier_token3] = ACTIONS(1089), - [aux_sym__arrow_function_header_token1] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1087), - [aux_sym_cast_type_token1] = ACTIONS(1089), - [aux_sym_echo_statement_token1] = ACTIONS(1089), - [aux_sym_exit_statement_token1] = ACTIONS(1089), - [anon_sym_unset] = ACTIONS(1089), - [aux_sym_declare_statement_token1] = ACTIONS(1089), - [aux_sym_declare_statement_token2] = ACTIONS(1089), - [sym_float] = ACTIONS(1089), - [aux_sym_try_statement_token1] = ACTIONS(1089), - [aux_sym_goto_statement_token1] = ACTIONS(1089), - [aux_sym_continue_statement_token1] = ACTIONS(1089), - [aux_sym_break_statement_token1] = ACTIONS(1089), - [sym_integer] = ACTIONS(1089), - [aux_sym_return_statement_token1] = ACTIONS(1089), - [aux_sym_throw_expression_token1] = ACTIONS(1089), - [aux_sym_while_statement_token1] = ACTIONS(1089), - [aux_sym_while_statement_token2] = ACTIONS(1089), - [aux_sym_do_statement_token1] = ACTIONS(1089), - [aux_sym_for_statement_token1] = ACTIONS(1089), - [aux_sym_for_statement_token2] = ACTIONS(1089), - [aux_sym_foreach_statement_token1] = ACTIONS(1089), - [aux_sym_foreach_statement_token2] = ACTIONS(1089), - [aux_sym_if_statement_token1] = ACTIONS(1089), - [aux_sym_if_statement_token2] = ACTIONS(1089), - [aux_sym_else_if_clause_token1] = ACTIONS(1089), - [aux_sym_else_clause_token1] = ACTIONS(1089), - [aux_sym_match_expression_token1] = ACTIONS(1089), - [aux_sym_match_default_expression_token1] = ACTIONS(1089), - [aux_sym_switch_statement_token1] = ACTIONS(1089), - [aux_sym_switch_block_token1] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_AT] = ACTIONS(1087), - [aux_sym_clone_expression_token1] = ACTIONS(1089), - [aux_sym_print_intrinsic_token1] = ACTIONS(1089), - [aux_sym_object_creation_expression_token1] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1087), - [aux_sym__list_destructing_token1] = ACTIONS(1089), - [anon_sym_LBRACK] = ACTIONS(1087), - [anon_sym_self] = ACTIONS(1089), - [anon_sym_parent] = ACTIONS(1089), - [aux_sym__argument_name_token1] = ACTIONS(1089), - [aux_sym__argument_name_token2] = ACTIONS(1089), - [anon_sym_POUND_LBRACK] = ACTIONS(1087), - [aux_sym_encapsed_string_token1] = ACTIONS(1087), - [anon_sym_DQUOTE] = ACTIONS(1087), - [aux_sym_string_token1] = ACTIONS(1087), - [anon_sym_SQUOTE] = ACTIONS(1087), - [anon_sym_LT_LT_LT] = ACTIONS(1087), - [anon_sym_BQUOTE] = ACTIONS(1087), - [anon_sym_DOLLAR] = ACTIONS(1087), - [aux_sym_yield_expression_token1] = ACTIONS(1089), - [aux_sym_include_expression_token1] = ACTIONS(1089), - [aux_sym_include_once_expression_token1] = ACTIONS(1089), - [aux_sym_require_expression_token1] = ACTIONS(1089), - [aux_sym_require_once_expression_token1] = ACTIONS(1089), - [sym_comment] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [aux_sym__list_destructing_token1] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_self] = ACTIONS(1090), + [anon_sym_parent] = ACTIONS(1090), + [aux_sym__argument_name_token1] = ACTIONS(1090), + [aux_sym__argument_name_token2] = ACTIONS(1090), + [anon_sym_POUND_LBRACK] = ACTIONS(1088), + [aux_sym_encapsed_string_token1] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [aux_sym_string_token1] = ACTIONS(1088), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_LT_LT_LT] = ACTIONS(1088), + [anon_sym_BQUOTE] = ACTIONS(1088), + [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), }, [443] = { - [ts_builtin_sym_end] = ACTIONS(1091), - [sym_name] = ACTIONS(1093), - [anon_sym_QMARK_GT] = ACTIONS(1091), - [anon_sym_SEMI] = ACTIONS(1091), - [aux_sym_function_static_declaration_token1] = ACTIONS(1093), - [aux_sym_global_declaration_token1] = ACTIONS(1093), - [aux_sym_namespace_definition_token1] = ACTIONS(1093), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1093), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1093), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1093), - [anon_sym_BSLASH] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1091), - [anon_sym_RBRACE] = ACTIONS(1091), - [aux_sym_trait_declaration_token1] = ACTIONS(1093), - [aux_sym_interface_declaration_token1] = ACTIONS(1093), - [aux_sym_enum_declaration_token1] = ACTIONS(1093), - [aux_sym_enum_case_token1] = ACTIONS(1093), - [aux_sym_class_declaration_token1] = ACTIONS(1093), - [aux_sym_final_modifier_token1] = ACTIONS(1093), - [aux_sym_abstract_modifier_token1] = ACTIONS(1093), - [aux_sym_readonly_modifier_token1] = ACTIONS(1093), - [sym_var_modifier] = ACTIONS(1093), - [aux_sym_visibility_modifier_token1] = ACTIONS(1093), - [aux_sym_visibility_modifier_token2] = ACTIONS(1093), - [aux_sym_visibility_modifier_token3] = ACTIONS(1093), - [aux_sym__arrow_function_header_token1] = ACTIONS(1093), - [anon_sym_LPAREN] = ACTIONS(1091), - [aux_sym_cast_type_token1] = ACTIONS(1093), - [aux_sym_echo_statement_token1] = ACTIONS(1093), - [aux_sym_exit_statement_token1] = ACTIONS(1093), - [anon_sym_unset] = ACTIONS(1093), - [aux_sym_declare_statement_token1] = ACTIONS(1093), - [aux_sym_declare_statement_token2] = ACTIONS(1093), - [sym_float] = ACTIONS(1093), - [aux_sym_try_statement_token1] = ACTIONS(1093), - [aux_sym_goto_statement_token1] = ACTIONS(1093), - [aux_sym_continue_statement_token1] = ACTIONS(1093), - [aux_sym_break_statement_token1] = ACTIONS(1093), - [sym_integer] = ACTIONS(1093), - [aux_sym_return_statement_token1] = ACTIONS(1093), - [aux_sym_throw_expression_token1] = ACTIONS(1093), - [aux_sym_while_statement_token1] = ACTIONS(1093), - [aux_sym_while_statement_token2] = ACTIONS(1093), - [aux_sym_do_statement_token1] = ACTIONS(1093), - [aux_sym_for_statement_token1] = ACTIONS(1093), - [aux_sym_for_statement_token2] = ACTIONS(1093), - [aux_sym_foreach_statement_token1] = ACTIONS(1093), - [aux_sym_foreach_statement_token2] = ACTIONS(1093), - [aux_sym_if_statement_token1] = ACTIONS(1093), - [aux_sym_if_statement_token2] = ACTIONS(1093), - [aux_sym_else_if_clause_token1] = ACTIONS(1093), - [aux_sym_else_clause_token1] = ACTIONS(1093), - [aux_sym_match_expression_token1] = ACTIONS(1093), - [aux_sym_match_default_expression_token1] = ACTIONS(1093), - [aux_sym_switch_statement_token1] = ACTIONS(1093), - [aux_sym_switch_block_token1] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_BANG] = ACTIONS(1091), - [anon_sym_AT] = ACTIONS(1091), - [aux_sym_clone_expression_token1] = ACTIONS(1093), - [aux_sym_print_intrinsic_token1] = ACTIONS(1093), - [aux_sym_object_creation_expression_token1] = ACTIONS(1093), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [aux_sym__list_destructing_token1] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1091), - [anon_sym_self] = ACTIONS(1093), - [anon_sym_parent] = ACTIONS(1093), - [aux_sym__argument_name_token1] = ACTIONS(1093), - [aux_sym__argument_name_token2] = ACTIONS(1093), - [anon_sym_POUND_LBRACK] = ACTIONS(1091), - [aux_sym_encapsed_string_token1] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(1091), - [aux_sym_string_token1] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1091), - [anon_sym_LT_LT_LT] = ACTIONS(1091), - [anon_sym_BQUOTE] = ACTIONS(1091), - [anon_sym_DOLLAR] = ACTIONS(1091), - [aux_sym_yield_expression_token1] = ACTIONS(1093), - [aux_sym_include_expression_token1] = ACTIONS(1093), - [aux_sym_include_once_expression_token1] = ACTIONS(1093), - [aux_sym_require_expression_token1] = ACTIONS(1093), - [aux_sym_require_once_expression_token1] = ACTIONS(1093), - [sym_comment] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_TILDE] = ACTIONS(1094), + [anon_sym_BANG] = ACTIONS(1094), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [aux_sym__list_destructing_token1] = ACTIONS(1096), + [anon_sym_LBRACK] = ACTIONS(1094), + [anon_sym_self] = ACTIONS(1096), + [anon_sym_parent] = ACTIONS(1096), + [aux_sym__argument_name_token1] = ACTIONS(1096), + [aux_sym__argument_name_token2] = ACTIONS(1096), + [anon_sym_POUND_LBRACK] = ACTIONS(1094), + [aux_sym_encapsed_string_token1] = ACTIONS(1094), + [anon_sym_DQUOTE] = ACTIONS(1094), + [aux_sym_string_token1] = ACTIONS(1094), + [anon_sym_SQUOTE] = ACTIONS(1094), + [anon_sym_LT_LT_LT] = ACTIONS(1094), + [anon_sym_BQUOTE] = ACTIONS(1094), + [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), }, [444] = { - [ts_builtin_sym_end] = ACTIONS(1095), - [sym_name] = ACTIONS(1097), - [anon_sym_QMARK_GT] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(1095), - [aux_sym_function_static_declaration_token1] = ACTIONS(1097), - [aux_sym_global_declaration_token1] = ACTIONS(1097), - [aux_sym_namespace_definition_token1] = ACTIONS(1097), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1097), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1097), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1095), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_RBRACE] = ACTIONS(1095), - [aux_sym_trait_declaration_token1] = ACTIONS(1097), - [aux_sym_interface_declaration_token1] = ACTIONS(1097), - [aux_sym_enum_declaration_token1] = ACTIONS(1097), - [aux_sym_enum_case_token1] = ACTIONS(1097), - [aux_sym_class_declaration_token1] = ACTIONS(1097), - [aux_sym_final_modifier_token1] = ACTIONS(1097), - [aux_sym_abstract_modifier_token1] = ACTIONS(1097), - [aux_sym_readonly_modifier_token1] = ACTIONS(1097), - [sym_var_modifier] = ACTIONS(1097), - [aux_sym_visibility_modifier_token1] = ACTIONS(1097), - [aux_sym_visibility_modifier_token2] = ACTIONS(1097), - [aux_sym_visibility_modifier_token3] = ACTIONS(1097), - [aux_sym__arrow_function_header_token1] = ACTIONS(1097), - [anon_sym_LPAREN] = ACTIONS(1095), - [aux_sym_cast_type_token1] = ACTIONS(1097), - [aux_sym_echo_statement_token1] = ACTIONS(1097), - [aux_sym_exit_statement_token1] = ACTIONS(1097), - [anon_sym_unset] = ACTIONS(1097), - [aux_sym_declare_statement_token1] = ACTIONS(1097), - [aux_sym_declare_statement_token2] = ACTIONS(1097), - [sym_float] = ACTIONS(1097), - [aux_sym_try_statement_token1] = ACTIONS(1097), - [aux_sym_goto_statement_token1] = ACTIONS(1097), - [aux_sym_continue_statement_token1] = ACTIONS(1097), - [aux_sym_break_statement_token1] = ACTIONS(1097), - [sym_integer] = ACTIONS(1097), - [aux_sym_return_statement_token1] = ACTIONS(1097), - [aux_sym_throw_expression_token1] = ACTIONS(1097), - [aux_sym_while_statement_token1] = ACTIONS(1097), - [aux_sym_while_statement_token2] = ACTIONS(1097), - [aux_sym_do_statement_token1] = ACTIONS(1097), - [aux_sym_for_statement_token1] = ACTIONS(1097), - [aux_sym_for_statement_token2] = ACTIONS(1097), - [aux_sym_foreach_statement_token1] = ACTIONS(1097), - [aux_sym_foreach_statement_token2] = ACTIONS(1097), - [aux_sym_if_statement_token1] = ACTIONS(1097), - [aux_sym_if_statement_token2] = ACTIONS(1097), - [aux_sym_else_if_clause_token1] = ACTIONS(1097), - [aux_sym_else_clause_token1] = ACTIONS(1097), - [aux_sym_match_expression_token1] = ACTIONS(1097), - [aux_sym_match_default_expression_token1] = ACTIONS(1097), - [aux_sym_switch_statement_token1] = ACTIONS(1097), - [aux_sym_switch_block_token1] = ACTIONS(1097), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_AT] = ACTIONS(1095), - [aux_sym_clone_expression_token1] = ACTIONS(1097), - [aux_sym_print_intrinsic_token1] = ACTIONS(1097), - [aux_sym_object_creation_expression_token1] = ACTIONS(1097), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [aux_sym__list_destructing_token1] = ACTIONS(1097), - [anon_sym_LBRACK] = ACTIONS(1095), - [anon_sym_self] = ACTIONS(1097), - [anon_sym_parent] = ACTIONS(1097), - [aux_sym__argument_name_token1] = ACTIONS(1097), - [aux_sym__argument_name_token2] = ACTIONS(1097), - [anon_sym_POUND_LBRACK] = ACTIONS(1095), - [aux_sym_encapsed_string_token1] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1095), - [anon_sym_SQUOTE] = ACTIONS(1095), - [anon_sym_LT_LT_LT] = ACTIONS(1095), - [anon_sym_BQUOTE] = ACTIONS(1095), - [anon_sym_DOLLAR] = ACTIONS(1095), - [aux_sym_yield_expression_token1] = ACTIONS(1097), - [aux_sym_include_expression_token1] = ACTIONS(1097), - [aux_sym_include_once_expression_token1] = ACTIONS(1097), - [aux_sym_require_expression_token1] = ACTIONS(1097), - [aux_sym_require_once_expression_token1] = ACTIONS(1097), - [sym_comment] = ACTIONS(3), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(1100), + [anon_sym_BANG] = ACTIONS(1100), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1100), + [aux_sym__list_destructing_token1] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_self] = ACTIONS(1102), + [anon_sym_parent] = ACTIONS(1102), + [aux_sym__argument_name_token1] = ACTIONS(1102), + [aux_sym__argument_name_token2] = ACTIONS(1102), + [anon_sym_POUND_LBRACK] = ACTIONS(1100), + [aux_sym_encapsed_string_token1] = ACTIONS(1100), + [anon_sym_DQUOTE] = ACTIONS(1100), + [aux_sym_string_token1] = ACTIONS(1100), + [anon_sym_SQUOTE] = ACTIONS(1100), + [anon_sym_LT_LT_LT] = ACTIONS(1100), + [anon_sym_BQUOTE] = ACTIONS(1100), + [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), }, [445] = { - [ts_builtin_sym_end] = ACTIONS(1099), - [sym_name] = ACTIONS(1101), - [anon_sym_QMARK_GT] = ACTIONS(1099), - [anon_sym_SEMI] = ACTIONS(1103), - [aux_sym_function_static_declaration_token1] = ACTIONS(1101), - [aux_sym_global_declaration_token1] = ACTIONS(1101), - [aux_sym_namespace_definition_token1] = ACTIONS(1101), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1101), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1101), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1101), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1099), - [aux_sym_trait_declaration_token1] = ACTIONS(1101), - [aux_sym_interface_declaration_token1] = ACTIONS(1101), - [aux_sym_enum_declaration_token1] = ACTIONS(1101), - [aux_sym_enum_case_token1] = ACTIONS(1101), - [aux_sym_class_declaration_token1] = ACTIONS(1101), - [aux_sym_final_modifier_token1] = ACTIONS(1101), - [aux_sym_abstract_modifier_token1] = ACTIONS(1101), - [aux_sym_readonly_modifier_token1] = ACTIONS(1101), - [aux_sym_visibility_modifier_token1] = ACTIONS(1101), - [aux_sym_visibility_modifier_token2] = ACTIONS(1101), - [aux_sym_visibility_modifier_token3] = ACTIONS(1101), - [aux_sym__arrow_function_header_token1] = ACTIONS(1101), - [anon_sym_LPAREN] = ACTIONS(1099), - [aux_sym_cast_type_token1] = ACTIONS(1101), - [aux_sym_echo_statement_token1] = ACTIONS(1101), - [aux_sym_exit_statement_token1] = ACTIONS(1101), - [anon_sym_unset] = ACTIONS(1101), - [aux_sym_declare_statement_token1] = ACTIONS(1101), - [aux_sym_declare_statement_token2] = ACTIONS(1101), - [sym_float] = ACTIONS(1101), - [aux_sym_try_statement_token1] = ACTIONS(1101), - [aux_sym_goto_statement_token1] = ACTIONS(1101), - [aux_sym_continue_statement_token1] = ACTIONS(1101), - [aux_sym_break_statement_token1] = ACTIONS(1101), - [sym_integer] = ACTIONS(1101), - [aux_sym_return_statement_token1] = ACTIONS(1101), - [aux_sym_throw_expression_token1] = ACTIONS(1101), - [aux_sym_while_statement_token1] = ACTIONS(1101), - [aux_sym_while_statement_token2] = ACTIONS(1101), - [aux_sym_do_statement_token1] = ACTIONS(1101), - [aux_sym_for_statement_token1] = ACTIONS(1101), - [aux_sym_for_statement_token2] = ACTIONS(1101), - [aux_sym_foreach_statement_token1] = ACTIONS(1101), - [aux_sym_foreach_statement_token2] = ACTIONS(1101), - [aux_sym_if_statement_token1] = ACTIONS(1101), - [aux_sym_if_statement_token2] = ACTIONS(1101), - [aux_sym_else_if_clause_token1] = ACTIONS(1101), - [aux_sym_else_clause_token1] = ACTIONS(1101), - [aux_sym_match_expression_token1] = ACTIONS(1101), - [aux_sym_match_default_expression_token1] = ACTIONS(1101), - [aux_sym_switch_statement_token1] = ACTIONS(1101), - [aux_sym_switch_block_token1] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_AT] = ACTIONS(1099), - [aux_sym_clone_expression_token1] = ACTIONS(1101), - [aux_sym_print_intrinsic_token1] = ACTIONS(1101), - [aux_sym_object_creation_expression_token1] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [aux_sym__list_destructing_token1] = ACTIONS(1101), - [anon_sym_LBRACK] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [aux_sym__argument_name_token1] = ACTIONS(1101), - [aux_sym__argument_name_token2] = ACTIONS(1101), - [anon_sym_POUND_LBRACK] = ACTIONS(1099), - [aux_sym_encapsed_string_token1] = ACTIONS(1099), - [anon_sym_DQUOTE] = ACTIONS(1099), - [aux_sym_string_token1] = ACTIONS(1099), - [anon_sym_SQUOTE] = ACTIONS(1099), - [anon_sym_LT_LT_LT] = ACTIONS(1099), - [anon_sym_BQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR] = ACTIONS(1099), - [aux_sym_yield_expression_token1] = ACTIONS(1101), - [aux_sym_include_expression_token1] = ACTIONS(1101), - [aux_sym_include_once_expression_token1] = ACTIONS(1101), - [aux_sym_require_expression_token1] = ACTIONS(1101), - [aux_sym_require_once_expression_token1] = ACTIONS(1101), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(1103), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1108), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [aux_sym__list_destructing_token1] = ACTIONS(1108), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_self] = ACTIONS(1108), + [anon_sym_parent] = ACTIONS(1108), + [aux_sym__argument_name_token1] = ACTIONS(1108), + [aux_sym__argument_name_token2] = ACTIONS(1108), + [anon_sym_POUND_LBRACK] = ACTIONS(1106), + [aux_sym_encapsed_string_token1] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [aux_sym_string_token1] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_LT_LT_LT] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1106), + [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), }, [446] = { - [ts_builtin_sym_end] = ACTIONS(1105), - [sym_name] = ACTIONS(1107), - [anon_sym_QMARK_GT] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [aux_sym_function_static_declaration_token1] = ACTIONS(1107), - [aux_sym_global_declaration_token1] = ACTIONS(1107), - [aux_sym_namespace_definition_token1] = ACTIONS(1107), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1107), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1107), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1107), - [anon_sym_BSLASH] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [aux_sym_trait_declaration_token1] = ACTIONS(1107), - [aux_sym_interface_declaration_token1] = ACTIONS(1107), - [aux_sym_enum_declaration_token1] = ACTIONS(1107), - [aux_sym_enum_case_token1] = ACTIONS(1107), - [aux_sym_class_declaration_token1] = ACTIONS(1107), - [aux_sym_final_modifier_token1] = ACTIONS(1107), - [aux_sym_abstract_modifier_token1] = ACTIONS(1107), - [aux_sym_readonly_modifier_token1] = ACTIONS(1107), - [sym_var_modifier] = ACTIONS(1107), - [aux_sym_visibility_modifier_token1] = ACTIONS(1107), - [aux_sym_visibility_modifier_token2] = ACTIONS(1107), - [aux_sym_visibility_modifier_token3] = ACTIONS(1107), - [aux_sym__arrow_function_header_token1] = ACTIONS(1107), - [anon_sym_LPAREN] = ACTIONS(1105), - [aux_sym_cast_type_token1] = ACTIONS(1107), - [aux_sym_echo_statement_token1] = ACTIONS(1107), - [aux_sym_exit_statement_token1] = ACTIONS(1107), - [anon_sym_unset] = ACTIONS(1107), - [aux_sym_declare_statement_token1] = ACTIONS(1107), - [aux_sym_declare_statement_token2] = ACTIONS(1107), - [sym_float] = ACTIONS(1107), - [aux_sym_try_statement_token1] = ACTIONS(1107), - [aux_sym_goto_statement_token1] = ACTIONS(1107), - [aux_sym_continue_statement_token1] = ACTIONS(1107), - [aux_sym_break_statement_token1] = ACTIONS(1107), - [sym_integer] = ACTIONS(1107), - [aux_sym_return_statement_token1] = ACTIONS(1107), - [aux_sym_throw_expression_token1] = ACTIONS(1107), - [aux_sym_while_statement_token1] = ACTIONS(1107), - [aux_sym_while_statement_token2] = ACTIONS(1107), - [aux_sym_do_statement_token1] = ACTIONS(1107), - [aux_sym_for_statement_token1] = ACTIONS(1107), - [aux_sym_for_statement_token2] = ACTIONS(1107), - [aux_sym_foreach_statement_token1] = ACTIONS(1107), - [aux_sym_foreach_statement_token2] = ACTIONS(1107), - [aux_sym_if_statement_token1] = ACTIONS(1107), - [aux_sym_if_statement_token2] = ACTIONS(1107), - [aux_sym_else_if_clause_token1] = ACTIONS(1107), - [aux_sym_else_clause_token1] = ACTIONS(1107), - [aux_sym_match_expression_token1] = ACTIONS(1107), - [aux_sym_match_default_expression_token1] = ACTIONS(1107), - [aux_sym_switch_statement_token1] = ACTIONS(1107), - [aux_sym_switch_block_token1] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1105), - [anon_sym_BANG] = ACTIONS(1105), - [anon_sym_AT] = ACTIONS(1105), - [aux_sym_clone_expression_token1] = ACTIONS(1107), - [aux_sym_print_intrinsic_token1] = ACTIONS(1107), - [aux_sym_object_creation_expression_token1] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1105), - [aux_sym__list_destructing_token1] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_self] = ACTIONS(1107), - [anon_sym_parent] = ACTIONS(1107), - [aux_sym__argument_name_token1] = ACTIONS(1107), - [aux_sym__argument_name_token2] = ACTIONS(1107), - [anon_sym_POUND_LBRACK] = ACTIONS(1105), - [aux_sym_encapsed_string_token1] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(1105), - [aux_sym_string_token1] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(1105), - [anon_sym_LT_LT_LT] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1105), - [anon_sym_DOLLAR] = ACTIONS(1105), - [aux_sym_yield_expression_token1] = ACTIONS(1107), - [aux_sym_include_expression_token1] = ACTIONS(1107), - [aux_sym_include_once_expression_token1] = ACTIONS(1107), - [aux_sym_require_expression_token1] = ACTIONS(1107), - [aux_sym_require_once_expression_token1] = ACTIONS(1107), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1112), + [sym_name] = ACTIONS(1114), + [anon_sym_QMARK_GT] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1116), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1112), + [anon_sym_PLUS_PLUS] = ACTIONS(1112), + [aux_sym__list_destructing_token1] = ACTIONS(1114), + [anon_sym_LBRACK] = ACTIONS(1112), + [anon_sym_self] = ACTIONS(1114), + [anon_sym_parent] = ACTIONS(1114), + [aux_sym__argument_name_token1] = ACTIONS(1114), + [aux_sym__argument_name_token2] = ACTIONS(1114), + [anon_sym_POUND_LBRACK] = ACTIONS(1112), + [aux_sym_encapsed_string_token1] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1112), + [aux_sym_string_token1] = ACTIONS(1112), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_LT_LT_LT] = ACTIONS(1112), + [anon_sym_BQUOTE] = ACTIONS(1112), + [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(1116), }, [447] = { - [ts_builtin_sym_end] = ACTIONS(1109), - [sym_name] = ACTIONS(1111), - [anon_sym_QMARK_GT] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1113), - [aux_sym_function_static_declaration_token1] = ACTIONS(1111), - [aux_sym_global_declaration_token1] = ACTIONS(1111), - [aux_sym_namespace_definition_token1] = ACTIONS(1111), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1111), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1111), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1111), - [anon_sym_BSLASH] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1109), - [aux_sym_trait_declaration_token1] = ACTIONS(1111), - [aux_sym_interface_declaration_token1] = ACTIONS(1111), - [aux_sym_enum_declaration_token1] = ACTIONS(1111), - [aux_sym_enum_case_token1] = ACTIONS(1111), - [aux_sym_class_declaration_token1] = ACTIONS(1111), - [aux_sym_final_modifier_token1] = ACTIONS(1111), - [aux_sym_abstract_modifier_token1] = ACTIONS(1111), - [aux_sym_readonly_modifier_token1] = ACTIONS(1111), - [aux_sym_visibility_modifier_token1] = ACTIONS(1111), - [aux_sym_visibility_modifier_token2] = ACTIONS(1111), - [aux_sym_visibility_modifier_token3] = ACTIONS(1111), - [aux_sym__arrow_function_header_token1] = ACTIONS(1111), - [anon_sym_LPAREN] = ACTIONS(1109), - [aux_sym_cast_type_token1] = ACTIONS(1111), - [aux_sym_echo_statement_token1] = ACTIONS(1111), - [aux_sym_exit_statement_token1] = ACTIONS(1111), - [anon_sym_unset] = ACTIONS(1111), - [aux_sym_declare_statement_token1] = ACTIONS(1111), - [aux_sym_declare_statement_token2] = ACTIONS(1111), - [sym_float] = ACTIONS(1111), - [aux_sym_try_statement_token1] = ACTIONS(1111), - [aux_sym_goto_statement_token1] = ACTIONS(1111), - [aux_sym_continue_statement_token1] = ACTIONS(1111), - [aux_sym_break_statement_token1] = ACTIONS(1111), - [sym_integer] = ACTIONS(1111), - [aux_sym_return_statement_token1] = ACTIONS(1111), - [aux_sym_throw_expression_token1] = ACTIONS(1111), - [aux_sym_while_statement_token1] = ACTIONS(1111), - [aux_sym_while_statement_token2] = ACTIONS(1111), - [aux_sym_do_statement_token1] = ACTIONS(1111), - [aux_sym_for_statement_token1] = ACTIONS(1111), - [aux_sym_for_statement_token2] = ACTIONS(1111), - [aux_sym_foreach_statement_token1] = ACTIONS(1111), - [aux_sym_foreach_statement_token2] = ACTIONS(1111), - [aux_sym_if_statement_token1] = ACTIONS(1111), - [aux_sym_if_statement_token2] = ACTIONS(1111), - [aux_sym_else_if_clause_token1] = ACTIONS(1111), - [aux_sym_else_clause_token1] = ACTIONS(1111), - [aux_sym_match_expression_token1] = ACTIONS(1111), - [aux_sym_match_default_expression_token1] = ACTIONS(1111), - [aux_sym_switch_statement_token1] = ACTIONS(1111), - [aux_sym_switch_block_token1] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1111), - [anon_sym_DASH] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1109), - [aux_sym_clone_expression_token1] = ACTIONS(1111), - [aux_sym_print_intrinsic_token1] = ACTIONS(1111), - [aux_sym_object_creation_expression_token1] = ACTIONS(1111), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [aux_sym__list_destructing_token1] = ACTIONS(1111), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_self] = ACTIONS(1111), - [anon_sym_parent] = ACTIONS(1111), - [aux_sym__argument_name_token1] = ACTIONS(1111), - [aux_sym__argument_name_token2] = ACTIONS(1111), - [anon_sym_POUND_LBRACK] = ACTIONS(1109), - [aux_sym_encapsed_string_token1] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [aux_sym_string_token1] = ACTIONS(1109), - [anon_sym_SQUOTE] = ACTIONS(1109), - [anon_sym_LT_LT_LT] = ACTIONS(1109), - [anon_sym_BQUOTE] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [aux_sym_yield_expression_token1] = ACTIONS(1111), - [aux_sym_include_expression_token1] = ACTIONS(1111), - [aux_sym_include_once_expression_token1] = ACTIONS(1111), - [aux_sym_require_expression_token1] = ACTIONS(1111), - [aux_sym_require_once_expression_token1] = ACTIONS(1111), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(1113), + [ts_builtin_sym_end] = ACTIONS(1118), + [sym_name] = ACTIONS(1120), + [anon_sym_QMARK_GT] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1122), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [aux_sym__list_destructing_token1] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1118), + [anon_sym_self] = ACTIONS(1120), + [anon_sym_parent] = ACTIONS(1120), + [aux_sym__argument_name_token1] = ACTIONS(1120), + [aux_sym__argument_name_token2] = ACTIONS(1120), + [anon_sym_POUND_LBRACK] = ACTIONS(1118), + [aux_sym_encapsed_string_token1] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1118), + [aux_sym_string_token1] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(1118), + [anon_sym_LT_LT_LT] = ACTIONS(1118), + [anon_sym_BQUOTE] = ACTIONS(1118), + [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(1122), }, [448] = { - [ts_builtin_sym_end] = ACTIONS(1115), - [sym_name] = ACTIONS(1117), - [anon_sym_QMARK_GT] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1115), - [aux_sym_function_static_declaration_token1] = ACTIONS(1117), - [aux_sym_global_declaration_token1] = ACTIONS(1117), - [aux_sym_namespace_definition_token1] = ACTIONS(1117), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1117), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1117), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1117), - [anon_sym_BSLASH] = ACTIONS(1115), - [anon_sym_LBRACE] = ACTIONS(1115), - [anon_sym_RBRACE] = ACTIONS(1115), - [aux_sym_trait_declaration_token1] = ACTIONS(1117), - [aux_sym_interface_declaration_token1] = ACTIONS(1117), - [aux_sym_enum_declaration_token1] = ACTIONS(1117), - [aux_sym_enum_case_token1] = ACTIONS(1117), - [aux_sym_class_declaration_token1] = ACTIONS(1117), - [aux_sym_final_modifier_token1] = ACTIONS(1117), - [aux_sym_abstract_modifier_token1] = ACTIONS(1117), - [aux_sym_readonly_modifier_token1] = ACTIONS(1117), - [sym_var_modifier] = ACTIONS(1117), - [aux_sym_visibility_modifier_token1] = ACTIONS(1117), - [aux_sym_visibility_modifier_token2] = ACTIONS(1117), - [aux_sym_visibility_modifier_token3] = ACTIONS(1117), - [aux_sym__arrow_function_header_token1] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1115), - [aux_sym_cast_type_token1] = ACTIONS(1117), - [aux_sym_echo_statement_token1] = ACTIONS(1117), - [aux_sym_exit_statement_token1] = ACTIONS(1117), - [anon_sym_unset] = ACTIONS(1117), - [aux_sym_declare_statement_token1] = ACTIONS(1117), - [aux_sym_declare_statement_token2] = ACTIONS(1117), - [sym_float] = ACTIONS(1117), - [aux_sym_try_statement_token1] = ACTIONS(1117), - [aux_sym_goto_statement_token1] = ACTIONS(1117), - [aux_sym_continue_statement_token1] = ACTIONS(1117), - [aux_sym_break_statement_token1] = ACTIONS(1117), - [sym_integer] = ACTIONS(1117), - [aux_sym_return_statement_token1] = ACTIONS(1117), - [aux_sym_throw_expression_token1] = ACTIONS(1117), - [aux_sym_while_statement_token1] = ACTIONS(1117), - [aux_sym_while_statement_token2] = ACTIONS(1117), - [aux_sym_do_statement_token1] = ACTIONS(1117), - [aux_sym_for_statement_token1] = ACTIONS(1117), - [aux_sym_for_statement_token2] = ACTIONS(1117), - [aux_sym_foreach_statement_token1] = ACTIONS(1117), - [aux_sym_foreach_statement_token2] = ACTIONS(1117), - [aux_sym_if_statement_token1] = ACTIONS(1117), - [aux_sym_if_statement_token2] = ACTIONS(1117), - [aux_sym_else_if_clause_token1] = ACTIONS(1117), - [aux_sym_else_clause_token1] = ACTIONS(1117), - [aux_sym_match_expression_token1] = ACTIONS(1117), - [aux_sym_match_default_expression_token1] = ACTIONS(1117), - [aux_sym_switch_statement_token1] = ACTIONS(1117), - [aux_sym_switch_block_token1] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1115), - [anon_sym_BANG] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(1115), - [aux_sym_clone_expression_token1] = ACTIONS(1117), - [aux_sym_print_intrinsic_token1] = ACTIONS(1117), - [aux_sym_object_creation_expression_token1] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1115), - [anon_sym_PLUS_PLUS] = ACTIONS(1115), - [aux_sym__list_destructing_token1] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_self] = ACTIONS(1117), - [anon_sym_parent] = ACTIONS(1117), - [aux_sym__argument_name_token1] = ACTIONS(1117), - [aux_sym__argument_name_token2] = ACTIONS(1117), - [anon_sym_POUND_LBRACK] = ACTIONS(1115), - [aux_sym_encapsed_string_token1] = ACTIONS(1115), - [anon_sym_DQUOTE] = ACTIONS(1115), - [aux_sym_string_token1] = ACTIONS(1115), - [anon_sym_SQUOTE] = ACTIONS(1115), - [anon_sym_LT_LT_LT] = ACTIONS(1115), - [anon_sym_BQUOTE] = ACTIONS(1115), - [anon_sym_DOLLAR] = ACTIONS(1115), - [aux_sym_yield_expression_token1] = ACTIONS(1117), - [aux_sym_include_expression_token1] = ACTIONS(1117), - [aux_sym_include_once_expression_token1] = ACTIONS(1117), - [aux_sym_require_expression_token1] = ACTIONS(1117), - [aux_sym_require_once_expression_token1] = ACTIONS(1117), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1124), + [sym_name] = ACTIONS(1126), + [anon_sym_QMARK_GT] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1128), + [aux_sym_function_static_declaration_token1] = ACTIONS(1126), + [aux_sym_global_declaration_token1] = ACTIONS(1126), + [aux_sym_namespace_definition_token1] = ACTIONS(1126), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1126), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1126), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1126), + [anon_sym_BSLASH] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_RBRACE] = ACTIONS(1124), + [aux_sym_trait_declaration_token1] = ACTIONS(1126), + [aux_sym_interface_declaration_token1] = ACTIONS(1126), + [aux_sym_enum_declaration_token1] = ACTIONS(1126), + [aux_sym_enum_case_token1] = ACTIONS(1126), + [aux_sym_class_declaration_token1] = ACTIONS(1126), + [aux_sym_final_modifier_token1] = ACTIONS(1126), + [aux_sym_abstract_modifier_token1] = ACTIONS(1126), + [aux_sym_readonly_modifier_token1] = ACTIONS(1126), + [sym_var_modifier] = ACTIONS(1126), + [aux_sym_visibility_modifier_token1] = ACTIONS(1126), + [aux_sym_visibility_modifier_token2] = ACTIONS(1126), + [aux_sym_visibility_modifier_token3] = ACTIONS(1126), + [aux_sym__arrow_function_header_token1] = ACTIONS(1126), + [anon_sym_LPAREN] = ACTIONS(1124), + [aux_sym_cast_type_token1] = ACTIONS(1126), + [aux_sym_echo_statement_token1] = ACTIONS(1126), + [aux_sym_exit_statement_token1] = ACTIONS(1126), + [anon_sym_unset] = ACTIONS(1126), + [aux_sym_declare_statement_token1] = ACTIONS(1126), + [aux_sym_declare_statement_token2] = ACTIONS(1126), + [sym_float] = ACTIONS(1126), + [aux_sym_try_statement_token1] = ACTIONS(1126), + [aux_sym_goto_statement_token1] = ACTIONS(1126), + [aux_sym_continue_statement_token1] = ACTIONS(1126), + [aux_sym_break_statement_token1] = ACTIONS(1126), + [sym_integer] = ACTIONS(1126), + [aux_sym_return_statement_token1] = ACTIONS(1126), + [aux_sym_throw_expression_token1] = ACTIONS(1126), + [aux_sym_while_statement_token1] = ACTIONS(1126), + [aux_sym_while_statement_token2] = ACTIONS(1126), + [aux_sym_do_statement_token1] = ACTIONS(1126), + [aux_sym_for_statement_token1] = ACTIONS(1126), + [aux_sym_for_statement_token2] = ACTIONS(1126), + [aux_sym_foreach_statement_token1] = ACTIONS(1126), + [aux_sym_foreach_statement_token2] = ACTIONS(1126), + [aux_sym_if_statement_token1] = ACTIONS(1126), + [aux_sym_if_statement_token2] = ACTIONS(1126), + [aux_sym_else_if_clause_token1] = ACTIONS(1126), + [aux_sym_else_clause_token1] = ACTIONS(1126), + [aux_sym_match_expression_token1] = ACTIONS(1126), + [aux_sym_match_default_expression_token1] = ACTIONS(1126), + [aux_sym_switch_statement_token1] = ACTIONS(1126), + [aux_sym_switch_block_token1] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_TILDE] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_AT] = ACTIONS(1124), + [aux_sym_clone_expression_token1] = ACTIONS(1126), + [aux_sym_print_intrinsic_token1] = ACTIONS(1126), + [aux_sym_object_creation_expression_token1] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_PLUS_PLUS] = ACTIONS(1124), + [aux_sym__list_destructing_token1] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1124), + [anon_sym_self] = ACTIONS(1126), + [anon_sym_parent] = ACTIONS(1126), + [aux_sym__argument_name_token1] = ACTIONS(1126), + [aux_sym__argument_name_token2] = ACTIONS(1126), + [anon_sym_POUND_LBRACK] = ACTIONS(1124), + [aux_sym_encapsed_string_token1] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [aux_sym_string_token1] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1124), + [anon_sym_LT_LT_LT] = ACTIONS(1124), + [anon_sym_BQUOTE] = ACTIONS(1124), + [anon_sym_DOLLAR] = ACTIONS(1124), + [aux_sym_yield_expression_token1] = ACTIONS(1126), + [aux_sym_include_expression_token1] = ACTIONS(1126), + [aux_sym_include_once_expression_token1] = ACTIONS(1126), + [aux_sym_require_expression_token1] = ACTIONS(1126), + [aux_sym_require_once_expression_token1] = ACTIONS(1126), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1128), }, [449] = { - [ts_builtin_sym_end] = ACTIONS(1119), - [sym_name] = ACTIONS(1121), - [anon_sym_QMARK_GT] = ACTIONS(1119), - [anon_sym_SEMI] = ACTIONS(1123), - [aux_sym_function_static_declaration_token1] = ACTIONS(1121), - [aux_sym_global_declaration_token1] = ACTIONS(1121), - [aux_sym_namespace_definition_token1] = ACTIONS(1121), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1121), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1121), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1119), - [anon_sym_LBRACE] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [aux_sym_trait_declaration_token1] = ACTIONS(1121), - [aux_sym_interface_declaration_token1] = ACTIONS(1121), - [aux_sym_enum_declaration_token1] = ACTIONS(1121), - [aux_sym_enum_case_token1] = ACTIONS(1121), - [aux_sym_class_declaration_token1] = ACTIONS(1121), - [aux_sym_final_modifier_token1] = ACTIONS(1121), - [aux_sym_abstract_modifier_token1] = ACTIONS(1121), - [aux_sym_readonly_modifier_token1] = ACTIONS(1121), - [aux_sym_visibility_modifier_token1] = ACTIONS(1121), - [aux_sym_visibility_modifier_token2] = ACTIONS(1121), - [aux_sym_visibility_modifier_token3] = ACTIONS(1121), - [aux_sym__arrow_function_header_token1] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1119), - [aux_sym_cast_type_token1] = ACTIONS(1121), - [aux_sym_echo_statement_token1] = ACTIONS(1121), - [aux_sym_exit_statement_token1] = ACTIONS(1121), - [anon_sym_unset] = ACTIONS(1121), - [aux_sym_declare_statement_token1] = ACTIONS(1121), - [aux_sym_declare_statement_token2] = ACTIONS(1121), - [sym_float] = ACTIONS(1121), - [aux_sym_try_statement_token1] = ACTIONS(1121), - [aux_sym_goto_statement_token1] = ACTIONS(1121), - [aux_sym_continue_statement_token1] = ACTIONS(1121), - [aux_sym_break_statement_token1] = ACTIONS(1121), - [sym_integer] = ACTIONS(1121), - [aux_sym_return_statement_token1] = ACTIONS(1121), - [aux_sym_throw_expression_token1] = ACTIONS(1121), - [aux_sym_while_statement_token1] = ACTIONS(1121), - [aux_sym_while_statement_token2] = ACTIONS(1121), - [aux_sym_do_statement_token1] = ACTIONS(1121), - [aux_sym_for_statement_token1] = ACTIONS(1121), - [aux_sym_for_statement_token2] = ACTIONS(1121), - [aux_sym_foreach_statement_token1] = ACTIONS(1121), - [aux_sym_foreach_statement_token2] = ACTIONS(1121), - [aux_sym_if_statement_token1] = ACTIONS(1121), - [aux_sym_if_statement_token2] = ACTIONS(1121), - [aux_sym_else_if_clause_token1] = ACTIONS(1121), - [aux_sym_else_clause_token1] = ACTIONS(1121), - [aux_sym_match_expression_token1] = ACTIONS(1121), - [aux_sym_match_default_expression_token1] = ACTIONS(1121), - [aux_sym_switch_statement_token1] = ACTIONS(1121), - [aux_sym_switch_block_token1] = ACTIONS(1121), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(1119), - [aux_sym_clone_expression_token1] = ACTIONS(1121), - [aux_sym_print_intrinsic_token1] = ACTIONS(1121), - [aux_sym_object_creation_expression_token1] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1119), - [aux_sym__list_destructing_token1] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(1119), - [anon_sym_self] = ACTIONS(1121), - [anon_sym_parent] = ACTIONS(1121), - [aux_sym__argument_name_token1] = ACTIONS(1121), - [aux_sym__argument_name_token2] = ACTIONS(1121), - [anon_sym_POUND_LBRACK] = ACTIONS(1119), - [aux_sym_encapsed_string_token1] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(1119), - [aux_sym_string_token1] = ACTIONS(1119), - [anon_sym_SQUOTE] = ACTIONS(1119), - [anon_sym_LT_LT_LT] = ACTIONS(1119), - [anon_sym_BQUOTE] = ACTIONS(1119), - [anon_sym_DOLLAR] = ACTIONS(1119), - [aux_sym_yield_expression_token1] = ACTIONS(1121), - [aux_sym_include_expression_token1] = ACTIONS(1121), - [aux_sym_include_once_expression_token1] = ACTIONS(1121), - [aux_sym_require_expression_token1] = ACTIONS(1121), - [aux_sym_require_once_expression_token1] = ACTIONS(1121), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(1123), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym__unary_expression] = STATE(1127), + [sym_unary_op_expression] = STATE(1127), + [sym_error_suppression_expression] = STATE(1127), + [sym_clone_expression] = STATE(1127), + [sym_primary_expression] = STATE(1127), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_cast_expression] = STATE(1127), + [sym_cast_variable] = STATE(625), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_function_call_expression] = STATE(597), + [sym_scoped_call_expression] = STATE(597), + [sym__scope_resolution_qualifier] = STATE(2549), + [sym_relative_scope] = STATE(2549), + [sym_member_call_expression] = STATE(597), + [sym_nullsafe_member_call_expression] = STATE(597), + [sym_subscript_expression] = STATE(597), + [sym__dereferencable_expression] = STATE(1715), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(823), + [sym_string] = STATE(823), + [sym_heredoc] = STATE(823), + [sym_nowdoc] = STATE(823), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(823), + [sym_dynamic_variable_name] = STATE(597), + [sym_variable_name] = STATE(597), + [sym_include_expression] = STATE(1127), + [sym_include_once_expression] = STATE(1127), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(663), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(51), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [aux_sym_clone_expression_token1] = ACTIONS(97), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(125), + [aux_sym_include_expression_token1] = ACTIONS(129), + [aux_sym_include_once_expression_token1] = ACTIONS(131), + [sym_comment] = ACTIONS(3), }, [450] = { - [ts_builtin_sym_end] = ACTIONS(1031), - [sym_name] = ACTIONS(1033), - [anon_sym_QMARK_GT] = ACTIONS(1031), - [anon_sym_SEMI] = ACTIONS(1031), - [aux_sym_function_static_declaration_token1] = ACTIONS(1033), - [aux_sym_global_declaration_token1] = ACTIONS(1033), - [aux_sym_namespace_definition_token1] = ACTIONS(1033), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1033), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1033), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1033), - [anon_sym_BSLASH] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1031), - [aux_sym_trait_declaration_token1] = ACTIONS(1033), - [aux_sym_interface_declaration_token1] = ACTIONS(1033), - [aux_sym_enum_declaration_token1] = ACTIONS(1033), - [aux_sym_enum_case_token1] = ACTIONS(1033), - [aux_sym_class_declaration_token1] = ACTIONS(1033), - [aux_sym_final_modifier_token1] = ACTIONS(1033), - [aux_sym_abstract_modifier_token1] = ACTIONS(1033), - [aux_sym_readonly_modifier_token1] = ACTIONS(1033), - [sym_var_modifier] = ACTIONS(1033), - [aux_sym_visibility_modifier_token1] = ACTIONS(1033), - [aux_sym_visibility_modifier_token2] = ACTIONS(1033), - [aux_sym_visibility_modifier_token3] = ACTIONS(1033), - [aux_sym__arrow_function_header_token1] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1031), - [aux_sym_cast_type_token1] = ACTIONS(1033), - [aux_sym_echo_statement_token1] = ACTIONS(1033), - [aux_sym_exit_statement_token1] = ACTIONS(1033), - [anon_sym_unset] = ACTIONS(1033), - [aux_sym_declare_statement_token1] = ACTIONS(1033), - [aux_sym_declare_statement_token2] = ACTIONS(1033), - [sym_float] = ACTIONS(1033), - [aux_sym_try_statement_token1] = ACTIONS(1033), - [aux_sym_goto_statement_token1] = ACTIONS(1033), - [aux_sym_continue_statement_token1] = ACTIONS(1033), - [aux_sym_break_statement_token1] = ACTIONS(1033), - [sym_integer] = ACTIONS(1033), - [aux_sym_return_statement_token1] = ACTIONS(1033), - [aux_sym_throw_expression_token1] = ACTIONS(1033), - [aux_sym_while_statement_token1] = ACTIONS(1033), - [aux_sym_while_statement_token2] = ACTIONS(1033), - [aux_sym_do_statement_token1] = ACTIONS(1033), - [aux_sym_for_statement_token1] = ACTIONS(1033), - [aux_sym_for_statement_token2] = ACTIONS(1033), - [aux_sym_foreach_statement_token1] = ACTIONS(1033), - [aux_sym_foreach_statement_token2] = ACTIONS(1033), - [aux_sym_if_statement_token1] = ACTIONS(1033), - [aux_sym_if_statement_token2] = ACTIONS(1033), - [aux_sym_else_if_clause_token1] = ACTIONS(1033), - [aux_sym_else_clause_token1] = ACTIONS(1033), - [aux_sym_match_expression_token1] = ACTIONS(1033), - [aux_sym_match_default_expression_token1] = ACTIONS(1033), - [aux_sym_switch_statement_token1] = ACTIONS(1033), - [aux_sym_switch_block_token1] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_AT] = ACTIONS(1031), - [aux_sym_clone_expression_token1] = ACTIONS(1033), - [aux_sym_print_intrinsic_token1] = ACTIONS(1033), - [aux_sym_object_creation_expression_token1] = ACTIONS(1033), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [aux_sym__list_destructing_token1] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1031), - [anon_sym_self] = ACTIONS(1033), - [anon_sym_parent] = ACTIONS(1033), - [aux_sym__argument_name_token1] = ACTIONS(1033), - [aux_sym__argument_name_token2] = ACTIONS(1033), - [anon_sym_POUND_LBRACK] = ACTIONS(1031), - [aux_sym_encapsed_string_token1] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1031), - [aux_sym_string_token1] = ACTIONS(1031), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_LT_LT_LT] = ACTIONS(1031), - [anon_sym_BQUOTE] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1031), - [aux_sym_yield_expression_token1] = ACTIONS(1033), - [aux_sym_include_expression_token1] = ACTIONS(1033), - [aux_sym_include_once_expression_token1] = ACTIONS(1033), - [aux_sym_require_expression_token1] = ACTIONS(1033), - [aux_sym_require_once_expression_token1] = ACTIONS(1033), + [ts_builtin_sym_end] = ACTIONS(1066), + [sym_name] = ACTIONS(1068), + [anon_sym_QMARK_GT] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [aux_sym_function_static_declaration_token1] = ACTIONS(1068), + [aux_sym_global_declaration_token1] = ACTIONS(1068), + [aux_sym_namespace_definition_token1] = ACTIONS(1068), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1068), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1068), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1068), + [anon_sym_BSLASH] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1066), + [aux_sym_trait_declaration_token1] = ACTIONS(1068), + [aux_sym_interface_declaration_token1] = ACTIONS(1068), + [aux_sym_enum_declaration_token1] = ACTIONS(1068), + [aux_sym_enum_case_token1] = ACTIONS(1068), + [aux_sym_class_declaration_token1] = ACTIONS(1068), + [aux_sym_final_modifier_token1] = ACTIONS(1068), + [aux_sym_abstract_modifier_token1] = ACTIONS(1068), + [aux_sym_readonly_modifier_token1] = ACTIONS(1068), + [sym_var_modifier] = ACTIONS(1068), + [aux_sym_visibility_modifier_token1] = ACTIONS(1068), + [aux_sym_visibility_modifier_token2] = ACTIONS(1068), + [aux_sym_visibility_modifier_token3] = ACTIONS(1068), + [aux_sym__arrow_function_header_token1] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1066), + [aux_sym_cast_type_token1] = ACTIONS(1068), + [aux_sym_echo_statement_token1] = ACTIONS(1068), + [aux_sym_exit_statement_token1] = ACTIONS(1068), + [anon_sym_unset] = ACTIONS(1068), + [aux_sym_declare_statement_token1] = ACTIONS(1068), + [aux_sym_declare_statement_token2] = ACTIONS(1068), + [sym_float] = ACTIONS(1068), + [aux_sym_try_statement_token1] = ACTIONS(1068), + [aux_sym_goto_statement_token1] = ACTIONS(1068), + [aux_sym_continue_statement_token1] = ACTIONS(1068), + [aux_sym_break_statement_token1] = ACTIONS(1068), + [sym_integer] = ACTIONS(1068), + [aux_sym_return_statement_token1] = ACTIONS(1068), + [aux_sym_throw_expression_token1] = ACTIONS(1068), + [aux_sym_while_statement_token1] = ACTIONS(1068), + [aux_sym_while_statement_token2] = ACTIONS(1068), + [aux_sym_do_statement_token1] = ACTIONS(1068), + [aux_sym_for_statement_token1] = ACTIONS(1068), + [aux_sym_for_statement_token2] = ACTIONS(1068), + [aux_sym_foreach_statement_token1] = ACTIONS(1068), + [aux_sym_foreach_statement_token2] = ACTIONS(1068), + [aux_sym_if_statement_token1] = ACTIONS(1068), + [aux_sym_if_statement_token2] = ACTIONS(1068), + [aux_sym_else_if_clause_token1] = ACTIONS(1068), + [aux_sym_else_clause_token1] = ACTIONS(1068), + [aux_sym_match_expression_token1] = ACTIONS(1068), + [aux_sym_match_default_expression_token1] = ACTIONS(1068), + [aux_sym_switch_statement_token1] = ACTIONS(1068), + [aux_sym_switch_block_token1] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AT] = ACTIONS(1066), + [aux_sym_clone_expression_token1] = ACTIONS(1068), + [aux_sym_print_intrinsic_token1] = ACTIONS(1068), + [aux_sym_object_creation_expression_token1] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [aux_sym__list_destructing_token1] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_self] = ACTIONS(1068), + [anon_sym_parent] = ACTIONS(1068), + [aux_sym__argument_name_token1] = ACTIONS(1068), + [aux_sym__argument_name_token2] = ACTIONS(1068), + [anon_sym_POUND_LBRACK] = ACTIONS(1066), + [aux_sym_encapsed_string_token1] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [aux_sym_string_token1] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_LT_LT_LT] = ACTIONS(1066), + [anon_sym_BQUOTE] = ACTIONS(1066), + [anon_sym_DOLLAR] = ACTIONS(1066), + [aux_sym_yield_expression_token1] = ACTIONS(1068), + [aux_sym_include_expression_token1] = ACTIONS(1068), + [aux_sym_include_once_expression_token1] = ACTIONS(1068), + [aux_sym_require_expression_token1] = ACTIONS(1068), + [aux_sym_require_once_expression_token1] = ACTIONS(1068), [sym_comment] = ACTIONS(3), }, [451] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_name] = ACTIONS(1127), - [anon_sym_QMARK_GT] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1129), - [aux_sym_function_static_declaration_token1] = ACTIONS(1127), - [aux_sym_global_declaration_token1] = ACTIONS(1127), - [aux_sym_namespace_definition_token1] = ACTIONS(1127), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1127), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1127), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1127), - [anon_sym_BSLASH] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [aux_sym_trait_declaration_token1] = ACTIONS(1127), - [aux_sym_interface_declaration_token1] = ACTIONS(1127), - [aux_sym_enum_declaration_token1] = ACTIONS(1127), - [aux_sym_enum_case_token1] = ACTIONS(1127), - [aux_sym_class_declaration_token1] = ACTIONS(1127), - [aux_sym_final_modifier_token1] = ACTIONS(1127), - [aux_sym_abstract_modifier_token1] = ACTIONS(1127), - [aux_sym_readonly_modifier_token1] = ACTIONS(1127), - [aux_sym_visibility_modifier_token1] = ACTIONS(1127), - [aux_sym_visibility_modifier_token2] = ACTIONS(1127), - [aux_sym_visibility_modifier_token3] = ACTIONS(1127), - [aux_sym__arrow_function_header_token1] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1125), - [aux_sym_cast_type_token1] = ACTIONS(1127), - [aux_sym_echo_statement_token1] = ACTIONS(1127), - [aux_sym_exit_statement_token1] = ACTIONS(1127), - [anon_sym_unset] = ACTIONS(1127), - [aux_sym_declare_statement_token1] = ACTIONS(1127), - [aux_sym_declare_statement_token2] = ACTIONS(1127), - [sym_float] = ACTIONS(1127), - [aux_sym_try_statement_token1] = ACTIONS(1127), - [aux_sym_goto_statement_token1] = ACTIONS(1127), - [aux_sym_continue_statement_token1] = ACTIONS(1127), - [aux_sym_break_statement_token1] = ACTIONS(1127), - [sym_integer] = ACTIONS(1127), - [aux_sym_return_statement_token1] = ACTIONS(1127), - [aux_sym_throw_expression_token1] = ACTIONS(1127), - [aux_sym_while_statement_token1] = ACTIONS(1127), - [aux_sym_while_statement_token2] = ACTIONS(1127), - [aux_sym_do_statement_token1] = ACTIONS(1127), - [aux_sym_for_statement_token1] = ACTIONS(1127), - [aux_sym_for_statement_token2] = ACTIONS(1127), - [aux_sym_foreach_statement_token1] = ACTIONS(1127), - [aux_sym_foreach_statement_token2] = ACTIONS(1127), - [aux_sym_if_statement_token1] = ACTIONS(1127), - [aux_sym_if_statement_token2] = ACTIONS(1127), - [aux_sym_else_if_clause_token1] = ACTIONS(1127), - [aux_sym_else_clause_token1] = ACTIONS(1127), - [aux_sym_match_expression_token1] = ACTIONS(1127), - [aux_sym_match_default_expression_token1] = ACTIONS(1127), - [aux_sym_switch_statement_token1] = ACTIONS(1127), - [aux_sym_switch_block_token1] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_AT] = ACTIONS(1125), - [aux_sym_clone_expression_token1] = ACTIONS(1127), - [aux_sym_print_intrinsic_token1] = ACTIONS(1127), - [aux_sym_object_creation_expression_token1] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [aux_sym__list_destructing_token1] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(1125), - [anon_sym_self] = ACTIONS(1127), - [anon_sym_parent] = ACTIONS(1127), - [aux_sym__argument_name_token1] = ACTIONS(1127), - [aux_sym__argument_name_token2] = ACTIONS(1127), - [anon_sym_POUND_LBRACK] = ACTIONS(1125), - [aux_sym_encapsed_string_token1] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [aux_sym_string_token1] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_LT_LT_LT] = ACTIONS(1125), - [anon_sym_BQUOTE] = ACTIONS(1125), - [anon_sym_DOLLAR] = ACTIONS(1125), - [aux_sym_yield_expression_token1] = ACTIONS(1127), - [aux_sym_include_expression_token1] = ACTIONS(1127), - [aux_sym_include_once_expression_token1] = ACTIONS(1127), - [aux_sym_require_expression_token1] = ACTIONS(1127), - [aux_sym_require_once_expression_token1] = ACTIONS(1127), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(1129), + [ts_builtin_sym_end] = ACTIONS(1132), + [sym_name] = ACTIONS(1134), + [anon_sym_QMARK_GT] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1132), + [aux_sym_function_static_declaration_token1] = ACTIONS(1134), + [aux_sym_global_declaration_token1] = ACTIONS(1134), + [aux_sym_namespace_definition_token1] = ACTIONS(1134), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1134), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1134), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1134), + [anon_sym_BSLASH] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_RBRACE] = ACTIONS(1132), + [aux_sym_trait_declaration_token1] = ACTIONS(1134), + [aux_sym_interface_declaration_token1] = ACTIONS(1134), + [aux_sym_enum_declaration_token1] = ACTIONS(1134), + [aux_sym_enum_case_token1] = ACTIONS(1134), + [aux_sym_class_declaration_token1] = ACTIONS(1134), + [aux_sym_final_modifier_token1] = ACTIONS(1134), + [aux_sym_abstract_modifier_token1] = ACTIONS(1134), + [aux_sym_readonly_modifier_token1] = ACTIONS(1134), + [sym_var_modifier] = ACTIONS(1134), + [aux_sym_visibility_modifier_token1] = ACTIONS(1134), + [aux_sym_visibility_modifier_token2] = ACTIONS(1134), + [aux_sym_visibility_modifier_token3] = ACTIONS(1134), + [aux_sym__arrow_function_header_token1] = ACTIONS(1134), + [anon_sym_LPAREN] = ACTIONS(1132), + [aux_sym_cast_type_token1] = ACTIONS(1134), + [aux_sym_echo_statement_token1] = ACTIONS(1134), + [aux_sym_exit_statement_token1] = ACTIONS(1134), + [anon_sym_unset] = ACTIONS(1134), + [aux_sym_declare_statement_token1] = ACTIONS(1134), + [aux_sym_declare_statement_token2] = ACTIONS(1134), + [sym_float] = ACTIONS(1134), + [aux_sym_try_statement_token1] = ACTIONS(1134), + [aux_sym_goto_statement_token1] = ACTIONS(1134), + [aux_sym_continue_statement_token1] = ACTIONS(1134), + [aux_sym_break_statement_token1] = ACTIONS(1134), + [sym_integer] = ACTIONS(1134), + [aux_sym_return_statement_token1] = ACTIONS(1134), + [aux_sym_throw_expression_token1] = ACTIONS(1134), + [aux_sym_while_statement_token1] = ACTIONS(1134), + [aux_sym_while_statement_token2] = ACTIONS(1134), + [aux_sym_do_statement_token1] = ACTIONS(1134), + [aux_sym_for_statement_token1] = ACTIONS(1134), + [aux_sym_for_statement_token2] = ACTIONS(1134), + [aux_sym_foreach_statement_token1] = ACTIONS(1134), + [aux_sym_foreach_statement_token2] = ACTIONS(1134), + [aux_sym_if_statement_token1] = ACTIONS(1134), + [aux_sym_if_statement_token2] = ACTIONS(1134), + [aux_sym_else_if_clause_token1] = ACTIONS(1134), + [aux_sym_else_clause_token1] = ACTIONS(1134), + [aux_sym_match_expression_token1] = ACTIONS(1134), + [aux_sym_match_default_expression_token1] = ACTIONS(1134), + [aux_sym_switch_statement_token1] = ACTIONS(1134), + [aux_sym_switch_block_token1] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1134), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_TILDE] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_AT] = ACTIONS(1132), + [aux_sym_clone_expression_token1] = ACTIONS(1134), + [aux_sym_print_intrinsic_token1] = ACTIONS(1134), + [aux_sym_object_creation_expression_token1] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1132), + [aux_sym__list_destructing_token1] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1132), + [anon_sym_self] = ACTIONS(1134), + [anon_sym_parent] = ACTIONS(1134), + [aux_sym__argument_name_token1] = ACTIONS(1134), + [aux_sym__argument_name_token2] = ACTIONS(1134), + [anon_sym_POUND_LBRACK] = ACTIONS(1132), + [aux_sym_encapsed_string_token1] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1132), + [aux_sym_string_token1] = ACTIONS(1132), + [anon_sym_SQUOTE] = ACTIONS(1132), + [anon_sym_LT_LT_LT] = ACTIONS(1132), + [anon_sym_BQUOTE] = ACTIONS(1132), + [anon_sym_DOLLAR] = ACTIONS(1132), + [aux_sym_yield_expression_token1] = ACTIONS(1134), + [aux_sym_include_expression_token1] = ACTIONS(1134), + [aux_sym_include_once_expression_token1] = ACTIONS(1134), + [aux_sym_require_expression_token1] = ACTIONS(1134), + [aux_sym_require_once_expression_token1] = ACTIONS(1134), + [sym_comment] = ACTIONS(3), }, [452] = { - [ts_builtin_sym_end] = ACTIONS(1131), - [sym_name] = ACTIONS(1133), - [anon_sym_QMARK_GT] = ACTIONS(1131), - [anon_sym_SEMI] = ACTIONS(1135), - [aux_sym_function_static_declaration_token1] = ACTIONS(1133), - [aux_sym_global_declaration_token1] = ACTIONS(1133), - [aux_sym_namespace_definition_token1] = ACTIONS(1133), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1133), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1133), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1131), - [anon_sym_RBRACE] = ACTIONS(1131), - [aux_sym_trait_declaration_token1] = ACTIONS(1133), - [aux_sym_interface_declaration_token1] = ACTIONS(1133), - [aux_sym_enum_declaration_token1] = ACTIONS(1133), - [aux_sym_enum_case_token1] = ACTIONS(1133), - [aux_sym_class_declaration_token1] = ACTIONS(1133), - [aux_sym_final_modifier_token1] = ACTIONS(1133), - [aux_sym_abstract_modifier_token1] = ACTIONS(1133), - [aux_sym_readonly_modifier_token1] = ACTIONS(1133), - [aux_sym_visibility_modifier_token1] = ACTIONS(1133), - [aux_sym_visibility_modifier_token2] = ACTIONS(1133), - [aux_sym_visibility_modifier_token3] = ACTIONS(1133), - [aux_sym__arrow_function_header_token1] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1131), - [aux_sym_cast_type_token1] = ACTIONS(1133), - [aux_sym_echo_statement_token1] = ACTIONS(1133), - [aux_sym_exit_statement_token1] = ACTIONS(1133), - [anon_sym_unset] = ACTIONS(1133), - [aux_sym_declare_statement_token1] = ACTIONS(1133), - [aux_sym_declare_statement_token2] = ACTIONS(1133), - [sym_float] = ACTIONS(1133), - [aux_sym_try_statement_token1] = ACTIONS(1133), - [aux_sym_goto_statement_token1] = ACTIONS(1133), - [aux_sym_continue_statement_token1] = ACTIONS(1133), - [aux_sym_break_statement_token1] = ACTIONS(1133), - [sym_integer] = ACTIONS(1133), - [aux_sym_return_statement_token1] = ACTIONS(1133), - [aux_sym_throw_expression_token1] = ACTIONS(1133), - [aux_sym_while_statement_token1] = ACTIONS(1133), - [aux_sym_while_statement_token2] = ACTIONS(1133), - [aux_sym_do_statement_token1] = ACTIONS(1133), - [aux_sym_for_statement_token1] = ACTIONS(1133), - [aux_sym_for_statement_token2] = ACTIONS(1133), - [aux_sym_foreach_statement_token1] = ACTIONS(1133), - [aux_sym_foreach_statement_token2] = ACTIONS(1133), - [aux_sym_if_statement_token1] = ACTIONS(1133), - [aux_sym_if_statement_token2] = ACTIONS(1133), - [aux_sym_else_if_clause_token1] = ACTIONS(1133), - [aux_sym_else_clause_token1] = ACTIONS(1133), - [aux_sym_match_expression_token1] = ACTIONS(1133), - [aux_sym_match_default_expression_token1] = ACTIONS(1133), - [aux_sym_switch_statement_token1] = ACTIONS(1133), - [aux_sym_switch_block_token1] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1131), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_AT] = ACTIONS(1131), - [aux_sym_clone_expression_token1] = ACTIONS(1133), - [aux_sym_print_intrinsic_token1] = ACTIONS(1133), - [aux_sym_object_creation_expression_token1] = ACTIONS(1133), - [anon_sym_DASH_DASH] = ACTIONS(1131), - [anon_sym_PLUS_PLUS] = ACTIONS(1131), - [aux_sym__list_destructing_token1] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1131), - [anon_sym_self] = ACTIONS(1133), - [anon_sym_parent] = ACTIONS(1133), - [aux_sym__argument_name_token1] = ACTIONS(1133), - [aux_sym__argument_name_token2] = ACTIONS(1133), - [anon_sym_POUND_LBRACK] = ACTIONS(1131), - [aux_sym_encapsed_string_token1] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1131), - [aux_sym_string_token1] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1131), - [anon_sym_LT_LT_LT] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1131), - [anon_sym_DOLLAR] = ACTIONS(1131), - [aux_sym_yield_expression_token1] = ACTIONS(1133), - [aux_sym_include_expression_token1] = ACTIONS(1133), - [aux_sym_include_once_expression_token1] = ACTIONS(1133), - [aux_sym_require_expression_token1] = ACTIONS(1133), - [aux_sym_require_once_expression_token1] = ACTIONS(1133), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(1135), + [ts_builtin_sym_end] = ACTIONS(1136), + [sym_name] = ACTIONS(1138), + [anon_sym_QMARK_GT] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1136), + [aux_sym_function_static_declaration_token1] = ACTIONS(1138), + [aux_sym_global_declaration_token1] = ACTIONS(1138), + [aux_sym_namespace_definition_token1] = ACTIONS(1138), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1138), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1138), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1138), + [anon_sym_BSLASH] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_RBRACE] = ACTIONS(1136), + [aux_sym_trait_declaration_token1] = ACTIONS(1138), + [aux_sym_interface_declaration_token1] = ACTIONS(1138), + [aux_sym_enum_declaration_token1] = ACTIONS(1138), + [aux_sym_enum_case_token1] = ACTIONS(1138), + [aux_sym_class_declaration_token1] = ACTIONS(1138), + [aux_sym_final_modifier_token1] = ACTIONS(1138), + [aux_sym_abstract_modifier_token1] = ACTIONS(1138), + [aux_sym_readonly_modifier_token1] = ACTIONS(1138), + [sym_var_modifier] = ACTIONS(1138), + [aux_sym_visibility_modifier_token1] = ACTIONS(1138), + [aux_sym_visibility_modifier_token2] = ACTIONS(1138), + [aux_sym_visibility_modifier_token3] = ACTIONS(1138), + [aux_sym__arrow_function_header_token1] = ACTIONS(1138), + [anon_sym_LPAREN] = ACTIONS(1136), + [aux_sym_cast_type_token1] = ACTIONS(1138), + [aux_sym_echo_statement_token1] = ACTIONS(1138), + [aux_sym_exit_statement_token1] = ACTIONS(1138), + [anon_sym_unset] = ACTIONS(1138), + [aux_sym_declare_statement_token1] = ACTIONS(1138), + [aux_sym_declare_statement_token2] = ACTIONS(1138), + [sym_float] = ACTIONS(1138), + [aux_sym_try_statement_token1] = ACTIONS(1138), + [aux_sym_goto_statement_token1] = ACTIONS(1138), + [aux_sym_continue_statement_token1] = ACTIONS(1138), + [aux_sym_break_statement_token1] = ACTIONS(1138), + [sym_integer] = ACTIONS(1138), + [aux_sym_return_statement_token1] = ACTIONS(1138), + [aux_sym_throw_expression_token1] = ACTIONS(1138), + [aux_sym_while_statement_token1] = ACTIONS(1138), + [aux_sym_while_statement_token2] = ACTIONS(1138), + [aux_sym_do_statement_token1] = ACTIONS(1138), + [aux_sym_for_statement_token1] = ACTIONS(1138), + [aux_sym_for_statement_token2] = ACTIONS(1138), + [aux_sym_foreach_statement_token1] = ACTIONS(1138), + [aux_sym_foreach_statement_token2] = ACTIONS(1138), + [aux_sym_if_statement_token1] = ACTIONS(1138), + [aux_sym_if_statement_token2] = ACTIONS(1138), + [aux_sym_else_if_clause_token1] = ACTIONS(1138), + [aux_sym_else_clause_token1] = ACTIONS(1138), + [aux_sym_match_expression_token1] = ACTIONS(1138), + [aux_sym_match_default_expression_token1] = ACTIONS(1138), + [aux_sym_switch_statement_token1] = ACTIONS(1138), + [aux_sym_switch_block_token1] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_AT] = ACTIONS(1136), + [aux_sym_clone_expression_token1] = ACTIONS(1138), + [aux_sym_print_intrinsic_token1] = ACTIONS(1138), + [aux_sym_object_creation_expression_token1] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [aux_sym__list_destructing_token1] = ACTIONS(1138), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_self] = ACTIONS(1138), + [anon_sym_parent] = ACTIONS(1138), + [aux_sym__argument_name_token1] = ACTIONS(1138), + [aux_sym__argument_name_token2] = ACTIONS(1138), + [anon_sym_POUND_LBRACK] = ACTIONS(1136), + [aux_sym_encapsed_string_token1] = ACTIONS(1136), + [anon_sym_DQUOTE] = ACTIONS(1136), + [aux_sym_string_token1] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1136), + [anon_sym_LT_LT_LT] = ACTIONS(1136), + [anon_sym_BQUOTE] = ACTIONS(1136), + [anon_sym_DOLLAR] = ACTIONS(1136), + [aux_sym_yield_expression_token1] = ACTIONS(1138), + [aux_sym_include_expression_token1] = ACTIONS(1138), + [aux_sym_include_once_expression_token1] = ACTIONS(1138), + [aux_sym_require_expression_token1] = ACTIONS(1138), + [aux_sym_require_once_expression_token1] = ACTIONS(1138), + [sym_comment] = ACTIONS(3), }, [453] = { - [ts_builtin_sym_end] = ACTIONS(1137), - [sym_name] = ACTIONS(1139), - [anon_sym_QMARK_GT] = ACTIONS(1137), - [anon_sym_SEMI] = ACTIONS(1137), - [aux_sym_function_static_declaration_token1] = ACTIONS(1139), - [aux_sym_global_declaration_token1] = ACTIONS(1139), - [aux_sym_namespace_definition_token1] = ACTIONS(1139), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1139), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1139), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1139), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_RBRACE] = ACTIONS(1137), - [aux_sym_trait_declaration_token1] = ACTIONS(1139), - [aux_sym_interface_declaration_token1] = ACTIONS(1139), - [aux_sym_enum_declaration_token1] = ACTIONS(1139), - [aux_sym_enum_case_token1] = ACTIONS(1139), - [aux_sym_class_declaration_token1] = ACTIONS(1139), - [aux_sym_final_modifier_token1] = ACTIONS(1139), - [aux_sym_abstract_modifier_token1] = ACTIONS(1139), - [aux_sym_readonly_modifier_token1] = ACTIONS(1139), - [aux_sym_visibility_modifier_token1] = ACTIONS(1139), - [aux_sym_visibility_modifier_token2] = ACTIONS(1139), - [aux_sym_visibility_modifier_token3] = ACTIONS(1139), - [aux_sym__arrow_function_header_token1] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1137), - [aux_sym_cast_type_token1] = ACTIONS(1139), - [aux_sym_echo_statement_token1] = ACTIONS(1139), - [aux_sym_exit_statement_token1] = ACTIONS(1139), - [anon_sym_unset] = ACTIONS(1139), - [aux_sym_declare_statement_token1] = ACTIONS(1139), - [aux_sym_declare_statement_token2] = ACTIONS(1139), - [sym_float] = ACTIONS(1139), - [aux_sym_try_statement_token1] = ACTIONS(1139), - [aux_sym_goto_statement_token1] = ACTIONS(1139), - [aux_sym_continue_statement_token1] = ACTIONS(1139), - [aux_sym_break_statement_token1] = ACTIONS(1139), - [sym_integer] = ACTIONS(1139), - [aux_sym_return_statement_token1] = ACTIONS(1139), - [aux_sym_throw_expression_token1] = ACTIONS(1139), - [aux_sym_while_statement_token1] = ACTIONS(1139), - [aux_sym_while_statement_token2] = ACTIONS(1139), - [aux_sym_do_statement_token1] = ACTIONS(1139), - [aux_sym_for_statement_token1] = ACTIONS(1139), - [aux_sym_for_statement_token2] = ACTIONS(1139), - [aux_sym_foreach_statement_token1] = ACTIONS(1139), - [aux_sym_foreach_statement_token2] = ACTIONS(1139), - [aux_sym_if_statement_token1] = ACTIONS(1139), - [aux_sym_if_statement_token2] = ACTIONS(1139), - [aux_sym_else_if_clause_token1] = ACTIONS(1139), - [aux_sym_else_clause_token1] = ACTIONS(1139), - [aux_sym_match_expression_token1] = ACTIONS(1139), - [aux_sym_match_default_expression_token1] = ACTIONS(1139), - [aux_sym_switch_statement_token1] = ACTIONS(1139), - [aux_sym_switch_block_token1] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1139), - [anon_sym_DASH] = ACTIONS(1139), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_AT] = ACTIONS(1137), - [aux_sym_clone_expression_token1] = ACTIONS(1139), - [aux_sym_print_intrinsic_token1] = ACTIONS(1139), - [aux_sym_object_creation_expression_token1] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [aux_sym__list_destructing_token1] = ACTIONS(1139), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_self] = ACTIONS(1139), - [anon_sym_parent] = ACTIONS(1139), - [aux_sym__argument_name_token1] = ACTIONS(1139), - [aux_sym__argument_name_token2] = ACTIONS(1139), - [anon_sym_POUND_LBRACK] = ACTIONS(1137), - [aux_sym_encapsed_string_token1] = ACTIONS(1137), - [anon_sym_DQUOTE] = ACTIONS(1137), - [aux_sym_string_token1] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1137), - [anon_sym_LT_LT_LT] = ACTIONS(1137), - [anon_sym_BQUOTE] = ACTIONS(1137), - [anon_sym_DOLLAR] = ACTIONS(1137), - [aux_sym_yield_expression_token1] = ACTIONS(1139), - [aux_sym_include_expression_token1] = ACTIONS(1139), - [aux_sym_include_once_expression_token1] = ACTIONS(1139), - [aux_sym_require_expression_token1] = ACTIONS(1139), - [aux_sym_require_once_expression_token1] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(1137), + [ts_builtin_sym_end] = ACTIONS(1140), + [sym_name] = ACTIONS(1142), + [anon_sym_QMARK_GT] = ACTIONS(1140), + [anon_sym_SEMI] = ACTIONS(1140), + [aux_sym_function_static_declaration_token1] = ACTIONS(1142), + [aux_sym_global_declaration_token1] = ACTIONS(1142), + [aux_sym_namespace_definition_token1] = ACTIONS(1142), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1142), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1142), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1142), + [anon_sym_BSLASH] = ACTIONS(1140), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_RBRACE] = ACTIONS(1140), + [aux_sym_trait_declaration_token1] = ACTIONS(1142), + [aux_sym_interface_declaration_token1] = ACTIONS(1142), + [aux_sym_enum_declaration_token1] = ACTIONS(1142), + [aux_sym_enum_case_token1] = ACTIONS(1142), + [aux_sym_class_declaration_token1] = ACTIONS(1142), + [aux_sym_final_modifier_token1] = ACTIONS(1142), + [aux_sym_abstract_modifier_token1] = ACTIONS(1142), + [aux_sym_readonly_modifier_token1] = ACTIONS(1142), + [sym_var_modifier] = ACTIONS(1142), + [aux_sym_visibility_modifier_token1] = ACTIONS(1142), + [aux_sym_visibility_modifier_token2] = ACTIONS(1142), + [aux_sym_visibility_modifier_token3] = ACTIONS(1142), + [aux_sym__arrow_function_header_token1] = ACTIONS(1142), + [anon_sym_LPAREN] = ACTIONS(1140), + [aux_sym_cast_type_token1] = ACTIONS(1142), + [aux_sym_echo_statement_token1] = ACTIONS(1142), + [aux_sym_exit_statement_token1] = ACTIONS(1142), + [anon_sym_unset] = ACTIONS(1142), + [aux_sym_declare_statement_token1] = ACTIONS(1142), + [aux_sym_declare_statement_token2] = ACTIONS(1142), + [sym_float] = ACTIONS(1142), + [aux_sym_try_statement_token1] = ACTIONS(1142), + [aux_sym_goto_statement_token1] = ACTIONS(1142), + [aux_sym_continue_statement_token1] = ACTIONS(1142), + [aux_sym_break_statement_token1] = ACTIONS(1142), + [sym_integer] = ACTIONS(1142), + [aux_sym_return_statement_token1] = ACTIONS(1142), + [aux_sym_throw_expression_token1] = ACTIONS(1142), + [aux_sym_while_statement_token1] = ACTIONS(1142), + [aux_sym_while_statement_token2] = ACTIONS(1142), + [aux_sym_do_statement_token1] = ACTIONS(1142), + [aux_sym_for_statement_token1] = ACTIONS(1142), + [aux_sym_for_statement_token2] = ACTIONS(1142), + [aux_sym_foreach_statement_token1] = ACTIONS(1142), + [aux_sym_foreach_statement_token2] = ACTIONS(1142), + [aux_sym_if_statement_token1] = ACTIONS(1142), + [aux_sym_if_statement_token2] = ACTIONS(1142), + [aux_sym_else_if_clause_token1] = ACTIONS(1142), + [aux_sym_else_clause_token1] = ACTIONS(1142), + [aux_sym_match_expression_token1] = ACTIONS(1142), + [aux_sym_match_default_expression_token1] = ACTIONS(1142), + [aux_sym_switch_statement_token1] = ACTIONS(1142), + [aux_sym_switch_block_token1] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1142), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_AT] = ACTIONS(1140), + [aux_sym_clone_expression_token1] = ACTIONS(1142), + [aux_sym_print_intrinsic_token1] = ACTIONS(1142), + [aux_sym_object_creation_expression_token1] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [aux_sym__list_destructing_token1] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_self] = ACTIONS(1142), + [anon_sym_parent] = ACTIONS(1142), + [aux_sym__argument_name_token1] = ACTIONS(1142), + [aux_sym__argument_name_token2] = ACTIONS(1142), + [anon_sym_POUND_LBRACK] = ACTIONS(1140), + [aux_sym_encapsed_string_token1] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [aux_sym_string_token1] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_LT_LT_LT] = ACTIONS(1140), + [anon_sym_BQUOTE] = ACTIONS(1140), + [anon_sym_DOLLAR] = ACTIONS(1140), + [aux_sym_yield_expression_token1] = ACTIONS(1142), + [aux_sym_include_expression_token1] = ACTIONS(1142), + [aux_sym_include_once_expression_token1] = ACTIONS(1142), + [aux_sym_require_expression_token1] = ACTIONS(1142), + [aux_sym_require_once_expression_token1] = ACTIONS(1142), + [sym_comment] = ACTIONS(3), }, [454] = { - [ts_builtin_sym_end] = ACTIONS(1141), - [sym_name] = ACTIONS(1143), - [anon_sym_QMARK_GT] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1145), - [aux_sym_function_static_declaration_token1] = ACTIONS(1143), - [aux_sym_global_declaration_token1] = ACTIONS(1143), - [aux_sym_namespace_definition_token1] = ACTIONS(1143), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1143), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1143), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1143), - [anon_sym_BSLASH] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_RBRACE] = ACTIONS(1141), - [aux_sym_trait_declaration_token1] = ACTIONS(1143), - [aux_sym_interface_declaration_token1] = ACTIONS(1143), - [aux_sym_enum_declaration_token1] = ACTIONS(1143), - [aux_sym_enum_case_token1] = ACTIONS(1143), - [aux_sym_class_declaration_token1] = ACTIONS(1143), - [aux_sym_final_modifier_token1] = ACTIONS(1143), - [aux_sym_abstract_modifier_token1] = ACTIONS(1143), - [aux_sym_readonly_modifier_token1] = ACTIONS(1143), - [aux_sym_visibility_modifier_token1] = ACTIONS(1143), - [aux_sym_visibility_modifier_token2] = ACTIONS(1143), - [aux_sym_visibility_modifier_token3] = ACTIONS(1143), - [aux_sym__arrow_function_header_token1] = ACTIONS(1143), - [anon_sym_LPAREN] = ACTIONS(1141), - [aux_sym_cast_type_token1] = ACTIONS(1143), - [aux_sym_echo_statement_token1] = ACTIONS(1143), - [aux_sym_exit_statement_token1] = ACTIONS(1143), - [anon_sym_unset] = ACTIONS(1143), - [aux_sym_declare_statement_token1] = ACTIONS(1143), - [aux_sym_declare_statement_token2] = ACTIONS(1143), - [sym_float] = ACTIONS(1143), - [aux_sym_try_statement_token1] = ACTIONS(1143), - [aux_sym_goto_statement_token1] = ACTIONS(1143), - [aux_sym_continue_statement_token1] = ACTIONS(1143), - [aux_sym_break_statement_token1] = ACTIONS(1143), - [sym_integer] = ACTIONS(1143), - [aux_sym_return_statement_token1] = ACTIONS(1143), - [aux_sym_throw_expression_token1] = ACTIONS(1143), - [aux_sym_while_statement_token1] = ACTIONS(1143), - [aux_sym_while_statement_token2] = ACTIONS(1143), - [aux_sym_do_statement_token1] = ACTIONS(1143), - [aux_sym_for_statement_token1] = ACTIONS(1143), - [aux_sym_for_statement_token2] = ACTIONS(1143), - [aux_sym_foreach_statement_token1] = ACTIONS(1143), - [aux_sym_foreach_statement_token2] = ACTIONS(1143), - [aux_sym_if_statement_token1] = ACTIONS(1143), - [aux_sym_if_statement_token2] = ACTIONS(1143), - [aux_sym_else_if_clause_token1] = ACTIONS(1143), - [aux_sym_else_clause_token1] = ACTIONS(1143), - [aux_sym_match_expression_token1] = ACTIONS(1143), - [aux_sym_match_default_expression_token1] = ACTIONS(1143), - [aux_sym_switch_statement_token1] = ACTIONS(1143), - [aux_sym_switch_block_token1] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_TILDE] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1141), - [aux_sym_clone_expression_token1] = ACTIONS(1143), - [aux_sym_print_intrinsic_token1] = ACTIONS(1143), - [aux_sym_object_creation_expression_token1] = ACTIONS(1143), - [anon_sym_DASH_DASH] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [aux_sym__list_destructing_token1] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_self] = ACTIONS(1143), - [anon_sym_parent] = ACTIONS(1143), - [aux_sym__argument_name_token1] = ACTIONS(1143), - [aux_sym__argument_name_token2] = ACTIONS(1143), - [anon_sym_POUND_LBRACK] = ACTIONS(1141), - [aux_sym_encapsed_string_token1] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1141), - [aux_sym_string_token1] = ACTIONS(1141), - [anon_sym_SQUOTE] = ACTIONS(1141), - [anon_sym_LT_LT_LT] = ACTIONS(1141), - [anon_sym_BQUOTE] = ACTIONS(1141), - [anon_sym_DOLLAR] = ACTIONS(1141), - [aux_sym_yield_expression_token1] = ACTIONS(1143), - [aux_sym_include_expression_token1] = ACTIONS(1143), - [aux_sym_include_once_expression_token1] = ACTIONS(1143), - [aux_sym_require_expression_token1] = ACTIONS(1143), - [aux_sym_require_once_expression_token1] = ACTIONS(1143), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(1145), + [ts_builtin_sym_end] = ACTIONS(1144), + [sym_name] = ACTIONS(1146), + [anon_sym_QMARK_GT] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1144), + [aux_sym_function_static_declaration_token1] = ACTIONS(1146), + [aux_sym_global_declaration_token1] = ACTIONS(1146), + [aux_sym_namespace_definition_token1] = ACTIONS(1146), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1146), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1146), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1146), + [anon_sym_BSLASH] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_RBRACE] = ACTIONS(1144), + [aux_sym_trait_declaration_token1] = ACTIONS(1146), + [aux_sym_interface_declaration_token1] = ACTIONS(1146), + [aux_sym_enum_declaration_token1] = ACTIONS(1146), + [aux_sym_enum_case_token1] = ACTIONS(1146), + [aux_sym_class_declaration_token1] = ACTIONS(1146), + [aux_sym_final_modifier_token1] = ACTIONS(1146), + [aux_sym_abstract_modifier_token1] = ACTIONS(1146), + [aux_sym_readonly_modifier_token1] = ACTIONS(1146), + [sym_var_modifier] = ACTIONS(1146), + [aux_sym_visibility_modifier_token1] = ACTIONS(1146), + [aux_sym_visibility_modifier_token2] = ACTIONS(1146), + [aux_sym_visibility_modifier_token3] = ACTIONS(1146), + [aux_sym__arrow_function_header_token1] = ACTIONS(1146), + [anon_sym_LPAREN] = ACTIONS(1144), + [aux_sym_cast_type_token1] = ACTIONS(1146), + [aux_sym_echo_statement_token1] = ACTIONS(1146), + [aux_sym_exit_statement_token1] = ACTIONS(1146), + [anon_sym_unset] = ACTIONS(1146), + [aux_sym_declare_statement_token1] = ACTIONS(1146), + [aux_sym_declare_statement_token2] = ACTIONS(1146), + [sym_float] = ACTIONS(1146), + [aux_sym_try_statement_token1] = ACTIONS(1146), + [aux_sym_goto_statement_token1] = ACTIONS(1146), + [aux_sym_continue_statement_token1] = ACTIONS(1146), + [aux_sym_break_statement_token1] = ACTIONS(1146), + [sym_integer] = ACTIONS(1146), + [aux_sym_return_statement_token1] = ACTIONS(1146), + [aux_sym_throw_expression_token1] = ACTIONS(1146), + [aux_sym_while_statement_token1] = ACTIONS(1146), + [aux_sym_while_statement_token2] = ACTIONS(1146), + [aux_sym_do_statement_token1] = ACTIONS(1146), + [aux_sym_for_statement_token1] = ACTIONS(1146), + [aux_sym_for_statement_token2] = ACTIONS(1146), + [aux_sym_foreach_statement_token1] = ACTIONS(1146), + [aux_sym_foreach_statement_token2] = ACTIONS(1146), + [aux_sym_if_statement_token1] = ACTIONS(1146), + [aux_sym_if_statement_token2] = ACTIONS(1146), + [aux_sym_else_if_clause_token1] = ACTIONS(1146), + [aux_sym_else_clause_token1] = ACTIONS(1146), + [aux_sym_match_expression_token1] = ACTIONS(1146), + [aux_sym_match_default_expression_token1] = ACTIONS(1146), + [aux_sym_switch_statement_token1] = ACTIONS(1146), + [aux_sym_switch_block_token1] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1146), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_AT] = ACTIONS(1144), + [aux_sym_clone_expression_token1] = ACTIONS(1146), + [aux_sym_print_intrinsic_token1] = ACTIONS(1146), + [aux_sym_object_creation_expression_token1] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [aux_sym__list_destructing_token1] = ACTIONS(1146), + [anon_sym_LBRACK] = ACTIONS(1144), + [anon_sym_self] = ACTIONS(1146), + [anon_sym_parent] = ACTIONS(1146), + [aux_sym__argument_name_token1] = ACTIONS(1146), + [aux_sym__argument_name_token2] = ACTIONS(1146), + [anon_sym_POUND_LBRACK] = ACTIONS(1144), + [aux_sym_encapsed_string_token1] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1144), + [aux_sym_string_token1] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [anon_sym_LT_LT_LT] = ACTIONS(1144), + [anon_sym_BQUOTE] = ACTIONS(1144), + [anon_sym_DOLLAR] = ACTIONS(1144), + [aux_sym_yield_expression_token1] = ACTIONS(1146), + [aux_sym_include_expression_token1] = ACTIONS(1146), + [aux_sym_include_once_expression_token1] = ACTIONS(1146), + [aux_sym_require_expression_token1] = ACTIONS(1146), + [aux_sym_require_once_expression_token1] = ACTIONS(1146), + [sym_comment] = ACTIONS(3), }, [455] = { - [ts_builtin_sym_end] = ACTIONS(1147), - [sym_name] = ACTIONS(1149), - [anon_sym_QMARK_GT] = ACTIONS(1147), - [anon_sym_SEMI] = ACTIONS(1151), - [aux_sym_function_static_declaration_token1] = ACTIONS(1149), - [aux_sym_global_declaration_token1] = ACTIONS(1149), - [aux_sym_namespace_definition_token1] = ACTIONS(1149), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1149), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1149), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1149), - [anon_sym_BSLASH] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_RBRACE] = ACTIONS(1147), - [aux_sym_trait_declaration_token1] = ACTIONS(1149), - [aux_sym_interface_declaration_token1] = ACTIONS(1149), - [aux_sym_enum_declaration_token1] = ACTIONS(1149), - [aux_sym_enum_case_token1] = ACTIONS(1149), - [aux_sym_class_declaration_token1] = ACTIONS(1149), - [aux_sym_final_modifier_token1] = ACTIONS(1149), - [aux_sym_abstract_modifier_token1] = ACTIONS(1149), - [aux_sym_readonly_modifier_token1] = ACTIONS(1149), - [aux_sym_visibility_modifier_token1] = ACTIONS(1149), - [aux_sym_visibility_modifier_token2] = ACTIONS(1149), - [aux_sym_visibility_modifier_token3] = ACTIONS(1149), - [aux_sym__arrow_function_header_token1] = ACTIONS(1149), - [anon_sym_LPAREN] = ACTIONS(1147), - [aux_sym_cast_type_token1] = ACTIONS(1149), - [aux_sym_echo_statement_token1] = ACTIONS(1149), - [aux_sym_exit_statement_token1] = ACTIONS(1149), - [anon_sym_unset] = ACTIONS(1149), - [aux_sym_declare_statement_token1] = ACTIONS(1149), - [aux_sym_declare_statement_token2] = ACTIONS(1149), - [sym_float] = ACTIONS(1149), - [aux_sym_try_statement_token1] = ACTIONS(1149), - [aux_sym_goto_statement_token1] = ACTIONS(1149), - [aux_sym_continue_statement_token1] = ACTIONS(1149), - [aux_sym_break_statement_token1] = ACTIONS(1149), - [sym_integer] = ACTIONS(1149), - [aux_sym_return_statement_token1] = ACTIONS(1149), - [aux_sym_throw_expression_token1] = ACTIONS(1149), - [aux_sym_while_statement_token1] = ACTIONS(1149), - [aux_sym_while_statement_token2] = ACTIONS(1149), - [aux_sym_do_statement_token1] = ACTIONS(1149), - [aux_sym_for_statement_token1] = ACTIONS(1149), - [aux_sym_for_statement_token2] = ACTIONS(1149), - [aux_sym_foreach_statement_token1] = ACTIONS(1149), - [aux_sym_foreach_statement_token2] = ACTIONS(1149), - [aux_sym_if_statement_token1] = ACTIONS(1149), - [aux_sym_if_statement_token2] = ACTIONS(1149), - [aux_sym_else_if_clause_token1] = ACTIONS(1149), - [aux_sym_else_clause_token1] = ACTIONS(1149), - [aux_sym_match_expression_token1] = ACTIONS(1149), - [aux_sym_match_default_expression_token1] = ACTIONS(1149), - [aux_sym_switch_statement_token1] = ACTIONS(1149), - [aux_sym_switch_block_token1] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1149), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_BANG] = ACTIONS(1147), - [anon_sym_AT] = ACTIONS(1147), - [aux_sym_clone_expression_token1] = ACTIONS(1149), - [aux_sym_print_intrinsic_token1] = ACTIONS(1149), - [aux_sym_object_creation_expression_token1] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [aux_sym__list_destructing_token1] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1147), - [anon_sym_self] = ACTIONS(1149), - [anon_sym_parent] = ACTIONS(1149), - [aux_sym__argument_name_token1] = ACTIONS(1149), - [aux_sym__argument_name_token2] = ACTIONS(1149), - [anon_sym_POUND_LBRACK] = ACTIONS(1147), - [aux_sym_encapsed_string_token1] = ACTIONS(1147), - [anon_sym_DQUOTE] = ACTIONS(1147), - [aux_sym_string_token1] = ACTIONS(1147), - [anon_sym_SQUOTE] = ACTIONS(1147), - [anon_sym_LT_LT_LT] = ACTIONS(1147), - [anon_sym_BQUOTE] = ACTIONS(1147), - [anon_sym_DOLLAR] = ACTIONS(1147), - [aux_sym_yield_expression_token1] = ACTIONS(1149), - [aux_sym_include_expression_token1] = ACTIONS(1149), - [aux_sym_include_once_expression_token1] = ACTIONS(1149), - [aux_sym_require_expression_token1] = ACTIONS(1149), - [aux_sym_require_once_expression_token1] = ACTIONS(1149), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(1151), + [ts_builtin_sym_end] = ACTIONS(1148), + [sym_name] = ACTIONS(1150), + [anon_sym_QMARK_GT] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1148), + [aux_sym_function_static_declaration_token1] = ACTIONS(1150), + [aux_sym_global_declaration_token1] = ACTIONS(1150), + [aux_sym_namespace_definition_token1] = ACTIONS(1150), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1150), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1150), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1150), + [anon_sym_BSLASH] = ACTIONS(1148), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_RBRACE] = ACTIONS(1148), + [aux_sym_trait_declaration_token1] = ACTIONS(1150), + [aux_sym_interface_declaration_token1] = ACTIONS(1150), + [aux_sym_enum_declaration_token1] = ACTIONS(1150), + [aux_sym_enum_case_token1] = ACTIONS(1150), + [aux_sym_class_declaration_token1] = ACTIONS(1150), + [aux_sym_final_modifier_token1] = ACTIONS(1150), + [aux_sym_abstract_modifier_token1] = ACTIONS(1150), + [aux_sym_readonly_modifier_token1] = ACTIONS(1150), + [sym_var_modifier] = ACTIONS(1150), + [aux_sym_visibility_modifier_token1] = ACTIONS(1150), + [aux_sym_visibility_modifier_token2] = ACTIONS(1150), + [aux_sym_visibility_modifier_token3] = ACTIONS(1150), + [aux_sym__arrow_function_header_token1] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1148), + [aux_sym_cast_type_token1] = ACTIONS(1150), + [aux_sym_echo_statement_token1] = ACTIONS(1150), + [aux_sym_exit_statement_token1] = ACTIONS(1150), + [anon_sym_unset] = ACTIONS(1150), + [aux_sym_declare_statement_token1] = ACTIONS(1150), + [aux_sym_declare_statement_token2] = ACTIONS(1150), + [sym_float] = ACTIONS(1150), + [aux_sym_try_statement_token1] = ACTIONS(1150), + [aux_sym_goto_statement_token1] = ACTIONS(1150), + [aux_sym_continue_statement_token1] = ACTIONS(1150), + [aux_sym_break_statement_token1] = ACTIONS(1150), + [sym_integer] = ACTIONS(1150), + [aux_sym_return_statement_token1] = ACTIONS(1150), + [aux_sym_throw_expression_token1] = ACTIONS(1150), + [aux_sym_while_statement_token1] = ACTIONS(1150), + [aux_sym_while_statement_token2] = ACTIONS(1150), + [aux_sym_do_statement_token1] = ACTIONS(1150), + [aux_sym_for_statement_token1] = ACTIONS(1150), + [aux_sym_for_statement_token2] = ACTIONS(1150), + [aux_sym_foreach_statement_token1] = ACTIONS(1150), + [aux_sym_foreach_statement_token2] = ACTIONS(1150), + [aux_sym_if_statement_token1] = ACTIONS(1150), + [aux_sym_if_statement_token2] = ACTIONS(1150), + [aux_sym_else_if_clause_token1] = ACTIONS(1150), + [aux_sym_else_clause_token1] = ACTIONS(1150), + [aux_sym_match_expression_token1] = ACTIONS(1150), + [aux_sym_match_default_expression_token1] = ACTIONS(1150), + [aux_sym_switch_statement_token1] = ACTIONS(1150), + [aux_sym_switch_block_token1] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1150), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1148), + [aux_sym_clone_expression_token1] = ACTIONS(1150), + [aux_sym_print_intrinsic_token1] = ACTIONS(1150), + [aux_sym_object_creation_expression_token1] = ACTIONS(1150), + [anon_sym_DASH_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [aux_sym__list_destructing_token1] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(1148), + [anon_sym_self] = ACTIONS(1150), + [anon_sym_parent] = ACTIONS(1150), + [aux_sym__argument_name_token1] = ACTIONS(1150), + [aux_sym__argument_name_token2] = ACTIONS(1150), + [anon_sym_POUND_LBRACK] = ACTIONS(1148), + [aux_sym_encapsed_string_token1] = ACTIONS(1148), + [anon_sym_DQUOTE] = ACTIONS(1148), + [aux_sym_string_token1] = ACTIONS(1148), + [anon_sym_SQUOTE] = ACTIONS(1148), + [anon_sym_LT_LT_LT] = ACTIONS(1148), + [anon_sym_BQUOTE] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(1148), + [aux_sym_yield_expression_token1] = ACTIONS(1150), + [aux_sym_include_expression_token1] = ACTIONS(1150), + [aux_sym_include_once_expression_token1] = ACTIONS(1150), + [aux_sym_require_expression_token1] = ACTIONS(1150), + [aux_sym_require_once_expression_token1] = ACTIONS(1150), + [sym_comment] = ACTIONS(3), }, [456] = { - [ts_builtin_sym_end] = ACTIONS(1153), - [sym_name] = ACTIONS(1155), - [anon_sym_QMARK_GT] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1157), - [aux_sym_function_static_declaration_token1] = ACTIONS(1155), - [aux_sym_global_declaration_token1] = ACTIONS(1155), - [aux_sym_namespace_definition_token1] = ACTIONS(1155), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1155), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1155), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1155), - [anon_sym_BSLASH] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_RBRACE] = ACTIONS(1153), - [aux_sym_trait_declaration_token1] = ACTIONS(1155), - [aux_sym_interface_declaration_token1] = ACTIONS(1155), - [aux_sym_enum_declaration_token1] = ACTIONS(1155), - [aux_sym_enum_case_token1] = ACTIONS(1155), - [aux_sym_class_declaration_token1] = ACTIONS(1155), - [aux_sym_final_modifier_token1] = ACTIONS(1155), - [aux_sym_abstract_modifier_token1] = ACTIONS(1155), - [aux_sym_readonly_modifier_token1] = ACTIONS(1155), - [aux_sym_visibility_modifier_token1] = ACTIONS(1155), - [aux_sym_visibility_modifier_token2] = ACTIONS(1155), - [aux_sym_visibility_modifier_token3] = ACTIONS(1155), - [aux_sym__arrow_function_header_token1] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1153), - [aux_sym_cast_type_token1] = ACTIONS(1155), - [aux_sym_echo_statement_token1] = ACTIONS(1155), - [aux_sym_exit_statement_token1] = ACTIONS(1155), - [anon_sym_unset] = ACTIONS(1155), - [aux_sym_declare_statement_token1] = ACTIONS(1155), - [aux_sym_declare_statement_token2] = ACTIONS(1155), - [sym_float] = ACTIONS(1155), - [aux_sym_try_statement_token1] = ACTIONS(1155), - [aux_sym_goto_statement_token1] = ACTIONS(1155), - [aux_sym_continue_statement_token1] = ACTIONS(1155), - [aux_sym_break_statement_token1] = ACTIONS(1155), - [sym_integer] = ACTIONS(1155), - [aux_sym_return_statement_token1] = ACTIONS(1155), - [aux_sym_throw_expression_token1] = ACTIONS(1155), - [aux_sym_while_statement_token1] = ACTIONS(1155), - [aux_sym_while_statement_token2] = ACTIONS(1155), - [aux_sym_do_statement_token1] = ACTIONS(1155), - [aux_sym_for_statement_token1] = ACTIONS(1155), - [aux_sym_for_statement_token2] = ACTIONS(1155), - [aux_sym_foreach_statement_token1] = ACTIONS(1155), - [aux_sym_foreach_statement_token2] = ACTIONS(1155), - [aux_sym_if_statement_token1] = ACTIONS(1155), - [aux_sym_if_statement_token2] = ACTIONS(1155), - [aux_sym_else_if_clause_token1] = ACTIONS(1155), - [aux_sym_else_clause_token1] = ACTIONS(1155), - [aux_sym_match_expression_token1] = ACTIONS(1155), - [aux_sym_match_default_expression_token1] = ACTIONS(1155), - [aux_sym_switch_statement_token1] = ACTIONS(1155), - [aux_sym_switch_block_token1] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1155), - [anon_sym_DASH] = ACTIONS(1155), - [anon_sym_TILDE] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1153), - [anon_sym_AT] = ACTIONS(1153), - [aux_sym_clone_expression_token1] = ACTIONS(1155), - [aux_sym_print_intrinsic_token1] = ACTIONS(1155), - [aux_sym_object_creation_expression_token1] = ACTIONS(1155), - [anon_sym_DASH_DASH] = ACTIONS(1153), - [anon_sym_PLUS_PLUS] = ACTIONS(1153), - [aux_sym__list_destructing_token1] = ACTIONS(1155), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_self] = ACTIONS(1155), - [anon_sym_parent] = ACTIONS(1155), - [aux_sym__argument_name_token1] = ACTIONS(1155), - [aux_sym__argument_name_token2] = ACTIONS(1155), - [anon_sym_POUND_LBRACK] = ACTIONS(1153), - [aux_sym_encapsed_string_token1] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [aux_sym_string_token1] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(1153), - [anon_sym_LT_LT_LT] = ACTIONS(1153), - [anon_sym_BQUOTE] = ACTIONS(1153), - [anon_sym_DOLLAR] = ACTIONS(1153), - [aux_sym_yield_expression_token1] = ACTIONS(1155), - [aux_sym_include_expression_token1] = ACTIONS(1155), - [aux_sym_include_once_expression_token1] = ACTIONS(1155), - [aux_sym_require_expression_token1] = ACTIONS(1155), - [aux_sym_require_once_expression_token1] = ACTIONS(1155), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(1157), + [ts_builtin_sym_end] = ACTIONS(1152), + [sym_name] = ACTIONS(1154), + [anon_sym_QMARK_GT] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1152), + [aux_sym_function_static_declaration_token1] = ACTIONS(1154), + [aux_sym_global_declaration_token1] = ACTIONS(1154), + [aux_sym_namespace_definition_token1] = ACTIONS(1154), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1154), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1154), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1154), + [anon_sym_BSLASH] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_RBRACE] = ACTIONS(1152), + [aux_sym_trait_declaration_token1] = ACTIONS(1154), + [aux_sym_interface_declaration_token1] = ACTIONS(1154), + [aux_sym_enum_declaration_token1] = ACTIONS(1154), + [aux_sym_enum_case_token1] = ACTIONS(1154), + [aux_sym_class_declaration_token1] = ACTIONS(1154), + [aux_sym_final_modifier_token1] = ACTIONS(1154), + [aux_sym_abstract_modifier_token1] = ACTIONS(1154), + [aux_sym_readonly_modifier_token1] = ACTIONS(1154), + [sym_var_modifier] = ACTIONS(1154), + [aux_sym_visibility_modifier_token1] = ACTIONS(1154), + [aux_sym_visibility_modifier_token2] = ACTIONS(1154), + [aux_sym_visibility_modifier_token3] = ACTIONS(1154), + [aux_sym__arrow_function_header_token1] = ACTIONS(1154), + [anon_sym_LPAREN] = ACTIONS(1152), + [aux_sym_cast_type_token1] = ACTIONS(1154), + [aux_sym_echo_statement_token1] = ACTIONS(1154), + [aux_sym_exit_statement_token1] = ACTIONS(1154), + [anon_sym_unset] = ACTIONS(1154), + [aux_sym_declare_statement_token1] = ACTIONS(1154), + [aux_sym_declare_statement_token2] = ACTIONS(1154), + [sym_float] = ACTIONS(1154), + [aux_sym_try_statement_token1] = ACTIONS(1154), + [aux_sym_goto_statement_token1] = ACTIONS(1154), + [aux_sym_continue_statement_token1] = ACTIONS(1154), + [aux_sym_break_statement_token1] = ACTIONS(1154), + [sym_integer] = ACTIONS(1154), + [aux_sym_return_statement_token1] = ACTIONS(1154), + [aux_sym_throw_expression_token1] = ACTIONS(1154), + [aux_sym_while_statement_token1] = ACTIONS(1154), + [aux_sym_while_statement_token2] = ACTIONS(1154), + [aux_sym_do_statement_token1] = ACTIONS(1154), + [aux_sym_for_statement_token1] = ACTIONS(1154), + [aux_sym_for_statement_token2] = ACTIONS(1154), + [aux_sym_foreach_statement_token1] = ACTIONS(1154), + [aux_sym_foreach_statement_token2] = ACTIONS(1154), + [aux_sym_if_statement_token1] = ACTIONS(1154), + [aux_sym_if_statement_token2] = ACTIONS(1154), + [aux_sym_else_if_clause_token1] = ACTIONS(1154), + [aux_sym_else_clause_token1] = ACTIONS(1154), + [aux_sym_match_expression_token1] = ACTIONS(1154), + [aux_sym_match_default_expression_token1] = ACTIONS(1154), + [aux_sym_switch_statement_token1] = ACTIONS(1154), + [aux_sym_switch_block_token1] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_AT] = ACTIONS(1152), + [aux_sym_clone_expression_token1] = ACTIONS(1154), + [aux_sym_print_intrinsic_token1] = ACTIONS(1154), + [aux_sym_object_creation_expression_token1] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [aux_sym__list_destructing_token1] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_self] = ACTIONS(1154), + [anon_sym_parent] = ACTIONS(1154), + [aux_sym__argument_name_token1] = ACTIONS(1154), + [aux_sym__argument_name_token2] = ACTIONS(1154), + [anon_sym_POUND_LBRACK] = ACTIONS(1152), + [aux_sym_encapsed_string_token1] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [aux_sym_string_token1] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_LT_LT_LT] = ACTIONS(1152), + [anon_sym_BQUOTE] = ACTIONS(1152), + [anon_sym_DOLLAR] = ACTIONS(1152), + [aux_sym_yield_expression_token1] = ACTIONS(1154), + [aux_sym_include_expression_token1] = ACTIONS(1154), + [aux_sym_include_once_expression_token1] = ACTIONS(1154), + [aux_sym_require_expression_token1] = ACTIONS(1154), + [aux_sym_require_once_expression_token1] = ACTIONS(1154), + [sym_comment] = ACTIONS(3), }, [457] = { - [ts_builtin_sym_end] = ACTIONS(1039), - [sym_name] = ACTIONS(1041), - [anon_sym_QMARK_GT] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(1039), - [aux_sym_function_static_declaration_token1] = ACTIONS(1041), - [aux_sym_global_declaration_token1] = ACTIONS(1041), - [aux_sym_namespace_definition_token1] = ACTIONS(1041), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1041), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1041), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1041), - [anon_sym_BSLASH] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), - [aux_sym_trait_declaration_token1] = ACTIONS(1041), - [aux_sym_interface_declaration_token1] = ACTIONS(1041), - [aux_sym_enum_declaration_token1] = ACTIONS(1041), - [aux_sym_enum_case_token1] = ACTIONS(1041), - [aux_sym_class_declaration_token1] = ACTIONS(1041), - [aux_sym_final_modifier_token1] = ACTIONS(1041), - [aux_sym_abstract_modifier_token1] = ACTIONS(1041), - [aux_sym_readonly_modifier_token1] = ACTIONS(1041), - [sym_var_modifier] = ACTIONS(1041), - [aux_sym_visibility_modifier_token1] = ACTIONS(1041), - [aux_sym_visibility_modifier_token2] = ACTIONS(1041), - [aux_sym_visibility_modifier_token3] = ACTIONS(1041), - [aux_sym__arrow_function_header_token1] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(1039), - [aux_sym_cast_type_token1] = ACTIONS(1041), - [aux_sym_echo_statement_token1] = ACTIONS(1041), - [aux_sym_exit_statement_token1] = ACTIONS(1041), - [anon_sym_unset] = ACTIONS(1041), - [aux_sym_declare_statement_token1] = ACTIONS(1041), - [aux_sym_declare_statement_token2] = ACTIONS(1041), - [sym_float] = ACTIONS(1041), - [aux_sym_try_statement_token1] = ACTIONS(1041), - [aux_sym_goto_statement_token1] = ACTIONS(1041), - [aux_sym_continue_statement_token1] = ACTIONS(1041), - [aux_sym_break_statement_token1] = ACTIONS(1041), - [sym_integer] = ACTIONS(1041), - [aux_sym_return_statement_token1] = ACTIONS(1041), - [aux_sym_throw_expression_token1] = ACTIONS(1041), - [aux_sym_while_statement_token1] = ACTIONS(1041), - [aux_sym_while_statement_token2] = ACTIONS(1041), - [aux_sym_do_statement_token1] = ACTIONS(1041), - [aux_sym_for_statement_token1] = ACTIONS(1041), - [aux_sym_for_statement_token2] = ACTIONS(1041), - [aux_sym_foreach_statement_token1] = ACTIONS(1041), - [aux_sym_foreach_statement_token2] = ACTIONS(1041), - [aux_sym_if_statement_token1] = ACTIONS(1041), - [aux_sym_if_statement_token2] = ACTIONS(1041), - [aux_sym_else_if_clause_token1] = ACTIONS(1041), - [aux_sym_else_clause_token1] = ACTIONS(1041), - [aux_sym_match_expression_token1] = ACTIONS(1041), - [aux_sym_match_default_expression_token1] = ACTIONS(1041), - [aux_sym_switch_statement_token1] = ACTIONS(1041), - [aux_sym_switch_block_token1] = ACTIONS(1041), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_TILDE] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1039), - [anon_sym_AT] = ACTIONS(1039), - [aux_sym_clone_expression_token1] = ACTIONS(1041), - [aux_sym_print_intrinsic_token1] = ACTIONS(1041), - [aux_sym_object_creation_expression_token1] = ACTIONS(1041), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [aux_sym__list_destructing_token1] = ACTIONS(1041), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_self] = ACTIONS(1041), - [anon_sym_parent] = ACTIONS(1041), - [aux_sym__argument_name_token1] = ACTIONS(1041), - [aux_sym__argument_name_token2] = ACTIONS(1041), - [anon_sym_POUND_LBRACK] = ACTIONS(1039), - [aux_sym_encapsed_string_token1] = ACTIONS(1039), - [anon_sym_DQUOTE] = ACTIONS(1039), - [aux_sym_string_token1] = ACTIONS(1039), - [anon_sym_SQUOTE] = ACTIONS(1039), - [anon_sym_LT_LT_LT] = ACTIONS(1039), - [anon_sym_BQUOTE] = ACTIONS(1039), - [anon_sym_DOLLAR] = ACTIONS(1039), - [aux_sym_yield_expression_token1] = ACTIONS(1041), - [aux_sym_include_expression_token1] = ACTIONS(1041), - [aux_sym_include_once_expression_token1] = ACTIONS(1041), - [aux_sym_require_expression_token1] = ACTIONS(1041), - [aux_sym_require_once_expression_token1] = ACTIONS(1041), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_name] = ACTIONS(1158), + [anon_sym_QMARK_GT] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1156), + [aux_sym_function_static_declaration_token1] = ACTIONS(1158), + [aux_sym_global_declaration_token1] = ACTIONS(1158), + [aux_sym_namespace_definition_token1] = ACTIONS(1158), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1158), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1158), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1158), + [anon_sym_BSLASH] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [aux_sym_trait_declaration_token1] = ACTIONS(1158), + [aux_sym_interface_declaration_token1] = ACTIONS(1158), + [aux_sym_enum_declaration_token1] = ACTIONS(1158), + [aux_sym_enum_case_token1] = ACTIONS(1158), + [aux_sym_class_declaration_token1] = ACTIONS(1158), + [aux_sym_final_modifier_token1] = ACTIONS(1158), + [aux_sym_abstract_modifier_token1] = ACTIONS(1158), + [aux_sym_readonly_modifier_token1] = ACTIONS(1158), + [sym_var_modifier] = ACTIONS(1158), + [aux_sym_visibility_modifier_token1] = ACTIONS(1158), + [aux_sym_visibility_modifier_token2] = ACTIONS(1158), + [aux_sym_visibility_modifier_token3] = ACTIONS(1158), + [aux_sym__arrow_function_header_token1] = ACTIONS(1158), + [anon_sym_LPAREN] = ACTIONS(1156), + [aux_sym_cast_type_token1] = ACTIONS(1158), + [aux_sym_echo_statement_token1] = ACTIONS(1158), + [aux_sym_exit_statement_token1] = ACTIONS(1158), + [anon_sym_unset] = ACTIONS(1158), + [aux_sym_declare_statement_token1] = ACTIONS(1158), + [aux_sym_declare_statement_token2] = ACTIONS(1158), + [sym_float] = ACTIONS(1158), + [aux_sym_try_statement_token1] = ACTIONS(1158), + [aux_sym_goto_statement_token1] = ACTIONS(1158), + [aux_sym_continue_statement_token1] = ACTIONS(1158), + [aux_sym_break_statement_token1] = ACTIONS(1158), + [sym_integer] = ACTIONS(1158), + [aux_sym_return_statement_token1] = ACTIONS(1158), + [aux_sym_throw_expression_token1] = ACTIONS(1158), + [aux_sym_while_statement_token1] = ACTIONS(1158), + [aux_sym_while_statement_token2] = ACTIONS(1158), + [aux_sym_do_statement_token1] = ACTIONS(1158), + [aux_sym_for_statement_token1] = ACTIONS(1158), + [aux_sym_for_statement_token2] = ACTIONS(1158), + [aux_sym_foreach_statement_token1] = ACTIONS(1158), + [aux_sym_foreach_statement_token2] = ACTIONS(1158), + [aux_sym_if_statement_token1] = ACTIONS(1158), + [aux_sym_if_statement_token2] = ACTIONS(1158), + [aux_sym_else_if_clause_token1] = ACTIONS(1158), + [aux_sym_else_clause_token1] = ACTIONS(1158), + [aux_sym_match_expression_token1] = ACTIONS(1158), + [aux_sym_match_default_expression_token1] = ACTIONS(1158), + [aux_sym_switch_statement_token1] = ACTIONS(1158), + [aux_sym_switch_block_token1] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_AT] = ACTIONS(1156), + [aux_sym_clone_expression_token1] = ACTIONS(1158), + [aux_sym_print_intrinsic_token1] = ACTIONS(1158), + [aux_sym_object_creation_expression_token1] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [aux_sym__list_destructing_token1] = ACTIONS(1158), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_self] = ACTIONS(1158), + [anon_sym_parent] = ACTIONS(1158), + [aux_sym__argument_name_token1] = ACTIONS(1158), + [aux_sym__argument_name_token2] = ACTIONS(1158), + [anon_sym_POUND_LBRACK] = ACTIONS(1156), + [aux_sym_encapsed_string_token1] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [aux_sym_string_token1] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_LT_LT_LT] = ACTIONS(1156), + [anon_sym_BQUOTE] = ACTIONS(1156), + [anon_sym_DOLLAR] = ACTIONS(1156), + [aux_sym_yield_expression_token1] = ACTIONS(1158), + [aux_sym_include_expression_token1] = ACTIONS(1158), + [aux_sym_include_once_expression_token1] = ACTIONS(1158), + [aux_sym_require_expression_token1] = ACTIONS(1158), + [aux_sym_require_once_expression_token1] = ACTIONS(1158), [sym_comment] = ACTIONS(3), }, [458] = { - [ts_builtin_sym_end] = ACTIONS(1159), - [sym_name] = ACTIONS(1161), - [anon_sym_QMARK_GT] = ACTIONS(1159), - [anon_sym_SEMI] = ACTIONS(1163), - [aux_sym_function_static_declaration_token1] = ACTIONS(1161), - [aux_sym_global_declaration_token1] = ACTIONS(1161), - [aux_sym_namespace_definition_token1] = ACTIONS(1161), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1161), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1161), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1161), - [anon_sym_BSLASH] = ACTIONS(1159), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_RBRACE] = ACTIONS(1159), - [aux_sym_trait_declaration_token1] = ACTIONS(1161), - [aux_sym_interface_declaration_token1] = ACTIONS(1161), - [aux_sym_enum_declaration_token1] = ACTIONS(1161), - [aux_sym_enum_case_token1] = ACTIONS(1161), - [aux_sym_class_declaration_token1] = ACTIONS(1161), - [aux_sym_final_modifier_token1] = ACTIONS(1161), - [aux_sym_abstract_modifier_token1] = ACTIONS(1161), - [aux_sym_readonly_modifier_token1] = ACTIONS(1161), - [aux_sym_visibility_modifier_token1] = ACTIONS(1161), - [aux_sym_visibility_modifier_token2] = ACTIONS(1161), - [aux_sym_visibility_modifier_token3] = ACTIONS(1161), - [aux_sym__arrow_function_header_token1] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1159), - [aux_sym_cast_type_token1] = ACTIONS(1161), - [aux_sym_echo_statement_token1] = ACTIONS(1161), - [aux_sym_exit_statement_token1] = ACTIONS(1161), - [anon_sym_unset] = ACTIONS(1161), - [aux_sym_declare_statement_token1] = ACTIONS(1161), - [aux_sym_declare_statement_token2] = ACTIONS(1161), - [sym_float] = ACTIONS(1161), - [aux_sym_try_statement_token1] = ACTIONS(1161), - [aux_sym_goto_statement_token1] = ACTIONS(1161), - [aux_sym_continue_statement_token1] = ACTIONS(1161), - [aux_sym_break_statement_token1] = ACTIONS(1161), - [sym_integer] = ACTIONS(1161), - [aux_sym_return_statement_token1] = ACTIONS(1161), - [aux_sym_throw_expression_token1] = ACTIONS(1161), - [aux_sym_while_statement_token1] = ACTIONS(1161), - [aux_sym_while_statement_token2] = ACTIONS(1161), - [aux_sym_do_statement_token1] = ACTIONS(1161), - [aux_sym_for_statement_token1] = ACTIONS(1161), - [aux_sym_for_statement_token2] = ACTIONS(1161), - [aux_sym_foreach_statement_token1] = ACTIONS(1161), - [aux_sym_foreach_statement_token2] = ACTIONS(1161), - [aux_sym_if_statement_token1] = ACTIONS(1161), - [aux_sym_if_statement_token2] = ACTIONS(1161), - [aux_sym_else_if_clause_token1] = ACTIONS(1161), - [aux_sym_else_clause_token1] = ACTIONS(1161), - [aux_sym_match_expression_token1] = ACTIONS(1161), - [aux_sym_match_default_expression_token1] = ACTIONS(1161), - [aux_sym_switch_statement_token1] = ACTIONS(1161), - [aux_sym_switch_block_token1] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_AT] = ACTIONS(1159), - [aux_sym_clone_expression_token1] = ACTIONS(1161), - [aux_sym_print_intrinsic_token1] = ACTIONS(1161), - [aux_sym_object_creation_expression_token1] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [aux_sym__list_destructing_token1] = ACTIONS(1161), - [anon_sym_LBRACK] = ACTIONS(1159), - [anon_sym_self] = ACTIONS(1161), - [anon_sym_parent] = ACTIONS(1161), - [aux_sym__argument_name_token1] = ACTIONS(1161), - [aux_sym__argument_name_token2] = ACTIONS(1161), - [anon_sym_POUND_LBRACK] = ACTIONS(1159), - [aux_sym_encapsed_string_token1] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1159), - [aux_sym_string_token1] = ACTIONS(1159), - [anon_sym_SQUOTE] = ACTIONS(1159), - [anon_sym_LT_LT_LT] = ACTIONS(1159), - [anon_sym_BQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1159), - [aux_sym_yield_expression_token1] = ACTIONS(1161), - [aux_sym_include_expression_token1] = ACTIONS(1161), - [aux_sym_include_once_expression_token1] = ACTIONS(1161), - [aux_sym_require_expression_token1] = ACTIONS(1161), - [aux_sym_require_once_expression_token1] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(1163), + [ts_builtin_sym_end] = ACTIONS(1160), + [sym_name] = ACTIONS(1162), + [anon_sym_QMARK_GT] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1160), + [aux_sym_function_static_declaration_token1] = ACTIONS(1162), + [aux_sym_global_declaration_token1] = ACTIONS(1162), + [aux_sym_namespace_definition_token1] = ACTIONS(1162), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1162), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1162), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1162), + [anon_sym_BSLASH] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_RBRACE] = ACTIONS(1160), + [aux_sym_trait_declaration_token1] = ACTIONS(1162), + [aux_sym_interface_declaration_token1] = ACTIONS(1162), + [aux_sym_enum_declaration_token1] = ACTIONS(1162), + [aux_sym_enum_case_token1] = ACTIONS(1162), + [aux_sym_class_declaration_token1] = ACTIONS(1162), + [aux_sym_final_modifier_token1] = ACTIONS(1162), + [aux_sym_abstract_modifier_token1] = ACTIONS(1162), + [aux_sym_readonly_modifier_token1] = ACTIONS(1162), + [sym_var_modifier] = ACTIONS(1162), + [aux_sym_visibility_modifier_token1] = ACTIONS(1162), + [aux_sym_visibility_modifier_token2] = ACTIONS(1162), + [aux_sym_visibility_modifier_token3] = ACTIONS(1162), + [aux_sym__arrow_function_header_token1] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1160), + [aux_sym_cast_type_token1] = ACTIONS(1162), + [aux_sym_echo_statement_token1] = ACTIONS(1162), + [aux_sym_exit_statement_token1] = ACTIONS(1162), + [anon_sym_unset] = ACTIONS(1162), + [aux_sym_declare_statement_token1] = ACTIONS(1162), + [aux_sym_declare_statement_token2] = ACTIONS(1162), + [sym_float] = ACTIONS(1162), + [aux_sym_try_statement_token1] = ACTIONS(1162), + [aux_sym_goto_statement_token1] = ACTIONS(1162), + [aux_sym_continue_statement_token1] = ACTIONS(1162), + [aux_sym_break_statement_token1] = ACTIONS(1162), + [sym_integer] = ACTIONS(1162), + [aux_sym_return_statement_token1] = ACTIONS(1162), + [aux_sym_throw_expression_token1] = ACTIONS(1162), + [aux_sym_while_statement_token1] = ACTIONS(1162), + [aux_sym_while_statement_token2] = ACTIONS(1162), + [aux_sym_do_statement_token1] = ACTIONS(1162), + [aux_sym_for_statement_token1] = ACTIONS(1162), + [aux_sym_for_statement_token2] = ACTIONS(1162), + [aux_sym_foreach_statement_token1] = ACTIONS(1162), + [aux_sym_foreach_statement_token2] = ACTIONS(1162), + [aux_sym_if_statement_token1] = ACTIONS(1162), + [aux_sym_if_statement_token2] = ACTIONS(1162), + [aux_sym_else_if_clause_token1] = ACTIONS(1162), + [aux_sym_else_clause_token1] = ACTIONS(1162), + [aux_sym_match_expression_token1] = ACTIONS(1162), + [aux_sym_match_default_expression_token1] = ACTIONS(1162), + [aux_sym_switch_statement_token1] = ACTIONS(1162), + [aux_sym_switch_block_token1] = ACTIONS(1162), + [anon_sym_PLUS] = ACTIONS(1162), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_AT] = ACTIONS(1160), + [aux_sym_clone_expression_token1] = ACTIONS(1162), + [aux_sym_print_intrinsic_token1] = ACTIONS(1162), + [aux_sym_object_creation_expression_token1] = ACTIONS(1162), + [anon_sym_DASH_DASH] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [aux_sym__list_destructing_token1] = ACTIONS(1162), + [anon_sym_LBRACK] = ACTIONS(1160), + [anon_sym_self] = ACTIONS(1162), + [anon_sym_parent] = ACTIONS(1162), + [aux_sym__argument_name_token1] = ACTIONS(1162), + [aux_sym__argument_name_token2] = ACTIONS(1162), + [anon_sym_POUND_LBRACK] = ACTIONS(1160), + [aux_sym_encapsed_string_token1] = ACTIONS(1160), + [anon_sym_DQUOTE] = ACTIONS(1160), + [aux_sym_string_token1] = ACTIONS(1160), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_LT_LT_LT] = ACTIONS(1160), + [anon_sym_BQUOTE] = ACTIONS(1160), + [anon_sym_DOLLAR] = ACTIONS(1160), + [aux_sym_yield_expression_token1] = ACTIONS(1162), + [aux_sym_include_expression_token1] = ACTIONS(1162), + [aux_sym_include_once_expression_token1] = ACTIONS(1162), + [aux_sym_require_expression_token1] = ACTIONS(1162), + [aux_sym_require_once_expression_token1] = ACTIONS(1162), + [sym_comment] = ACTIONS(3), }, [459] = { - [ts_builtin_sym_end] = ACTIONS(1165), - [sym_name] = ACTIONS(1167), - [anon_sym_QMARK_GT] = ACTIONS(1165), - [anon_sym_SEMI] = ACTIONS(1169), - [aux_sym_function_static_declaration_token1] = ACTIONS(1167), - [aux_sym_global_declaration_token1] = ACTIONS(1167), - [aux_sym_namespace_definition_token1] = ACTIONS(1167), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1167), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1167), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1167), - [anon_sym_BSLASH] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_RBRACE] = ACTIONS(1165), - [aux_sym_trait_declaration_token1] = ACTIONS(1167), - [aux_sym_interface_declaration_token1] = ACTIONS(1167), - [aux_sym_enum_declaration_token1] = ACTIONS(1167), - [aux_sym_enum_case_token1] = ACTIONS(1167), - [aux_sym_class_declaration_token1] = ACTIONS(1167), - [aux_sym_final_modifier_token1] = ACTIONS(1167), - [aux_sym_abstract_modifier_token1] = ACTIONS(1167), - [aux_sym_readonly_modifier_token1] = ACTIONS(1167), - [aux_sym_visibility_modifier_token1] = ACTIONS(1167), - [aux_sym_visibility_modifier_token2] = ACTIONS(1167), - [aux_sym_visibility_modifier_token3] = ACTIONS(1167), - [aux_sym__arrow_function_header_token1] = ACTIONS(1167), - [anon_sym_LPAREN] = ACTIONS(1165), - [aux_sym_cast_type_token1] = ACTIONS(1167), - [aux_sym_echo_statement_token1] = ACTIONS(1167), - [aux_sym_exit_statement_token1] = ACTIONS(1167), - [anon_sym_unset] = ACTIONS(1167), - [aux_sym_declare_statement_token1] = ACTIONS(1167), - [aux_sym_declare_statement_token2] = ACTIONS(1167), - [sym_float] = ACTIONS(1167), - [aux_sym_try_statement_token1] = ACTIONS(1167), - [aux_sym_goto_statement_token1] = ACTIONS(1167), - [aux_sym_continue_statement_token1] = ACTIONS(1167), - [aux_sym_break_statement_token1] = ACTIONS(1167), - [sym_integer] = ACTIONS(1167), - [aux_sym_return_statement_token1] = ACTIONS(1167), - [aux_sym_throw_expression_token1] = ACTIONS(1167), - [aux_sym_while_statement_token1] = ACTIONS(1167), - [aux_sym_while_statement_token2] = ACTIONS(1167), - [aux_sym_do_statement_token1] = ACTIONS(1167), - [aux_sym_for_statement_token1] = ACTIONS(1167), - [aux_sym_for_statement_token2] = ACTIONS(1167), - [aux_sym_foreach_statement_token1] = ACTIONS(1167), - [aux_sym_foreach_statement_token2] = ACTIONS(1167), - [aux_sym_if_statement_token1] = ACTIONS(1167), - [aux_sym_if_statement_token2] = ACTIONS(1167), - [aux_sym_else_if_clause_token1] = ACTIONS(1167), - [aux_sym_else_clause_token1] = ACTIONS(1167), - [aux_sym_match_expression_token1] = ACTIONS(1167), - [aux_sym_match_default_expression_token1] = ACTIONS(1167), - [aux_sym_switch_statement_token1] = ACTIONS(1167), - [aux_sym_switch_block_token1] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1165), - [anon_sym_BANG] = ACTIONS(1165), - [anon_sym_AT] = ACTIONS(1165), - [aux_sym_clone_expression_token1] = ACTIONS(1167), - [aux_sym_print_intrinsic_token1] = ACTIONS(1167), - [aux_sym_object_creation_expression_token1] = ACTIONS(1167), - [anon_sym_DASH_DASH] = ACTIONS(1165), - [anon_sym_PLUS_PLUS] = ACTIONS(1165), - [aux_sym__list_destructing_token1] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_self] = ACTIONS(1167), - [anon_sym_parent] = ACTIONS(1167), - [aux_sym__argument_name_token1] = ACTIONS(1167), - [aux_sym__argument_name_token2] = ACTIONS(1167), - [anon_sym_POUND_LBRACK] = ACTIONS(1165), - [aux_sym_encapsed_string_token1] = ACTIONS(1165), - [anon_sym_DQUOTE] = ACTIONS(1165), - [aux_sym_string_token1] = ACTIONS(1165), - [anon_sym_SQUOTE] = ACTIONS(1165), - [anon_sym_LT_LT_LT] = ACTIONS(1165), - [anon_sym_BQUOTE] = ACTIONS(1165), - [anon_sym_DOLLAR] = ACTIONS(1165), - [aux_sym_yield_expression_token1] = ACTIONS(1167), - [aux_sym_include_expression_token1] = ACTIONS(1167), - [aux_sym_include_once_expression_token1] = ACTIONS(1167), - [aux_sym_require_expression_token1] = ACTIONS(1167), - [aux_sym_require_once_expression_token1] = ACTIONS(1167), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(1169), + [ts_builtin_sym_end] = ACTIONS(1164), + [sym_name] = ACTIONS(1166), + [anon_sym_QMARK_GT] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1164), + [aux_sym_function_static_declaration_token1] = ACTIONS(1166), + [aux_sym_global_declaration_token1] = ACTIONS(1166), + [aux_sym_namespace_definition_token1] = ACTIONS(1166), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1166), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1166), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1166), + [anon_sym_BSLASH] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1164), + [aux_sym_trait_declaration_token1] = ACTIONS(1166), + [aux_sym_interface_declaration_token1] = ACTIONS(1166), + [aux_sym_enum_declaration_token1] = ACTIONS(1166), + [aux_sym_enum_case_token1] = ACTIONS(1166), + [aux_sym_class_declaration_token1] = ACTIONS(1166), + [aux_sym_final_modifier_token1] = ACTIONS(1166), + [aux_sym_abstract_modifier_token1] = ACTIONS(1166), + [aux_sym_readonly_modifier_token1] = ACTIONS(1166), + [sym_var_modifier] = ACTIONS(1166), + [aux_sym_visibility_modifier_token1] = ACTIONS(1166), + [aux_sym_visibility_modifier_token2] = ACTIONS(1166), + [aux_sym_visibility_modifier_token3] = ACTIONS(1166), + [aux_sym__arrow_function_header_token1] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1164), + [aux_sym_cast_type_token1] = ACTIONS(1166), + [aux_sym_echo_statement_token1] = ACTIONS(1166), + [aux_sym_exit_statement_token1] = ACTIONS(1166), + [anon_sym_unset] = ACTIONS(1166), + [aux_sym_declare_statement_token1] = ACTIONS(1166), + [aux_sym_declare_statement_token2] = ACTIONS(1166), + [sym_float] = ACTIONS(1166), + [aux_sym_try_statement_token1] = ACTIONS(1166), + [aux_sym_goto_statement_token1] = ACTIONS(1166), + [aux_sym_continue_statement_token1] = ACTIONS(1166), + [aux_sym_break_statement_token1] = ACTIONS(1166), + [sym_integer] = ACTIONS(1166), + [aux_sym_return_statement_token1] = ACTIONS(1166), + [aux_sym_throw_expression_token1] = ACTIONS(1166), + [aux_sym_while_statement_token1] = ACTIONS(1166), + [aux_sym_while_statement_token2] = ACTIONS(1166), + [aux_sym_do_statement_token1] = ACTIONS(1166), + [aux_sym_for_statement_token1] = ACTIONS(1166), + [aux_sym_for_statement_token2] = ACTIONS(1166), + [aux_sym_foreach_statement_token1] = ACTIONS(1166), + [aux_sym_foreach_statement_token2] = ACTIONS(1166), + [aux_sym_if_statement_token1] = ACTIONS(1166), + [aux_sym_if_statement_token2] = ACTIONS(1166), + [aux_sym_else_if_clause_token1] = ACTIONS(1166), + [aux_sym_else_clause_token1] = ACTIONS(1166), + [aux_sym_match_expression_token1] = ACTIONS(1166), + [aux_sym_match_default_expression_token1] = ACTIONS(1166), + [aux_sym_switch_statement_token1] = ACTIONS(1166), + [aux_sym_switch_block_token1] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_AT] = ACTIONS(1164), + [aux_sym_clone_expression_token1] = ACTIONS(1166), + [aux_sym_print_intrinsic_token1] = ACTIONS(1166), + [aux_sym_object_creation_expression_token1] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [aux_sym__list_destructing_token1] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1164), + [anon_sym_self] = ACTIONS(1166), + [anon_sym_parent] = ACTIONS(1166), + [aux_sym__argument_name_token1] = ACTIONS(1166), + [aux_sym__argument_name_token2] = ACTIONS(1166), + [anon_sym_POUND_LBRACK] = ACTIONS(1164), + [aux_sym_encapsed_string_token1] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [aux_sym_string_token1] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_LT_LT_LT] = ACTIONS(1164), + [anon_sym_BQUOTE] = ACTIONS(1164), + [anon_sym_DOLLAR] = ACTIONS(1164), + [aux_sym_yield_expression_token1] = ACTIONS(1166), + [aux_sym_include_expression_token1] = ACTIONS(1166), + [aux_sym_include_once_expression_token1] = ACTIONS(1166), + [aux_sym_require_expression_token1] = ACTIONS(1166), + [aux_sym_require_once_expression_token1] = ACTIONS(1166), + [sym_comment] = ACTIONS(3), }, [460] = { - [ts_builtin_sym_end] = ACTIONS(1171), - [sym_name] = ACTIONS(1173), - [anon_sym_QMARK_GT] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(1175), - [aux_sym_function_static_declaration_token1] = ACTIONS(1173), - [aux_sym_global_declaration_token1] = ACTIONS(1173), - [aux_sym_namespace_definition_token1] = ACTIONS(1173), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1173), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1173), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1173), - [anon_sym_BSLASH] = ACTIONS(1171), - [anon_sym_LBRACE] = ACTIONS(1171), - [anon_sym_RBRACE] = ACTIONS(1171), - [aux_sym_trait_declaration_token1] = ACTIONS(1173), - [aux_sym_interface_declaration_token1] = ACTIONS(1173), - [aux_sym_enum_declaration_token1] = ACTIONS(1173), - [aux_sym_enum_case_token1] = ACTIONS(1173), - [aux_sym_class_declaration_token1] = ACTIONS(1173), - [aux_sym_final_modifier_token1] = ACTIONS(1173), - [aux_sym_abstract_modifier_token1] = ACTIONS(1173), - [aux_sym_readonly_modifier_token1] = ACTIONS(1173), - [aux_sym_visibility_modifier_token1] = ACTIONS(1173), - [aux_sym_visibility_modifier_token2] = ACTIONS(1173), - [aux_sym_visibility_modifier_token3] = ACTIONS(1173), - [aux_sym__arrow_function_header_token1] = ACTIONS(1173), - [anon_sym_LPAREN] = ACTIONS(1171), - [aux_sym_cast_type_token1] = ACTIONS(1173), - [aux_sym_echo_statement_token1] = ACTIONS(1173), - [aux_sym_exit_statement_token1] = ACTIONS(1173), - [anon_sym_unset] = ACTIONS(1173), - [aux_sym_declare_statement_token1] = ACTIONS(1173), - [aux_sym_declare_statement_token2] = ACTIONS(1173), - [sym_float] = ACTIONS(1173), - [aux_sym_try_statement_token1] = ACTIONS(1173), - [aux_sym_goto_statement_token1] = ACTIONS(1173), - [aux_sym_continue_statement_token1] = ACTIONS(1173), - [aux_sym_break_statement_token1] = ACTIONS(1173), - [sym_integer] = ACTIONS(1173), - [aux_sym_return_statement_token1] = ACTIONS(1173), - [aux_sym_throw_expression_token1] = ACTIONS(1173), - [aux_sym_while_statement_token1] = ACTIONS(1173), - [aux_sym_while_statement_token2] = ACTIONS(1173), - [aux_sym_do_statement_token1] = ACTIONS(1173), - [aux_sym_for_statement_token1] = ACTIONS(1173), - [aux_sym_for_statement_token2] = ACTIONS(1173), - [aux_sym_foreach_statement_token1] = ACTIONS(1173), - [aux_sym_foreach_statement_token2] = ACTIONS(1173), - [aux_sym_if_statement_token1] = ACTIONS(1173), - [aux_sym_if_statement_token2] = ACTIONS(1173), - [aux_sym_else_if_clause_token1] = ACTIONS(1173), - [aux_sym_else_clause_token1] = ACTIONS(1173), - [aux_sym_match_expression_token1] = ACTIONS(1173), - [aux_sym_match_default_expression_token1] = ACTIONS(1173), - [aux_sym_switch_statement_token1] = ACTIONS(1173), - [aux_sym_switch_block_token1] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1173), - [anon_sym_DASH] = ACTIONS(1173), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_AT] = ACTIONS(1171), - [aux_sym_clone_expression_token1] = ACTIONS(1173), - [aux_sym_print_intrinsic_token1] = ACTIONS(1173), - [aux_sym_object_creation_expression_token1] = ACTIONS(1173), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [aux_sym__list_destructing_token1] = ACTIONS(1173), - [anon_sym_LBRACK] = ACTIONS(1171), - [anon_sym_self] = ACTIONS(1173), - [anon_sym_parent] = ACTIONS(1173), - [aux_sym__argument_name_token1] = ACTIONS(1173), - [aux_sym__argument_name_token2] = ACTIONS(1173), - [anon_sym_POUND_LBRACK] = ACTIONS(1171), - [aux_sym_encapsed_string_token1] = ACTIONS(1171), - [anon_sym_DQUOTE] = ACTIONS(1171), - [aux_sym_string_token1] = ACTIONS(1171), - [anon_sym_SQUOTE] = ACTIONS(1171), - [anon_sym_LT_LT_LT] = ACTIONS(1171), - [anon_sym_BQUOTE] = ACTIONS(1171), - [anon_sym_DOLLAR] = ACTIONS(1171), - [aux_sym_yield_expression_token1] = ACTIONS(1173), - [aux_sym_include_expression_token1] = ACTIONS(1173), - [aux_sym_include_once_expression_token1] = ACTIONS(1173), - [aux_sym_require_expression_token1] = ACTIONS(1173), - [aux_sym_require_once_expression_token1] = ACTIONS(1173), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(1175), + [ts_builtin_sym_end] = ACTIONS(1168), + [sym_name] = ACTIONS(1170), + [anon_sym_QMARK_GT] = ACTIONS(1168), + [anon_sym_SEMI] = ACTIONS(1168), + [aux_sym_function_static_declaration_token1] = ACTIONS(1170), + [aux_sym_global_declaration_token1] = ACTIONS(1170), + [aux_sym_namespace_definition_token1] = ACTIONS(1170), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1170), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1170), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1170), + [anon_sym_BSLASH] = ACTIONS(1168), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_RBRACE] = ACTIONS(1168), + [aux_sym_trait_declaration_token1] = ACTIONS(1170), + [aux_sym_interface_declaration_token1] = ACTIONS(1170), + [aux_sym_enum_declaration_token1] = ACTIONS(1170), + [aux_sym_enum_case_token1] = ACTIONS(1170), + [aux_sym_class_declaration_token1] = ACTIONS(1170), + [aux_sym_final_modifier_token1] = ACTIONS(1170), + [aux_sym_abstract_modifier_token1] = ACTIONS(1170), + [aux_sym_readonly_modifier_token1] = ACTIONS(1170), + [sym_var_modifier] = ACTIONS(1170), + [aux_sym_visibility_modifier_token1] = ACTIONS(1170), + [aux_sym_visibility_modifier_token2] = ACTIONS(1170), + [aux_sym_visibility_modifier_token3] = ACTIONS(1170), + [aux_sym__arrow_function_header_token1] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1168), + [aux_sym_cast_type_token1] = ACTIONS(1170), + [aux_sym_echo_statement_token1] = ACTIONS(1170), + [aux_sym_exit_statement_token1] = ACTIONS(1170), + [anon_sym_unset] = ACTIONS(1170), + [aux_sym_declare_statement_token1] = ACTIONS(1170), + [aux_sym_declare_statement_token2] = ACTIONS(1170), + [sym_float] = ACTIONS(1170), + [aux_sym_try_statement_token1] = ACTIONS(1170), + [aux_sym_goto_statement_token1] = ACTIONS(1170), + [aux_sym_continue_statement_token1] = ACTIONS(1170), + [aux_sym_break_statement_token1] = ACTIONS(1170), + [sym_integer] = ACTIONS(1170), + [aux_sym_return_statement_token1] = ACTIONS(1170), + [aux_sym_throw_expression_token1] = ACTIONS(1170), + [aux_sym_while_statement_token1] = ACTIONS(1170), + [aux_sym_while_statement_token2] = ACTIONS(1170), + [aux_sym_do_statement_token1] = ACTIONS(1170), + [aux_sym_for_statement_token1] = ACTIONS(1170), + [aux_sym_for_statement_token2] = ACTIONS(1170), + [aux_sym_foreach_statement_token1] = ACTIONS(1170), + [aux_sym_foreach_statement_token2] = ACTIONS(1170), + [aux_sym_if_statement_token1] = ACTIONS(1170), + [aux_sym_if_statement_token2] = ACTIONS(1170), + [aux_sym_else_if_clause_token1] = ACTIONS(1170), + [aux_sym_else_clause_token1] = ACTIONS(1170), + [aux_sym_match_expression_token1] = ACTIONS(1170), + [aux_sym_match_default_expression_token1] = ACTIONS(1170), + [aux_sym_switch_statement_token1] = ACTIONS(1170), + [aux_sym_switch_block_token1] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_TILDE] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_AT] = ACTIONS(1168), + [aux_sym_clone_expression_token1] = ACTIONS(1170), + [aux_sym_print_intrinsic_token1] = ACTIONS(1170), + [aux_sym_object_creation_expression_token1] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [aux_sym__list_destructing_token1] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_self] = ACTIONS(1170), + [anon_sym_parent] = ACTIONS(1170), + [aux_sym__argument_name_token1] = ACTIONS(1170), + [aux_sym__argument_name_token2] = ACTIONS(1170), + [anon_sym_POUND_LBRACK] = ACTIONS(1168), + [aux_sym_encapsed_string_token1] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1168), + [aux_sym_string_token1] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_LT_LT_LT] = ACTIONS(1168), + [anon_sym_BQUOTE] = ACTIONS(1168), + [anon_sym_DOLLAR] = ACTIONS(1168), + [aux_sym_yield_expression_token1] = ACTIONS(1170), + [aux_sym_include_expression_token1] = ACTIONS(1170), + [aux_sym_include_once_expression_token1] = ACTIONS(1170), + [aux_sym_require_expression_token1] = ACTIONS(1170), + [aux_sym_require_once_expression_token1] = ACTIONS(1170), + [sym_comment] = ACTIONS(3), }, [461] = { - [ts_builtin_sym_end] = ACTIONS(1177), - [sym_name] = ACTIONS(1179), - [anon_sym_QMARK_GT] = ACTIONS(1177), - [anon_sym_SEMI] = ACTIONS(1177), - [aux_sym_function_static_declaration_token1] = ACTIONS(1179), - [aux_sym_global_declaration_token1] = ACTIONS(1179), - [aux_sym_namespace_definition_token1] = ACTIONS(1179), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1179), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1179), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1179), - [anon_sym_BSLASH] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(1177), - [aux_sym_trait_declaration_token1] = ACTIONS(1179), - [aux_sym_interface_declaration_token1] = ACTIONS(1179), - [aux_sym_enum_declaration_token1] = ACTIONS(1179), - [aux_sym_enum_case_token1] = ACTIONS(1179), - [aux_sym_class_declaration_token1] = ACTIONS(1179), - [aux_sym_final_modifier_token1] = ACTIONS(1179), - [aux_sym_abstract_modifier_token1] = ACTIONS(1179), - [aux_sym_readonly_modifier_token1] = ACTIONS(1179), - [aux_sym_visibility_modifier_token1] = ACTIONS(1179), - [aux_sym_visibility_modifier_token2] = ACTIONS(1179), - [aux_sym_visibility_modifier_token3] = ACTIONS(1179), - [aux_sym__arrow_function_header_token1] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1177), - [aux_sym_cast_type_token1] = ACTIONS(1179), - [aux_sym_echo_statement_token1] = ACTIONS(1179), - [aux_sym_exit_statement_token1] = ACTIONS(1179), - [anon_sym_unset] = ACTIONS(1179), - [aux_sym_declare_statement_token1] = ACTIONS(1179), - [aux_sym_declare_statement_token2] = ACTIONS(1179), - [sym_float] = ACTIONS(1179), - [aux_sym_try_statement_token1] = ACTIONS(1179), - [aux_sym_goto_statement_token1] = ACTIONS(1179), - [aux_sym_continue_statement_token1] = ACTIONS(1179), - [aux_sym_break_statement_token1] = ACTIONS(1179), - [sym_integer] = ACTIONS(1179), - [aux_sym_return_statement_token1] = ACTIONS(1179), - [aux_sym_throw_expression_token1] = ACTIONS(1179), - [aux_sym_while_statement_token1] = ACTIONS(1179), - [aux_sym_while_statement_token2] = ACTIONS(1179), - [aux_sym_do_statement_token1] = ACTIONS(1179), - [aux_sym_for_statement_token1] = ACTIONS(1179), - [aux_sym_for_statement_token2] = ACTIONS(1179), - [aux_sym_foreach_statement_token1] = ACTIONS(1179), - [aux_sym_foreach_statement_token2] = ACTIONS(1179), - [aux_sym_if_statement_token1] = ACTIONS(1179), - [aux_sym_if_statement_token2] = ACTIONS(1179), - [aux_sym_else_if_clause_token1] = ACTIONS(1179), - [aux_sym_else_clause_token1] = ACTIONS(1179), - [aux_sym_match_expression_token1] = ACTIONS(1179), - [aux_sym_match_default_expression_token1] = ACTIONS(1179), - [aux_sym_switch_statement_token1] = ACTIONS(1179), - [aux_sym_switch_block_token1] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1179), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1177), - [anon_sym_AT] = ACTIONS(1177), - [aux_sym_clone_expression_token1] = ACTIONS(1179), - [aux_sym_print_intrinsic_token1] = ACTIONS(1179), - [aux_sym_object_creation_expression_token1] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1177), - [anon_sym_PLUS_PLUS] = ACTIONS(1177), - [aux_sym__list_destructing_token1] = ACTIONS(1179), - [anon_sym_LBRACK] = ACTIONS(1177), - [anon_sym_self] = ACTIONS(1179), - [anon_sym_parent] = ACTIONS(1179), - [aux_sym__argument_name_token1] = ACTIONS(1179), - [aux_sym__argument_name_token2] = ACTIONS(1179), - [anon_sym_POUND_LBRACK] = ACTIONS(1177), - [aux_sym_encapsed_string_token1] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1177), - [aux_sym_string_token1] = ACTIONS(1177), - [anon_sym_SQUOTE] = ACTIONS(1177), - [anon_sym_LT_LT_LT] = ACTIONS(1177), - [anon_sym_BQUOTE] = ACTIONS(1177), - [anon_sym_DOLLAR] = ACTIONS(1177), - [aux_sym_yield_expression_token1] = ACTIONS(1179), - [aux_sym_include_expression_token1] = ACTIONS(1179), - [aux_sym_include_once_expression_token1] = ACTIONS(1179), - [aux_sym_require_expression_token1] = ACTIONS(1179), - [aux_sym_require_once_expression_token1] = ACTIONS(1179), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(1177), + [ts_builtin_sym_end] = ACTIONS(1172), + [sym_name] = ACTIONS(1174), + [anon_sym_QMARK_GT] = ACTIONS(1172), + [anon_sym_SEMI] = ACTIONS(1172), + [aux_sym_function_static_declaration_token1] = ACTIONS(1174), + [aux_sym_global_declaration_token1] = ACTIONS(1174), + [aux_sym_namespace_definition_token1] = ACTIONS(1174), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1174), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1174), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1174), + [anon_sym_BSLASH] = ACTIONS(1172), + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_RBRACE] = ACTIONS(1172), + [aux_sym_trait_declaration_token1] = ACTIONS(1174), + [aux_sym_interface_declaration_token1] = ACTIONS(1174), + [aux_sym_enum_declaration_token1] = ACTIONS(1174), + [aux_sym_enum_case_token1] = ACTIONS(1174), + [aux_sym_class_declaration_token1] = ACTIONS(1174), + [aux_sym_final_modifier_token1] = ACTIONS(1174), + [aux_sym_abstract_modifier_token1] = ACTIONS(1174), + [aux_sym_readonly_modifier_token1] = ACTIONS(1174), + [sym_var_modifier] = ACTIONS(1174), + [aux_sym_visibility_modifier_token1] = ACTIONS(1174), + [aux_sym_visibility_modifier_token2] = ACTIONS(1174), + [aux_sym_visibility_modifier_token3] = ACTIONS(1174), + [aux_sym__arrow_function_header_token1] = ACTIONS(1174), + [anon_sym_LPAREN] = ACTIONS(1172), + [aux_sym_cast_type_token1] = ACTIONS(1174), + [aux_sym_echo_statement_token1] = ACTIONS(1174), + [aux_sym_exit_statement_token1] = ACTIONS(1174), + [anon_sym_unset] = ACTIONS(1174), + [aux_sym_declare_statement_token1] = ACTIONS(1174), + [aux_sym_declare_statement_token2] = ACTIONS(1174), + [sym_float] = ACTIONS(1174), + [aux_sym_try_statement_token1] = ACTIONS(1174), + [aux_sym_goto_statement_token1] = ACTIONS(1174), + [aux_sym_continue_statement_token1] = ACTIONS(1174), + [aux_sym_break_statement_token1] = ACTIONS(1174), + [sym_integer] = ACTIONS(1174), + [aux_sym_return_statement_token1] = ACTIONS(1174), + [aux_sym_throw_expression_token1] = ACTIONS(1174), + [aux_sym_while_statement_token1] = ACTIONS(1174), + [aux_sym_while_statement_token2] = ACTIONS(1174), + [aux_sym_do_statement_token1] = ACTIONS(1174), + [aux_sym_for_statement_token1] = ACTIONS(1174), + [aux_sym_for_statement_token2] = ACTIONS(1174), + [aux_sym_foreach_statement_token1] = ACTIONS(1174), + [aux_sym_foreach_statement_token2] = ACTIONS(1174), + [aux_sym_if_statement_token1] = ACTIONS(1174), + [aux_sym_if_statement_token2] = ACTIONS(1174), + [aux_sym_else_if_clause_token1] = ACTIONS(1174), + [aux_sym_else_clause_token1] = ACTIONS(1174), + [aux_sym_match_expression_token1] = ACTIONS(1174), + [aux_sym_match_default_expression_token1] = ACTIONS(1174), + [aux_sym_switch_statement_token1] = ACTIONS(1174), + [aux_sym_switch_block_token1] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1174), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_TILDE] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_AT] = ACTIONS(1172), + [aux_sym_clone_expression_token1] = ACTIONS(1174), + [aux_sym_print_intrinsic_token1] = ACTIONS(1174), + [aux_sym_object_creation_expression_token1] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [aux_sym__list_destructing_token1] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_self] = ACTIONS(1174), + [anon_sym_parent] = ACTIONS(1174), + [aux_sym__argument_name_token1] = ACTIONS(1174), + [aux_sym__argument_name_token2] = ACTIONS(1174), + [anon_sym_POUND_LBRACK] = ACTIONS(1172), + [aux_sym_encapsed_string_token1] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1172), + [aux_sym_string_token1] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_LT_LT_LT] = ACTIONS(1172), + [anon_sym_BQUOTE] = ACTIONS(1172), + [anon_sym_DOLLAR] = ACTIONS(1172), + [aux_sym_yield_expression_token1] = ACTIONS(1174), + [aux_sym_include_expression_token1] = ACTIONS(1174), + [aux_sym_include_once_expression_token1] = ACTIONS(1174), + [aux_sym_require_expression_token1] = ACTIONS(1174), + [aux_sym_require_once_expression_token1] = ACTIONS(1174), + [sym_comment] = ACTIONS(3), }, [462] = { - [ts_builtin_sym_end] = ACTIONS(1181), - [sym_name] = ACTIONS(1183), - [anon_sym_QMARK_GT] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1185), - [aux_sym_function_static_declaration_token1] = ACTIONS(1183), - [aux_sym_global_declaration_token1] = ACTIONS(1183), - [aux_sym_namespace_definition_token1] = ACTIONS(1183), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1183), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1183), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1183), - [anon_sym_BSLASH] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(1181), - [aux_sym_trait_declaration_token1] = ACTIONS(1183), - [aux_sym_interface_declaration_token1] = ACTIONS(1183), - [aux_sym_enum_declaration_token1] = ACTIONS(1183), - [aux_sym_enum_case_token1] = ACTIONS(1183), - [aux_sym_class_declaration_token1] = ACTIONS(1183), - [aux_sym_final_modifier_token1] = ACTIONS(1183), - [aux_sym_abstract_modifier_token1] = ACTIONS(1183), - [aux_sym_readonly_modifier_token1] = ACTIONS(1183), - [aux_sym_visibility_modifier_token1] = ACTIONS(1183), - [aux_sym_visibility_modifier_token2] = ACTIONS(1183), - [aux_sym_visibility_modifier_token3] = ACTIONS(1183), - [aux_sym__arrow_function_header_token1] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1181), - [aux_sym_cast_type_token1] = ACTIONS(1183), - [aux_sym_echo_statement_token1] = ACTIONS(1183), - [aux_sym_exit_statement_token1] = ACTIONS(1183), - [anon_sym_unset] = ACTIONS(1183), - [aux_sym_declare_statement_token1] = ACTIONS(1183), - [aux_sym_declare_statement_token2] = ACTIONS(1183), - [sym_float] = ACTIONS(1183), - [aux_sym_try_statement_token1] = ACTIONS(1183), - [aux_sym_goto_statement_token1] = ACTIONS(1183), - [aux_sym_continue_statement_token1] = ACTIONS(1183), - [aux_sym_break_statement_token1] = ACTIONS(1183), - [sym_integer] = ACTIONS(1183), - [aux_sym_return_statement_token1] = ACTIONS(1183), - [aux_sym_throw_expression_token1] = ACTIONS(1183), - [aux_sym_while_statement_token1] = ACTIONS(1183), - [aux_sym_while_statement_token2] = ACTIONS(1183), - [aux_sym_do_statement_token1] = ACTIONS(1183), - [aux_sym_for_statement_token1] = ACTIONS(1183), - [aux_sym_for_statement_token2] = ACTIONS(1183), - [aux_sym_foreach_statement_token1] = ACTIONS(1183), - [aux_sym_foreach_statement_token2] = ACTIONS(1183), - [aux_sym_if_statement_token1] = ACTIONS(1183), - [aux_sym_if_statement_token2] = ACTIONS(1183), - [aux_sym_else_if_clause_token1] = ACTIONS(1183), - [aux_sym_else_clause_token1] = ACTIONS(1183), - [aux_sym_match_expression_token1] = ACTIONS(1183), - [aux_sym_match_default_expression_token1] = ACTIONS(1183), - [aux_sym_switch_statement_token1] = ACTIONS(1183), - [aux_sym_switch_block_token1] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_AT] = ACTIONS(1181), - [aux_sym_clone_expression_token1] = ACTIONS(1183), - [aux_sym_print_intrinsic_token1] = ACTIONS(1183), - [aux_sym_object_creation_expression_token1] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1181), - [anon_sym_PLUS_PLUS] = ACTIONS(1181), - [aux_sym__list_destructing_token1] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1181), - [anon_sym_self] = ACTIONS(1183), - [anon_sym_parent] = ACTIONS(1183), - [aux_sym__argument_name_token1] = ACTIONS(1183), - [aux_sym__argument_name_token2] = ACTIONS(1183), - [anon_sym_POUND_LBRACK] = ACTIONS(1181), - [aux_sym_encapsed_string_token1] = ACTIONS(1181), - [anon_sym_DQUOTE] = ACTIONS(1181), - [aux_sym_string_token1] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1181), - [anon_sym_LT_LT_LT] = ACTIONS(1181), - [anon_sym_BQUOTE] = ACTIONS(1181), - [anon_sym_DOLLAR] = ACTIONS(1181), - [aux_sym_yield_expression_token1] = ACTIONS(1183), - [aux_sym_include_expression_token1] = ACTIONS(1183), - [aux_sym_include_once_expression_token1] = ACTIONS(1183), - [aux_sym_require_expression_token1] = ACTIONS(1183), - [aux_sym_require_once_expression_token1] = ACTIONS(1183), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(1185), + [ts_builtin_sym_end] = ACTIONS(1176), + [sym_name] = ACTIONS(1178), + [anon_sym_QMARK_GT] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1176), + [aux_sym_function_static_declaration_token1] = ACTIONS(1178), + [aux_sym_global_declaration_token1] = ACTIONS(1178), + [aux_sym_namespace_definition_token1] = ACTIONS(1178), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1178), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1178), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1178), + [anon_sym_BSLASH] = ACTIONS(1176), + [anon_sym_LBRACE] = ACTIONS(1176), + [anon_sym_RBRACE] = ACTIONS(1176), + [aux_sym_trait_declaration_token1] = ACTIONS(1178), + [aux_sym_interface_declaration_token1] = ACTIONS(1178), + [aux_sym_enum_declaration_token1] = ACTIONS(1178), + [aux_sym_enum_case_token1] = ACTIONS(1178), + [aux_sym_class_declaration_token1] = ACTIONS(1178), + [aux_sym_final_modifier_token1] = ACTIONS(1178), + [aux_sym_abstract_modifier_token1] = ACTIONS(1178), + [aux_sym_readonly_modifier_token1] = ACTIONS(1178), + [sym_var_modifier] = ACTIONS(1178), + [aux_sym_visibility_modifier_token1] = ACTIONS(1178), + [aux_sym_visibility_modifier_token2] = ACTIONS(1178), + [aux_sym_visibility_modifier_token3] = ACTIONS(1178), + [aux_sym__arrow_function_header_token1] = ACTIONS(1178), + [anon_sym_LPAREN] = ACTIONS(1176), + [aux_sym_cast_type_token1] = ACTIONS(1178), + [aux_sym_echo_statement_token1] = ACTIONS(1178), + [aux_sym_exit_statement_token1] = ACTIONS(1178), + [anon_sym_unset] = ACTIONS(1178), + [aux_sym_declare_statement_token1] = ACTIONS(1178), + [aux_sym_declare_statement_token2] = ACTIONS(1178), + [sym_float] = ACTIONS(1178), + [aux_sym_try_statement_token1] = ACTIONS(1178), + [aux_sym_goto_statement_token1] = ACTIONS(1178), + [aux_sym_continue_statement_token1] = ACTIONS(1178), + [aux_sym_break_statement_token1] = ACTIONS(1178), + [sym_integer] = ACTIONS(1178), + [aux_sym_return_statement_token1] = ACTIONS(1178), + [aux_sym_throw_expression_token1] = ACTIONS(1178), + [aux_sym_while_statement_token1] = ACTIONS(1178), + [aux_sym_while_statement_token2] = ACTIONS(1178), + [aux_sym_do_statement_token1] = ACTIONS(1178), + [aux_sym_for_statement_token1] = ACTIONS(1178), + [aux_sym_for_statement_token2] = ACTIONS(1178), + [aux_sym_foreach_statement_token1] = ACTIONS(1178), + [aux_sym_foreach_statement_token2] = ACTIONS(1178), + [aux_sym_if_statement_token1] = ACTIONS(1178), + [aux_sym_if_statement_token2] = ACTIONS(1178), + [aux_sym_else_if_clause_token1] = ACTIONS(1178), + [aux_sym_else_clause_token1] = ACTIONS(1178), + [aux_sym_match_expression_token1] = ACTIONS(1178), + [aux_sym_match_default_expression_token1] = ACTIONS(1178), + [aux_sym_switch_statement_token1] = ACTIONS(1178), + [aux_sym_switch_block_token1] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_TILDE] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(1176), + [aux_sym_clone_expression_token1] = ACTIONS(1178), + [aux_sym_print_intrinsic_token1] = ACTIONS(1178), + [aux_sym_object_creation_expression_token1] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1176), + [aux_sym__list_destructing_token1] = ACTIONS(1178), + [anon_sym_LBRACK] = ACTIONS(1176), + [anon_sym_self] = ACTIONS(1178), + [anon_sym_parent] = ACTIONS(1178), + [aux_sym__argument_name_token1] = ACTIONS(1178), + [aux_sym__argument_name_token2] = ACTIONS(1178), + [anon_sym_POUND_LBRACK] = ACTIONS(1176), + [aux_sym_encapsed_string_token1] = ACTIONS(1176), + [anon_sym_DQUOTE] = ACTIONS(1176), + [aux_sym_string_token1] = ACTIONS(1176), + [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_LT_LT_LT] = ACTIONS(1176), + [anon_sym_BQUOTE] = ACTIONS(1176), + [anon_sym_DOLLAR] = ACTIONS(1176), + [aux_sym_yield_expression_token1] = ACTIONS(1178), + [aux_sym_include_expression_token1] = ACTIONS(1178), + [aux_sym_include_once_expression_token1] = ACTIONS(1178), + [aux_sym_require_expression_token1] = ACTIONS(1178), + [aux_sym_require_once_expression_token1] = ACTIONS(1178), + [sym_comment] = ACTIONS(3), }, [463] = { - [ts_builtin_sym_end] = ACTIONS(1187), - [sym_name] = ACTIONS(1189), - [anon_sym_QMARK_GT] = ACTIONS(1187), - [anon_sym_SEMI] = ACTIONS(1187), - [aux_sym_function_static_declaration_token1] = ACTIONS(1189), - [aux_sym_global_declaration_token1] = ACTIONS(1189), - [aux_sym_namespace_definition_token1] = ACTIONS(1189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1189), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1189), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1189), - [anon_sym_BSLASH] = ACTIONS(1187), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_RBRACE] = ACTIONS(1187), - [aux_sym_trait_declaration_token1] = ACTIONS(1189), - [aux_sym_interface_declaration_token1] = ACTIONS(1189), - [aux_sym_enum_declaration_token1] = ACTIONS(1189), - [aux_sym_enum_case_token1] = ACTIONS(1189), - [aux_sym_class_declaration_token1] = ACTIONS(1189), - [aux_sym_final_modifier_token1] = ACTIONS(1189), - [aux_sym_abstract_modifier_token1] = ACTIONS(1189), - [aux_sym_readonly_modifier_token1] = ACTIONS(1189), - [aux_sym_visibility_modifier_token1] = ACTIONS(1189), - [aux_sym_visibility_modifier_token2] = ACTIONS(1189), - [aux_sym_visibility_modifier_token3] = ACTIONS(1189), - [aux_sym__arrow_function_header_token1] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1187), - [aux_sym_cast_type_token1] = ACTIONS(1189), - [aux_sym_echo_statement_token1] = ACTIONS(1189), - [aux_sym_exit_statement_token1] = ACTIONS(1189), - [anon_sym_unset] = ACTIONS(1189), - [aux_sym_declare_statement_token1] = ACTIONS(1189), - [aux_sym_declare_statement_token2] = ACTIONS(1189), - [sym_float] = ACTIONS(1189), - [aux_sym_try_statement_token1] = ACTIONS(1189), - [aux_sym_goto_statement_token1] = ACTIONS(1189), - [aux_sym_continue_statement_token1] = ACTIONS(1189), - [aux_sym_break_statement_token1] = ACTIONS(1189), - [sym_integer] = ACTIONS(1189), - [aux_sym_return_statement_token1] = ACTIONS(1189), - [aux_sym_throw_expression_token1] = ACTIONS(1189), - [aux_sym_while_statement_token1] = ACTIONS(1189), - [aux_sym_while_statement_token2] = ACTIONS(1189), - [aux_sym_do_statement_token1] = ACTIONS(1189), - [aux_sym_for_statement_token1] = ACTIONS(1189), - [aux_sym_for_statement_token2] = ACTIONS(1189), - [aux_sym_foreach_statement_token1] = ACTIONS(1189), - [aux_sym_foreach_statement_token2] = ACTIONS(1189), - [aux_sym_if_statement_token1] = ACTIONS(1189), - [aux_sym_if_statement_token2] = ACTIONS(1189), - [aux_sym_else_if_clause_token1] = ACTIONS(1189), - [aux_sym_else_clause_token1] = ACTIONS(1189), - [aux_sym_match_expression_token1] = ACTIONS(1189), - [aux_sym_match_default_expression_token1] = ACTIONS(1189), - [aux_sym_switch_statement_token1] = ACTIONS(1189), - [aux_sym_switch_block_token1] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_TILDE] = ACTIONS(1187), - [anon_sym_BANG] = ACTIONS(1187), - [anon_sym_AT] = ACTIONS(1187), - [aux_sym_clone_expression_token1] = ACTIONS(1189), - [aux_sym_print_intrinsic_token1] = ACTIONS(1189), - [aux_sym_object_creation_expression_token1] = ACTIONS(1189), - [anon_sym_DASH_DASH] = ACTIONS(1187), - [anon_sym_PLUS_PLUS] = ACTIONS(1187), - [aux_sym__list_destructing_token1] = ACTIONS(1189), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_self] = ACTIONS(1189), - [anon_sym_parent] = ACTIONS(1189), - [aux_sym__argument_name_token1] = ACTIONS(1189), - [aux_sym__argument_name_token2] = ACTIONS(1189), - [anon_sym_POUND_LBRACK] = ACTIONS(1187), - [aux_sym_encapsed_string_token1] = ACTIONS(1187), - [anon_sym_DQUOTE] = ACTIONS(1187), - [aux_sym_string_token1] = ACTIONS(1187), - [anon_sym_SQUOTE] = ACTIONS(1187), - [anon_sym_LT_LT_LT] = ACTIONS(1187), - [anon_sym_BQUOTE] = ACTIONS(1187), - [anon_sym_DOLLAR] = ACTIONS(1187), - [aux_sym_yield_expression_token1] = ACTIONS(1189), - [aux_sym_include_expression_token1] = ACTIONS(1189), - [aux_sym_include_once_expression_token1] = ACTIONS(1189), - [aux_sym_require_expression_token1] = ACTIONS(1189), - [aux_sym_require_once_expression_token1] = ACTIONS(1189), + [ts_builtin_sym_end] = ACTIONS(1180), + [sym_name] = ACTIONS(1182), + [anon_sym_QMARK_GT] = ACTIONS(1180), + [anon_sym_SEMI] = ACTIONS(1180), + [aux_sym_function_static_declaration_token1] = ACTIONS(1182), + [aux_sym_global_declaration_token1] = ACTIONS(1182), + [aux_sym_namespace_definition_token1] = ACTIONS(1182), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1182), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1182), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1182), + [anon_sym_BSLASH] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_RBRACE] = ACTIONS(1180), + [aux_sym_trait_declaration_token1] = ACTIONS(1182), + [aux_sym_interface_declaration_token1] = ACTIONS(1182), + [aux_sym_enum_declaration_token1] = ACTIONS(1182), + [aux_sym_enum_case_token1] = ACTIONS(1182), + [aux_sym_class_declaration_token1] = ACTIONS(1182), + [aux_sym_final_modifier_token1] = ACTIONS(1182), + [aux_sym_abstract_modifier_token1] = ACTIONS(1182), + [aux_sym_readonly_modifier_token1] = ACTIONS(1182), + [sym_var_modifier] = ACTIONS(1182), + [aux_sym_visibility_modifier_token1] = ACTIONS(1182), + [aux_sym_visibility_modifier_token2] = ACTIONS(1182), + [aux_sym_visibility_modifier_token3] = ACTIONS(1182), + [aux_sym__arrow_function_header_token1] = ACTIONS(1182), + [anon_sym_LPAREN] = ACTIONS(1180), + [aux_sym_cast_type_token1] = ACTIONS(1182), + [aux_sym_echo_statement_token1] = ACTIONS(1182), + [aux_sym_exit_statement_token1] = ACTIONS(1182), + [anon_sym_unset] = ACTIONS(1182), + [aux_sym_declare_statement_token1] = ACTIONS(1182), + [aux_sym_declare_statement_token2] = ACTIONS(1182), + [sym_float] = ACTIONS(1182), + [aux_sym_try_statement_token1] = ACTIONS(1182), + [aux_sym_goto_statement_token1] = ACTIONS(1182), + [aux_sym_continue_statement_token1] = ACTIONS(1182), + [aux_sym_break_statement_token1] = ACTIONS(1182), + [sym_integer] = ACTIONS(1182), + [aux_sym_return_statement_token1] = ACTIONS(1182), + [aux_sym_throw_expression_token1] = ACTIONS(1182), + [aux_sym_while_statement_token1] = ACTIONS(1182), + [aux_sym_while_statement_token2] = ACTIONS(1182), + [aux_sym_do_statement_token1] = ACTIONS(1182), + [aux_sym_for_statement_token1] = ACTIONS(1182), + [aux_sym_for_statement_token2] = ACTIONS(1182), + [aux_sym_foreach_statement_token1] = ACTIONS(1182), + [aux_sym_foreach_statement_token2] = ACTIONS(1182), + [aux_sym_if_statement_token1] = ACTIONS(1182), + [aux_sym_if_statement_token2] = ACTIONS(1182), + [aux_sym_else_if_clause_token1] = ACTIONS(1182), + [aux_sym_else_clause_token1] = ACTIONS(1182), + [aux_sym_match_expression_token1] = ACTIONS(1182), + [aux_sym_match_default_expression_token1] = ACTIONS(1182), + [aux_sym_switch_statement_token1] = ACTIONS(1182), + [aux_sym_switch_block_token1] = ACTIONS(1182), + [anon_sym_PLUS] = ACTIONS(1182), + [anon_sym_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_AT] = ACTIONS(1180), + [aux_sym_clone_expression_token1] = ACTIONS(1182), + [aux_sym_print_intrinsic_token1] = ACTIONS(1182), + [aux_sym_object_creation_expression_token1] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [aux_sym__list_destructing_token1] = ACTIONS(1182), + [anon_sym_LBRACK] = ACTIONS(1180), + [anon_sym_self] = ACTIONS(1182), + [anon_sym_parent] = ACTIONS(1182), + [aux_sym__argument_name_token1] = ACTIONS(1182), + [aux_sym__argument_name_token2] = ACTIONS(1182), + [anon_sym_POUND_LBRACK] = ACTIONS(1180), + [aux_sym_encapsed_string_token1] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1180), + [aux_sym_string_token1] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1180), + [anon_sym_LT_LT_LT] = ACTIONS(1180), + [anon_sym_BQUOTE] = ACTIONS(1180), + [anon_sym_DOLLAR] = ACTIONS(1180), + [aux_sym_yield_expression_token1] = ACTIONS(1182), + [aux_sym_include_expression_token1] = ACTIONS(1182), + [aux_sym_include_once_expression_token1] = ACTIONS(1182), + [aux_sym_require_expression_token1] = ACTIONS(1182), + [aux_sym_require_once_expression_token1] = ACTIONS(1182), [sym_comment] = ACTIONS(3), }, [464] = { - [ts_builtin_sym_end] = ACTIONS(1191), - [sym_name] = ACTIONS(1193), - [anon_sym_QMARK_GT] = ACTIONS(1191), - [anon_sym_SEMI] = ACTIONS(1191), - [aux_sym_function_static_declaration_token1] = ACTIONS(1193), - [aux_sym_global_declaration_token1] = ACTIONS(1193), - [aux_sym_namespace_definition_token1] = ACTIONS(1193), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1193), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1193), - [anon_sym_BSLASH] = ACTIONS(1191), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1191), - [aux_sym_trait_declaration_token1] = ACTIONS(1193), - [aux_sym_interface_declaration_token1] = ACTIONS(1193), - [aux_sym_enum_declaration_token1] = ACTIONS(1193), - [aux_sym_enum_case_token1] = ACTIONS(1193), - [aux_sym_class_declaration_token1] = ACTIONS(1193), - [aux_sym_final_modifier_token1] = ACTIONS(1193), - [aux_sym_abstract_modifier_token1] = ACTIONS(1193), - [aux_sym_readonly_modifier_token1] = ACTIONS(1193), - [aux_sym_visibility_modifier_token1] = ACTIONS(1193), - [aux_sym_visibility_modifier_token2] = ACTIONS(1193), - [aux_sym_visibility_modifier_token3] = ACTIONS(1193), - [aux_sym__arrow_function_header_token1] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1191), - [aux_sym_cast_type_token1] = ACTIONS(1193), - [aux_sym_echo_statement_token1] = ACTIONS(1193), - [aux_sym_exit_statement_token1] = ACTIONS(1193), - [anon_sym_unset] = ACTIONS(1193), - [aux_sym_declare_statement_token1] = ACTIONS(1193), - [aux_sym_declare_statement_token2] = ACTIONS(1193), - [sym_float] = ACTIONS(1193), - [aux_sym_try_statement_token1] = ACTIONS(1193), - [aux_sym_goto_statement_token1] = ACTIONS(1193), - [aux_sym_continue_statement_token1] = ACTIONS(1193), - [aux_sym_break_statement_token1] = ACTIONS(1193), - [sym_integer] = ACTIONS(1193), - [aux_sym_return_statement_token1] = ACTIONS(1193), - [aux_sym_throw_expression_token1] = ACTIONS(1193), - [aux_sym_while_statement_token1] = ACTIONS(1193), - [aux_sym_while_statement_token2] = ACTIONS(1193), - [aux_sym_do_statement_token1] = ACTIONS(1193), - [aux_sym_for_statement_token1] = ACTIONS(1193), - [aux_sym_for_statement_token2] = ACTIONS(1193), - [aux_sym_foreach_statement_token1] = ACTIONS(1193), - [aux_sym_foreach_statement_token2] = ACTIONS(1193), - [aux_sym_if_statement_token1] = ACTIONS(1193), - [aux_sym_if_statement_token2] = ACTIONS(1193), - [aux_sym_else_if_clause_token1] = ACTIONS(1193), - [aux_sym_else_clause_token1] = ACTIONS(1193), - [aux_sym_match_expression_token1] = ACTIONS(1193), - [aux_sym_match_default_expression_token1] = ACTIONS(1193), - [aux_sym_switch_statement_token1] = ACTIONS(1193), - [aux_sym_switch_block_token1] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_TILDE] = ACTIONS(1191), - [anon_sym_BANG] = ACTIONS(1191), - [anon_sym_AT] = ACTIONS(1191), - [aux_sym_clone_expression_token1] = ACTIONS(1193), - [aux_sym_print_intrinsic_token1] = ACTIONS(1193), - [aux_sym_object_creation_expression_token1] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1191), - [aux_sym__list_destructing_token1] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1191), - [anon_sym_self] = ACTIONS(1193), - [anon_sym_parent] = ACTIONS(1193), - [aux_sym__argument_name_token1] = ACTIONS(1193), - [aux_sym__argument_name_token2] = ACTIONS(1193), - [anon_sym_POUND_LBRACK] = ACTIONS(1191), - [aux_sym_encapsed_string_token1] = ACTIONS(1191), - [anon_sym_DQUOTE] = ACTIONS(1191), - [aux_sym_string_token1] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1191), - [anon_sym_LT_LT_LT] = ACTIONS(1191), - [anon_sym_BQUOTE] = ACTIONS(1191), - [anon_sym_DOLLAR] = ACTIONS(1191), - [aux_sym_yield_expression_token1] = ACTIONS(1193), - [aux_sym_include_expression_token1] = ACTIONS(1193), - [aux_sym_include_once_expression_token1] = ACTIONS(1193), - [aux_sym_require_expression_token1] = ACTIONS(1193), - [aux_sym_require_once_expression_token1] = ACTIONS(1193), + [ts_builtin_sym_end] = ACTIONS(1184), + [sym_name] = ACTIONS(1186), + [anon_sym_QMARK_GT] = ACTIONS(1184), + [anon_sym_SEMI] = ACTIONS(1184), + [aux_sym_function_static_declaration_token1] = ACTIONS(1186), + [aux_sym_global_declaration_token1] = ACTIONS(1186), + [aux_sym_namespace_definition_token1] = ACTIONS(1186), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1186), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1186), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1186), + [anon_sym_BSLASH] = ACTIONS(1184), + [anon_sym_LBRACE] = ACTIONS(1184), + [anon_sym_RBRACE] = ACTIONS(1184), + [aux_sym_trait_declaration_token1] = ACTIONS(1186), + [aux_sym_interface_declaration_token1] = ACTIONS(1186), + [aux_sym_enum_declaration_token1] = ACTIONS(1186), + [aux_sym_enum_case_token1] = ACTIONS(1186), + [aux_sym_class_declaration_token1] = ACTIONS(1186), + [aux_sym_final_modifier_token1] = ACTIONS(1186), + [aux_sym_abstract_modifier_token1] = ACTIONS(1186), + [aux_sym_readonly_modifier_token1] = ACTIONS(1186), + [sym_var_modifier] = ACTIONS(1186), + [aux_sym_visibility_modifier_token1] = ACTIONS(1186), + [aux_sym_visibility_modifier_token2] = ACTIONS(1186), + [aux_sym_visibility_modifier_token3] = ACTIONS(1186), + [aux_sym__arrow_function_header_token1] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(1184), + [aux_sym_cast_type_token1] = ACTIONS(1186), + [aux_sym_echo_statement_token1] = ACTIONS(1186), + [aux_sym_exit_statement_token1] = ACTIONS(1186), + [anon_sym_unset] = ACTIONS(1186), + [aux_sym_declare_statement_token1] = ACTIONS(1186), + [aux_sym_declare_statement_token2] = ACTIONS(1186), + [sym_float] = ACTIONS(1186), + [aux_sym_try_statement_token1] = ACTIONS(1186), + [aux_sym_goto_statement_token1] = ACTIONS(1186), + [aux_sym_continue_statement_token1] = ACTIONS(1186), + [aux_sym_break_statement_token1] = ACTIONS(1186), + [sym_integer] = ACTIONS(1186), + [aux_sym_return_statement_token1] = ACTIONS(1186), + [aux_sym_throw_expression_token1] = ACTIONS(1186), + [aux_sym_while_statement_token1] = ACTIONS(1186), + [aux_sym_while_statement_token2] = ACTIONS(1186), + [aux_sym_do_statement_token1] = ACTIONS(1186), + [aux_sym_for_statement_token1] = ACTIONS(1186), + [aux_sym_for_statement_token2] = ACTIONS(1186), + [aux_sym_foreach_statement_token1] = ACTIONS(1186), + [aux_sym_foreach_statement_token2] = ACTIONS(1186), + [aux_sym_if_statement_token1] = ACTIONS(1186), + [aux_sym_if_statement_token2] = ACTIONS(1186), + [aux_sym_else_if_clause_token1] = ACTIONS(1186), + [aux_sym_else_clause_token1] = ACTIONS(1186), + [aux_sym_match_expression_token1] = ACTIONS(1186), + [aux_sym_match_default_expression_token1] = ACTIONS(1186), + [aux_sym_switch_statement_token1] = ACTIONS(1186), + [aux_sym_switch_block_token1] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(1186), + [anon_sym_DASH] = ACTIONS(1186), + [anon_sym_TILDE] = ACTIONS(1184), + [anon_sym_BANG] = ACTIONS(1184), + [anon_sym_AT] = ACTIONS(1184), + [aux_sym_clone_expression_token1] = ACTIONS(1186), + [aux_sym_print_intrinsic_token1] = ACTIONS(1186), + [aux_sym_object_creation_expression_token1] = ACTIONS(1186), + [anon_sym_DASH_DASH] = ACTIONS(1184), + [anon_sym_PLUS_PLUS] = ACTIONS(1184), + [aux_sym__list_destructing_token1] = ACTIONS(1186), + [anon_sym_LBRACK] = ACTIONS(1184), + [anon_sym_self] = ACTIONS(1186), + [anon_sym_parent] = ACTIONS(1186), + [aux_sym__argument_name_token1] = ACTIONS(1186), + [aux_sym__argument_name_token2] = ACTIONS(1186), + [anon_sym_POUND_LBRACK] = ACTIONS(1184), + [aux_sym_encapsed_string_token1] = ACTIONS(1184), + [anon_sym_DQUOTE] = ACTIONS(1184), + [aux_sym_string_token1] = ACTIONS(1184), + [anon_sym_SQUOTE] = ACTIONS(1184), + [anon_sym_LT_LT_LT] = ACTIONS(1184), + [anon_sym_BQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR] = ACTIONS(1184), + [aux_sym_yield_expression_token1] = ACTIONS(1186), + [aux_sym_include_expression_token1] = ACTIONS(1186), + [aux_sym_include_once_expression_token1] = ACTIONS(1186), + [aux_sym_require_expression_token1] = ACTIONS(1186), + [aux_sym_require_once_expression_token1] = ACTIONS(1186), [sym_comment] = ACTIONS(3), }, [465] = { - [ts_builtin_sym_end] = ACTIONS(1195), - [sym_name] = ACTIONS(1197), - [anon_sym_QMARK_GT] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [aux_sym_function_static_declaration_token1] = ACTIONS(1197), - [aux_sym_global_declaration_token1] = ACTIONS(1197), - [aux_sym_namespace_definition_token1] = ACTIONS(1197), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1197), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1197), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1197), - [anon_sym_BSLASH] = ACTIONS(1195), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_RBRACE] = ACTIONS(1195), - [aux_sym_trait_declaration_token1] = ACTIONS(1197), - [aux_sym_interface_declaration_token1] = ACTIONS(1197), - [aux_sym_enum_declaration_token1] = ACTIONS(1197), - [aux_sym_enum_case_token1] = ACTIONS(1197), - [aux_sym_class_declaration_token1] = ACTIONS(1197), - [aux_sym_final_modifier_token1] = ACTIONS(1197), - [aux_sym_abstract_modifier_token1] = ACTIONS(1197), - [aux_sym_readonly_modifier_token1] = ACTIONS(1197), - [aux_sym_visibility_modifier_token1] = ACTIONS(1197), - [aux_sym_visibility_modifier_token2] = ACTIONS(1197), - [aux_sym_visibility_modifier_token3] = ACTIONS(1197), - [aux_sym__arrow_function_header_token1] = ACTIONS(1197), - [anon_sym_LPAREN] = ACTIONS(1195), - [aux_sym_cast_type_token1] = ACTIONS(1197), - [aux_sym_echo_statement_token1] = ACTIONS(1197), - [aux_sym_exit_statement_token1] = ACTIONS(1197), - [anon_sym_unset] = ACTIONS(1197), - [aux_sym_declare_statement_token1] = ACTIONS(1197), - [aux_sym_declare_statement_token2] = ACTIONS(1197), - [sym_float] = ACTIONS(1197), - [aux_sym_try_statement_token1] = ACTIONS(1197), - [aux_sym_goto_statement_token1] = ACTIONS(1197), - [aux_sym_continue_statement_token1] = ACTIONS(1197), - [aux_sym_break_statement_token1] = ACTIONS(1197), - [sym_integer] = ACTIONS(1197), - [aux_sym_return_statement_token1] = ACTIONS(1197), - [aux_sym_throw_expression_token1] = ACTIONS(1197), - [aux_sym_while_statement_token1] = ACTIONS(1197), - [aux_sym_while_statement_token2] = ACTIONS(1197), - [aux_sym_do_statement_token1] = ACTIONS(1197), - [aux_sym_for_statement_token1] = ACTIONS(1197), - [aux_sym_for_statement_token2] = ACTIONS(1197), - [aux_sym_foreach_statement_token1] = ACTIONS(1197), - [aux_sym_foreach_statement_token2] = ACTIONS(1197), - [aux_sym_if_statement_token1] = ACTIONS(1197), - [aux_sym_if_statement_token2] = ACTIONS(1197), - [aux_sym_else_if_clause_token1] = ACTIONS(1197), - [aux_sym_else_clause_token1] = ACTIONS(1197), - [aux_sym_match_expression_token1] = ACTIONS(1197), - [aux_sym_match_default_expression_token1] = ACTIONS(1197), - [aux_sym_switch_statement_token1] = ACTIONS(1197), - [aux_sym_switch_block_token1] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_AT] = ACTIONS(1195), - [aux_sym_clone_expression_token1] = ACTIONS(1197), - [aux_sym_print_intrinsic_token1] = ACTIONS(1197), - [aux_sym_object_creation_expression_token1] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [aux_sym__list_destructing_token1] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1195), - [anon_sym_self] = ACTIONS(1197), - [anon_sym_parent] = ACTIONS(1197), - [aux_sym__argument_name_token1] = ACTIONS(1197), - [aux_sym__argument_name_token2] = ACTIONS(1197), - [anon_sym_POUND_LBRACK] = ACTIONS(1195), - [aux_sym_encapsed_string_token1] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [aux_sym_string_token1] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_LT_LT_LT] = ACTIONS(1195), - [anon_sym_BQUOTE] = ACTIONS(1195), - [anon_sym_DOLLAR] = ACTIONS(1195), - [aux_sym_yield_expression_token1] = ACTIONS(1197), - [aux_sym_include_expression_token1] = ACTIONS(1197), - [aux_sym_include_once_expression_token1] = ACTIONS(1197), - [aux_sym_require_expression_token1] = ACTIONS(1197), - [aux_sym_require_once_expression_token1] = ACTIONS(1197), + [ts_builtin_sym_end] = ACTIONS(1188), + [sym_name] = ACTIONS(1190), + [anon_sym_QMARK_GT] = ACTIONS(1188), + [anon_sym_SEMI] = ACTIONS(1188), + [aux_sym_function_static_declaration_token1] = ACTIONS(1190), + [aux_sym_global_declaration_token1] = ACTIONS(1190), + [aux_sym_namespace_definition_token1] = ACTIONS(1190), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1190), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1190), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1190), + [anon_sym_BSLASH] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_RBRACE] = ACTIONS(1188), + [aux_sym_trait_declaration_token1] = ACTIONS(1190), + [aux_sym_interface_declaration_token1] = ACTIONS(1190), + [aux_sym_enum_declaration_token1] = ACTIONS(1190), + [aux_sym_enum_case_token1] = ACTIONS(1190), + [aux_sym_class_declaration_token1] = ACTIONS(1190), + [aux_sym_final_modifier_token1] = ACTIONS(1190), + [aux_sym_abstract_modifier_token1] = ACTIONS(1190), + [aux_sym_readonly_modifier_token1] = ACTIONS(1190), + [sym_var_modifier] = ACTIONS(1190), + [aux_sym_visibility_modifier_token1] = ACTIONS(1190), + [aux_sym_visibility_modifier_token2] = ACTIONS(1190), + [aux_sym_visibility_modifier_token3] = ACTIONS(1190), + [aux_sym__arrow_function_header_token1] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1188), + [aux_sym_cast_type_token1] = ACTIONS(1190), + [aux_sym_echo_statement_token1] = ACTIONS(1190), + [aux_sym_exit_statement_token1] = ACTIONS(1190), + [anon_sym_unset] = ACTIONS(1190), + [aux_sym_declare_statement_token1] = ACTIONS(1190), + [aux_sym_declare_statement_token2] = ACTIONS(1190), + [sym_float] = ACTIONS(1190), + [aux_sym_try_statement_token1] = ACTIONS(1190), + [aux_sym_goto_statement_token1] = ACTIONS(1190), + [aux_sym_continue_statement_token1] = ACTIONS(1190), + [aux_sym_break_statement_token1] = ACTIONS(1190), + [sym_integer] = ACTIONS(1190), + [aux_sym_return_statement_token1] = ACTIONS(1190), + [aux_sym_throw_expression_token1] = ACTIONS(1190), + [aux_sym_while_statement_token1] = ACTIONS(1190), + [aux_sym_while_statement_token2] = ACTIONS(1190), + [aux_sym_do_statement_token1] = ACTIONS(1190), + [aux_sym_for_statement_token1] = ACTIONS(1190), + [aux_sym_for_statement_token2] = ACTIONS(1190), + [aux_sym_foreach_statement_token1] = ACTIONS(1190), + [aux_sym_foreach_statement_token2] = ACTIONS(1190), + [aux_sym_if_statement_token1] = ACTIONS(1190), + [aux_sym_if_statement_token2] = ACTIONS(1190), + [aux_sym_else_if_clause_token1] = ACTIONS(1190), + [aux_sym_else_clause_token1] = ACTIONS(1190), + [aux_sym_match_expression_token1] = ACTIONS(1190), + [aux_sym_match_default_expression_token1] = ACTIONS(1190), + [aux_sym_switch_statement_token1] = ACTIONS(1190), + [aux_sym_switch_block_token1] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_TILDE] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_AT] = ACTIONS(1188), + [aux_sym_clone_expression_token1] = ACTIONS(1190), + [aux_sym_print_intrinsic_token1] = ACTIONS(1190), + [aux_sym_object_creation_expression_token1] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [aux_sym__list_destructing_token1] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_self] = ACTIONS(1190), + [anon_sym_parent] = ACTIONS(1190), + [aux_sym__argument_name_token1] = ACTIONS(1190), + [aux_sym__argument_name_token2] = ACTIONS(1190), + [anon_sym_POUND_LBRACK] = ACTIONS(1188), + [aux_sym_encapsed_string_token1] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(1188), + [aux_sym_string_token1] = ACTIONS(1188), + [anon_sym_SQUOTE] = ACTIONS(1188), + [anon_sym_LT_LT_LT] = ACTIONS(1188), + [anon_sym_BQUOTE] = ACTIONS(1188), + [anon_sym_DOLLAR] = ACTIONS(1188), + [aux_sym_yield_expression_token1] = ACTIONS(1190), + [aux_sym_include_expression_token1] = ACTIONS(1190), + [aux_sym_include_once_expression_token1] = ACTIONS(1190), + [aux_sym_require_expression_token1] = ACTIONS(1190), + [aux_sym_require_once_expression_token1] = ACTIONS(1190), [sym_comment] = ACTIONS(3), }, [466] = { - [ts_builtin_sym_end] = ACTIONS(1199), - [sym_name] = ACTIONS(1201), - [anon_sym_QMARK_GT] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1199), - [aux_sym_function_static_declaration_token1] = ACTIONS(1201), - [aux_sym_global_declaration_token1] = ACTIONS(1201), - [aux_sym_namespace_definition_token1] = ACTIONS(1201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1201), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1201), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1201), - [anon_sym_BSLASH] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_RBRACE] = ACTIONS(1199), - [aux_sym_trait_declaration_token1] = ACTIONS(1201), - [aux_sym_interface_declaration_token1] = ACTIONS(1201), - [aux_sym_enum_declaration_token1] = ACTIONS(1201), - [aux_sym_enum_case_token1] = ACTIONS(1201), - [aux_sym_class_declaration_token1] = ACTIONS(1201), - [aux_sym_final_modifier_token1] = ACTIONS(1201), - [aux_sym_abstract_modifier_token1] = ACTIONS(1201), - [aux_sym_readonly_modifier_token1] = ACTIONS(1201), - [aux_sym_visibility_modifier_token1] = ACTIONS(1201), - [aux_sym_visibility_modifier_token2] = ACTIONS(1201), - [aux_sym_visibility_modifier_token3] = ACTIONS(1201), - [aux_sym__arrow_function_header_token1] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1199), - [aux_sym_cast_type_token1] = ACTIONS(1201), - [aux_sym_echo_statement_token1] = ACTIONS(1201), - [aux_sym_exit_statement_token1] = ACTIONS(1201), - [anon_sym_unset] = ACTIONS(1201), - [aux_sym_declare_statement_token1] = ACTIONS(1201), - [aux_sym_declare_statement_token2] = ACTIONS(1201), - [sym_float] = ACTIONS(1201), - [aux_sym_try_statement_token1] = ACTIONS(1201), - [aux_sym_goto_statement_token1] = ACTIONS(1201), - [aux_sym_continue_statement_token1] = ACTIONS(1201), - [aux_sym_break_statement_token1] = ACTIONS(1201), - [sym_integer] = ACTIONS(1201), - [aux_sym_return_statement_token1] = ACTIONS(1201), - [aux_sym_throw_expression_token1] = ACTIONS(1201), - [aux_sym_while_statement_token1] = ACTIONS(1201), - [aux_sym_while_statement_token2] = ACTIONS(1201), - [aux_sym_do_statement_token1] = ACTIONS(1201), - [aux_sym_for_statement_token1] = ACTIONS(1201), - [aux_sym_for_statement_token2] = ACTIONS(1201), - [aux_sym_foreach_statement_token1] = ACTIONS(1201), - [aux_sym_foreach_statement_token2] = ACTIONS(1201), - [aux_sym_if_statement_token1] = ACTIONS(1201), - [aux_sym_if_statement_token2] = ACTIONS(1201), - [aux_sym_else_if_clause_token1] = ACTIONS(1201), - [aux_sym_else_clause_token1] = ACTIONS(1201), - [aux_sym_match_expression_token1] = ACTIONS(1201), - [aux_sym_match_default_expression_token1] = ACTIONS(1201), - [aux_sym_switch_statement_token1] = ACTIONS(1201), - [aux_sym_switch_block_token1] = ACTIONS(1201), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_AT] = ACTIONS(1199), - [aux_sym_clone_expression_token1] = ACTIONS(1201), - [aux_sym_print_intrinsic_token1] = ACTIONS(1201), - [aux_sym_object_creation_expression_token1] = ACTIONS(1201), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [aux_sym__list_destructing_token1] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(1199), - [anon_sym_self] = ACTIONS(1201), - [anon_sym_parent] = ACTIONS(1201), - [aux_sym__argument_name_token1] = ACTIONS(1201), - [aux_sym__argument_name_token2] = ACTIONS(1201), - [anon_sym_POUND_LBRACK] = ACTIONS(1199), - [aux_sym_encapsed_string_token1] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1199), - [aux_sym_string_token1] = ACTIONS(1199), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_LT_LT_LT] = ACTIONS(1199), - [anon_sym_BQUOTE] = ACTIONS(1199), - [anon_sym_DOLLAR] = ACTIONS(1199), - [aux_sym_yield_expression_token1] = ACTIONS(1201), - [aux_sym_include_expression_token1] = ACTIONS(1201), - [aux_sym_include_once_expression_token1] = ACTIONS(1201), - [aux_sym_require_expression_token1] = ACTIONS(1201), - [aux_sym_require_once_expression_token1] = ACTIONS(1201), + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_name] = ACTIONS(1194), + [anon_sym_QMARK_GT] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [aux_sym_function_static_declaration_token1] = ACTIONS(1194), + [aux_sym_global_declaration_token1] = ACTIONS(1194), + [aux_sym_namespace_definition_token1] = ACTIONS(1194), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1194), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1194), + [anon_sym_BSLASH] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [aux_sym_trait_declaration_token1] = ACTIONS(1194), + [aux_sym_interface_declaration_token1] = ACTIONS(1194), + [aux_sym_enum_declaration_token1] = ACTIONS(1194), + [aux_sym_enum_case_token1] = ACTIONS(1194), + [aux_sym_class_declaration_token1] = ACTIONS(1194), + [aux_sym_final_modifier_token1] = ACTIONS(1194), + [aux_sym_abstract_modifier_token1] = ACTIONS(1194), + [aux_sym_readonly_modifier_token1] = ACTIONS(1194), + [sym_var_modifier] = ACTIONS(1194), + [aux_sym_visibility_modifier_token1] = ACTIONS(1194), + [aux_sym_visibility_modifier_token2] = ACTIONS(1194), + [aux_sym_visibility_modifier_token3] = ACTIONS(1194), + [aux_sym__arrow_function_header_token1] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1192), + [aux_sym_cast_type_token1] = ACTIONS(1194), + [aux_sym_echo_statement_token1] = ACTIONS(1194), + [aux_sym_exit_statement_token1] = ACTIONS(1194), + [anon_sym_unset] = ACTIONS(1194), + [aux_sym_declare_statement_token1] = ACTIONS(1194), + [aux_sym_declare_statement_token2] = ACTIONS(1194), + [sym_float] = ACTIONS(1194), + [aux_sym_try_statement_token1] = ACTIONS(1194), + [aux_sym_goto_statement_token1] = ACTIONS(1194), + [aux_sym_continue_statement_token1] = ACTIONS(1194), + [aux_sym_break_statement_token1] = ACTIONS(1194), + [sym_integer] = ACTIONS(1194), + [aux_sym_return_statement_token1] = ACTIONS(1194), + [aux_sym_throw_expression_token1] = ACTIONS(1194), + [aux_sym_while_statement_token1] = ACTIONS(1194), + [aux_sym_while_statement_token2] = ACTIONS(1194), + [aux_sym_do_statement_token1] = ACTIONS(1194), + [aux_sym_for_statement_token1] = ACTIONS(1194), + [aux_sym_for_statement_token2] = ACTIONS(1194), + [aux_sym_foreach_statement_token1] = ACTIONS(1194), + [aux_sym_foreach_statement_token2] = ACTIONS(1194), + [aux_sym_if_statement_token1] = ACTIONS(1194), + [aux_sym_if_statement_token2] = ACTIONS(1194), + [aux_sym_else_if_clause_token1] = ACTIONS(1194), + [aux_sym_else_clause_token1] = ACTIONS(1194), + [aux_sym_match_expression_token1] = ACTIONS(1194), + [aux_sym_match_default_expression_token1] = ACTIONS(1194), + [aux_sym_switch_statement_token1] = ACTIONS(1194), + [aux_sym_switch_block_token1] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1194), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_AT] = ACTIONS(1192), + [aux_sym_clone_expression_token1] = ACTIONS(1194), + [aux_sym_print_intrinsic_token1] = ACTIONS(1194), + [aux_sym_object_creation_expression_token1] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [aux_sym__list_destructing_token1] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1192), + [anon_sym_self] = ACTIONS(1194), + [anon_sym_parent] = ACTIONS(1194), + [aux_sym__argument_name_token1] = ACTIONS(1194), + [aux_sym__argument_name_token2] = ACTIONS(1194), + [anon_sym_POUND_LBRACK] = ACTIONS(1192), + [aux_sym_encapsed_string_token1] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [aux_sym_string_token1] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_LT_LT_LT] = ACTIONS(1192), + [anon_sym_BQUOTE] = ACTIONS(1192), + [anon_sym_DOLLAR] = ACTIONS(1192), + [aux_sym_yield_expression_token1] = ACTIONS(1194), + [aux_sym_include_expression_token1] = ACTIONS(1194), + [aux_sym_include_once_expression_token1] = ACTIONS(1194), + [aux_sym_require_expression_token1] = ACTIONS(1194), + [aux_sym_require_once_expression_token1] = ACTIONS(1194), [sym_comment] = ACTIONS(3), }, [467] = { - [ts_builtin_sym_end] = ACTIONS(1203), - [sym_name] = ACTIONS(1205), - [anon_sym_QMARK_GT] = ACTIONS(1203), - [anon_sym_SEMI] = ACTIONS(1203), - [aux_sym_function_static_declaration_token1] = ACTIONS(1205), - [aux_sym_global_declaration_token1] = ACTIONS(1205), - [aux_sym_namespace_definition_token1] = ACTIONS(1205), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1205), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1205), - [anon_sym_BSLASH] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1203), - [anon_sym_RBRACE] = ACTIONS(1203), - [aux_sym_trait_declaration_token1] = ACTIONS(1205), - [aux_sym_interface_declaration_token1] = ACTIONS(1205), - [aux_sym_enum_declaration_token1] = ACTIONS(1205), - [aux_sym_enum_case_token1] = ACTIONS(1205), - [aux_sym_class_declaration_token1] = ACTIONS(1205), - [aux_sym_final_modifier_token1] = ACTIONS(1205), - [aux_sym_abstract_modifier_token1] = ACTIONS(1205), - [aux_sym_readonly_modifier_token1] = ACTIONS(1205), - [aux_sym_visibility_modifier_token1] = ACTIONS(1205), - [aux_sym_visibility_modifier_token2] = ACTIONS(1205), - [aux_sym_visibility_modifier_token3] = ACTIONS(1205), - [aux_sym__arrow_function_header_token1] = ACTIONS(1205), - [anon_sym_LPAREN] = ACTIONS(1203), - [aux_sym_cast_type_token1] = ACTIONS(1205), - [aux_sym_echo_statement_token1] = ACTIONS(1205), - [aux_sym_exit_statement_token1] = ACTIONS(1205), - [anon_sym_unset] = ACTIONS(1205), - [aux_sym_declare_statement_token1] = ACTIONS(1205), - [aux_sym_declare_statement_token2] = ACTIONS(1205), - [sym_float] = ACTIONS(1205), - [aux_sym_try_statement_token1] = ACTIONS(1205), - [aux_sym_goto_statement_token1] = ACTIONS(1205), - [aux_sym_continue_statement_token1] = ACTIONS(1205), - [aux_sym_break_statement_token1] = ACTIONS(1205), - [sym_integer] = ACTIONS(1205), - [aux_sym_return_statement_token1] = ACTIONS(1205), - [aux_sym_throw_expression_token1] = ACTIONS(1205), - [aux_sym_while_statement_token1] = ACTIONS(1205), - [aux_sym_while_statement_token2] = ACTIONS(1205), - [aux_sym_do_statement_token1] = ACTIONS(1205), - [aux_sym_for_statement_token1] = ACTIONS(1205), - [aux_sym_for_statement_token2] = ACTIONS(1205), - [aux_sym_foreach_statement_token1] = ACTIONS(1205), - [aux_sym_foreach_statement_token2] = ACTIONS(1205), - [aux_sym_if_statement_token1] = ACTIONS(1205), - [aux_sym_if_statement_token2] = ACTIONS(1205), - [aux_sym_else_if_clause_token1] = ACTIONS(1205), - [aux_sym_else_clause_token1] = ACTIONS(1205), - [aux_sym_match_expression_token1] = ACTIONS(1205), - [aux_sym_match_default_expression_token1] = ACTIONS(1205), - [aux_sym_switch_statement_token1] = ACTIONS(1205), - [aux_sym_switch_block_token1] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_TILDE] = ACTIONS(1203), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_AT] = ACTIONS(1203), - [aux_sym_clone_expression_token1] = ACTIONS(1205), - [aux_sym_print_intrinsic_token1] = ACTIONS(1205), - [aux_sym_object_creation_expression_token1] = ACTIONS(1205), - [anon_sym_DASH_DASH] = ACTIONS(1203), - [anon_sym_PLUS_PLUS] = ACTIONS(1203), - [aux_sym__list_destructing_token1] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(1203), - [anon_sym_self] = ACTIONS(1205), - [anon_sym_parent] = ACTIONS(1205), - [aux_sym__argument_name_token1] = ACTIONS(1205), - [aux_sym__argument_name_token2] = ACTIONS(1205), - [anon_sym_POUND_LBRACK] = ACTIONS(1203), - [aux_sym_encapsed_string_token1] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1203), - [aux_sym_string_token1] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1203), - [anon_sym_LT_LT_LT] = ACTIONS(1203), - [anon_sym_BQUOTE] = ACTIONS(1203), - [anon_sym_DOLLAR] = ACTIONS(1203), - [aux_sym_yield_expression_token1] = ACTIONS(1205), - [aux_sym_include_expression_token1] = ACTIONS(1205), - [aux_sym_include_once_expression_token1] = ACTIONS(1205), - [aux_sym_require_expression_token1] = ACTIONS(1205), - [aux_sym_require_once_expression_token1] = ACTIONS(1205), + [ts_builtin_sym_end] = ACTIONS(1196), + [sym_name] = ACTIONS(1198), + [anon_sym_QMARK_GT] = ACTIONS(1196), + [anon_sym_SEMI] = ACTIONS(1196), + [aux_sym_function_static_declaration_token1] = ACTIONS(1198), + [aux_sym_global_declaration_token1] = ACTIONS(1198), + [aux_sym_namespace_definition_token1] = ACTIONS(1198), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1198), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1198), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1198), + [anon_sym_BSLASH] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1196), + [aux_sym_trait_declaration_token1] = ACTIONS(1198), + [aux_sym_interface_declaration_token1] = ACTIONS(1198), + [aux_sym_enum_declaration_token1] = ACTIONS(1198), + [aux_sym_enum_case_token1] = ACTIONS(1198), + [aux_sym_class_declaration_token1] = ACTIONS(1198), + [aux_sym_final_modifier_token1] = ACTIONS(1198), + [aux_sym_abstract_modifier_token1] = ACTIONS(1198), + [aux_sym_readonly_modifier_token1] = ACTIONS(1198), + [sym_var_modifier] = ACTIONS(1198), + [aux_sym_visibility_modifier_token1] = ACTIONS(1198), + [aux_sym_visibility_modifier_token2] = ACTIONS(1198), + [aux_sym_visibility_modifier_token3] = ACTIONS(1198), + [aux_sym__arrow_function_header_token1] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1196), + [aux_sym_cast_type_token1] = ACTIONS(1198), + [aux_sym_echo_statement_token1] = ACTIONS(1198), + [aux_sym_exit_statement_token1] = ACTIONS(1198), + [anon_sym_unset] = ACTIONS(1198), + [aux_sym_declare_statement_token1] = ACTIONS(1198), + [aux_sym_declare_statement_token2] = ACTIONS(1198), + [sym_float] = ACTIONS(1198), + [aux_sym_try_statement_token1] = ACTIONS(1198), + [aux_sym_goto_statement_token1] = ACTIONS(1198), + [aux_sym_continue_statement_token1] = ACTIONS(1198), + [aux_sym_break_statement_token1] = ACTIONS(1198), + [sym_integer] = ACTIONS(1198), + [aux_sym_return_statement_token1] = ACTIONS(1198), + [aux_sym_throw_expression_token1] = ACTIONS(1198), + [aux_sym_while_statement_token1] = ACTIONS(1198), + [aux_sym_while_statement_token2] = ACTIONS(1198), + [aux_sym_do_statement_token1] = ACTIONS(1198), + [aux_sym_for_statement_token1] = ACTIONS(1198), + [aux_sym_for_statement_token2] = ACTIONS(1198), + [aux_sym_foreach_statement_token1] = ACTIONS(1198), + [aux_sym_foreach_statement_token2] = ACTIONS(1198), + [aux_sym_if_statement_token1] = ACTIONS(1198), + [aux_sym_if_statement_token2] = ACTIONS(1198), + [aux_sym_else_if_clause_token1] = ACTIONS(1198), + [aux_sym_else_clause_token1] = ACTIONS(1198), + [aux_sym_match_expression_token1] = ACTIONS(1198), + [aux_sym_match_default_expression_token1] = ACTIONS(1198), + [aux_sym_switch_statement_token1] = ACTIONS(1198), + [aux_sym_switch_block_token1] = ACTIONS(1198), + [anon_sym_PLUS] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AT] = ACTIONS(1196), + [aux_sym_clone_expression_token1] = ACTIONS(1198), + [aux_sym_print_intrinsic_token1] = ACTIONS(1198), + [aux_sym_object_creation_expression_token1] = ACTIONS(1198), + [anon_sym_DASH_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [aux_sym__list_destructing_token1] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_self] = ACTIONS(1198), + [anon_sym_parent] = ACTIONS(1198), + [aux_sym__argument_name_token1] = ACTIONS(1198), + [aux_sym__argument_name_token2] = ACTIONS(1198), + [anon_sym_POUND_LBRACK] = ACTIONS(1196), + [aux_sym_encapsed_string_token1] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [aux_sym_string_token1] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [anon_sym_LT_LT_LT] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(1196), + [aux_sym_yield_expression_token1] = ACTIONS(1198), + [aux_sym_include_expression_token1] = ACTIONS(1198), + [aux_sym_include_once_expression_token1] = ACTIONS(1198), + [aux_sym_require_expression_token1] = ACTIONS(1198), + [aux_sym_require_once_expression_token1] = ACTIONS(1198), [sym_comment] = ACTIONS(3), }, [468] = { - [ts_builtin_sym_end] = ACTIONS(1207), - [sym_name] = ACTIONS(1209), - [anon_sym_QMARK_GT] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [aux_sym_function_static_declaration_token1] = ACTIONS(1209), - [aux_sym_global_declaration_token1] = ACTIONS(1209), - [aux_sym_namespace_definition_token1] = ACTIONS(1209), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1209), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1209), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1209), - [anon_sym_BSLASH] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1207), - [anon_sym_RBRACE] = ACTIONS(1207), - [aux_sym_trait_declaration_token1] = ACTIONS(1209), - [aux_sym_interface_declaration_token1] = ACTIONS(1209), - [aux_sym_enum_declaration_token1] = ACTIONS(1209), - [aux_sym_enum_case_token1] = ACTIONS(1209), - [aux_sym_class_declaration_token1] = ACTIONS(1209), - [aux_sym_final_modifier_token1] = ACTIONS(1209), - [aux_sym_abstract_modifier_token1] = ACTIONS(1209), - [aux_sym_readonly_modifier_token1] = ACTIONS(1209), - [aux_sym_visibility_modifier_token1] = ACTIONS(1209), - [aux_sym_visibility_modifier_token2] = ACTIONS(1209), - [aux_sym_visibility_modifier_token3] = ACTIONS(1209), - [aux_sym__arrow_function_header_token1] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1207), - [aux_sym_cast_type_token1] = ACTIONS(1209), - [aux_sym_echo_statement_token1] = ACTIONS(1209), - [aux_sym_exit_statement_token1] = ACTIONS(1209), - [anon_sym_unset] = ACTIONS(1209), - [aux_sym_declare_statement_token1] = ACTIONS(1209), - [aux_sym_declare_statement_token2] = ACTIONS(1209), - [sym_float] = ACTIONS(1209), - [aux_sym_try_statement_token1] = ACTIONS(1209), - [aux_sym_goto_statement_token1] = ACTIONS(1209), - [aux_sym_continue_statement_token1] = ACTIONS(1209), - [aux_sym_break_statement_token1] = ACTIONS(1209), - [sym_integer] = ACTIONS(1209), - [aux_sym_return_statement_token1] = ACTIONS(1209), - [aux_sym_throw_expression_token1] = ACTIONS(1209), - [aux_sym_while_statement_token1] = ACTIONS(1209), - [aux_sym_while_statement_token2] = ACTIONS(1209), - [aux_sym_do_statement_token1] = ACTIONS(1209), - [aux_sym_for_statement_token1] = ACTIONS(1209), - [aux_sym_for_statement_token2] = ACTIONS(1209), - [aux_sym_foreach_statement_token1] = ACTIONS(1209), - [aux_sym_foreach_statement_token2] = ACTIONS(1209), - [aux_sym_if_statement_token1] = ACTIONS(1209), - [aux_sym_if_statement_token2] = ACTIONS(1209), - [aux_sym_else_if_clause_token1] = ACTIONS(1209), - [aux_sym_else_clause_token1] = ACTIONS(1209), - [aux_sym_match_expression_token1] = ACTIONS(1209), - [aux_sym_match_default_expression_token1] = ACTIONS(1209), - [aux_sym_switch_statement_token1] = ACTIONS(1209), - [aux_sym_switch_block_token1] = ACTIONS(1209), - [anon_sym_PLUS] = ACTIONS(1209), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_AT] = ACTIONS(1207), - [aux_sym_clone_expression_token1] = ACTIONS(1209), - [aux_sym_print_intrinsic_token1] = ACTIONS(1209), - [aux_sym_object_creation_expression_token1] = ACTIONS(1209), - [anon_sym_DASH_DASH] = ACTIONS(1207), - [anon_sym_PLUS_PLUS] = ACTIONS(1207), - [aux_sym__list_destructing_token1] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1207), - [anon_sym_self] = ACTIONS(1209), - [anon_sym_parent] = ACTIONS(1209), - [aux_sym__argument_name_token1] = ACTIONS(1209), - [aux_sym__argument_name_token2] = ACTIONS(1209), - [anon_sym_POUND_LBRACK] = ACTIONS(1207), - [aux_sym_encapsed_string_token1] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1207), - [aux_sym_string_token1] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_LT_LT_LT] = ACTIONS(1207), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [aux_sym_yield_expression_token1] = ACTIONS(1209), - [aux_sym_include_expression_token1] = ACTIONS(1209), - [aux_sym_include_once_expression_token1] = ACTIONS(1209), - [aux_sym_require_expression_token1] = ACTIONS(1209), - [aux_sym_require_once_expression_token1] = ACTIONS(1209), + [ts_builtin_sym_end] = ACTIONS(1200), + [sym_name] = ACTIONS(1202), + [anon_sym_QMARK_GT] = ACTIONS(1200), + [anon_sym_SEMI] = ACTIONS(1200), + [aux_sym_function_static_declaration_token1] = ACTIONS(1202), + [aux_sym_global_declaration_token1] = ACTIONS(1202), + [aux_sym_namespace_definition_token1] = ACTIONS(1202), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1202), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1202), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1202), + [anon_sym_BSLASH] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_RBRACE] = ACTIONS(1200), + [aux_sym_trait_declaration_token1] = ACTIONS(1202), + [aux_sym_interface_declaration_token1] = ACTIONS(1202), + [aux_sym_enum_declaration_token1] = ACTIONS(1202), + [aux_sym_enum_case_token1] = ACTIONS(1202), + [aux_sym_class_declaration_token1] = ACTIONS(1202), + [aux_sym_final_modifier_token1] = ACTIONS(1202), + [aux_sym_abstract_modifier_token1] = ACTIONS(1202), + [aux_sym_readonly_modifier_token1] = ACTIONS(1202), + [sym_var_modifier] = ACTIONS(1202), + [aux_sym_visibility_modifier_token1] = ACTIONS(1202), + [aux_sym_visibility_modifier_token2] = ACTIONS(1202), + [aux_sym_visibility_modifier_token3] = ACTIONS(1202), + [aux_sym__arrow_function_header_token1] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1200), + [aux_sym_cast_type_token1] = ACTIONS(1202), + [aux_sym_echo_statement_token1] = ACTIONS(1202), + [aux_sym_exit_statement_token1] = ACTIONS(1202), + [anon_sym_unset] = ACTIONS(1202), + [aux_sym_declare_statement_token1] = ACTIONS(1202), + [aux_sym_declare_statement_token2] = ACTIONS(1202), + [sym_float] = ACTIONS(1202), + [aux_sym_try_statement_token1] = ACTIONS(1202), + [aux_sym_goto_statement_token1] = ACTIONS(1202), + [aux_sym_continue_statement_token1] = ACTIONS(1202), + [aux_sym_break_statement_token1] = ACTIONS(1202), + [sym_integer] = ACTIONS(1202), + [aux_sym_return_statement_token1] = ACTIONS(1202), + [aux_sym_throw_expression_token1] = ACTIONS(1202), + [aux_sym_while_statement_token1] = ACTIONS(1202), + [aux_sym_while_statement_token2] = ACTIONS(1202), + [aux_sym_do_statement_token1] = ACTIONS(1202), + [aux_sym_for_statement_token1] = ACTIONS(1202), + [aux_sym_for_statement_token2] = ACTIONS(1202), + [aux_sym_foreach_statement_token1] = ACTIONS(1202), + [aux_sym_foreach_statement_token2] = ACTIONS(1202), + [aux_sym_if_statement_token1] = ACTIONS(1202), + [aux_sym_if_statement_token2] = ACTIONS(1202), + [aux_sym_else_if_clause_token1] = ACTIONS(1202), + [aux_sym_else_clause_token1] = ACTIONS(1202), + [aux_sym_match_expression_token1] = ACTIONS(1202), + [aux_sym_match_default_expression_token1] = ACTIONS(1202), + [aux_sym_switch_statement_token1] = ACTIONS(1202), + [aux_sym_switch_block_token1] = ACTIONS(1202), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1200), + [anon_sym_AT] = ACTIONS(1200), + [aux_sym_clone_expression_token1] = ACTIONS(1202), + [aux_sym_print_intrinsic_token1] = ACTIONS(1202), + [aux_sym_object_creation_expression_token1] = ACTIONS(1202), + [anon_sym_DASH_DASH] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1200), + [aux_sym__list_destructing_token1] = ACTIONS(1202), + [anon_sym_LBRACK] = ACTIONS(1200), + [anon_sym_self] = ACTIONS(1202), + [anon_sym_parent] = ACTIONS(1202), + [aux_sym__argument_name_token1] = ACTIONS(1202), + [aux_sym__argument_name_token2] = ACTIONS(1202), + [anon_sym_POUND_LBRACK] = ACTIONS(1200), + [aux_sym_encapsed_string_token1] = ACTIONS(1200), + [anon_sym_DQUOTE] = ACTIONS(1200), + [aux_sym_string_token1] = ACTIONS(1200), + [anon_sym_SQUOTE] = ACTIONS(1200), + [anon_sym_LT_LT_LT] = ACTIONS(1200), + [anon_sym_BQUOTE] = ACTIONS(1200), + [anon_sym_DOLLAR] = ACTIONS(1200), + [aux_sym_yield_expression_token1] = ACTIONS(1202), + [aux_sym_include_expression_token1] = ACTIONS(1202), + [aux_sym_include_once_expression_token1] = ACTIONS(1202), + [aux_sym_require_expression_token1] = ACTIONS(1202), + [aux_sym_require_once_expression_token1] = ACTIONS(1202), [sym_comment] = ACTIONS(3), }, [469] = { - [ts_builtin_sym_end] = ACTIONS(1211), - [sym_name] = ACTIONS(1213), - [anon_sym_QMARK_GT] = ACTIONS(1211), - [anon_sym_SEMI] = ACTIONS(1211), - [aux_sym_function_static_declaration_token1] = ACTIONS(1213), - [aux_sym_global_declaration_token1] = ACTIONS(1213), - [aux_sym_namespace_definition_token1] = ACTIONS(1213), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1213), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1213), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1213), - [anon_sym_BSLASH] = ACTIONS(1211), - [anon_sym_LBRACE] = ACTIONS(1211), - [anon_sym_RBRACE] = ACTIONS(1211), - [aux_sym_trait_declaration_token1] = ACTIONS(1213), - [aux_sym_interface_declaration_token1] = ACTIONS(1213), - [aux_sym_enum_declaration_token1] = ACTIONS(1213), - [aux_sym_enum_case_token1] = ACTIONS(1213), - [aux_sym_class_declaration_token1] = ACTIONS(1213), - [aux_sym_final_modifier_token1] = ACTIONS(1213), - [aux_sym_abstract_modifier_token1] = ACTIONS(1213), - [aux_sym_readonly_modifier_token1] = ACTIONS(1213), - [aux_sym_visibility_modifier_token1] = ACTIONS(1213), - [aux_sym_visibility_modifier_token2] = ACTIONS(1213), - [aux_sym_visibility_modifier_token3] = ACTIONS(1213), - [aux_sym__arrow_function_header_token1] = ACTIONS(1213), - [anon_sym_LPAREN] = ACTIONS(1211), - [aux_sym_cast_type_token1] = ACTIONS(1213), - [aux_sym_echo_statement_token1] = ACTIONS(1213), - [aux_sym_exit_statement_token1] = ACTIONS(1213), - [anon_sym_unset] = ACTIONS(1213), - [aux_sym_declare_statement_token1] = ACTIONS(1213), - [aux_sym_declare_statement_token2] = ACTIONS(1213), - [sym_float] = ACTIONS(1213), - [aux_sym_try_statement_token1] = ACTIONS(1213), - [aux_sym_goto_statement_token1] = ACTIONS(1213), - [aux_sym_continue_statement_token1] = ACTIONS(1213), - [aux_sym_break_statement_token1] = ACTIONS(1213), - [sym_integer] = ACTIONS(1213), - [aux_sym_return_statement_token1] = ACTIONS(1213), - [aux_sym_throw_expression_token1] = ACTIONS(1213), - [aux_sym_while_statement_token1] = ACTIONS(1213), - [aux_sym_while_statement_token2] = ACTIONS(1213), - [aux_sym_do_statement_token1] = ACTIONS(1213), - [aux_sym_for_statement_token1] = ACTIONS(1213), - [aux_sym_for_statement_token2] = ACTIONS(1213), - [aux_sym_foreach_statement_token1] = ACTIONS(1213), - [aux_sym_foreach_statement_token2] = ACTIONS(1213), - [aux_sym_if_statement_token1] = ACTIONS(1213), - [aux_sym_if_statement_token2] = ACTIONS(1213), - [aux_sym_else_if_clause_token1] = ACTIONS(1213), - [aux_sym_else_clause_token1] = ACTIONS(1213), - [aux_sym_match_expression_token1] = ACTIONS(1213), - [aux_sym_match_default_expression_token1] = ACTIONS(1213), - [aux_sym_switch_statement_token1] = ACTIONS(1213), - [aux_sym_switch_block_token1] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1213), - [anon_sym_DASH] = ACTIONS(1213), - [anon_sym_TILDE] = ACTIONS(1211), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AT] = ACTIONS(1211), - [aux_sym_clone_expression_token1] = ACTIONS(1213), - [aux_sym_print_intrinsic_token1] = ACTIONS(1213), - [aux_sym_object_creation_expression_token1] = ACTIONS(1213), - [anon_sym_DASH_DASH] = ACTIONS(1211), - [anon_sym_PLUS_PLUS] = ACTIONS(1211), - [aux_sym__list_destructing_token1] = ACTIONS(1213), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_self] = ACTIONS(1213), - [anon_sym_parent] = ACTIONS(1213), - [aux_sym__argument_name_token1] = ACTIONS(1213), - [aux_sym__argument_name_token2] = ACTIONS(1213), - [anon_sym_POUND_LBRACK] = ACTIONS(1211), - [aux_sym_encapsed_string_token1] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(1211), - [aux_sym_string_token1] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_LT_LT_LT] = ACTIONS(1211), - [anon_sym_BQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR] = ACTIONS(1211), - [aux_sym_yield_expression_token1] = ACTIONS(1213), - [aux_sym_include_expression_token1] = ACTIONS(1213), - [aux_sym_include_once_expression_token1] = ACTIONS(1213), - [aux_sym_require_expression_token1] = ACTIONS(1213), - [aux_sym_require_once_expression_token1] = ACTIONS(1213), + [ts_builtin_sym_end] = ACTIONS(1204), + [sym_name] = ACTIONS(1206), + [anon_sym_QMARK_GT] = ACTIONS(1204), + [anon_sym_SEMI] = ACTIONS(1204), + [aux_sym_function_static_declaration_token1] = ACTIONS(1206), + [aux_sym_global_declaration_token1] = ACTIONS(1206), + [aux_sym_namespace_definition_token1] = ACTIONS(1206), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1206), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1206), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1206), + [anon_sym_BSLASH] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_RBRACE] = ACTIONS(1204), + [aux_sym_trait_declaration_token1] = ACTIONS(1206), + [aux_sym_interface_declaration_token1] = ACTIONS(1206), + [aux_sym_enum_declaration_token1] = ACTIONS(1206), + [aux_sym_enum_case_token1] = ACTIONS(1206), + [aux_sym_class_declaration_token1] = ACTIONS(1206), + [aux_sym_final_modifier_token1] = ACTIONS(1206), + [aux_sym_abstract_modifier_token1] = ACTIONS(1206), + [aux_sym_readonly_modifier_token1] = ACTIONS(1206), + [sym_var_modifier] = ACTIONS(1206), + [aux_sym_visibility_modifier_token1] = ACTIONS(1206), + [aux_sym_visibility_modifier_token2] = ACTIONS(1206), + [aux_sym_visibility_modifier_token3] = ACTIONS(1206), + [aux_sym__arrow_function_header_token1] = ACTIONS(1206), + [anon_sym_LPAREN] = ACTIONS(1204), + [aux_sym_cast_type_token1] = ACTIONS(1206), + [aux_sym_echo_statement_token1] = ACTIONS(1206), + [aux_sym_exit_statement_token1] = ACTIONS(1206), + [anon_sym_unset] = ACTIONS(1206), + [aux_sym_declare_statement_token1] = ACTIONS(1206), + [aux_sym_declare_statement_token2] = ACTIONS(1206), + [sym_float] = ACTIONS(1206), + [aux_sym_try_statement_token1] = ACTIONS(1206), + [aux_sym_goto_statement_token1] = ACTIONS(1206), + [aux_sym_continue_statement_token1] = ACTIONS(1206), + [aux_sym_break_statement_token1] = ACTIONS(1206), + [sym_integer] = ACTIONS(1206), + [aux_sym_return_statement_token1] = ACTIONS(1206), + [aux_sym_throw_expression_token1] = ACTIONS(1206), + [aux_sym_while_statement_token1] = ACTIONS(1206), + [aux_sym_while_statement_token2] = ACTIONS(1206), + [aux_sym_do_statement_token1] = ACTIONS(1206), + [aux_sym_for_statement_token1] = ACTIONS(1206), + [aux_sym_for_statement_token2] = ACTIONS(1206), + [aux_sym_foreach_statement_token1] = ACTIONS(1206), + [aux_sym_foreach_statement_token2] = ACTIONS(1206), + [aux_sym_if_statement_token1] = ACTIONS(1206), + [aux_sym_if_statement_token2] = ACTIONS(1206), + [aux_sym_else_if_clause_token1] = ACTIONS(1206), + [aux_sym_else_clause_token1] = ACTIONS(1206), + [aux_sym_match_expression_token1] = ACTIONS(1206), + [aux_sym_match_default_expression_token1] = ACTIONS(1206), + [aux_sym_switch_statement_token1] = ACTIONS(1206), + [aux_sym_switch_block_token1] = ACTIONS(1206), + [anon_sym_PLUS] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_AT] = ACTIONS(1204), + [aux_sym_clone_expression_token1] = ACTIONS(1206), + [aux_sym_print_intrinsic_token1] = ACTIONS(1206), + [aux_sym_object_creation_expression_token1] = ACTIONS(1206), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [aux_sym__list_destructing_token1] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_self] = ACTIONS(1206), + [anon_sym_parent] = ACTIONS(1206), + [aux_sym__argument_name_token1] = ACTIONS(1206), + [aux_sym__argument_name_token2] = ACTIONS(1206), + [anon_sym_POUND_LBRACK] = ACTIONS(1204), + [aux_sym_encapsed_string_token1] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1204), + [aux_sym_string_token1] = ACTIONS(1204), + [anon_sym_SQUOTE] = ACTIONS(1204), + [anon_sym_LT_LT_LT] = ACTIONS(1204), + [anon_sym_BQUOTE] = ACTIONS(1204), + [anon_sym_DOLLAR] = ACTIONS(1204), + [aux_sym_yield_expression_token1] = ACTIONS(1206), + [aux_sym_include_expression_token1] = ACTIONS(1206), + [aux_sym_include_once_expression_token1] = ACTIONS(1206), + [aux_sym_require_expression_token1] = ACTIONS(1206), + [aux_sym_require_once_expression_token1] = ACTIONS(1206), [sym_comment] = ACTIONS(3), }, [470] = { - [ts_builtin_sym_end] = ACTIONS(1215), - [sym_name] = ACTIONS(1217), - [anon_sym_QMARK_GT] = ACTIONS(1215), - [anon_sym_SEMI] = ACTIONS(1215), - [aux_sym_function_static_declaration_token1] = ACTIONS(1217), - [aux_sym_global_declaration_token1] = ACTIONS(1217), - [aux_sym_namespace_definition_token1] = ACTIONS(1217), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1217), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1217), - [anon_sym_BSLASH] = ACTIONS(1215), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_RBRACE] = ACTIONS(1215), - [aux_sym_trait_declaration_token1] = ACTIONS(1217), - [aux_sym_interface_declaration_token1] = ACTIONS(1217), - [aux_sym_enum_declaration_token1] = ACTIONS(1217), - [aux_sym_enum_case_token1] = ACTIONS(1217), - [aux_sym_class_declaration_token1] = ACTIONS(1217), - [aux_sym_final_modifier_token1] = ACTIONS(1217), - [aux_sym_abstract_modifier_token1] = ACTIONS(1217), - [aux_sym_readonly_modifier_token1] = ACTIONS(1217), - [aux_sym_visibility_modifier_token1] = ACTIONS(1217), - [aux_sym_visibility_modifier_token2] = ACTIONS(1217), - [aux_sym_visibility_modifier_token3] = ACTIONS(1217), - [aux_sym__arrow_function_header_token1] = ACTIONS(1217), - [anon_sym_LPAREN] = ACTIONS(1215), - [aux_sym_cast_type_token1] = ACTIONS(1217), - [aux_sym_echo_statement_token1] = ACTIONS(1217), - [aux_sym_exit_statement_token1] = ACTIONS(1217), - [anon_sym_unset] = ACTIONS(1217), - [aux_sym_declare_statement_token1] = ACTIONS(1217), - [aux_sym_declare_statement_token2] = ACTIONS(1217), - [sym_float] = ACTIONS(1217), - [aux_sym_try_statement_token1] = ACTIONS(1217), - [aux_sym_goto_statement_token1] = ACTIONS(1217), - [aux_sym_continue_statement_token1] = ACTIONS(1217), - [aux_sym_break_statement_token1] = ACTIONS(1217), - [sym_integer] = ACTIONS(1217), - [aux_sym_return_statement_token1] = ACTIONS(1217), - [aux_sym_throw_expression_token1] = ACTIONS(1217), - [aux_sym_while_statement_token1] = ACTIONS(1217), - [aux_sym_while_statement_token2] = ACTIONS(1217), - [aux_sym_do_statement_token1] = ACTIONS(1217), - [aux_sym_for_statement_token1] = ACTIONS(1217), - [aux_sym_for_statement_token2] = ACTIONS(1217), - [aux_sym_foreach_statement_token1] = ACTIONS(1217), - [aux_sym_foreach_statement_token2] = ACTIONS(1217), - [aux_sym_if_statement_token1] = ACTIONS(1217), - [aux_sym_if_statement_token2] = ACTIONS(1217), - [aux_sym_else_if_clause_token1] = ACTIONS(1217), - [aux_sym_else_clause_token1] = ACTIONS(1217), - [aux_sym_match_expression_token1] = ACTIONS(1217), - [aux_sym_match_default_expression_token1] = ACTIONS(1217), - [aux_sym_switch_statement_token1] = ACTIONS(1217), - [aux_sym_switch_block_token1] = ACTIONS(1217), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1215), - [anon_sym_AT] = ACTIONS(1215), - [aux_sym_clone_expression_token1] = ACTIONS(1217), - [aux_sym_print_intrinsic_token1] = ACTIONS(1217), - [aux_sym_object_creation_expression_token1] = ACTIONS(1217), - [anon_sym_DASH_DASH] = ACTIONS(1215), - [anon_sym_PLUS_PLUS] = ACTIONS(1215), - [aux_sym__list_destructing_token1] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(1215), - [anon_sym_self] = ACTIONS(1217), - [anon_sym_parent] = ACTIONS(1217), - [aux_sym__argument_name_token1] = ACTIONS(1217), - [aux_sym__argument_name_token2] = ACTIONS(1217), - [anon_sym_POUND_LBRACK] = ACTIONS(1215), - [aux_sym_encapsed_string_token1] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1215), - [aux_sym_string_token1] = ACTIONS(1215), - [anon_sym_SQUOTE] = ACTIONS(1215), - [anon_sym_LT_LT_LT] = ACTIONS(1215), - [anon_sym_BQUOTE] = ACTIONS(1215), - [anon_sym_DOLLAR] = ACTIONS(1215), - [aux_sym_yield_expression_token1] = ACTIONS(1217), - [aux_sym_include_expression_token1] = ACTIONS(1217), - [aux_sym_include_once_expression_token1] = ACTIONS(1217), - [aux_sym_require_expression_token1] = ACTIONS(1217), - [aux_sym_require_once_expression_token1] = ACTIONS(1217), + [ts_builtin_sym_end] = ACTIONS(1208), + [sym_name] = ACTIONS(1210), + [anon_sym_QMARK_GT] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1208), + [aux_sym_function_static_declaration_token1] = ACTIONS(1210), + [aux_sym_global_declaration_token1] = ACTIONS(1210), + [aux_sym_namespace_definition_token1] = ACTIONS(1210), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1210), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1210), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1210), + [anon_sym_BSLASH] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1208), + [anon_sym_RBRACE] = ACTIONS(1208), + [aux_sym_trait_declaration_token1] = ACTIONS(1210), + [aux_sym_interface_declaration_token1] = ACTIONS(1210), + [aux_sym_enum_declaration_token1] = ACTIONS(1210), + [aux_sym_enum_case_token1] = ACTIONS(1210), + [aux_sym_class_declaration_token1] = ACTIONS(1210), + [aux_sym_final_modifier_token1] = ACTIONS(1210), + [aux_sym_abstract_modifier_token1] = ACTIONS(1210), + [aux_sym_readonly_modifier_token1] = ACTIONS(1210), + [sym_var_modifier] = ACTIONS(1210), + [aux_sym_visibility_modifier_token1] = ACTIONS(1210), + [aux_sym_visibility_modifier_token2] = ACTIONS(1210), + [aux_sym_visibility_modifier_token3] = ACTIONS(1210), + [aux_sym__arrow_function_header_token1] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(1208), + [aux_sym_cast_type_token1] = ACTIONS(1210), + [aux_sym_echo_statement_token1] = ACTIONS(1210), + [aux_sym_exit_statement_token1] = ACTIONS(1210), + [anon_sym_unset] = ACTIONS(1210), + [aux_sym_declare_statement_token1] = ACTIONS(1210), + [aux_sym_declare_statement_token2] = ACTIONS(1210), + [sym_float] = ACTIONS(1210), + [aux_sym_try_statement_token1] = ACTIONS(1210), + [aux_sym_goto_statement_token1] = ACTIONS(1210), + [aux_sym_continue_statement_token1] = ACTIONS(1210), + [aux_sym_break_statement_token1] = ACTIONS(1210), + [sym_integer] = ACTIONS(1210), + [aux_sym_return_statement_token1] = ACTIONS(1210), + [aux_sym_throw_expression_token1] = ACTIONS(1210), + [aux_sym_while_statement_token1] = ACTIONS(1210), + [aux_sym_while_statement_token2] = ACTIONS(1210), + [aux_sym_do_statement_token1] = ACTIONS(1210), + [aux_sym_for_statement_token1] = ACTIONS(1210), + [aux_sym_for_statement_token2] = ACTIONS(1210), + [aux_sym_foreach_statement_token1] = ACTIONS(1210), + [aux_sym_foreach_statement_token2] = ACTIONS(1210), + [aux_sym_if_statement_token1] = ACTIONS(1210), + [aux_sym_if_statement_token2] = ACTIONS(1210), + [aux_sym_else_if_clause_token1] = ACTIONS(1210), + [aux_sym_else_clause_token1] = ACTIONS(1210), + [aux_sym_match_expression_token1] = ACTIONS(1210), + [aux_sym_match_default_expression_token1] = ACTIONS(1210), + [aux_sym_switch_statement_token1] = ACTIONS(1210), + [aux_sym_switch_block_token1] = ACTIONS(1210), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_AT] = ACTIONS(1208), + [aux_sym_clone_expression_token1] = ACTIONS(1210), + [aux_sym_print_intrinsic_token1] = ACTIONS(1210), + [aux_sym_object_creation_expression_token1] = ACTIONS(1210), + [anon_sym_DASH_DASH] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1208), + [aux_sym__list_destructing_token1] = ACTIONS(1210), + [anon_sym_LBRACK] = ACTIONS(1208), + [anon_sym_self] = ACTIONS(1210), + [anon_sym_parent] = ACTIONS(1210), + [aux_sym__argument_name_token1] = ACTIONS(1210), + [aux_sym__argument_name_token2] = ACTIONS(1210), + [anon_sym_POUND_LBRACK] = ACTIONS(1208), + [aux_sym_encapsed_string_token1] = ACTIONS(1208), + [anon_sym_DQUOTE] = ACTIONS(1208), + [aux_sym_string_token1] = ACTIONS(1208), + [anon_sym_SQUOTE] = ACTIONS(1208), + [anon_sym_LT_LT_LT] = ACTIONS(1208), + [anon_sym_BQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR] = ACTIONS(1208), + [aux_sym_yield_expression_token1] = ACTIONS(1210), + [aux_sym_include_expression_token1] = ACTIONS(1210), + [aux_sym_include_once_expression_token1] = ACTIONS(1210), + [aux_sym_require_expression_token1] = ACTIONS(1210), + [aux_sym_require_once_expression_token1] = ACTIONS(1210), [sym_comment] = ACTIONS(3), }, [471] = { - [ts_builtin_sym_end] = ACTIONS(1219), - [sym_name] = ACTIONS(1221), - [anon_sym_QMARK_GT] = ACTIONS(1219), - [anon_sym_SEMI] = ACTIONS(1219), - [aux_sym_function_static_declaration_token1] = ACTIONS(1221), - [aux_sym_global_declaration_token1] = ACTIONS(1221), - [aux_sym_namespace_definition_token1] = ACTIONS(1221), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1221), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1221), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1221), - [anon_sym_BSLASH] = ACTIONS(1219), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_RBRACE] = ACTIONS(1219), - [aux_sym_trait_declaration_token1] = ACTIONS(1221), - [aux_sym_interface_declaration_token1] = ACTIONS(1221), - [aux_sym_enum_declaration_token1] = ACTIONS(1221), - [aux_sym_enum_case_token1] = ACTIONS(1221), - [aux_sym_class_declaration_token1] = ACTIONS(1221), - [aux_sym_final_modifier_token1] = ACTIONS(1221), - [aux_sym_abstract_modifier_token1] = ACTIONS(1221), - [aux_sym_readonly_modifier_token1] = ACTIONS(1221), - [aux_sym_visibility_modifier_token1] = ACTIONS(1221), - [aux_sym_visibility_modifier_token2] = ACTIONS(1221), - [aux_sym_visibility_modifier_token3] = ACTIONS(1221), - [aux_sym__arrow_function_header_token1] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1219), - [aux_sym_cast_type_token1] = ACTIONS(1221), - [aux_sym_echo_statement_token1] = ACTIONS(1221), - [aux_sym_exit_statement_token1] = ACTIONS(1221), - [anon_sym_unset] = ACTIONS(1221), - [aux_sym_declare_statement_token1] = ACTIONS(1221), - [aux_sym_declare_statement_token2] = ACTIONS(1221), - [sym_float] = ACTIONS(1221), - [aux_sym_try_statement_token1] = ACTIONS(1221), - [aux_sym_goto_statement_token1] = ACTIONS(1221), - [aux_sym_continue_statement_token1] = ACTIONS(1221), - [aux_sym_break_statement_token1] = ACTIONS(1221), - [sym_integer] = ACTIONS(1221), - [aux_sym_return_statement_token1] = ACTIONS(1221), - [aux_sym_throw_expression_token1] = ACTIONS(1221), - [aux_sym_while_statement_token1] = ACTIONS(1221), - [aux_sym_while_statement_token2] = ACTIONS(1221), - [aux_sym_do_statement_token1] = ACTIONS(1221), - [aux_sym_for_statement_token1] = ACTIONS(1221), - [aux_sym_for_statement_token2] = ACTIONS(1221), - [aux_sym_foreach_statement_token1] = ACTIONS(1221), - [aux_sym_foreach_statement_token2] = ACTIONS(1221), - [aux_sym_if_statement_token1] = ACTIONS(1221), - [aux_sym_if_statement_token2] = ACTIONS(1221), - [aux_sym_else_if_clause_token1] = ACTIONS(1221), - [aux_sym_else_clause_token1] = ACTIONS(1221), - [aux_sym_match_expression_token1] = ACTIONS(1221), - [aux_sym_match_default_expression_token1] = ACTIONS(1221), - [aux_sym_switch_statement_token1] = ACTIONS(1221), - [aux_sym_switch_block_token1] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_TILDE] = ACTIONS(1219), - [anon_sym_BANG] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(1219), - [aux_sym_clone_expression_token1] = ACTIONS(1221), - [aux_sym_print_intrinsic_token1] = ACTIONS(1221), - [aux_sym_object_creation_expression_token1] = ACTIONS(1221), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [aux_sym__list_destructing_token1] = ACTIONS(1221), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_self] = ACTIONS(1221), - [anon_sym_parent] = ACTIONS(1221), - [aux_sym__argument_name_token1] = ACTIONS(1221), - [aux_sym__argument_name_token2] = ACTIONS(1221), - [anon_sym_POUND_LBRACK] = ACTIONS(1219), - [aux_sym_encapsed_string_token1] = ACTIONS(1219), - [anon_sym_DQUOTE] = ACTIONS(1219), - [aux_sym_string_token1] = ACTIONS(1219), - [anon_sym_SQUOTE] = ACTIONS(1219), - [anon_sym_LT_LT_LT] = ACTIONS(1219), - [anon_sym_BQUOTE] = ACTIONS(1219), - [anon_sym_DOLLAR] = ACTIONS(1219), - [aux_sym_yield_expression_token1] = ACTIONS(1221), - [aux_sym_include_expression_token1] = ACTIONS(1221), - [aux_sym_include_once_expression_token1] = ACTIONS(1221), - [aux_sym_require_expression_token1] = ACTIONS(1221), - [aux_sym_require_once_expression_token1] = ACTIONS(1221), + [ts_builtin_sym_end] = ACTIONS(1212), + [sym_name] = ACTIONS(1214), + [anon_sym_QMARK_GT] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1212), + [aux_sym_function_static_declaration_token1] = ACTIONS(1214), + [aux_sym_global_declaration_token1] = ACTIONS(1214), + [aux_sym_namespace_definition_token1] = ACTIONS(1214), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1214), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1214), + [anon_sym_BSLASH] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [aux_sym_trait_declaration_token1] = ACTIONS(1214), + [aux_sym_interface_declaration_token1] = ACTIONS(1214), + [aux_sym_enum_declaration_token1] = ACTIONS(1214), + [aux_sym_enum_case_token1] = ACTIONS(1214), + [aux_sym_class_declaration_token1] = ACTIONS(1214), + [aux_sym_final_modifier_token1] = ACTIONS(1214), + [aux_sym_abstract_modifier_token1] = ACTIONS(1214), + [aux_sym_readonly_modifier_token1] = ACTIONS(1214), + [sym_var_modifier] = ACTIONS(1214), + [aux_sym_visibility_modifier_token1] = ACTIONS(1214), + [aux_sym_visibility_modifier_token2] = ACTIONS(1214), + [aux_sym_visibility_modifier_token3] = ACTIONS(1214), + [aux_sym__arrow_function_header_token1] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1212), + [aux_sym_cast_type_token1] = ACTIONS(1214), + [aux_sym_echo_statement_token1] = ACTIONS(1214), + [aux_sym_exit_statement_token1] = ACTIONS(1214), + [anon_sym_unset] = ACTIONS(1214), + [aux_sym_declare_statement_token1] = ACTIONS(1214), + [aux_sym_declare_statement_token2] = ACTIONS(1214), + [sym_float] = ACTIONS(1214), + [aux_sym_try_statement_token1] = ACTIONS(1214), + [aux_sym_goto_statement_token1] = ACTIONS(1214), + [aux_sym_continue_statement_token1] = ACTIONS(1214), + [aux_sym_break_statement_token1] = ACTIONS(1214), + [sym_integer] = ACTIONS(1214), + [aux_sym_return_statement_token1] = ACTIONS(1214), + [aux_sym_throw_expression_token1] = ACTIONS(1214), + [aux_sym_while_statement_token1] = ACTIONS(1214), + [aux_sym_while_statement_token2] = ACTIONS(1214), + [aux_sym_do_statement_token1] = ACTIONS(1214), + [aux_sym_for_statement_token1] = ACTIONS(1214), + [aux_sym_for_statement_token2] = ACTIONS(1214), + [aux_sym_foreach_statement_token1] = ACTIONS(1214), + [aux_sym_foreach_statement_token2] = ACTIONS(1214), + [aux_sym_if_statement_token1] = ACTIONS(1214), + [aux_sym_if_statement_token2] = ACTIONS(1214), + [aux_sym_else_if_clause_token1] = ACTIONS(1214), + [aux_sym_else_clause_token1] = ACTIONS(1214), + [aux_sym_match_expression_token1] = ACTIONS(1214), + [aux_sym_match_default_expression_token1] = ACTIONS(1214), + [aux_sym_switch_statement_token1] = ACTIONS(1214), + [aux_sym_switch_block_token1] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_AT] = ACTIONS(1212), + [aux_sym_clone_expression_token1] = ACTIONS(1214), + [aux_sym_print_intrinsic_token1] = ACTIONS(1214), + [aux_sym_object_creation_expression_token1] = ACTIONS(1214), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [aux_sym__list_destructing_token1] = ACTIONS(1214), + [anon_sym_LBRACK] = ACTIONS(1212), + [anon_sym_self] = ACTIONS(1214), + [anon_sym_parent] = ACTIONS(1214), + [aux_sym__argument_name_token1] = ACTIONS(1214), + [aux_sym__argument_name_token2] = ACTIONS(1214), + [anon_sym_POUND_LBRACK] = ACTIONS(1212), + [aux_sym_encapsed_string_token1] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [aux_sym_string_token1] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [anon_sym_LT_LT_LT] = ACTIONS(1212), + [anon_sym_BQUOTE] = ACTIONS(1212), + [anon_sym_DOLLAR] = ACTIONS(1212), + [aux_sym_yield_expression_token1] = ACTIONS(1214), + [aux_sym_include_expression_token1] = ACTIONS(1214), + [aux_sym_include_once_expression_token1] = ACTIONS(1214), + [aux_sym_require_expression_token1] = ACTIONS(1214), + [aux_sym_require_once_expression_token1] = ACTIONS(1214), [sym_comment] = ACTIONS(3), }, [472] = { - [ts_builtin_sym_end] = ACTIONS(1223), - [sym_name] = ACTIONS(1225), - [anon_sym_QMARK_GT] = ACTIONS(1223), - [anon_sym_SEMI] = ACTIONS(1223), - [aux_sym_function_static_declaration_token1] = ACTIONS(1225), - [aux_sym_global_declaration_token1] = ACTIONS(1225), - [aux_sym_namespace_definition_token1] = ACTIONS(1225), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1225), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1225), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1225), - [anon_sym_BSLASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1223), - [aux_sym_trait_declaration_token1] = ACTIONS(1225), - [aux_sym_interface_declaration_token1] = ACTIONS(1225), - [aux_sym_enum_declaration_token1] = ACTIONS(1225), - [aux_sym_enum_case_token1] = ACTIONS(1225), - [aux_sym_class_declaration_token1] = ACTIONS(1225), - [aux_sym_final_modifier_token1] = ACTIONS(1225), - [aux_sym_abstract_modifier_token1] = ACTIONS(1225), - [aux_sym_readonly_modifier_token1] = ACTIONS(1225), - [aux_sym_visibility_modifier_token1] = ACTIONS(1225), - [aux_sym_visibility_modifier_token2] = ACTIONS(1225), - [aux_sym_visibility_modifier_token3] = ACTIONS(1225), - [aux_sym__arrow_function_header_token1] = ACTIONS(1225), - [anon_sym_LPAREN] = ACTIONS(1223), - [aux_sym_cast_type_token1] = ACTIONS(1225), - [aux_sym_echo_statement_token1] = ACTIONS(1225), - [aux_sym_exit_statement_token1] = ACTIONS(1225), - [anon_sym_unset] = ACTIONS(1225), - [aux_sym_declare_statement_token1] = ACTIONS(1225), - [aux_sym_declare_statement_token2] = ACTIONS(1225), - [sym_float] = ACTIONS(1225), - [aux_sym_try_statement_token1] = ACTIONS(1225), - [aux_sym_goto_statement_token1] = ACTIONS(1225), - [aux_sym_continue_statement_token1] = ACTIONS(1225), - [aux_sym_break_statement_token1] = ACTIONS(1225), - [sym_integer] = ACTIONS(1225), - [aux_sym_return_statement_token1] = ACTIONS(1225), - [aux_sym_throw_expression_token1] = ACTIONS(1225), - [aux_sym_while_statement_token1] = ACTIONS(1225), - [aux_sym_while_statement_token2] = ACTIONS(1225), - [aux_sym_do_statement_token1] = ACTIONS(1225), - [aux_sym_for_statement_token1] = ACTIONS(1225), - [aux_sym_for_statement_token2] = ACTIONS(1225), - [aux_sym_foreach_statement_token1] = ACTIONS(1225), - [aux_sym_foreach_statement_token2] = ACTIONS(1225), - [aux_sym_if_statement_token1] = ACTIONS(1225), - [aux_sym_if_statement_token2] = ACTIONS(1225), - [aux_sym_else_if_clause_token1] = ACTIONS(1225), - [aux_sym_else_clause_token1] = ACTIONS(1225), - [aux_sym_match_expression_token1] = ACTIONS(1225), - [aux_sym_match_default_expression_token1] = ACTIONS(1225), - [aux_sym_switch_statement_token1] = ACTIONS(1225), - [aux_sym_switch_block_token1] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1223), - [anon_sym_AT] = ACTIONS(1223), - [aux_sym_clone_expression_token1] = ACTIONS(1225), - [aux_sym_print_intrinsic_token1] = ACTIONS(1225), - [aux_sym_object_creation_expression_token1] = ACTIONS(1225), - [anon_sym_DASH_DASH] = ACTIONS(1223), - [anon_sym_PLUS_PLUS] = ACTIONS(1223), - [aux_sym__list_destructing_token1] = ACTIONS(1225), - [anon_sym_LBRACK] = ACTIONS(1223), - [anon_sym_self] = ACTIONS(1225), - [anon_sym_parent] = ACTIONS(1225), - [aux_sym__argument_name_token1] = ACTIONS(1225), - [aux_sym__argument_name_token2] = ACTIONS(1225), - [anon_sym_POUND_LBRACK] = ACTIONS(1223), - [aux_sym_encapsed_string_token1] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(1223), - [aux_sym_string_token1] = ACTIONS(1223), - [anon_sym_SQUOTE] = ACTIONS(1223), - [anon_sym_LT_LT_LT] = ACTIONS(1223), - [anon_sym_BQUOTE] = ACTIONS(1223), - [anon_sym_DOLLAR] = ACTIONS(1223), - [aux_sym_yield_expression_token1] = ACTIONS(1225), - [aux_sym_include_expression_token1] = ACTIONS(1225), - [aux_sym_include_once_expression_token1] = ACTIONS(1225), - [aux_sym_require_expression_token1] = ACTIONS(1225), - [aux_sym_require_once_expression_token1] = ACTIONS(1225), + [ts_builtin_sym_end] = ACTIONS(1216), + [sym_name] = ACTIONS(1218), + [anon_sym_QMARK_GT] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(1216), + [aux_sym_function_static_declaration_token1] = ACTIONS(1218), + [aux_sym_global_declaration_token1] = ACTIONS(1218), + [aux_sym_namespace_definition_token1] = ACTIONS(1218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1218), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1218), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1218), + [anon_sym_BSLASH] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_RBRACE] = ACTIONS(1216), + [aux_sym_trait_declaration_token1] = ACTIONS(1218), + [aux_sym_interface_declaration_token1] = ACTIONS(1218), + [aux_sym_enum_declaration_token1] = ACTIONS(1218), + [aux_sym_enum_case_token1] = ACTIONS(1218), + [aux_sym_class_declaration_token1] = ACTIONS(1218), + [aux_sym_final_modifier_token1] = ACTIONS(1218), + [aux_sym_abstract_modifier_token1] = ACTIONS(1218), + [aux_sym_readonly_modifier_token1] = ACTIONS(1218), + [sym_var_modifier] = ACTIONS(1218), + [aux_sym_visibility_modifier_token1] = ACTIONS(1218), + [aux_sym_visibility_modifier_token2] = ACTIONS(1218), + [aux_sym_visibility_modifier_token3] = ACTIONS(1218), + [aux_sym__arrow_function_header_token1] = ACTIONS(1218), + [anon_sym_LPAREN] = ACTIONS(1216), + [aux_sym_cast_type_token1] = ACTIONS(1218), + [aux_sym_echo_statement_token1] = ACTIONS(1218), + [aux_sym_exit_statement_token1] = ACTIONS(1218), + [anon_sym_unset] = ACTIONS(1218), + [aux_sym_declare_statement_token1] = ACTIONS(1218), + [aux_sym_declare_statement_token2] = ACTIONS(1218), + [sym_float] = ACTIONS(1218), + [aux_sym_try_statement_token1] = ACTIONS(1218), + [aux_sym_goto_statement_token1] = ACTIONS(1218), + [aux_sym_continue_statement_token1] = ACTIONS(1218), + [aux_sym_break_statement_token1] = ACTIONS(1218), + [sym_integer] = ACTIONS(1218), + [aux_sym_return_statement_token1] = ACTIONS(1218), + [aux_sym_throw_expression_token1] = ACTIONS(1218), + [aux_sym_while_statement_token1] = ACTIONS(1218), + [aux_sym_while_statement_token2] = ACTIONS(1218), + [aux_sym_do_statement_token1] = ACTIONS(1218), + [aux_sym_for_statement_token1] = ACTIONS(1218), + [aux_sym_for_statement_token2] = ACTIONS(1218), + [aux_sym_foreach_statement_token1] = ACTIONS(1218), + [aux_sym_foreach_statement_token2] = ACTIONS(1218), + [aux_sym_if_statement_token1] = ACTIONS(1218), + [aux_sym_if_statement_token2] = ACTIONS(1218), + [aux_sym_else_if_clause_token1] = ACTIONS(1218), + [aux_sym_else_clause_token1] = ACTIONS(1218), + [aux_sym_match_expression_token1] = ACTIONS(1218), + [aux_sym_match_default_expression_token1] = ACTIONS(1218), + [aux_sym_switch_statement_token1] = ACTIONS(1218), + [aux_sym_switch_block_token1] = ACTIONS(1218), + [anon_sym_PLUS] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1216), + [anon_sym_BANG] = ACTIONS(1216), + [anon_sym_AT] = ACTIONS(1216), + [aux_sym_clone_expression_token1] = ACTIONS(1218), + [aux_sym_print_intrinsic_token1] = ACTIONS(1218), + [aux_sym_object_creation_expression_token1] = ACTIONS(1218), + [anon_sym_DASH_DASH] = ACTIONS(1216), + [anon_sym_PLUS_PLUS] = ACTIONS(1216), + [aux_sym__list_destructing_token1] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1216), + [anon_sym_self] = ACTIONS(1218), + [anon_sym_parent] = ACTIONS(1218), + [aux_sym__argument_name_token1] = ACTIONS(1218), + [aux_sym__argument_name_token2] = ACTIONS(1218), + [anon_sym_POUND_LBRACK] = ACTIONS(1216), + [aux_sym_encapsed_string_token1] = ACTIONS(1216), + [anon_sym_DQUOTE] = ACTIONS(1216), + [aux_sym_string_token1] = ACTIONS(1216), + [anon_sym_SQUOTE] = ACTIONS(1216), + [anon_sym_LT_LT_LT] = ACTIONS(1216), + [anon_sym_BQUOTE] = ACTIONS(1216), + [anon_sym_DOLLAR] = ACTIONS(1216), + [aux_sym_yield_expression_token1] = ACTIONS(1218), + [aux_sym_include_expression_token1] = ACTIONS(1218), + [aux_sym_include_once_expression_token1] = ACTIONS(1218), + [aux_sym_require_expression_token1] = ACTIONS(1218), + [aux_sym_require_once_expression_token1] = ACTIONS(1218), [sym_comment] = ACTIONS(3), }, [473] = { - [ts_builtin_sym_end] = ACTIONS(1227), - [sym_name] = ACTIONS(1229), - [anon_sym_QMARK_GT] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1227), - [aux_sym_function_static_declaration_token1] = ACTIONS(1229), - [aux_sym_global_declaration_token1] = ACTIONS(1229), - [aux_sym_namespace_definition_token1] = ACTIONS(1229), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1229), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1229), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1229), - [anon_sym_BSLASH] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_RBRACE] = ACTIONS(1227), - [aux_sym_trait_declaration_token1] = ACTIONS(1229), - [aux_sym_interface_declaration_token1] = ACTIONS(1229), - [aux_sym_enum_declaration_token1] = ACTIONS(1229), - [aux_sym_enum_case_token1] = ACTIONS(1229), - [aux_sym_class_declaration_token1] = ACTIONS(1229), - [aux_sym_final_modifier_token1] = ACTIONS(1229), - [aux_sym_abstract_modifier_token1] = ACTIONS(1229), - [aux_sym_readonly_modifier_token1] = ACTIONS(1229), - [aux_sym_visibility_modifier_token1] = ACTIONS(1229), - [aux_sym_visibility_modifier_token2] = ACTIONS(1229), - [aux_sym_visibility_modifier_token3] = ACTIONS(1229), - [aux_sym__arrow_function_header_token1] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1227), - [aux_sym_cast_type_token1] = ACTIONS(1229), - [aux_sym_echo_statement_token1] = ACTIONS(1229), - [aux_sym_exit_statement_token1] = ACTIONS(1229), - [anon_sym_unset] = ACTIONS(1229), - [aux_sym_declare_statement_token1] = ACTIONS(1229), - [aux_sym_declare_statement_token2] = ACTIONS(1229), - [sym_float] = ACTIONS(1229), - [aux_sym_try_statement_token1] = ACTIONS(1229), - [aux_sym_goto_statement_token1] = ACTIONS(1229), - [aux_sym_continue_statement_token1] = ACTIONS(1229), - [aux_sym_break_statement_token1] = ACTIONS(1229), - [sym_integer] = ACTIONS(1229), - [aux_sym_return_statement_token1] = ACTIONS(1229), - [aux_sym_throw_expression_token1] = ACTIONS(1229), - [aux_sym_while_statement_token1] = ACTIONS(1229), - [aux_sym_while_statement_token2] = ACTIONS(1229), - [aux_sym_do_statement_token1] = ACTIONS(1229), - [aux_sym_for_statement_token1] = ACTIONS(1229), - [aux_sym_for_statement_token2] = ACTIONS(1229), - [aux_sym_foreach_statement_token1] = ACTIONS(1229), - [aux_sym_foreach_statement_token2] = ACTIONS(1229), - [aux_sym_if_statement_token1] = ACTIONS(1229), - [aux_sym_if_statement_token2] = ACTIONS(1229), - [aux_sym_else_if_clause_token1] = ACTIONS(1229), - [aux_sym_else_clause_token1] = ACTIONS(1229), - [aux_sym_match_expression_token1] = ACTIONS(1229), - [aux_sym_match_default_expression_token1] = ACTIONS(1229), - [aux_sym_switch_statement_token1] = ACTIONS(1229), - [aux_sym_switch_block_token1] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(1227), - [aux_sym_clone_expression_token1] = ACTIONS(1229), - [aux_sym_print_intrinsic_token1] = ACTIONS(1229), - [aux_sym_object_creation_expression_token1] = ACTIONS(1229), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [aux_sym__list_destructing_token1] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1227), - [anon_sym_self] = ACTIONS(1229), - [anon_sym_parent] = ACTIONS(1229), - [aux_sym__argument_name_token1] = ACTIONS(1229), - [aux_sym__argument_name_token2] = ACTIONS(1229), - [anon_sym_POUND_LBRACK] = ACTIONS(1227), - [aux_sym_encapsed_string_token1] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1227), - [aux_sym_string_token1] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1227), - [anon_sym_LT_LT_LT] = ACTIONS(1227), - [anon_sym_BQUOTE] = ACTIONS(1227), - [anon_sym_DOLLAR] = ACTIONS(1227), - [aux_sym_yield_expression_token1] = ACTIONS(1229), - [aux_sym_include_expression_token1] = ACTIONS(1229), - [aux_sym_include_once_expression_token1] = ACTIONS(1229), - [aux_sym_require_expression_token1] = ACTIONS(1229), - [aux_sym_require_once_expression_token1] = ACTIONS(1229), + [ts_builtin_sym_end] = ACTIONS(1220), + [sym_name] = ACTIONS(1222), + [anon_sym_QMARK_GT] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1220), + [aux_sym_function_static_declaration_token1] = ACTIONS(1222), + [aux_sym_global_declaration_token1] = ACTIONS(1222), + [aux_sym_namespace_definition_token1] = ACTIONS(1222), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1222), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1222), + [anon_sym_BSLASH] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_RBRACE] = ACTIONS(1220), + [aux_sym_trait_declaration_token1] = ACTIONS(1222), + [aux_sym_interface_declaration_token1] = ACTIONS(1222), + [aux_sym_enum_declaration_token1] = ACTIONS(1222), + [aux_sym_enum_case_token1] = ACTIONS(1222), + [aux_sym_class_declaration_token1] = ACTIONS(1222), + [aux_sym_final_modifier_token1] = ACTIONS(1222), + [aux_sym_abstract_modifier_token1] = ACTIONS(1222), + [aux_sym_readonly_modifier_token1] = ACTIONS(1222), + [sym_var_modifier] = ACTIONS(1222), + [aux_sym_visibility_modifier_token1] = ACTIONS(1222), + [aux_sym_visibility_modifier_token2] = ACTIONS(1222), + [aux_sym_visibility_modifier_token3] = ACTIONS(1222), + [aux_sym__arrow_function_header_token1] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1220), + [aux_sym_cast_type_token1] = ACTIONS(1222), + [aux_sym_echo_statement_token1] = ACTIONS(1222), + [aux_sym_exit_statement_token1] = ACTIONS(1222), + [anon_sym_unset] = ACTIONS(1222), + [aux_sym_declare_statement_token1] = ACTIONS(1222), + [aux_sym_declare_statement_token2] = ACTIONS(1222), + [sym_float] = ACTIONS(1222), + [aux_sym_try_statement_token1] = ACTIONS(1222), + [aux_sym_goto_statement_token1] = ACTIONS(1222), + [aux_sym_continue_statement_token1] = ACTIONS(1222), + [aux_sym_break_statement_token1] = ACTIONS(1222), + [sym_integer] = ACTIONS(1222), + [aux_sym_return_statement_token1] = ACTIONS(1222), + [aux_sym_throw_expression_token1] = ACTIONS(1222), + [aux_sym_while_statement_token1] = ACTIONS(1222), + [aux_sym_while_statement_token2] = ACTIONS(1222), + [aux_sym_do_statement_token1] = ACTIONS(1222), + [aux_sym_for_statement_token1] = ACTIONS(1222), + [aux_sym_for_statement_token2] = ACTIONS(1222), + [aux_sym_foreach_statement_token1] = ACTIONS(1222), + [aux_sym_foreach_statement_token2] = ACTIONS(1222), + [aux_sym_if_statement_token1] = ACTIONS(1222), + [aux_sym_if_statement_token2] = ACTIONS(1222), + [aux_sym_else_if_clause_token1] = ACTIONS(1222), + [aux_sym_else_clause_token1] = ACTIONS(1222), + [aux_sym_match_expression_token1] = ACTIONS(1222), + [aux_sym_match_default_expression_token1] = ACTIONS(1222), + [aux_sym_switch_statement_token1] = ACTIONS(1222), + [aux_sym_switch_block_token1] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_AT] = ACTIONS(1220), + [aux_sym_clone_expression_token1] = ACTIONS(1222), + [aux_sym_print_intrinsic_token1] = ACTIONS(1222), + [aux_sym_object_creation_expression_token1] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [aux_sym__list_destructing_token1] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(1220), + [anon_sym_self] = ACTIONS(1222), + [anon_sym_parent] = ACTIONS(1222), + [aux_sym__argument_name_token1] = ACTIONS(1222), + [aux_sym__argument_name_token2] = ACTIONS(1222), + [anon_sym_POUND_LBRACK] = ACTIONS(1220), + [aux_sym_encapsed_string_token1] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1220), + [aux_sym_string_token1] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_LT_LT_LT] = ACTIONS(1220), + [anon_sym_BQUOTE] = ACTIONS(1220), + [anon_sym_DOLLAR] = ACTIONS(1220), + [aux_sym_yield_expression_token1] = ACTIONS(1222), + [aux_sym_include_expression_token1] = ACTIONS(1222), + [aux_sym_include_once_expression_token1] = ACTIONS(1222), + [aux_sym_require_expression_token1] = ACTIONS(1222), + [aux_sym_require_once_expression_token1] = ACTIONS(1222), [sym_comment] = ACTIONS(3), }, [474] = { - [ts_builtin_sym_end] = ACTIONS(1231), - [sym_name] = ACTIONS(1233), - [anon_sym_QMARK_GT] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1231), - [aux_sym_function_static_declaration_token1] = ACTIONS(1233), - [aux_sym_global_declaration_token1] = ACTIONS(1233), - [aux_sym_namespace_definition_token1] = ACTIONS(1233), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1233), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1233), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1233), - [anon_sym_BSLASH] = ACTIONS(1231), - [anon_sym_LBRACE] = ACTIONS(1231), - [anon_sym_RBRACE] = ACTIONS(1231), - [aux_sym_trait_declaration_token1] = ACTIONS(1233), - [aux_sym_interface_declaration_token1] = ACTIONS(1233), - [aux_sym_enum_declaration_token1] = ACTIONS(1233), - [aux_sym_enum_case_token1] = ACTIONS(1233), - [aux_sym_class_declaration_token1] = ACTIONS(1233), - [aux_sym_final_modifier_token1] = ACTIONS(1233), - [aux_sym_abstract_modifier_token1] = ACTIONS(1233), - [aux_sym_readonly_modifier_token1] = ACTIONS(1233), - [aux_sym_visibility_modifier_token1] = ACTIONS(1233), - [aux_sym_visibility_modifier_token2] = ACTIONS(1233), - [aux_sym_visibility_modifier_token3] = ACTIONS(1233), - [aux_sym__arrow_function_header_token1] = ACTIONS(1233), - [anon_sym_LPAREN] = ACTIONS(1231), - [aux_sym_cast_type_token1] = ACTIONS(1233), - [aux_sym_echo_statement_token1] = ACTIONS(1233), - [aux_sym_exit_statement_token1] = ACTIONS(1233), - [anon_sym_unset] = ACTIONS(1233), - [aux_sym_declare_statement_token1] = ACTIONS(1233), - [aux_sym_declare_statement_token2] = ACTIONS(1233), - [sym_float] = ACTIONS(1233), - [aux_sym_try_statement_token1] = ACTIONS(1233), - [aux_sym_goto_statement_token1] = ACTIONS(1233), - [aux_sym_continue_statement_token1] = ACTIONS(1233), - [aux_sym_break_statement_token1] = ACTIONS(1233), - [sym_integer] = ACTIONS(1233), - [aux_sym_return_statement_token1] = ACTIONS(1233), - [aux_sym_throw_expression_token1] = ACTIONS(1233), - [aux_sym_while_statement_token1] = ACTIONS(1233), - [aux_sym_while_statement_token2] = ACTIONS(1233), - [aux_sym_do_statement_token1] = ACTIONS(1233), - [aux_sym_for_statement_token1] = ACTIONS(1233), - [aux_sym_for_statement_token2] = ACTIONS(1233), - [aux_sym_foreach_statement_token1] = ACTIONS(1233), - [aux_sym_foreach_statement_token2] = ACTIONS(1233), - [aux_sym_if_statement_token1] = ACTIONS(1233), - [aux_sym_if_statement_token2] = ACTIONS(1233), - [aux_sym_else_if_clause_token1] = ACTIONS(1233), - [aux_sym_else_clause_token1] = ACTIONS(1233), - [aux_sym_match_expression_token1] = ACTIONS(1233), - [aux_sym_match_default_expression_token1] = ACTIONS(1233), - [aux_sym_switch_statement_token1] = ACTIONS(1233), - [aux_sym_switch_block_token1] = ACTIONS(1233), - [anon_sym_PLUS] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(1233), - [anon_sym_TILDE] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(1231), - [aux_sym_clone_expression_token1] = ACTIONS(1233), - [aux_sym_print_intrinsic_token1] = ACTIONS(1233), - [aux_sym_object_creation_expression_token1] = ACTIONS(1233), - [anon_sym_DASH_DASH] = ACTIONS(1231), - [anon_sym_PLUS_PLUS] = ACTIONS(1231), - [aux_sym__list_destructing_token1] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_self] = ACTIONS(1233), - [anon_sym_parent] = ACTIONS(1233), - [aux_sym__argument_name_token1] = ACTIONS(1233), - [aux_sym__argument_name_token2] = ACTIONS(1233), - [anon_sym_POUND_LBRACK] = ACTIONS(1231), - [aux_sym_encapsed_string_token1] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [aux_sym_string_token1] = ACTIONS(1231), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_LT_LT_LT] = ACTIONS(1231), - [anon_sym_BQUOTE] = ACTIONS(1231), - [anon_sym_DOLLAR] = ACTIONS(1231), - [aux_sym_yield_expression_token1] = ACTIONS(1233), - [aux_sym_include_expression_token1] = ACTIONS(1233), - [aux_sym_include_once_expression_token1] = ACTIONS(1233), - [aux_sym_require_expression_token1] = ACTIONS(1233), - [aux_sym_require_once_expression_token1] = ACTIONS(1233), + [ts_builtin_sym_end] = ACTIONS(1224), + [sym_name] = ACTIONS(1226), + [anon_sym_QMARK_GT] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1224), + [aux_sym_function_static_declaration_token1] = ACTIONS(1226), + [aux_sym_global_declaration_token1] = ACTIONS(1226), + [aux_sym_namespace_definition_token1] = ACTIONS(1226), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1226), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1226), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1226), + [anon_sym_BSLASH] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_RBRACE] = ACTIONS(1224), + [aux_sym_trait_declaration_token1] = ACTIONS(1226), + [aux_sym_interface_declaration_token1] = ACTIONS(1226), + [aux_sym_enum_declaration_token1] = ACTIONS(1226), + [aux_sym_enum_case_token1] = ACTIONS(1226), + [aux_sym_class_declaration_token1] = ACTIONS(1226), + [aux_sym_final_modifier_token1] = ACTIONS(1226), + [aux_sym_abstract_modifier_token1] = ACTIONS(1226), + [aux_sym_readonly_modifier_token1] = ACTIONS(1226), + [sym_var_modifier] = ACTIONS(1226), + [aux_sym_visibility_modifier_token1] = ACTIONS(1226), + [aux_sym_visibility_modifier_token2] = ACTIONS(1226), + [aux_sym_visibility_modifier_token3] = ACTIONS(1226), + [aux_sym__arrow_function_header_token1] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1224), + [aux_sym_cast_type_token1] = ACTIONS(1226), + [aux_sym_echo_statement_token1] = ACTIONS(1226), + [aux_sym_exit_statement_token1] = ACTIONS(1226), + [anon_sym_unset] = ACTIONS(1226), + [aux_sym_declare_statement_token1] = ACTIONS(1226), + [aux_sym_declare_statement_token2] = ACTIONS(1226), + [sym_float] = ACTIONS(1226), + [aux_sym_try_statement_token1] = ACTIONS(1226), + [aux_sym_goto_statement_token1] = ACTIONS(1226), + [aux_sym_continue_statement_token1] = ACTIONS(1226), + [aux_sym_break_statement_token1] = ACTIONS(1226), + [sym_integer] = ACTIONS(1226), + [aux_sym_return_statement_token1] = ACTIONS(1226), + [aux_sym_throw_expression_token1] = ACTIONS(1226), + [aux_sym_while_statement_token1] = ACTIONS(1226), + [aux_sym_while_statement_token2] = ACTIONS(1226), + [aux_sym_do_statement_token1] = ACTIONS(1226), + [aux_sym_for_statement_token1] = ACTIONS(1226), + [aux_sym_for_statement_token2] = ACTIONS(1226), + [aux_sym_foreach_statement_token1] = ACTIONS(1226), + [aux_sym_foreach_statement_token2] = ACTIONS(1226), + [aux_sym_if_statement_token1] = ACTIONS(1226), + [aux_sym_if_statement_token2] = ACTIONS(1226), + [aux_sym_else_if_clause_token1] = ACTIONS(1226), + [aux_sym_else_clause_token1] = ACTIONS(1226), + [aux_sym_match_expression_token1] = ACTIONS(1226), + [aux_sym_match_default_expression_token1] = ACTIONS(1226), + [aux_sym_switch_statement_token1] = ACTIONS(1226), + [aux_sym_switch_block_token1] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_TILDE] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_AT] = ACTIONS(1224), + [aux_sym_clone_expression_token1] = ACTIONS(1226), + [aux_sym_print_intrinsic_token1] = ACTIONS(1226), + [aux_sym_object_creation_expression_token1] = ACTIONS(1226), + [anon_sym_DASH_DASH] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1224), + [aux_sym__list_destructing_token1] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1224), + [anon_sym_self] = ACTIONS(1226), + [anon_sym_parent] = ACTIONS(1226), + [aux_sym__argument_name_token1] = ACTIONS(1226), + [aux_sym__argument_name_token2] = ACTIONS(1226), + [anon_sym_POUND_LBRACK] = ACTIONS(1224), + [aux_sym_encapsed_string_token1] = ACTIONS(1224), + [anon_sym_DQUOTE] = ACTIONS(1224), + [aux_sym_string_token1] = ACTIONS(1224), + [anon_sym_SQUOTE] = ACTIONS(1224), + [anon_sym_LT_LT_LT] = ACTIONS(1224), + [anon_sym_BQUOTE] = ACTIONS(1224), + [anon_sym_DOLLAR] = ACTIONS(1224), + [aux_sym_yield_expression_token1] = ACTIONS(1226), + [aux_sym_include_expression_token1] = ACTIONS(1226), + [aux_sym_include_once_expression_token1] = ACTIONS(1226), + [aux_sym_require_expression_token1] = ACTIONS(1226), + [aux_sym_require_once_expression_token1] = ACTIONS(1226), [sym_comment] = ACTIONS(3), }, [475] = { - [ts_builtin_sym_end] = ACTIONS(1235), - [sym_name] = ACTIONS(1237), - [anon_sym_QMARK_GT] = ACTIONS(1235), - [anon_sym_SEMI] = ACTIONS(1235), - [aux_sym_function_static_declaration_token1] = ACTIONS(1237), - [aux_sym_global_declaration_token1] = ACTIONS(1237), - [aux_sym_namespace_definition_token1] = ACTIONS(1237), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1237), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1237), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1237), - [anon_sym_BSLASH] = ACTIONS(1235), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_RBRACE] = ACTIONS(1235), - [aux_sym_trait_declaration_token1] = ACTIONS(1237), - [aux_sym_interface_declaration_token1] = ACTIONS(1237), - [aux_sym_enum_declaration_token1] = ACTIONS(1237), - [aux_sym_enum_case_token1] = ACTIONS(1237), - [aux_sym_class_declaration_token1] = ACTIONS(1237), - [aux_sym_final_modifier_token1] = ACTIONS(1237), - [aux_sym_abstract_modifier_token1] = ACTIONS(1237), - [aux_sym_readonly_modifier_token1] = ACTIONS(1237), - [aux_sym_visibility_modifier_token1] = ACTIONS(1237), - [aux_sym_visibility_modifier_token2] = ACTIONS(1237), - [aux_sym_visibility_modifier_token3] = ACTIONS(1237), - [aux_sym__arrow_function_header_token1] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1235), - [aux_sym_cast_type_token1] = ACTIONS(1237), - [aux_sym_echo_statement_token1] = ACTIONS(1237), - [aux_sym_exit_statement_token1] = ACTIONS(1237), - [anon_sym_unset] = ACTIONS(1237), - [aux_sym_declare_statement_token1] = ACTIONS(1237), - [aux_sym_declare_statement_token2] = ACTIONS(1237), - [sym_float] = ACTIONS(1237), - [aux_sym_try_statement_token1] = ACTIONS(1237), - [aux_sym_goto_statement_token1] = ACTIONS(1237), - [aux_sym_continue_statement_token1] = ACTIONS(1237), - [aux_sym_break_statement_token1] = ACTIONS(1237), - [sym_integer] = ACTIONS(1237), - [aux_sym_return_statement_token1] = ACTIONS(1237), - [aux_sym_throw_expression_token1] = ACTIONS(1237), - [aux_sym_while_statement_token1] = ACTIONS(1237), - [aux_sym_while_statement_token2] = ACTIONS(1237), - [aux_sym_do_statement_token1] = ACTIONS(1237), - [aux_sym_for_statement_token1] = ACTIONS(1237), - [aux_sym_for_statement_token2] = ACTIONS(1237), - [aux_sym_foreach_statement_token1] = ACTIONS(1237), - [aux_sym_foreach_statement_token2] = ACTIONS(1237), - [aux_sym_if_statement_token1] = ACTIONS(1237), - [aux_sym_if_statement_token2] = ACTIONS(1237), - [aux_sym_else_if_clause_token1] = ACTIONS(1237), - [aux_sym_else_clause_token1] = ACTIONS(1237), - [aux_sym_match_expression_token1] = ACTIONS(1237), - [aux_sym_match_default_expression_token1] = ACTIONS(1237), - [aux_sym_switch_statement_token1] = ACTIONS(1237), - [aux_sym_switch_block_token1] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1237), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_AT] = ACTIONS(1235), - [aux_sym_clone_expression_token1] = ACTIONS(1237), - [aux_sym_print_intrinsic_token1] = ACTIONS(1237), - [aux_sym_object_creation_expression_token1] = ACTIONS(1237), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [aux_sym__list_destructing_token1] = ACTIONS(1237), - [anon_sym_LBRACK] = ACTIONS(1235), - [anon_sym_self] = ACTIONS(1237), - [anon_sym_parent] = ACTIONS(1237), - [aux_sym__argument_name_token1] = ACTIONS(1237), - [aux_sym__argument_name_token2] = ACTIONS(1237), - [anon_sym_POUND_LBRACK] = ACTIONS(1235), - [aux_sym_encapsed_string_token1] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [aux_sym_string_token1] = ACTIONS(1235), - [anon_sym_SQUOTE] = ACTIONS(1235), - [anon_sym_LT_LT_LT] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(1235), - [aux_sym_yield_expression_token1] = ACTIONS(1237), - [aux_sym_include_expression_token1] = ACTIONS(1237), - [aux_sym_include_once_expression_token1] = ACTIONS(1237), - [aux_sym_require_expression_token1] = ACTIONS(1237), - [aux_sym_require_once_expression_token1] = ACTIONS(1237), + [ts_builtin_sym_end] = ACTIONS(1228), + [sym_name] = ACTIONS(1230), + [anon_sym_QMARK_GT] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1228), + [aux_sym_function_static_declaration_token1] = ACTIONS(1230), + [aux_sym_global_declaration_token1] = ACTIONS(1230), + [aux_sym_namespace_definition_token1] = ACTIONS(1230), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1230), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1230), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1230), + [anon_sym_BSLASH] = ACTIONS(1228), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_RBRACE] = ACTIONS(1228), + [aux_sym_trait_declaration_token1] = ACTIONS(1230), + [aux_sym_interface_declaration_token1] = ACTIONS(1230), + [aux_sym_enum_declaration_token1] = ACTIONS(1230), + [aux_sym_enum_case_token1] = ACTIONS(1230), + [aux_sym_class_declaration_token1] = ACTIONS(1230), + [aux_sym_final_modifier_token1] = ACTIONS(1230), + [aux_sym_abstract_modifier_token1] = ACTIONS(1230), + [aux_sym_readonly_modifier_token1] = ACTIONS(1230), + [sym_var_modifier] = ACTIONS(1230), + [aux_sym_visibility_modifier_token1] = ACTIONS(1230), + [aux_sym_visibility_modifier_token2] = ACTIONS(1230), + [aux_sym_visibility_modifier_token3] = ACTIONS(1230), + [aux_sym__arrow_function_header_token1] = ACTIONS(1230), + [anon_sym_LPAREN] = ACTIONS(1228), + [aux_sym_cast_type_token1] = ACTIONS(1230), + [aux_sym_echo_statement_token1] = ACTIONS(1230), + [aux_sym_exit_statement_token1] = ACTIONS(1230), + [anon_sym_unset] = ACTIONS(1230), + [aux_sym_declare_statement_token1] = ACTIONS(1230), + [aux_sym_declare_statement_token2] = ACTIONS(1230), + [sym_float] = ACTIONS(1230), + [aux_sym_try_statement_token1] = ACTIONS(1230), + [aux_sym_goto_statement_token1] = ACTIONS(1230), + [aux_sym_continue_statement_token1] = ACTIONS(1230), + [aux_sym_break_statement_token1] = ACTIONS(1230), + [sym_integer] = ACTIONS(1230), + [aux_sym_return_statement_token1] = ACTIONS(1230), + [aux_sym_throw_expression_token1] = ACTIONS(1230), + [aux_sym_while_statement_token1] = ACTIONS(1230), + [aux_sym_while_statement_token2] = ACTIONS(1230), + [aux_sym_do_statement_token1] = ACTIONS(1230), + [aux_sym_for_statement_token1] = ACTIONS(1230), + [aux_sym_for_statement_token2] = ACTIONS(1230), + [aux_sym_foreach_statement_token1] = ACTIONS(1230), + [aux_sym_foreach_statement_token2] = ACTIONS(1230), + [aux_sym_if_statement_token1] = ACTIONS(1230), + [aux_sym_if_statement_token2] = ACTIONS(1230), + [aux_sym_else_if_clause_token1] = ACTIONS(1230), + [aux_sym_else_clause_token1] = ACTIONS(1230), + [aux_sym_match_expression_token1] = ACTIONS(1230), + [aux_sym_match_default_expression_token1] = ACTIONS(1230), + [aux_sym_switch_statement_token1] = ACTIONS(1230), + [aux_sym_switch_block_token1] = ACTIONS(1230), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1228), + [anon_sym_BANG] = ACTIONS(1228), + [anon_sym_AT] = ACTIONS(1228), + [aux_sym_clone_expression_token1] = ACTIONS(1230), + [aux_sym_print_intrinsic_token1] = ACTIONS(1230), + [aux_sym_object_creation_expression_token1] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [aux_sym__list_destructing_token1] = ACTIONS(1230), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_self] = ACTIONS(1230), + [anon_sym_parent] = ACTIONS(1230), + [aux_sym__argument_name_token1] = ACTIONS(1230), + [aux_sym__argument_name_token2] = ACTIONS(1230), + [anon_sym_POUND_LBRACK] = ACTIONS(1228), + [aux_sym_encapsed_string_token1] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(1228), + [aux_sym_string_token1] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1228), + [anon_sym_LT_LT_LT] = ACTIONS(1228), + [anon_sym_BQUOTE] = ACTIONS(1228), + [anon_sym_DOLLAR] = ACTIONS(1228), + [aux_sym_yield_expression_token1] = ACTIONS(1230), + [aux_sym_include_expression_token1] = ACTIONS(1230), + [aux_sym_include_once_expression_token1] = ACTIONS(1230), + [aux_sym_require_expression_token1] = ACTIONS(1230), + [aux_sym_require_once_expression_token1] = ACTIONS(1230), [sym_comment] = ACTIONS(3), }, [476] = { - [ts_builtin_sym_end] = ACTIONS(1239), - [sym_name] = ACTIONS(1241), - [anon_sym_QMARK_GT] = ACTIONS(1239), - [anon_sym_SEMI] = ACTIONS(1239), - [aux_sym_function_static_declaration_token1] = ACTIONS(1241), - [aux_sym_global_declaration_token1] = ACTIONS(1241), - [aux_sym_namespace_definition_token1] = ACTIONS(1241), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1241), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1241), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1241), - [anon_sym_BSLASH] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_RBRACE] = ACTIONS(1239), - [aux_sym_trait_declaration_token1] = ACTIONS(1241), - [aux_sym_interface_declaration_token1] = ACTIONS(1241), - [aux_sym_enum_declaration_token1] = ACTIONS(1241), - [aux_sym_enum_case_token1] = ACTIONS(1241), - [aux_sym_class_declaration_token1] = ACTIONS(1241), - [aux_sym_final_modifier_token1] = ACTIONS(1241), - [aux_sym_abstract_modifier_token1] = ACTIONS(1241), - [aux_sym_readonly_modifier_token1] = ACTIONS(1241), - [aux_sym_visibility_modifier_token1] = ACTIONS(1241), - [aux_sym_visibility_modifier_token2] = ACTIONS(1241), - [aux_sym_visibility_modifier_token3] = ACTIONS(1241), - [aux_sym__arrow_function_header_token1] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1239), - [aux_sym_cast_type_token1] = ACTIONS(1241), - [aux_sym_echo_statement_token1] = ACTIONS(1241), - [aux_sym_exit_statement_token1] = ACTIONS(1241), - [anon_sym_unset] = ACTIONS(1241), - [aux_sym_declare_statement_token1] = ACTIONS(1241), - [aux_sym_declare_statement_token2] = ACTIONS(1241), - [sym_float] = ACTIONS(1241), - [aux_sym_try_statement_token1] = ACTIONS(1241), - [aux_sym_goto_statement_token1] = ACTIONS(1241), - [aux_sym_continue_statement_token1] = ACTIONS(1241), - [aux_sym_break_statement_token1] = ACTIONS(1241), - [sym_integer] = ACTIONS(1241), - [aux_sym_return_statement_token1] = ACTIONS(1241), - [aux_sym_throw_expression_token1] = ACTIONS(1241), - [aux_sym_while_statement_token1] = ACTIONS(1241), - [aux_sym_while_statement_token2] = ACTIONS(1241), - [aux_sym_do_statement_token1] = ACTIONS(1241), - [aux_sym_for_statement_token1] = ACTIONS(1241), - [aux_sym_for_statement_token2] = ACTIONS(1241), - [aux_sym_foreach_statement_token1] = ACTIONS(1241), - [aux_sym_foreach_statement_token2] = ACTIONS(1241), - [aux_sym_if_statement_token1] = ACTIONS(1241), - [aux_sym_if_statement_token2] = ACTIONS(1241), - [aux_sym_else_if_clause_token1] = ACTIONS(1241), - [aux_sym_else_clause_token1] = ACTIONS(1241), - [aux_sym_match_expression_token1] = ACTIONS(1241), - [aux_sym_match_default_expression_token1] = ACTIONS(1241), - [aux_sym_switch_statement_token1] = ACTIONS(1241), - [aux_sym_switch_block_token1] = ACTIONS(1241), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_AT] = ACTIONS(1239), - [aux_sym_clone_expression_token1] = ACTIONS(1241), - [aux_sym_print_intrinsic_token1] = ACTIONS(1241), - [aux_sym_object_creation_expression_token1] = ACTIONS(1241), - [anon_sym_DASH_DASH] = ACTIONS(1239), - [anon_sym_PLUS_PLUS] = ACTIONS(1239), - [aux_sym__list_destructing_token1] = ACTIONS(1241), - [anon_sym_LBRACK] = ACTIONS(1239), - [anon_sym_self] = ACTIONS(1241), - [anon_sym_parent] = ACTIONS(1241), - [aux_sym__argument_name_token1] = ACTIONS(1241), - [aux_sym__argument_name_token2] = ACTIONS(1241), - [anon_sym_POUND_LBRACK] = ACTIONS(1239), - [aux_sym_encapsed_string_token1] = ACTIONS(1239), - [anon_sym_DQUOTE] = ACTIONS(1239), - [aux_sym_string_token1] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1239), - [anon_sym_LT_LT_LT] = ACTIONS(1239), - [anon_sym_BQUOTE] = ACTIONS(1239), - [anon_sym_DOLLAR] = ACTIONS(1239), - [aux_sym_yield_expression_token1] = ACTIONS(1241), - [aux_sym_include_expression_token1] = ACTIONS(1241), - [aux_sym_include_once_expression_token1] = ACTIONS(1241), - [aux_sym_require_expression_token1] = ACTIONS(1241), - [aux_sym_require_once_expression_token1] = ACTIONS(1241), + [ts_builtin_sym_end] = ACTIONS(1232), + [sym_name] = ACTIONS(1234), + [anon_sym_QMARK_GT] = ACTIONS(1232), + [anon_sym_SEMI] = ACTIONS(1232), + [aux_sym_function_static_declaration_token1] = ACTIONS(1234), + [aux_sym_global_declaration_token1] = ACTIONS(1234), + [aux_sym_namespace_definition_token1] = ACTIONS(1234), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1234), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1234), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1234), + [anon_sym_BSLASH] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1232), + [aux_sym_trait_declaration_token1] = ACTIONS(1234), + [aux_sym_interface_declaration_token1] = ACTIONS(1234), + [aux_sym_enum_declaration_token1] = ACTIONS(1234), + [aux_sym_enum_case_token1] = ACTIONS(1234), + [aux_sym_class_declaration_token1] = ACTIONS(1234), + [aux_sym_final_modifier_token1] = ACTIONS(1234), + [aux_sym_abstract_modifier_token1] = ACTIONS(1234), + [aux_sym_readonly_modifier_token1] = ACTIONS(1234), + [sym_var_modifier] = ACTIONS(1234), + [aux_sym_visibility_modifier_token1] = ACTIONS(1234), + [aux_sym_visibility_modifier_token2] = ACTIONS(1234), + [aux_sym_visibility_modifier_token3] = ACTIONS(1234), + [aux_sym__arrow_function_header_token1] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(1232), + [aux_sym_cast_type_token1] = ACTIONS(1234), + [aux_sym_echo_statement_token1] = ACTIONS(1234), + [aux_sym_exit_statement_token1] = ACTIONS(1234), + [anon_sym_unset] = ACTIONS(1234), + [aux_sym_declare_statement_token1] = ACTIONS(1234), + [aux_sym_declare_statement_token2] = ACTIONS(1234), + [sym_float] = ACTIONS(1234), + [aux_sym_try_statement_token1] = ACTIONS(1234), + [aux_sym_goto_statement_token1] = ACTIONS(1234), + [aux_sym_continue_statement_token1] = ACTIONS(1234), + [aux_sym_break_statement_token1] = ACTIONS(1234), + [sym_integer] = ACTIONS(1234), + [aux_sym_return_statement_token1] = ACTIONS(1234), + [aux_sym_throw_expression_token1] = ACTIONS(1234), + [aux_sym_while_statement_token1] = ACTIONS(1234), + [aux_sym_while_statement_token2] = ACTIONS(1234), + [aux_sym_do_statement_token1] = ACTIONS(1234), + [aux_sym_for_statement_token1] = ACTIONS(1234), + [aux_sym_for_statement_token2] = ACTIONS(1234), + [aux_sym_foreach_statement_token1] = ACTIONS(1234), + [aux_sym_foreach_statement_token2] = ACTIONS(1234), + [aux_sym_if_statement_token1] = ACTIONS(1234), + [aux_sym_if_statement_token2] = ACTIONS(1234), + [aux_sym_else_if_clause_token1] = ACTIONS(1234), + [aux_sym_else_clause_token1] = ACTIONS(1234), + [aux_sym_match_expression_token1] = ACTIONS(1234), + [aux_sym_match_default_expression_token1] = ACTIONS(1234), + [aux_sym_switch_statement_token1] = ACTIONS(1234), + [aux_sym_switch_block_token1] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1232), + [anon_sym_BANG] = ACTIONS(1232), + [anon_sym_AT] = ACTIONS(1232), + [aux_sym_clone_expression_token1] = ACTIONS(1234), + [aux_sym_print_intrinsic_token1] = ACTIONS(1234), + [aux_sym_object_creation_expression_token1] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1232), + [anon_sym_PLUS_PLUS] = ACTIONS(1232), + [aux_sym__list_destructing_token1] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1232), + [anon_sym_self] = ACTIONS(1234), + [anon_sym_parent] = ACTIONS(1234), + [aux_sym__argument_name_token1] = ACTIONS(1234), + [aux_sym__argument_name_token2] = ACTIONS(1234), + [anon_sym_POUND_LBRACK] = ACTIONS(1232), + [aux_sym_encapsed_string_token1] = ACTIONS(1232), + [anon_sym_DQUOTE] = ACTIONS(1232), + [aux_sym_string_token1] = ACTIONS(1232), + [anon_sym_SQUOTE] = ACTIONS(1232), + [anon_sym_LT_LT_LT] = ACTIONS(1232), + [anon_sym_BQUOTE] = ACTIONS(1232), + [anon_sym_DOLLAR] = ACTIONS(1232), + [aux_sym_yield_expression_token1] = ACTIONS(1234), + [aux_sym_include_expression_token1] = ACTIONS(1234), + [aux_sym_include_once_expression_token1] = ACTIONS(1234), + [aux_sym_require_expression_token1] = ACTIONS(1234), + [aux_sym_require_once_expression_token1] = ACTIONS(1234), [sym_comment] = ACTIONS(3), }, [477] = { - [ts_builtin_sym_end] = ACTIONS(1239), - [sym_name] = ACTIONS(1241), - [anon_sym_QMARK_GT] = ACTIONS(1239), - [anon_sym_SEMI] = ACTIONS(1239), - [aux_sym_function_static_declaration_token1] = ACTIONS(1241), - [aux_sym_global_declaration_token1] = ACTIONS(1241), - [aux_sym_namespace_definition_token1] = ACTIONS(1241), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1241), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1241), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1241), - [anon_sym_BSLASH] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_RBRACE] = ACTIONS(1239), - [aux_sym_trait_declaration_token1] = ACTIONS(1241), - [aux_sym_interface_declaration_token1] = ACTIONS(1241), - [aux_sym_enum_declaration_token1] = ACTIONS(1241), - [aux_sym_enum_case_token1] = ACTIONS(1241), - [aux_sym_class_declaration_token1] = ACTIONS(1241), - [aux_sym_final_modifier_token1] = ACTIONS(1241), - [aux_sym_abstract_modifier_token1] = ACTIONS(1241), - [aux_sym_readonly_modifier_token1] = ACTIONS(1241), - [aux_sym_visibility_modifier_token1] = ACTIONS(1241), - [aux_sym_visibility_modifier_token2] = ACTIONS(1241), - [aux_sym_visibility_modifier_token3] = ACTIONS(1241), - [aux_sym__arrow_function_header_token1] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1239), - [aux_sym_cast_type_token1] = ACTIONS(1241), - [aux_sym_echo_statement_token1] = ACTIONS(1241), - [aux_sym_exit_statement_token1] = ACTIONS(1241), - [anon_sym_unset] = ACTIONS(1241), - [aux_sym_declare_statement_token1] = ACTIONS(1241), - [aux_sym_declare_statement_token2] = ACTIONS(1241), - [sym_float] = ACTIONS(1241), - [aux_sym_try_statement_token1] = ACTIONS(1241), - [aux_sym_goto_statement_token1] = ACTIONS(1241), - [aux_sym_continue_statement_token1] = ACTIONS(1241), - [aux_sym_break_statement_token1] = ACTIONS(1241), - [sym_integer] = ACTIONS(1241), - [aux_sym_return_statement_token1] = ACTIONS(1241), - [aux_sym_throw_expression_token1] = ACTIONS(1241), - [aux_sym_while_statement_token1] = ACTIONS(1241), - [aux_sym_while_statement_token2] = ACTIONS(1241), - [aux_sym_do_statement_token1] = ACTIONS(1241), - [aux_sym_for_statement_token1] = ACTIONS(1241), - [aux_sym_for_statement_token2] = ACTIONS(1241), - [aux_sym_foreach_statement_token1] = ACTIONS(1241), - [aux_sym_foreach_statement_token2] = ACTIONS(1241), - [aux_sym_if_statement_token1] = ACTIONS(1241), - [aux_sym_if_statement_token2] = ACTIONS(1241), - [aux_sym_else_if_clause_token1] = ACTIONS(1241), - [aux_sym_else_clause_token1] = ACTIONS(1241), - [aux_sym_match_expression_token1] = ACTIONS(1241), - [aux_sym_match_default_expression_token1] = ACTIONS(1241), - [aux_sym_switch_statement_token1] = ACTIONS(1241), - [aux_sym_switch_block_token1] = ACTIONS(1241), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_AT] = ACTIONS(1239), - [aux_sym_clone_expression_token1] = ACTIONS(1241), - [aux_sym_print_intrinsic_token1] = ACTIONS(1241), - [aux_sym_object_creation_expression_token1] = ACTIONS(1241), - [anon_sym_DASH_DASH] = ACTIONS(1239), - [anon_sym_PLUS_PLUS] = ACTIONS(1239), - [aux_sym__list_destructing_token1] = ACTIONS(1241), - [anon_sym_LBRACK] = ACTIONS(1239), - [anon_sym_self] = ACTIONS(1241), - [anon_sym_parent] = ACTIONS(1241), - [aux_sym__argument_name_token1] = ACTIONS(1241), - [aux_sym__argument_name_token2] = ACTIONS(1241), - [anon_sym_POUND_LBRACK] = ACTIONS(1239), - [aux_sym_encapsed_string_token1] = ACTIONS(1239), - [anon_sym_DQUOTE] = ACTIONS(1239), - [aux_sym_string_token1] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1239), - [anon_sym_LT_LT_LT] = ACTIONS(1239), - [anon_sym_BQUOTE] = ACTIONS(1239), - [anon_sym_DOLLAR] = ACTIONS(1239), - [aux_sym_yield_expression_token1] = ACTIONS(1241), - [aux_sym_include_expression_token1] = ACTIONS(1241), - [aux_sym_include_once_expression_token1] = ACTIONS(1241), - [aux_sym_require_expression_token1] = ACTIONS(1241), - [aux_sym_require_once_expression_token1] = ACTIONS(1241), + [ts_builtin_sym_end] = ACTIONS(1224), + [sym_name] = ACTIONS(1226), + [anon_sym_QMARK_GT] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1224), + [aux_sym_function_static_declaration_token1] = ACTIONS(1226), + [aux_sym_global_declaration_token1] = ACTIONS(1226), + [aux_sym_namespace_definition_token1] = ACTIONS(1226), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1226), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1226), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1226), + [anon_sym_BSLASH] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_RBRACE] = ACTIONS(1224), + [aux_sym_trait_declaration_token1] = ACTIONS(1226), + [aux_sym_interface_declaration_token1] = ACTIONS(1226), + [aux_sym_enum_declaration_token1] = ACTIONS(1226), + [aux_sym_enum_case_token1] = ACTIONS(1226), + [aux_sym_class_declaration_token1] = ACTIONS(1226), + [aux_sym_final_modifier_token1] = ACTIONS(1226), + [aux_sym_abstract_modifier_token1] = ACTIONS(1226), + [aux_sym_readonly_modifier_token1] = ACTIONS(1226), + [sym_var_modifier] = ACTIONS(1226), + [aux_sym_visibility_modifier_token1] = ACTIONS(1226), + [aux_sym_visibility_modifier_token2] = ACTIONS(1226), + [aux_sym_visibility_modifier_token3] = ACTIONS(1226), + [aux_sym__arrow_function_header_token1] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1224), + [aux_sym_cast_type_token1] = ACTIONS(1226), + [aux_sym_echo_statement_token1] = ACTIONS(1226), + [aux_sym_exit_statement_token1] = ACTIONS(1226), + [anon_sym_unset] = ACTIONS(1226), + [aux_sym_declare_statement_token1] = ACTIONS(1226), + [aux_sym_declare_statement_token2] = ACTIONS(1226), + [sym_float] = ACTIONS(1226), + [aux_sym_try_statement_token1] = ACTIONS(1226), + [aux_sym_goto_statement_token1] = ACTIONS(1226), + [aux_sym_continue_statement_token1] = ACTIONS(1226), + [aux_sym_break_statement_token1] = ACTIONS(1226), + [sym_integer] = ACTIONS(1226), + [aux_sym_return_statement_token1] = ACTIONS(1226), + [aux_sym_throw_expression_token1] = ACTIONS(1226), + [aux_sym_while_statement_token1] = ACTIONS(1226), + [aux_sym_while_statement_token2] = ACTIONS(1226), + [aux_sym_do_statement_token1] = ACTIONS(1226), + [aux_sym_for_statement_token1] = ACTIONS(1226), + [aux_sym_for_statement_token2] = ACTIONS(1226), + [aux_sym_foreach_statement_token1] = ACTIONS(1226), + [aux_sym_foreach_statement_token2] = ACTIONS(1226), + [aux_sym_if_statement_token1] = ACTIONS(1226), + [aux_sym_if_statement_token2] = ACTIONS(1226), + [aux_sym_else_if_clause_token1] = ACTIONS(1226), + [aux_sym_else_clause_token1] = ACTIONS(1226), + [aux_sym_match_expression_token1] = ACTIONS(1226), + [aux_sym_match_default_expression_token1] = ACTIONS(1226), + [aux_sym_switch_statement_token1] = ACTIONS(1226), + [aux_sym_switch_block_token1] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_TILDE] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_AT] = ACTIONS(1224), + [aux_sym_clone_expression_token1] = ACTIONS(1226), + [aux_sym_print_intrinsic_token1] = ACTIONS(1226), + [aux_sym_object_creation_expression_token1] = ACTIONS(1226), + [anon_sym_DASH_DASH] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1224), + [aux_sym__list_destructing_token1] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1224), + [anon_sym_self] = ACTIONS(1226), + [anon_sym_parent] = ACTIONS(1226), + [aux_sym__argument_name_token1] = ACTIONS(1226), + [aux_sym__argument_name_token2] = ACTIONS(1226), + [anon_sym_POUND_LBRACK] = ACTIONS(1224), + [aux_sym_encapsed_string_token1] = ACTIONS(1224), + [anon_sym_DQUOTE] = ACTIONS(1224), + [aux_sym_string_token1] = ACTIONS(1224), + [anon_sym_SQUOTE] = ACTIONS(1224), + [anon_sym_LT_LT_LT] = ACTIONS(1224), + [anon_sym_BQUOTE] = ACTIONS(1224), + [anon_sym_DOLLAR] = ACTIONS(1224), + [aux_sym_yield_expression_token1] = ACTIONS(1226), + [aux_sym_include_expression_token1] = ACTIONS(1226), + [aux_sym_include_once_expression_token1] = ACTIONS(1226), + [aux_sym_require_expression_token1] = ACTIONS(1226), + [aux_sym_require_once_expression_token1] = ACTIONS(1226), [sym_comment] = ACTIONS(3), }, [478] = { - [ts_builtin_sym_end] = ACTIONS(1243), - [sym_name] = ACTIONS(1245), - [anon_sym_QMARK_GT] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [aux_sym_function_static_declaration_token1] = ACTIONS(1245), - [aux_sym_global_declaration_token1] = ACTIONS(1245), - [aux_sym_namespace_definition_token1] = ACTIONS(1245), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1245), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1245), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1245), - [anon_sym_BSLASH] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [aux_sym_trait_declaration_token1] = ACTIONS(1245), - [aux_sym_interface_declaration_token1] = ACTIONS(1245), - [aux_sym_enum_declaration_token1] = ACTIONS(1245), - [aux_sym_enum_case_token1] = ACTIONS(1245), - [aux_sym_class_declaration_token1] = ACTIONS(1245), - [aux_sym_final_modifier_token1] = ACTIONS(1245), - [aux_sym_abstract_modifier_token1] = ACTIONS(1245), - [aux_sym_readonly_modifier_token1] = ACTIONS(1245), - [aux_sym_visibility_modifier_token1] = ACTIONS(1245), - [aux_sym_visibility_modifier_token2] = ACTIONS(1245), - [aux_sym_visibility_modifier_token3] = ACTIONS(1245), - [aux_sym__arrow_function_header_token1] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1243), - [aux_sym_cast_type_token1] = ACTIONS(1245), - [aux_sym_echo_statement_token1] = ACTIONS(1245), - [aux_sym_exit_statement_token1] = ACTIONS(1245), - [anon_sym_unset] = ACTIONS(1245), - [aux_sym_declare_statement_token1] = ACTIONS(1245), - [aux_sym_declare_statement_token2] = ACTIONS(1245), - [sym_float] = ACTIONS(1245), - [aux_sym_try_statement_token1] = ACTIONS(1245), - [aux_sym_goto_statement_token1] = ACTIONS(1245), - [aux_sym_continue_statement_token1] = ACTIONS(1245), - [aux_sym_break_statement_token1] = ACTIONS(1245), - [sym_integer] = ACTIONS(1245), - [aux_sym_return_statement_token1] = ACTIONS(1245), - [aux_sym_throw_expression_token1] = ACTIONS(1245), - [aux_sym_while_statement_token1] = ACTIONS(1245), - [aux_sym_while_statement_token2] = ACTIONS(1245), - [aux_sym_do_statement_token1] = ACTIONS(1245), - [aux_sym_for_statement_token1] = ACTIONS(1245), - [aux_sym_for_statement_token2] = ACTIONS(1245), - [aux_sym_foreach_statement_token1] = ACTIONS(1245), - [aux_sym_foreach_statement_token2] = ACTIONS(1245), - [aux_sym_if_statement_token1] = ACTIONS(1245), - [aux_sym_if_statement_token2] = ACTIONS(1245), - [aux_sym_else_if_clause_token1] = ACTIONS(1245), - [aux_sym_else_clause_token1] = ACTIONS(1245), - [aux_sym_match_expression_token1] = ACTIONS(1245), - [aux_sym_match_default_expression_token1] = ACTIONS(1245), - [aux_sym_switch_statement_token1] = ACTIONS(1245), - [aux_sym_switch_block_token1] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AT] = ACTIONS(1243), - [aux_sym_clone_expression_token1] = ACTIONS(1245), - [aux_sym_print_intrinsic_token1] = ACTIONS(1245), - [aux_sym_object_creation_expression_token1] = ACTIONS(1245), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [aux_sym__list_destructing_token1] = ACTIONS(1245), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_self] = ACTIONS(1245), - [anon_sym_parent] = ACTIONS(1245), - [aux_sym__argument_name_token1] = ACTIONS(1245), - [aux_sym__argument_name_token2] = ACTIONS(1245), - [anon_sym_POUND_LBRACK] = ACTIONS(1243), - [aux_sym_encapsed_string_token1] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [aux_sym_string_token1] = ACTIONS(1243), - [anon_sym_SQUOTE] = ACTIONS(1243), - [anon_sym_LT_LT_LT] = ACTIONS(1243), - [anon_sym_BQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1243), - [aux_sym_yield_expression_token1] = ACTIONS(1245), - [aux_sym_include_expression_token1] = ACTIONS(1245), - [aux_sym_include_once_expression_token1] = ACTIONS(1245), - [aux_sym_require_expression_token1] = ACTIONS(1245), - [aux_sym_require_once_expression_token1] = ACTIONS(1245), + [ts_builtin_sym_end] = ACTIONS(1236), + [sym_name] = ACTIONS(1238), + [anon_sym_QMARK_GT] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1236), + [aux_sym_function_static_declaration_token1] = ACTIONS(1238), + [aux_sym_global_declaration_token1] = ACTIONS(1238), + [aux_sym_namespace_definition_token1] = ACTIONS(1238), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1238), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1238), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1238), + [anon_sym_BSLASH] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_RBRACE] = ACTIONS(1236), + [aux_sym_trait_declaration_token1] = ACTIONS(1238), + [aux_sym_interface_declaration_token1] = ACTIONS(1238), + [aux_sym_enum_declaration_token1] = ACTIONS(1238), + [aux_sym_enum_case_token1] = ACTIONS(1238), + [aux_sym_class_declaration_token1] = ACTIONS(1238), + [aux_sym_final_modifier_token1] = ACTIONS(1238), + [aux_sym_abstract_modifier_token1] = ACTIONS(1238), + [aux_sym_readonly_modifier_token1] = ACTIONS(1238), + [sym_var_modifier] = ACTIONS(1238), + [aux_sym_visibility_modifier_token1] = ACTIONS(1238), + [aux_sym_visibility_modifier_token2] = ACTIONS(1238), + [aux_sym_visibility_modifier_token3] = ACTIONS(1238), + [aux_sym__arrow_function_header_token1] = ACTIONS(1238), + [anon_sym_LPAREN] = ACTIONS(1236), + [aux_sym_cast_type_token1] = ACTIONS(1238), + [aux_sym_echo_statement_token1] = ACTIONS(1238), + [aux_sym_exit_statement_token1] = ACTIONS(1238), + [anon_sym_unset] = ACTIONS(1238), + [aux_sym_declare_statement_token1] = ACTIONS(1238), + [aux_sym_declare_statement_token2] = ACTIONS(1238), + [sym_float] = ACTIONS(1238), + [aux_sym_try_statement_token1] = ACTIONS(1238), + [aux_sym_goto_statement_token1] = ACTIONS(1238), + [aux_sym_continue_statement_token1] = ACTIONS(1238), + [aux_sym_break_statement_token1] = ACTIONS(1238), + [sym_integer] = ACTIONS(1238), + [aux_sym_return_statement_token1] = ACTIONS(1238), + [aux_sym_throw_expression_token1] = ACTIONS(1238), + [aux_sym_while_statement_token1] = ACTIONS(1238), + [aux_sym_while_statement_token2] = ACTIONS(1238), + [aux_sym_do_statement_token1] = ACTIONS(1238), + [aux_sym_for_statement_token1] = ACTIONS(1238), + [aux_sym_for_statement_token2] = ACTIONS(1238), + [aux_sym_foreach_statement_token1] = ACTIONS(1238), + [aux_sym_foreach_statement_token2] = ACTIONS(1238), + [aux_sym_if_statement_token1] = ACTIONS(1238), + [aux_sym_if_statement_token2] = ACTIONS(1238), + [aux_sym_else_if_clause_token1] = ACTIONS(1238), + [aux_sym_else_clause_token1] = ACTIONS(1238), + [aux_sym_match_expression_token1] = ACTIONS(1238), + [aux_sym_match_default_expression_token1] = ACTIONS(1238), + [aux_sym_switch_statement_token1] = ACTIONS(1238), + [aux_sym_switch_block_token1] = ACTIONS(1238), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_AT] = ACTIONS(1236), + [aux_sym_clone_expression_token1] = ACTIONS(1238), + [aux_sym_print_intrinsic_token1] = ACTIONS(1238), + [aux_sym_object_creation_expression_token1] = ACTIONS(1238), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [aux_sym__list_destructing_token1] = ACTIONS(1238), + [anon_sym_LBRACK] = ACTIONS(1236), + [anon_sym_self] = ACTIONS(1238), + [anon_sym_parent] = ACTIONS(1238), + [aux_sym__argument_name_token1] = ACTIONS(1238), + [aux_sym__argument_name_token2] = ACTIONS(1238), + [anon_sym_POUND_LBRACK] = ACTIONS(1236), + [aux_sym_encapsed_string_token1] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [aux_sym_string_token1] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_LT_LT_LT] = ACTIONS(1236), + [anon_sym_BQUOTE] = ACTIONS(1236), + [anon_sym_DOLLAR] = ACTIONS(1236), + [aux_sym_yield_expression_token1] = ACTIONS(1238), + [aux_sym_include_expression_token1] = ACTIONS(1238), + [aux_sym_include_once_expression_token1] = ACTIONS(1238), + [aux_sym_require_expression_token1] = ACTIONS(1238), + [aux_sym_require_once_expression_token1] = ACTIONS(1238), [sym_comment] = ACTIONS(3), }, [479] = { - [ts_builtin_sym_end] = ACTIONS(1247), - [sym_name] = ACTIONS(1249), - [anon_sym_QMARK_GT] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [aux_sym_function_static_declaration_token1] = ACTIONS(1249), - [aux_sym_global_declaration_token1] = ACTIONS(1249), - [aux_sym_namespace_definition_token1] = ACTIONS(1249), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1249), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1249), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1249), - [anon_sym_BSLASH] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1247), - [aux_sym_trait_declaration_token1] = ACTIONS(1249), - [aux_sym_interface_declaration_token1] = ACTIONS(1249), - [aux_sym_enum_declaration_token1] = ACTIONS(1249), - [aux_sym_enum_case_token1] = ACTIONS(1249), - [aux_sym_class_declaration_token1] = ACTIONS(1249), - [aux_sym_final_modifier_token1] = ACTIONS(1249), - [aux_sym_abstract_modifier_token1] = ACTIONS(1249), - [aux_sym_readonly_modifier_token1] = ACTIONS(1249), - [aux_sym_visibility_modifier_token1] = ACTIONS(1249), - [aux_sym_visibility_modifier_token2] = ACTIONS(1249), - [aux_sym_visibility_modifier_token3] = ACTIONS(1249), - [aux_sym__arrow_function_header_token1] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1247), - [aux_sym_cast_type_token1] = ACTIONS(1249), - [aux_sym_echo_statement_token1] = ACTIONS(1249), - [aux_sym_exit_statement_token1] = ACTIONS(1249), - [anon_sym_unset] = ACTIONS(1249), - [aux_sym_declare_statement_token1] = ACTIONS(1249), - [aux_sym_declare_statement_token2] = ACTIONS(1249), - [sym_float] = ACTIONS(1249), - [aux_sym_try_statement_token1] = ACTIONS(1249), - [aux_sym_goto_statement_token1] = ACTIONS(1249), - [aux_sym_continue_statement_token1] = ACTIONS(1249), - [aux_sym_break_statement_token1] = ACTIONS(1249), - [sym_integer] = ACTIONS(1249), - [aux_sym_return_statement_token1] = ACTIONS(1249), - [aux_sym_throw_expression_token1] = ACTIONS(1249), - [aux_sym_while_statement_token1] = ACTIONS(1249), - [aux_sym_while_statement_token2] = ACTIONS(1249), - [aux_sym_do_statement_token1] = ACTIONS(1249), - [aux_sym_for_statement_token1] = ACTIONS(1249), - [aux_sym_for_statement_token2] = ACTIONS(1249), - [aux_sym_foreach_statement_token1] = ACTIONS(1249), - [aux_sym_foreach_statement_token2] = ACTIONS(1249), - [aux_sym_if_statement_token1] = ACTIONS(1249), - [aux_sym_if_statement_token2] = ACTIONS(1249), - [aux_sym_else_if_clause_token1] = ACTIONS(1249), - [aux_sym_else_clause_token1] = ACTIONS(1249), - [aux_sym_match_expression_token1] = ACTIONS(1249), - [aux_sym_match_default_expression_token1] = ACTIONS(1249), - [aux_sym_switch_statement_token1] = ACTIONS(1249), - [aux_sym_switch_block_token1] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_TILDE] = ACTIONS(1247), - [anon_sym_BANG] = ACTIONS(1247), - [anon_sym_AT] = ACTIONS(1247), - [aux_sym_clone_expression_token1] = ACTIONS(1249), - [aux_sym_print_intrinsic_token1] = ACTIONS(1249), - [aux_sym_object_creation_expression_token1] = ACTIONS(1249), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [aux_sym__list_destructing_token1] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1247), - [anon_sym_self] = ACTIONS(1249), - [anon_sym_parent] = ACTIONS(1249), - [aux_sym__argument_name_token1] = ACTIONS(1249), - [aux_sym__argument_name_token2] = ACTIONS(1249), - [anon_sym_POUND_LBRACK] = ACTIONS(1247), - [aux_sym_encapsed_string_token1] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [aux_sym_string_token1] = ACTIONS(1247), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_LT_LT_LT] = ACTIONS(1247), - [anon_sym_BQUOTE] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1247), - [aux_sym_yield_expression_token1] = ACTIONS(1249), - [aux_sym_include_expression_token1] = ACTIONS(1249), - [aux_sym_include_once_expression_token1] = ACTIONS(1249), - [aux_sym_require_expression_token1] = ACTIONS(1249), - [aux_sym_require_once_expression_token1] = ACTIONS(1249), + [ts_builtin_sym_end] = ACTIONS(1240), + [sym_name] = ACTIONS(1242), + [anon_sym_QMARK_GT] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1240), + [aux_sym_function_static_declaration_token1] = ACTIONS(1242), + [aux_sym_global_declaration_token1] = ACTIONS(1242), + [aux_sym_namespace_definition_token1] = ACTIONS(1242), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1242), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1242), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1242), + [anon_sym_BSLASH] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1240), + [aux_sym_trait_declaration_token1] = ACTIONS(1242), + [aux_sym_interface_declaration_token1] = ACTIONS(1242), + [aux_sym_enum_declaration_token1] = ACTIONS(1242), + [aux_sym_enum_case_token1] = ACTIONS(1242), + [aux_sym_class_declaration_token1] = ACTIONS(1242), + [aux_sym_final_modifier_token1] = ACTIONS(1242), + [aux_sym_abstract_modifier_token1] = ACTIONS(1242), + [aux_sym_readonly_modifier_token1] = ACTIONS(1242), + [sym_var_modifier] = ACTIONS(1242), + [aux_sym_visibility_modifier_token1] = ACTIONS(1242), + [aux_sym_visibility_modifier_token2] = ACTIONS(1242), + [aux_sym_visibility_modifier_token3] = ACTIONS(1242), + [aux_sym__arrow_function_header_token1] = ACTIONS(1242), + [anon_sym_LPAREN] = ACTIONS(1240), + [aux_sym_cast_type_token1] = ACTIONS(1242), + [aux_sym_echo_statement_token1] = ACTIONS(1242), + [aux_sym_exit_statement_token1] = ACTIONS(1242), + [anon_sym_unset] = ACTIONS(1242), + [aux_sym_declare_statement_token1] = ACTIONS(1242), + [aux_sym_declare_statement_token2] = ACTIONS(1242), + [sym_float] = ACTIONS(1242), + [aux_sym_try_statement_token1] = ACTIONS(1242), + [aux_sym_goto_statement_token1] = ACTIONS(1242), + [aux_sym_continue_statement_token1] = ACTIONS(1242), + [aux_sym_break_statement_token1] = ACTIONS(1242), + [sym_integer] = ACTIONS(1242), + [aux_sym_return_statement_token1] = ACTIONS(1242), + [aux_sym_throw_expression_token1] = ACTIONS(1242), + [aux_sym_while_statement_token1] = ACTIONS(1242), + [aux_sym_while_statement_token2] = ACTIONS(1242), + [aux_sym_do_statement_token1] = ACTIONS(1242), + [aux_sym_for_statement_token1] = ACTIONS(1242), + [aux_sym_for_statement_token2] = ACTIONS(1242), + [aux_sym_foreach_statement_token1] = ACTIONS(1242), + [aux_sym_foreach_statement_token2] = ACTIONS(1242), + [aux_sym_if_statement_token1] = ACTIONS(1242), + [aux_sym_if_statement_token2] = ACTIONS(1242), + [aux_sym_else_if_clause_token1] = ACTIONS(1242), + [aux_sym_else_clause_token1] = ACTIONS(1242), + [aux_sym_match_expression_token1] = ACTIONS(1242), + [aux_sym_match_default_expression_token1] = ACTIONS(1242), + [aux_sym_switch_statement_token1] = ACTIONS(1242), + [aux_sym_switch_block_token1] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_AT] = ACTIONS(1240), + [aux_sym_clone_expression_token1] = ACTIONS(1242), + [aux_sym_print_intrinsic_token1] = ACTIONS(1242), + [aux_sym_object_creation_expression_token1] = ACTIONS(1242), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [aux_sym__list_destructing_token1] = ACTIONS(1242), + [anon_sym_LBRACK] = ACTIONS(1240), + [anon_sym_self] = ACTIONS(1242), + [anon_sym_parent] = ACTIONS(1242), + [aux_sym__argument_name_token1] = ACTIONS(1242), + [aux_sym__argument_name_token2] = ACTIONS(1242), + [anon_sym_POUND_LBRACK] = ACTIONS(1240), + [aux_sym_encapsed_string_token1] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1240), + [aux_sym_string_token1] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_LT_LT_LT] = ACTIONS(1240), + [anon_sym_BQUOTE] = ACTIONS(1240), + [anon_sym_DOLLAR] = ACTIONS(1240), + [aux_sym_yield_expression_token1] = ACTIONS(1242), + [aux_sym_include_expression_token1] = ACTIONS(1242), + [aux_sym_include_once_expression_token1] = ACTIONS(1242), + [aux_sym_require_expression_token1] = ACTIONS(1242), + [aux_sym_require_once_expression_token1] = ACTIONS(1242), [sym_comment] = ACTIONS(3), }, [480] = { - [ts_builtin_sym_end] = ACTIONS(1251), - [sym_name] = ACTIONS(1253), - [anon_sym_QMARK_GT] = ACTIONS(1251), - [anon_sym_SEMI] = ACTIONS(1251), - [aux_sym_function_static_declaration_token1] = ACTIONS(1253), - [aux_sym_global_declaration_token1] = ACTIONS(1253), - [aux_sym_namespace_definition_token1] = ACTIONS(1253), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1253), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1253), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1253), - [anon_sym_BSLASH] = ACTIONS(1251), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_RBRACE] = ACTIONS(1251), - [aux_sym_trait_declaration_token1] = ACTIONS(1253), - [aux_sym_interface_declaration_token1] = ACTIONS(1253), - [aux_sym_enum_declaration_token1] = ACTIONS(1253), - [aux_sym_enum_case_token1] = ACTIONS(1253), - [aux_sym_class_declaration_token1] = ACTIONS(1253), - [aux_sym_final_modifier_token1] = ACTIONS(1253), - [aux_sym_abstract_modifier_token1] = ACTIONS(1253), - [aux_sym_readonly_modifier_token1] = ACTIONS(1253), - [aux_sym_visibility_modifier_token1] = ACTIONS(1253), - [aux_sym_visibility_modifier_token2] = ACTIONS(1253), - [aux_sym_visibility_modifier_token3] = ACTIONS(1253), - [aux_sym__arrow_function_header_token1] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1251), - [aux_sym_cast_type_token1] = ACTIONS(1253), - [aux_sym_echo_statement_token1] = ACTIONS(1253), - [aux_sym_exit_statement_token1] = ACTIONS(1253), - [anon_sym_unset] = ACTIONS(1253), - [aux_sym_declare_statement_token1] = ACTIONS(1253), - [aux_sym_declare_statement_token2] = ACTIONS(1253), - [sym_float] = ACTIONS(1253), - [aux_sym_try_statement_token1] = ACTIONS(1253), - [aux_sym_goto_statement_token1] = ACTIONS(1253), - [aux_sym_continue_statement_token1] = ACTIONS(1253), - [aux_sym_break_statement_token1] = ACTIONS(1253), - [sym_integer] = ACTIONS(1253), - [aux_sym_return_statement_token1] = ACTIONS(1253), - [aux_sym_throw_expression_token1] = ACTIONS(1253), - [aux_sym_while_statement_token1] = ACTIONS(1253), - [aux_sym_while_statement_token2] = ACTIONS(1253), - [aux_sym_do_statement_token1] = ACTIONS(1253), - [aux_sym_for_statement_token1] = ACTIONS(1253), - [aux_sym_for_statement_token2] = ACTIONS(1253), - [aux_sym_foreach_statement_token1] = ACTIONS(1253), - [aux_sym_foreach_statement_token2] = ACTIONS(1253), - [aux_sym_if_statement_token1] = ACTIONS(1253), - [aux_sym_if_statement_token2] = ACTIONS(1253), - [aux_sym_else_if_clause_token1] = ACTIONS(1253), - [aux_sym_else_clause_token1] = ACTIONS(1253), - [aux_sym_match_expression_token1] = ACTIONS(1253), - [aux_sym_match_default_expression_token1] = ACTIONS(1253), - [aux_sym_switch_statement_token1] = ACTIONS(1253), - [aux_sym_switch_block_token1] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_BANG] = ACTIONS(1251), - [anon_sym_AT] = ACTIONS(1251), - [aux_sym_clone_expression_token1] = ACTIONS(1253), - [aux_sym_print_intrinsic_token1] = ACTIONS(1253), - [aux_sym_object_creation_expression_token1] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1251), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [aux_sym__list_destructing_token1] = ACTIONS(1253), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_self] = ACTIONS(1253), - [anon_sym_parent] = ACTIONS(1253), - [aux_sym__argument_name_token1] = ACTIONS(1253), - [aux_sym__argument_name_token2] = ACTIONS(1253), - [anon_sym_POUND_LBRACK] = ACTIONS(1251), - [aux_sym_encapsed_string_token1] = ACTIONS(1251), - [anon_sym_DQUOTE] = ACTIONS(1251), - [aux_sym_string_token1] = ACTIONS(1251), - [anon_sym_SQUOTE] = ACTIONS(1251), - [anon_sym_LT_LT_LT] = ACTIONS(1251), - [anon_sym_BQUOTE] = ACTIONS(1251), - [anon_sym_DOLLAR] = ACTIONS(1251), - [aux_sym_yield_expression_token1] = ACTIONS(1253), - [aux_sym_include_expression_token1] = ACTIONS(1253), - [aux_sym_include_once_expression_token1] = ACTIONS(1253), - [aux_sym_require_expression_token1] = ACTIONS(1253), - [aux_sym_require_once_expression_token1] = ACTIONS(1253), + [ts_builtin_sym_end] = ACTIONS(1244), + [sym_name] = ACTIONS(1246), + [anon_sym_QMARK_GT] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1244), + [aux_sym_function_static_declaration_token1] = ACTIONS(1246), + [aux_sym_global_declaration_token1] = ACTIONS(1246), + [aux_sym_namespace_definition_token1] = ACTIONS(1246), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1246), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1246), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1246), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [aux_sym_trait_declaration_token1] = ACTIONS(1246), + [aux_sym_interface_declaration_token1] = ACTIONS(1246), + [aux_sym_enum_declaration_token1] = ACTIONS(1246), + [aux_sym_enum_case_token1] = ACTIONS(1246), + [aux_sym_class_declaration_token1] = ACTIONS(1246), + [aux_sym_final_modifier_token1] = ACTIONS(1246), + [aux_sym_abstract_modifier_token1] = ACTIONS(1246), + [aux_sym_readonly_modifier_token1] = ACTIONS(1246), + [sym_var_modifier] = ACTIONS(1246), + [aux_sym_visibility_modifier_token1] = ACTIONS(1246), + [aux_sym_visibility_modifier_token2] = ACTIONS(1246), + [aux_sym_visibility_modifier_token3] = ACTIONS(1246), + [aux_sym__arrow_function_header_token1] = ACTIONS(1246), + [anon_sym_LPAREN] = ACTIONS(1244), + [aux_sym_cast_type_token1] = ACTIONS(1246), + [aux_sym_echo_statement_token1] = ACTIONS(1246), + [aux_sym_exit_statement_token1] = ACTIONS(1246), + [anon_sym_unset] = ACTIONS(1246), + [aux_sym_declare_statement_token1] = ACTIONS(1246), + [aux_sym_declare_statement_token2] = ACTIONS(1246), + [sym_float] = ACTIONS(1246), + [aux_sym_try_statement_token1] = ACTIONS(1246), + [aux_sym_goto_statement_token1] = ACTIONS(1246), + [aux_sym_continue_statement_token1] = ACTIONS(1246), + [aux_sym_break_statement_token1] = ACTIONS(1246), + [sym_integer] = ACTIONS(1246), + [aux_sym_return_statement_token1] = ACTIONS(1246), + [aux_sym_throw_expression_token1] = ACTIONS(1246), + [aux_sym_while_statement_token1] = ACTIONS(1246), + [aux_sym_while_statement_token2] = ACTIONS(1246), + [aux_sym_do_statement_token1] = ACTIONS(1246), + [aux_sym_for_statement_token1] = ACTIONS(1246), + [aux_sym_for_statement_token2] = ACTIONS(1246), + [aux_sym_foreach_statement_token1] = ACTIONS(1246), + [aux_sym_foreach_statement_token2] = ACTIONS(1246), + [aux_sym_if_statement_token1] = ACTIONS(1246), + [aux_sym_if_statement_token2] = ACTIONS(1246), + [aux_sym_else_if_clause_token1] = ACTIONS(1246), + [aux_sym_else_clause_token1] = ACTIONS(1246), + [aux_sym_match_expression_token1] = ACTIONS(1246), + [aux_sym_match_default_expression_token1] = ACTIONS(1246), + [aux_sym_switch_statement_token1] = ACTIONS(1246), + [aux_sym_switch_block_token1] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_AT] = ACTIONS(1244), + [aux_sym_clone_expression_token1] = ACTIONS(1246), + [aux_sym_print_intrinsic_token1] = ACTIONS(1246), + [aux_sym_object_creation_expression_token1] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_PLUS_PLUS] = ACTIONS(1244), + [aux_sym__list_destructing_token1] = ACTIONS(1246), + [anon_sym_LBRACK] = ACTIONS(1244), + [anon_sym_self] = ACTIONS(1246), + [anon_sym_parent] = ACTIONS(1246), + [aux_sym__argument_name_token1] = ACTIONS(1246), + [aux_sym__argument_name_token2] = ACTIONS(1246), + [anon_sym_POUND_LBRACK] = ACTIONS(1244), + [aux_sym_encapsed_string_token1] = ACTIONS(1244), + [anon_sym_DQUOTE] = ACTIONS(1244), + [aux_sym_string_token1] = ACTIONS(1244), + [anon_sym_SQUOTE] = ACTIONS(1244), + [anon_sym_LT_LT_LT] = ACTIONS(1244), + [anon_sym_BQUOTE] = ACTIONS(1244), + [anon_sym_DOLLAR] = ACTIONS(1244), + [aux_sym_yield_expression_token1] = ACTIONS(1246), + [aux_sym_include_expression_token1] = ACTIONS(1246), + [aux_sym_include_once_expression_token1] = ACTIONS(1246), + [aux_sym_require_expression_token1] = ACTIONS(1246), + [aux_sym_require_once_expression_token1] = ACTIONS(1246), [sym_comment] = ACTIONS(3), }, [481] = { - [ts_builtin_sym_end] = ACTIONS(1255), - [sym_name] = ACTIONS(1257), - [anon_sym_QMARK_GT] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1255), - [aux_sym_function_static_declaration_token1] = ACTIONS(1257), - [aux_sym_global_declaration_token1] = ACTIONS(1257), - [aux_sym_namespace_definition_token1] = ACTIONS(1257), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1257), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1257), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1257), - [anon_sym_BSLASH] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(1255), - [aux_sym_trait_declaration_token1] = ACTIONS(1257), - [aux_sym_interface_declaration_token1] = ACTIONS(1257), - [aux_sym_enum_declaration_token1] = ACTIONS(1257), - [aux_sym_enum_case_token1] = ACTIONS(1257), - [aux_sym_class_declaration_token1] = ACTIONS(1257), - [aux_sym_final_modifier_token1] = ACTIONS(1257), - [aux_sym_abstract_modifier_token1] = ACTIONS(1257), - [aux_sym_readonly_modifier_token1] = ACTIONS(1257), - [aux_sym_visibility_modifier_token1] = ACTIONS(1257), - [aux_sym_visibility_modifier_token2] = ACTIONS(1257), - [aux_sym_visibility_modifier_token3] = ACTIONS(1257), - [aux_sym__arrow_function_header_token1] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1255), - [aux_sym_cast_type_token1] = ACTIONS(1257), - [aux_sym_echo_statement_token1] = ACTIONS(1257), - [aux_sym_exit_statement_token1] = ACTIONS(1257), - [anon_sym_unset] = ACTIONS(1257), - [aux_sym_declare_statement_token1] = ACTIONS(1257), - [aux_sym_declare_statement_token2] = ACTIONS(1257), - [sym_float] = ACTIONS(1257), - [aux_sym_try_statement_token1] = ACTIONS(1257), - [aux_sym_goto_statement_token1] = ACTIONS(1257), - [aux_sym_continue_statement_token1] = ACTIONS(1257), - [aux_sym_break_statement_token1] = ACTIONS(1257), - [sym_integer] = ACTIONS(1257), - [aux_sym_return_statement_token1] = ACTIONS(1257), - [aux_sym_throw_expression_token1] = ACTIONS(1257), - [aux_sym_while_statement_token1] = ACTIONS(1257), - [aux_sym_while_statement_token2] = ACTIONS(1257), - [aux_sym_do_statement_token1] = ACTIONS(1257), - [aux_sym_for_statement_token1] = ACTIONS(1257), - [aux_sym_for_statement_token2] = ACTIONS(1257), - [aux_sym_foreach_statement_token1] = ACTIONS(1257), - [aux_sym_foreach_statement_token2] = ACTIONS(1257), - [aux_sym_if_statement_token1] = ACTIONS(1257), - [aux_sym_if_statement_token2] = ACTIONS(1257), - [aux_sym_else_if_clause_token1] = ACTIONS(1257), - [aux_sym_else_clause_token1] = ACTIONS(1257), - [aux_sym_match_expression_token1] = ACTIONS(1257), - [aux_sym_match_default_expression_token1] = ACTIONS(1257), - [aux_sym_switch_statement_token1] = ACTIONS(1257), - [aux_sym_switch_block_token1] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1255), - [anon_sym_BANG] = ACTIONS(1255), - [anon_sym_AT] = ACTIONS(1255), - [aux_sym_clone_expression_token1] = ACTIONS(1257), - [aux_sym_print_intrinsic_token1] = ACTIONS(1257), - [aux_sym_object_creation_expression_token1] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [aux_sym__list_destructing_token1] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_self] = ACTIONS(1257), - [anon_sym_parent] = ACTIONS(1257), - [aux_sym__argument_name_token1] = ACTIONS(1257), - [aux_sym__argument_name_token2] = ACTIONS(1257), - [anon_sym_POUND_LBRACK] = ACTIONS(1255), - [aux_sym_encapsed_string_token1] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(1255), - [aux_sym_string_token1] = ACTIONS(1255), - [anon_sym_SQUOTE] = ACTIONS(1255), - [anon_sym_LT_LT_LT] = ACTIONS(1255), - [anon_sym_BQUOTE] = ACTIONS(1255), - [anon_sym_DOLLAR] = ACTIONS(1255), - [aux_sym_yield_expression_token1] = ACTIONS(1257), - [aux_sym_include_expression_token1] = ACTIONS(1257), - [aux_sym_include_once_expression_token1] = ACTIONS(1257), - [aux_sym_require_expression_token1] = ACTIONS(1257), - [aux_sym_require_once_expression_token1] = ACTIONS(1257), + [ts_builtin_sym_end] = ACTIONS(1248), + [sym_name] = ACTIONS(1250), + [anon_sym_QMARK_GT] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [aux_sym_function_static_declaration_token1] = ACTIONS(1250), + [aux_sym_global_declaration_token1] = ACTIONS(1250), + [aux_sym_namespace_definition_token1] = ACTIONS(1250), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1250), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1250), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1250), + [anon_sym_BSLASH] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_RBRACE] = ACTIONS(1248), + [aux_sym_trait_declaration_token1] = ACTIONS(1250), + [aux_sym_interface_declaration_token1] = ACTIONS(1250), + [aux_sym_enum_declaration_token1] = ACTIONS(1250), + [aux_sym_enum_case_token1] = ACTIONS(1250), + [aux_sym_class_declaration_token1] = ACTIONS(1250), + [aux_sym_final_modifier_token1] = ACTIONS(1250), + [aux_sym_abstract_modifier_token1] = ACTIONS(1250), + [aux_sym_readonly_modifier_token1] = ACTIONS(1250), + [sym_var_modifier] = ACTIONS(1250), + [aux_sym_visibility_modifier_token1] = ACTIONS(1250), + [aux_sym_visibility_modifier_token2] = ACTIONS(1250), + [aux_sym_visibility_modifier_token3] = ACTIONS(1250), + [aux_sym__arrow_function_header_token1] = ACTIONS(1250), + [anon_sym_LPAREN] = ACTIONS(1248), + [aux_sym_cast_type_token1] = ACTIONS(1250), + [aux_sym_echo_statement_token1] = ACTIONS(1250), + [aux_sym_exit_statement_token1] = ACTIONS(1250), + [anon_sym_unset] = ACTIONS(1250), + [aux_sym_declare_statement_token1] = ACTIONS(1250), + [aux_sym_declare_statement_token2] = ACTIONS(1250), + [sym_float] = ACTIONS(1250), + [aux_sym_try_statement_token1] = ACTIONS(1250), + [aux_sym_goto_statement_token1] = ACTIONS(1250), + [aux_sym_continue_statement_token1] = ACTIONS(1250), + [aux_sym_break_statement_token1] = ACTIONS(1250), + [sym_integer] = ACTIONS(1250), + [aux_sym_return_statement_token1] = ACTIONS(1250), + [aux_sym_throw_expression_token1] = ACTIONS(1250), + [aux_sym_while_statement_token1] = ACTIONS(1250), + [aux_sym_while_statement_token2] = ACTIONS(1250), + [aux_sym_do_statement_token1] = ACTIONS(1250), + [aux_sym_for_statement_token1] = ACTIONS(1250), + [aux_sym_for_statement_token2] = ACTIONS(1250), + [aux_sym_foreach_statement_token1] = ACTIONS(1250), + [aux_sym_foreach_statement_token2] = ACTIONS(1250), + [aux_sym_if_statement_token1] = ACTIONS(1250), + [aux_sym_if_statement_token2] = ACTIONS(1250), + [aux_sym_else_if_clause_token1] = ACTIONS(1250), + [aux_sym_else_clause_token1] = ACTIONS(1250), + [aux_sym_match_expression_token1] = ACTIONS(1250), + [aux_sym_match_default_expression_token1] = ACTIONS(1250), + [aux_sym_switch_statement_token1] = ACTIONS(1250), + [aux_sym_switch_block_token1] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(1248), + [aux_sym_clone_expression_token1] = ACTIONS(1250), + [aux_sym_print_intrinsic_token1] = ACTIONS(1250), + [aux_sym_object_creation_expression_token1] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [aux_sym__list_destructing_token1] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1248), + [anon_sym_self] = ACTIONS(1250), + [anon_sym_parent] = ACTIONS(1250), + [aux_sym__argument_name_token1] = ACTIONS(1250), + [aux_sym__argument_name_token2] = ACTIONS(1250), + [anon_sym_POUND_LBRACK] = ACTIONS(1248), + [aux_sym_encapsed_string_token1] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [aux_sym_string_token1] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_LT_LT_LT] = ACTIONS(1248), + [anon_sym_BQUOTE] = ACTIONS(1248), + [anon_sym_DOLLAR] = ACTIONS(1248), + [aux_sym_yield_expression_token1] = ACTIONS(1250), + [aux_sym_include_expression_token1] = ACTIONS(1250), + [aux_sym_include_once_expression_token1] = ACTIONS(1250), + [aux_sym_require_expression_token1] = ACTIONS(1250), + [aux_sym_require_once_expression_token1] = ACTIONS(1250), [sym_comment] = ACTIONS(3), }, [482] = { - [ts_builtin_sym_end] = ACTIONS(1259), - [sym_name] = ACTIONS(1261), - [anon_sym_QMARK_GT] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [aux_sym_function_static_declaration_token1] = ACTIONS(1261), - [aux_sym_global_declaration_token1] = ACTIONS(1261), - [aux_sym_namespace_definition_token1] = ACTIONS(1261), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1261), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1261), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1261), - [anon_sym_BSLASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [aux_sym_trait_declaration_token1] = ACTIONS(1261), - [aux_sym_interface_declaration_token1] = ACTIONS(1261), - [aux_sym_enum_declaration_token1] = ACTIONS(1261), - [aux_sym_enum_case_token1] = ACTIONS(1261), - [aux_sym_class_declaration_token1] = ACTIONS(1261), - [aux_sym_final_modifier_token1] = ACTIONS(1261), - [aux_sym_abstract_modifier_token1] = ACTIONS(1261), - [aux_sym_readonly_modifier_token1] = ACTIONS(1261), - [aux_sym_visibility_modifier_token1] = ACTIONS(1261), - [aux_sym_visibility_modifier_token2] = ACTIONS(1261), - [aux_sym_visibility_modifier_token3] = ACTIONS(1261), - [aux_sym__arrow_function_header_token1] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1259), - [aux_sym_cast_type_token1] = ACTIONS(1261), - [aux_sym_echo_statement_token1] = ACTIONS(1261), - [aux_sym_exit_statement_token1] = ACTIONS(1261), - [anon_sym_unset] = ACTIONS(1261), - [aux_sym_declare_statement_token1] = ACTIONS(1261), - [aux_sym_declare_statement_token2] = ACTIONS(1261), - [sym_float] = ACTIONS(1261), - [aux_sym_try_statement_token1] = ACTIONS(1261), - [aux_sym_goto_statement_token1] = ACTIONS(1261), - [aux_sym_continue_statement_token1] = ACTIONS(1261), - [aux_sym_break_statement_token1] = ACTIONS(1261), - [sym_integer] = ACTIONS(1261), - [aux_sym_return_statement_token1] = ACTIONS(1261), - [aux_sym_throw_expression_token1] = ACTIONS(1261), - [aux_sym_while_statement_token1] = ACTIONS(1261), - [aux_sym_while_statement_token2] = ACTIONS(1261), - [aux_sym_do_statement_token1] = ACTIONS(1261), - [aux_sym_for_statement_token1] = ACTIONS(1261), - [aux_sym_for_statement_token2] = ACTIONS(1261), - [aux_sym_foreach_statement_token1] = ACTIONS(1261), - [aux_sym_foreach_statement_token2] = ACTIONS(1261), - [aux_sym_if_statement_token1] = ACTIONS(1261), - [aux_sym_if_statement_token2] = ACTIONS(1261), - [aux_sym_else_if_clause_token1] = ACTIONS(1261), - [aux_sym_else_clause_token1] = ACTIONS(1261), - [aux_sym_match_expression_token1] = ACTIONS(1261), - [aux_sym_match_default_expression_token1] = ACTIONS(1261), - [aux_sym_switch_statement_token1] = ACTIONS(1261), - [aux_sym_switch_block_token1] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_BANG] = ACTIONS(1259), - [anon_sym_AT] = ACTIONS(1259), - [aux_sym_clone_expression_token1] = ACTIONS(1261), - [aux_sym_print_intrinsic_token1] = ACTIONS(1261), - [aux_sym_object_creation_expression_token1] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [aux_sym__list_destructing_token1] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_self] = ACTIONS(1261), - [anon_sym_parent] = ACTIONS(1261), - [aux_sym__argument_name_token1] = ACTIONS(1261), - [aux_sym__argument_name_token2] = ACTIONS(1261), - [anon_sym_POUND_LBRACK] = ACTIONS(1259), - [aux_sym_encapsed_string_token1] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [aux_sym_string_token1] = ACTIONS(1259), - [anon_sym_SQUOTE] = ACTIONS(1259), - [anon_sym_LT_LT_LT] = ACTIONS(1259), - [anon_sym_BQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1259), - [aux_sym_yield_expression_token1] = ACTIONS(1261), - [aux_sym_include_expression_token1] = ACTIONS(1261), - [aux_sym_include_once_expression_token1] = ACTIONS(1261), - [aux_sym_require_expression_token1] = ACTIONS(1261), - [aux_sym_require_once_expression_token1] = ACTIONS(1261), + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_name] = ACTIONS(1254), + [anon_sym_QMARK_GT] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [aux_sym_function_static_declaration_token1] = ACTIONS(1254), + [aux_sym_global_declaration_token1] = ACTIONS(1254), + [aux_sym_namespace_definition_token1] = ACTIONS(1254), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1254), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1254), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1254), + [anon_sym_BSLASH] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [aux_sym_trait_declaration_token1] = ACTIONS(1254), + [aux_sym_interface_declaration_token1] = ACTIONS(1254), + [aux_sym_enum_declaration_token1] = ACTIONS(1254), + [aux_sym_enum_case_token1] = ACTIONS(1254), + [aux_sym_class_declaration_token1] = ACTIONS(1254), + [aux_sym_final_modifier_token1] = ACTIONS(1254), + [aux_sym_abstract_modifier_token1] = ACTIONS(1254), + [aux_sym_readonly_modifier_token1] = ACTIONS(1254), + [sym_var_modifier] = ACTIONS(1254), + [aux_sym_visibility_modifier_token1] = ACTIONS(1254), + [aux_sym_visibility_modifier_token2] = ACTIONS(1254), + [aux_sym_visibility_modifier_token3] = ACTIONS(1254), + [aux_sym__arrow_function_header_token1] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1252), + [aux_sym_cast_type_token1] = ACTIONS(1254), + [aux_sym_echo_statement_token1] = ACTIONS(1254), + [aux_sym_exit_statement_token1] = ACTIONS(1254), + [anon_sym_unset] = ACTIONS(1254), + [aux_sym_declare_statement_token1] = ACTIONS(1254), + [aux_sym_declare_statement_token2] = ACTIONS(1254), + [sym_float] = ACTIONS(1254), + [aux_sym_try_statement_token1] = ACTIONS(1254), + [aux_sym_goto_statement_token1] = ACTIONS(1254), + [aux_sym_continue_statement_token1] = ACTIONS(1254), + [aux_sym_break_statement_token1] = ACTIONS(1254), + [sym_integer] = ACTIONS(1254), + [aux_sym_return_statement_token1] = ACTIONS(1254), + [aux_sym_throw_expression_token1] = ACTIONS(1254), + [aux_sym_while_statement_token1] = ACTIONS(1254), + [aux_sym_while_statement_token2] = ACTIONS(1254), + [aux_sym_do_statement_token1] = ACTIONS(1254), + [aux_sym_for_statement_token1] = ACTIONS(1254), + [aux_sym_for_statement_token2] = ACTIONS(1254), + [aux_sym_foreach_statement_token1] = ACTIONS(1254), + [aux_sym_foreach_statement_token2] = ACTIONS(1254), + [aux_sym_if_statement_token1] = ACTIONS(1254), + [aux_sym_if_statement_token2] = ACTIONS(1254), + [aux_sym_else_if_clause_token1] = ACTIONS(1254), + [aux_sym_else_clause_token1] = ACTIONS(1254), + [aux_sym_match_expression_token1] = ACTIONS(1254), + [aux_sym_match_default_expression_token1] = ACTIONS(1254), + [aux_sym_switch_statement_token1] = ACTIONS(1254), + [aux_sym_switch_block_token1] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_AT] = ACTIONS(1252), + [aux_sym_clone_expression_token1] = ACTIONS(1254), + [aux_sym_print_intrinsic_token1] = ACTIONS(1254), + [aux_sym_object_creation_expression_token1] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [aux_sym__list_destructing_token1] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_self] = ACTIONS(1254), + [anon_sym_parent] = ACTIONS(1254), + [aux_sym__argument_name_token1] = ACTIONS(1254), + [aux_sym__argument_name_token2] = ACTIONS(1254), + [anon_sym_POUND_LBRACK] = ACTIONS(1252), + [aux_sym_encapsed_string_token1] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [aux_sym_string_token1] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_LT_LT_LT] = ACTIONS(1252), + [anon_sym_BQUOTE] = ACTIONS(1252), + [anon_sym_DOLLAR] = ACTIONS(1252), + [aux_sym_yield_expression_token1] = ACTIONS(1254), + [aux_sym_include_expression_token1] = ACTIONS(1254), + [aux_sym_include_once_expression_token1] = ACTIONS(1254), + [aux_sym_require_expression_token1] = ACTIONS(1254), + [aux_sym_require_once_expression_token1] = ACTIONS(1254), [sym_comment] = ACTIONS(3), }, [483] = { - [ts_builtin_sym_end] = ACTIONS(1263), - [sym_name] = ACTIONS(1265), - [anon_sym_QMARK_GT] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [aux_sym_function_static_declaration_token1] = ACTIONS(1265), - [aux_sym_global_declaration_token1] = ACTIONS(1265), - [aux_sym_namespace_definition_token1] = ACTIONS(1265), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1265), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1265), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1265), - [anon_sym_BSLASH] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [aux_sym_trait_declaration_token1] = ACTIONS(1265), - [aux_sym_interface_declaration_token1] = ACTIONS(1265), - [aux_sym_enum_declaration_token1] = ACTIONS(1265), - [aux_sym_enum_case_token1] = ACTIONS(1265), - [aux_sym_class_declaration_token1] = ACTIONS(1265), - [aux_sym_final_modifier_token1] = ACTIONS(1265), - [aux_sym_abstract_modifier_token1] = ACTIONS(1265), - [aux_sym_readonly_modifier_token1] = ACTIONS(1265), - [aux_sym_visibility_modifier_token1] = ACTIONS(1265), - [aux_sym_visibility_modifier_token2] = ACTIONS(1265), - [aux_sym_visibility_modifier_token3] = ACTIONS(1265), - [aux_sym__arrow_function_header_token1] = ACTIONS(1265), - [anon_sym_LPAREN] = ACTIONS(1263), - [aux_sym_cast_type_token1] = ACTIONS(1265), - [aux_sym_echo_statement_token1] = ACTIONS(1265), - [aux_sym_exit_statement_token1] = ACTIONS(1265), - [anon_sym_unset] = ACTIONS(1265), - [aux_sym_declare_statement_token1] = ACTIONS(1265), - [aux_sym_declare_statement_token2] = ACTIONS(1265), - [sym_float] = ACTIONS(1265), - [aux_sym_try_statement_token1] = ACTIONS(1265), - [aux_sym_goto_statement_token1] = ACTIONS(1265), - [aux_sym_continue_statement_token1] = ACTIONS(1265), - [aux_sym_break_statement_token1] = ACTIONS(1265), - [sym_integer] = ACTIONS(1265), - [aux_sym_return_statement_token1] = ACTIONS(1265), - [aux_sym_throw_expression_token1] = ACTIONS(1265), - [aux_sym_while_statement_token1] = ACTIONS(1265), - [aux_sym_while_statement_token2] = ACTIONS(1265), - [aux_sym_do_statement_token1] = ACTIONS(1265), - [aux_sym_for_statement_token1] = ACTIONS(1265), - [aux_sym_for_statement_token2] = ACTIONS(1265), - [aux_sym_foreach_statement_token1] = ACTIONS(1265), - [aux_sym_foreach_statement_token2] = ACTIONS(1265), - [aux_sym_if_statement_token1] = ACTIONS(1265), - [aux_sym_if_statement_token2] = ACTIONS(1265), - [aux_sym_else_if_clause_token1] = ACTIONS(1265), - [aux_sym_else_clause_token1] = ACTIONS(1265), - [aux_sym_match_expression_token1] = ACTIONS(1265), - [aux_sym_match_default_expression_token1] = ACTIONS(1265), - [aux_sym_switch_statement_token1] = ACTIONS(1265), - [aux_sym_switch_block_token1] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1263), - [anon_sym_AT] = ACTIONS(1263), - [aux_sym_clone_expression_token1] = ACTIONS(1265), - [aux_sym_print_intrinsic_token1] = ACTIONS(1265), - [aux_sym_object_creation_expression_token1] = ACTIONS(1265), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [aux_sym__list_destructing_token1] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_self] = ACTIONS(1265), - [anon_sym_parent] = ACTIONS(1265), - [aux_sym__argument_name_token1] = ACTIONS(1265), - [aux_sym__argument_name_token2] = ACTIONS(1265), - [anon_sym_POUND_LBRACK] = ACTIONS(1263), - [aux_sym_encapsed_string_token1] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [aux_sym_string_token1] = ACTIONS(1263), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_LT_LT_LT] = ACTIONS(1263), - [anon_sym_BQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [aux_sym_yield_expression_token1] = ACTIONS(1265), - [aux_sym_include_expression_token1] = ACTIONS(1265), - [aux_sym_include_once_expression_token1] = ACTIONS(1265), - [aux_sym_require_expression_token1] = ACTIONS(1265), - [aux_sym_require_once_expression_token1] = ACTIONS(1265), + [ts_builtin_sym_end] = ACTIONS(1256), + [sym_name] = ACTIONS(1258), + [anon_sym_QMARK_GT] = ACTIONS(1256), + [anon_sym_SEMI] = ACTIONS(1256), + [aux_sym_function_static_declaration_token1] = ACTIONS(1258), + [aux_sym_global_declaration_token1] = ACTIONS(1258), + [aux_sym_namespace_definition_token1] = ACTIONS(1258), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1258), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1258), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1258), + [anon_sym_BSLASH] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_RBRACE] = ACTIONS(1256), + [aux_sym_trait_declaration_token1] = ACTIONS(1258), + [aux_sym_interface_declaration_token1] = ACTIONS(1258), + [aux_sym_enum_declaration_token1] = ACTIONS(1258), + [aux_sym_enum_case_token1] = ACTIONS(1258), + [aux_sym_class_declaration_token1] = ACTIONS(1258), + [aux_sym_final_modifier_token1] = ACTIONS(1258), + [aux_sym_abstract_modifier_token1] = ACTIONS(1258), + [aux_sym_readonly_modifier_token1] = ACTIONS(1258), + [sym_var_modifier] = ACTIONS(1258), + [aux_sym_visibility_modifier_token1] = ACTIONS(1258), + [aux_sym_visibility_modifier_token2] = ACTIONS(1258), + [aux_sym_visibility_modifier_token3] = ACTIONS(1258), + [aux_sym__arrow_function_header_token1] = ACTIONS(1258), + [anon_sym_LPAREN] = ACTIONS(1256), + [aux_sym_cast_type_token1] = ACTIONS(1258), + [aux_sym_echo_statement_token1] = ACTIONS(1258), + [aux_sym_exit_statement_token1] = ACTIONS(1258), + [anon_sym_unset] = ACTIONS(1258), + [aux_sym_declare_statement_token1] = ACTIONS(1258), + [aux_sym_declare_statement_token2] = ACTIONS(1258), + [sym_float] = ACTIONS(1258), + [aux_sym_try_statement_token1] = ACTIONS(1258), + [aux_sym_goto_statement_token1] = ACTIONS(1258), + [aux_sym_continue_statement_token1] = ACTIONS(1258), + [aux_sym_break_statement_token1] = ACTIONS(1258), + [sym_integer] = ACTIONS(1258), + [aux_sym_return_statement_token1] = ACTIONS(1258), + [aux_sym_throw_expression_token1] = ACTIONS(1258), + [aux_sym_while_statement_token1] = ACTIONS(1258), + [aux_sym_while_statement_token2] = ACTIONS(1258), + [aux_sym_do_statement_token1] = ACTIONS(1258), + [aux_sym_for_statement_token1] = ACTIONS(1258), + [aux_sym_for_statement_token2] = ACTIONS(1258), + [aux_sym_foreach_statement_token1] = ACTIONS(1258), + [aux_sym_foreach_statement_token2] = ACTIONS(1258), + [aux_sym_if_statement_token1] = ACTIONS(1258), + [aux_sym_if_statement_token2] = ACTIONS(1258), + [aux_sym_else_if_clause_token1] = ACTIONS(1258), + [aux_sym_else_clause_token1] = ACTIONS(1258), + [aux_sym_match_expression_token1] = ACTIONS(1258), + [aux_sym_match_default_expression_token1] = ACTIONS(1258), + [aux_sym_switch_statement_token1] = ACTIONS(1258), + [aux_sym_switch_block_token1] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_AT] = ACTIONS(1256), + [aux_sym_clone_expression_token1] = ACTIONS(1258), + [aux_sym_print_intrinsic_token1] = ACTIONS(1258), + [aux_sym_object_creation_expression_token1] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [aux_sym__list_destructing_token1] = ACTIONS(1258), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_self] = ACTIONS(1258), + [anon_sym_parent] = ACTIONS(1258), + [aux_sym__argument_name_token1] = ACTIONS(1258), + [aux_sym__argument_name_token2] = ACTIONS(1258), + [anon_sym_POUND_LBRACK] = ACTIONS(1256), + [aux_sym_encapsed_string_token1] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1256), + [aux_sym_string_token1] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1256), + [anon_sym_LT_LT_LT] = ACTIONS(1256), + [anon_sym_BQUOTE] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1256), + [aux_sym_yield_expression_token1] = ACTIONS(1258), + [aux_sym_include_expression_token1] = ACTIONS(1258), + [aux_sym_include_once_expression_token1] = ACTIONS(1258), + [aux_sym_require_expression_token1] = ACTIONS(1258), + [aux_sym_require_once_expression_token1] = ACTIONS(1258), [sym_comment] = ACTIONS(3), }, [484] = { - [ts_builtin_sym_end] = ACTIONS(1267), - [sym_name] = ACTIONS(1269), - [anon_sym_QMARK_GT] = ACTIONS(1267), - [anon_sym_SEMI] = ACTIONS(1267), - [aux_sym_function_static_declaration_token1] = ACTIONS(1269), - [aux_sym_global_declaration_token1] = ACTIONS(1269), - [aux_sym_namespace_definition_token1] = ACTIONS(1269), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1269), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1269), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1269), - [anon_sym_BSLASH] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_RBRACE] = ACTIONS(1267), - [aux_sym_trait_declaration_token1] = ACTIONS(1269), - [aux_sym_interface_declaration_token1] = ACTIONS(1269), - [aux_sym_enum_declaration_token1] = ACTIONS(1269), - [aux_sym_enum_case_token1] = ACTIONS(1269), - [aux_sym_class_declaration_token1] = ACTIONS(1269), - [aux_sym_final_modifier_token1] = ACTIONS(1269), - [aux_sym_abstract_modifier_token1] = ACTIONS(1269), - [aux_sym_readonly_modifier_token1] = ACTIONS(1269), - [aux_sym_visibility_modifier_token1] = ACTIONS(1269), - [aux_sym_visibility_modifier_token2] = ACTIONS(1269), - [aux_sym_visibility_modifier_token3] = ACTIONS(1269), - [aux_sym__arrow_function_header_token1] = ACTIONS(1269), - [anon_sym_LPAREN] = ACTIONS(1267), - [aux_sym_cast_type_token1] = ACTIONS(1269), - [aux_sym_echo_statement_token1] = ACTIONS(1269), - [aux_sym_exit_statement_token1] = ACTIONS(1269), - [anon_sym_unset] = ACTIONS(1269), - [aux_sym_declare_statement_token1] = ACTIONS(1269), - [aux_sym_declare_statement_token2] = ACTIONS(1269), - [sym_float] = ACTIONS(1269), - [aux_sym_try_statement_token1] = ACTIONS(1269), - [aux_sym_goto_statement_token1] = ACTIONS(1269), - [aux_sym_continue_statement_token1] = ACTIONS(1269), - [aux_sym_break_statement_token1] = ACTIONS(1269), - [sym_integer] = ACTIONS(1269), - [aux_sym_return_statement_token1] = ACTIONS(1269), - [aux_sym_throw_expression_token1] = ACTIONS(1269), - [aux_sym_while_statement_token1] = ACTIONS(1269), - [aux_sym_while_statement_token2] = ACTIONS(1269), - [aux_sym_do_statement_token1] = ACTIONS(1269), - [aux_sym_for_statement_token1] = ACTIONS(1269), - [aux_sym_for_statement_token2] = ACTIONS(1269), - [aux_sym_foreach_statement_token1] = ACTIONS(1269), - [aux_sym_foreach_statement_token2] = ACTIONS(1269), - [aux_sym_if_statement_token1] = ACTIONS(1269), - [aux_sym_if_statement_token2] = ACTIONS(1269), - [aux_sym_else_if_clause_token1] = ACTIONS(1269), - [aux_sym_else_clause_token1] = ACTIONS(1269), - [aux_sym_match_expression_token1] = ACTIONS(1269), - [aux_sym_match_default_expression_token1] = ACTIONS(1269), - [aux_sym_switch_statement_token1] = ACTIONS(1269), - [aux_sym_switch_block_token1] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1269), - [anon_sym_TILDE] = ACTIONS(1267), - [anon_sym_BANG] = ACTIONS(1267), - [anon_sym_AT] = ACTIONS(1267), - [aux_sym_clone_expression_token1] = ACTIONS(1269), - [aux_sym_print_intrinsic_token1] = ACTIONS(1269), - [aux_sym_object_creation_expression_token1] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1267), - [anon_sym_PLUS_PLUS] = ACTIONS(1267), - [aux_sym__list_destructing_token1] = ACTIONS(1269), - [anon_sym_LBRACK] = ACTIONS(1267), - [anon_sym_self] = ACTIONS(1269), - [anon_sym_parent] = ACTIONS(1269), - [aux_sym__argument_name_token1] = ACTIONS(1269), - [aux_sym__argument_name_token2] = ACTIONS(1269), - [anon_sym_POUND_LBRACK] = ACTIONS(1267), - [aux_sym_encapsed_string_token1] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1267), - [aux_sym_string_token1] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_LT_LT_LT] = ACTIONS(1267), - [anon_sym_BQUOTE] = ACTIONS(1267), - [anon_sym_DOLLAR] = ACTIONS(1267), - [aux_sym_yield_expression_token1] = ACTIONS(1269), - [aux_sym_include_expression_token1] = ACTIONS(1269), - [aux_sym_include_once_expression_token1] = ACTIONS(1269), - [aux_sym_require_expression_token1] = ACTIONS(1269), - [aux_sym_require_once_expression_token1] = ACTIONS(1269), + [ts_builtin_sym_end] = ACTIONS(1260), + [sym_name] = ACTIONS(1262), + [anon_sym_QMARK_GT] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1260), + [aux_sym_function_static_declaration_token1] = ACTIONS(1262), + [aux_sym_global_declaration_token1] = ACTIONS(1262), + [aux_sym_namespace_definition_token1] = ACTIONS(1262), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1262), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1262), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1262), + [anon_sym_BSLASH] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1260), + [anon_sym_RBRACE] = ACTIONS(1260), + [aux_sym_trait_declaration_token1] = ACTIONS(1262), + [aux_sym_interface_declaration_token1] = ACTIONS(1262), + [aux_sym_enum_declaration_token1] = ACTIONS(1262), + [aux_sym_enum_case_token1] = ACTIONS(1262), + [aux_sym_class_declaration_token1] = ACTIONS(1262), + [aux_sym_final_modifier_token1] = ACTIONS(1262), + [aux_sym_abstract_modifier_token1] = ACTIONS(1262), + [aux_sym_readonly_modifier_token1] = ACTIONS(1262), + [sym_var_modifier] = ACTIONS(1262), + [aux_sym_visibility_modifier_token1] = ACTIONS(1262), + [aux_sym_visibility_modifier_token2] = ACTIONS(1262), + [aux_sym_visibility_modifier_token3] = ACTIONS(1262), + [aux_sym__arrow_function_header_token1] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1260), + [aux_sym_cast_type_token1] = ACTIONS(1262), + [aux_sym_echo_statement_token1] = ACTIONS(1262), + [aux_sym_exit_statement_token1] = ACTIONS(1262), + [anon_sym_unset] = ACTIONS(1262), + [aux_sym_declare_statement_token1] = ACTIONS(1262), + [aux_sym_declare_statement_token2] = ACTIONS(1262), + [sym_float] = ACTIONS(1262), + [aux_sym_try_statement_token1] = ACTIONS(1262), + [aux_sym_goto_statement_token1] = ACTIONS(1262), + [aux_sym_continue_statement_token1] = ACTIONS(1262), + [aux_sym_break_statement_token1] = ACTIONS(1262), + [sym_integer] = ACTIONS(1262), + [aux_sym_return_statement_token1] = ACTIONS(1262), + [aux_sym_throw_expression_token1] = ACTIONS(1262), + [aux_sym_while_statement_token1] = ACTIONS(1262), + [aux_sym_while_statement_token2] = ACTIONS(1262), + [aux_sym_do_statement_token1] = ACTIONS(1262), + [aux_sym_for_statement_token1] = ACTIONS(1262), + [aux_sym_for_statement_token2] = ACTIONS(1262), + [aux_sym_foreach_statement_token1] = ACTIONS(1262), + [aux_sym_foreach_statement_token2] = ACTIONS(1262), + [aux_sym_if_statement_token1] = ACTIONS(1262), + [aux_sym_if_statement_token2] = ACTIONS(1262), + [aux_sym_else_if_clause_token1] = ACTIONS(1262), + [aux_sym_else_clause_token1] = ACTIONS(1262), + [aux_sym_match_expression_token1] = ACTIONS(1262), + [aux_sym_match_default_expression_token1] = ACTIONS(1262), + [aux_sym_switch_statement_token1] = ACTIONS(1262), + [aux_sym_switch_block_token1] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_TILDE] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_AT] = ACTIONS(1260), + [aux_sym_clone_expression_token1] = ACTIONS(1262), + [aux_sym_print_intrinsic_token1] = ACTIONS(1262), + [aux_sym_object_creation_expression_token1] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [aux_sym__list_destructing_token1] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_self] = ACTIONS(1262), + [anon_sym_parent] = ACTIONS(1262), + [aux_sym__argument_name_token1] = ACTIONS(1262), + [aux_sym__argument_name_token2] = ACTIONS(1262), + [anon_sym_POUND_LBRACK] = ACTIONS(1260), + [aux_sym_encapsed_string_token1] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(1260), + [aux_sym_string_token1] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [anon_sym_LT_LT_LT] = ACTIONS(1260), + [anon_sym_BQUOTE] = ACTIONS(1260), + [anon_sym_DOLLAR] = ACTIONS(1260), + [aux_sym_yield_expression_token1] = ACTIONS(1262), + [aux_sym_include_expression_token1] = ACTIONS(1262), + [aux_sym_include_once_expression_token1] = ACTIONS(1262), + [aux_sym_require_expression_token1] = ACTIONS(1262), + [aux_sym_require_once_expression_token1] = ACTIONS(1262), [sym_comment] = ACTIONS(3), }, [485] = { - [ts_builtin_sym_end] = ACTIONS(1271), - [sym_name] = ACTIONS(1273), - [anon_sym_QMARK_GT] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1271), - [aux_sym_function_static_declaration_token1] = ACTIONS(1273), - [aux_sym_global_declaration_token1] = ACTIONS(1273), - [aux_sym_namespace_definition_token1] = ACTIONS(1273), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1273), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1273), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1273), - [anon_sym_BSLASH] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(1271), - [anon_sym_RBRACE] = ACTIONS(1271), - [aux_sym_trait_declaration_token1] = ACTIONS(1273), - [aux_sym_interface_declaration_token1] = ACTIONS(1273), - [aux_sym_enum_declaration_token1] = ACTIONS(1273), - [aux_sym_enum_case_token1] = ACTIONS(1273), - [aux_sym_class_declaration_token1] = ACTIONS(1273), - [aux_sym_final_modifier_token1] = ACTIONS(1273), - [aux_sym_abstract_modifier_token1] = ACTIONS(1273), - [aux_sym_readonly_modifier_token1] = ACTIONS(1273), - [aux_sym_visibility_modifier_token1] = ACTIONS(1273), - [aux_sym_visibility_modifier_token2] = ACTIONS(1273), - [aux_sym_visibility_modifier_token3] = ACTIONS(1273), - [aux_sym__arrow_function_header_token1] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1271), - [aux_sym_cast_type_token1] = ACTIONS(1273), - [aux_sym_echo_statement_token1] = ACTIONS(1273), - [aux_sym_exit_statement_token1] = ACTIONS(1273), - [anon_sym_unset] = ACTIONS(1273), - [aux_sym_declare_statement_token1] = ACTIONS(1273), - [aux_sym_declare_statement_token2] = ACTIONS(1273), - [sym_float] = ACTIONS(1273), - [aux_sym_try_statement_token1] = ACTIONS(1273), - [aux_sym_goto_statement_token1] = ACTIONS(1273), - [aux_sym_continue_statement_token1] = ACTIONS(1273), - [aux_sym_break_statement_token1] = ACTIONS(1273), - [sym_integer] = ACTIONS(1273), - [aux_sym_return_statement_token1] = ACTIONS(1273), - [aux_sym_throw_expression_token1] = ACTIONS(1273), - [aux_sym_while_statement_token1] = ACTIONS(1273), - [aux_sym_while_statement_token2] = ACTIONS(1273), - [aux_sym_do_statement_token1] = ACTIONS(1273), - [aux_sym_for_statement_token1] = ACTIONS(1273), - [aux_sym_for_statement_token2] = ACTIONS(1273), - [aux_sym_foreach_statement_token1] = ACTIONS(1273), - [aux_sym_foreach_statement_token2] = ACTIONS(1273), - [aux_sym_if_statement_token1] = ACTIONS(1273), - [aux_sym_if_statement_token2] = ACTIONS(1273), - [aux_sym_else_if_clause_token1] = ACTIONS(1273), - [aux_sym_else_clause_token1] = ACTIONS(1273), - [aux_sym_match_expression_token1] = ACTIONS(1273), - [aux_sym_match_default_expression_token1] = ACTIONS(1273), - [aux_sym_switch_statement_token1] = ACTIONS(1273), - [aux_sym_switch_block_token1] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1271), - [anon_sym_AT] = ACTIONS(1271), - [aux_sym_clone_expression_token1] = ACTIONS(1273), - [aux_sym_print_intrinsic_token1] = ACTIONS(1273), - [aux_sym_object_creation_expression_token1] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [aux_sym__list_destructing_token1] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1271), - [anon_sym_self] = ACTIONS(1273), - [anon_sym_parent] = ACTIONS(1273), - [aux_sym__argument_name_token1] = ACTIONS(1273), - [aux_sym__argument_name_token2] = ACTIONS(1273), - [anon_sym_POUND_LBRACK] = ACTIONS(1271), - [aux_sym_encapsed_string_token1] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1271), - [aux_sym_string_token1] = ACTIONS(1271), - [anon_sym_SQUOTE] = ACTIONS(1271), - [anon_sym_LT_LT_LT] = ACTIONS(1271), - [anon_sym_BQUOTE] = ACTIONS(1271), - [anon_sym_DOLLAR] = ACTIONS(1271), - [aux_sym_yield_expression_token1] = ACTIONS(1273), - [aux_sym_include_expression_token1] = ACTIONS(1273), - [aux_sym_include_once_expression_token1] = ACTIONS(1273), - [aux_sym_require_expression_token1] = ACTIONS(1273), - [aux_sym_require_once_expression_token1] = ACTIONS(1273), + [ts_builtin_sym_end] = ACTIONS(1264), + [sym_name] = ACTIONS(1266), + [anon_sym_QMARK_GT] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1264), + [aux_sym_function_static_declaration_token1] = ACTIONS(1266), + [aux_sym_global_declaration_token1] = ACTIONS(1266), + [aux_sym_namespace_definition_token1] = ACTIONS(1266), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1266), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1266), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1266), + [anon_sym_BSLASH] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_RBRACE] = ACTIONS(1264), + [aux_sym_trait_declaration_token1] = ACTIONS(1266), + [aux_sym_interface_declaration_token1] = ACTIONS(1266), + [aux_sym_enum_declaration_token1] = ACTIONS(1266), + [aux_sym_enum_case_token1] = ACTIONS(1266), + [aux_sym_class_declaration_token1] = ACTIONS(1266), + [aux_sym_final_modifier_token1] = ACTIONS(1266), + [aux_sym_abstract_modifier_token1] = ACTIONS(1266), + [aux_sym_readonly_modifier_token1] = ACTIONS(1266), + [sym_var_modifier] = ACTIONS(1266), + [aux_sym_visibility_modifier_token1] = ACTIONS(1266), + [aux_sym_visibility_modifier_token2] = ACTIONS(1266), + [aux_sym_visibility_modifier_token3] = ACTIONS(1266), + [aux_sym__arrow_function_header_token1] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1264), + [aux_sym_cast_type_token1] = ACTIONS(1266), + [aux_sym_echo_statement_token1] = ACTIONS(1266), + [aux_sym_exit_statement_token1] = ACTIONS(1266), + [anon_sym_unset] = ACTIONS(1266), + [aux_sym_declare_statement_token1] = ACTIONS(1266), + [aux_sym_declare_statement_token2] = ACTIONS(1266), + [sym_float] = ACTIONS(1266), + [aux_sym_try_statement_token1] = ACTIONS(1266), + [aux_sym_goto_statement_token1] = ACTIONS(1266), + [aux_sym_continue_statement_token1] = ACTIONS(1266), + [aux_sym_break_statement_token1] = ACTIONS(1266), + [sym_integer] = ACTIONS(1266), + [aux_sym_return_statement_token1] = ACTIONS(1266), + [aux_sym_throw_expression_token1] = ACTIONS(1266), + [aux_sym_while_statement_token1] = ACTIONS(1266), + [aux_sym_while_statement_token2] = ACTIONS(1266), + [aux_sym_do_statement_token1] = ACTIONS(1266), + [aux_sym_for_statement_token1] = ACTIONS(1266), + [aux_sym_for_statement_token2] = ACTIONS(1266), + [aux_sym_foreach_statement_token1] = ACTIONS(1266), + [aux_sym_foreach_statement_token2] = ACTIONS(1266), + [aux_sym_if_statement_token1] = ACTIONS(1266), + [aux_sym_if_statement_token2] = ACTIONS(1266), + [aux_sym_else_if_clause_token1] = ACTIONS(1266), + [aux_sym_else_clause_token1] = ACTIONS(1266), + [aux_sym_match_expression_token1] = ACTIONS(1266), + [aux_sym_match_default_expression_token1] = ACTIONS(1266), + [aux_sym_switch_statement_token1] = ACTIONS(1266), + [aux_sym_switch_block_token1] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AT] = ACTIONS(1264), + [aux_sym_clone_expression_token1] = ACTIONS(1266), + [aux_sym_print_intrinsic_token1] = ACTIONS(1266), + [aux_sym_object_creation_expression_token1] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1264), + [anon_sym_PLUS_PLUS] = ACTIONS(1264), + [aux_sym__list_destructing_token1] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1264), + [anon_sym_self] = ACTIONS(1266), + [anon_sym_parent] = ACTIONS(1266), + [aux_sym__argument_name_token1] = ACTIONS(1266), + [aux_sym__argument_name_token2] = ACTIONS(1266), + [anon_sym_POUND_LBRACK] = ACTIONS(1264), + [aux_sym_encapsed_string_token1] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1264), + [aux_sym_string_token1] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_LT_LT_LT] = ACTIONS(1264), + [anon_sym_BQUOTE] = ACTIONS(1264), + [anon_sym_DOLLAR] = ACTIONS(1264), + [aux_sym_yield_expression_token1] = ACTIONS(1266), + [aux_sym_include_expression_token1] = ACTIONS(1266), + [aux_sym_include_once_expression_token1] = ACTIONS(1266), + [aux_sym_require_expression_token1] = ACTIONS(1266), + [aux_sym_require_once_expression_token1] = ACTIONS(1266), [sym_comment] = ACTIONS(3), }, [486] = { - [ts_builtin_sym_end] = ACTIONS(1275), - [sym_name] = ACTIONS(1277), - [anon_sym_QMARK_GT] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1275), - [aux_sym_function_static_declaration_token1] = ACTIONS(1277), - [aux_sym_global_declaration_token1] = ACTIONS(1277), - [aux_sym_namespace_definition_token1] = ACTIONS(1277), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1277), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1277), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1277), - [anon_sym_BSLASH] = ACTIONS(1275), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_RBRACE] = ACTIONS(1275), - [aux_sym_trait_declaration_token1] = ACTIONS(1277), - [aux_sym_interface_declaration_token1] = ACTIONS(1277), - [aux_sym_enum_declaration_token1] = ACTIONS(1277), - [aux_sym_enum_case_token1] = ACTIONS(1277), - [aux_sym_class_declaration_token1] = ACTIONS(1277), - [aux_sym_final_modifier_token1] = ACTIONS(1277), - [aux_sym_abstract_modifier_token1] = ACTIONS(1277), - [aux_sym_readonly_modifier_token1] = ACTIONS(1277), - [aux_sym_visibility_modifier_token1] = ACTIONS(1277), - [aux_sym_visibility_modifier_token2] = ACTIONS(1277), - [aux_sym_visibility_modifier_token3] = ACTIONS(1277), - [aux_sym__arrow_function_header_token1] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(1275), - [aux_sym_cast_type_token1] = ACTIONS(1277), - [aux_sym_echo_statement_token1] = ACTIONS(1277), - [aux_sym_exit_statement_token1] = ACTIONS(1277), - [anon_sym_unset] = ACTIONS(1277), - [aux_sym_declare_statement_token1] = ACTIONS(1277), - [aux_sym_declare_statement_token2] = ACTIONS(1277), - [sym_float] = ACTIONS(1277), - [aux_sym_try_statement_token1] = ACTIONS(1277), - [aux_sym_goto_statement_token1] = ACTIONS(1277), - [aux_sym_continue_statement_token1] = ACTIONS(1277), - [aux_sym_break_statement_token1] = ACTIONS(1277), - [sym_integer] = ACTIONS(1277), - [aux_sym_return_statement_token1] = ACTIONS(1277), - [aux_sym_throw_expression_token1] = ACTIONS(1277), - [aux_sym_while_statement_token1] = ACTIONS(1277), - [aux_sym_while_statement_token2] = ACTIONS(1277), - [aux_sym_do_statement_token1] = ACTIONS(1277), - [aux_sym_for_statement_token1] = ACTIONS(1277), - [aux_sym_for_statement_token2] = ACTIONS(1277), - [aux_sym_foreach_statement_token1] = ACTIONS(1277), - [aux_sym_foreach_statement_token2] = ACTIONS(1277), - [aux_sym_if_statement_token1] = ACTIONS(1277), - [aux_sym_if_statement_token2] = ACTIONS(1277), - [aux_sym_else_if_clause_token1] = ACTIONS(1277), - [aux_sym_else_clause_token1] = ACTIONS(1277), - [aux_sym_match_expression_token1] = ACTIONS(1277), - [aux_sym_match_default_expression_token1] = ACTIONS(1277), - [aux_sym_switch_statement_token1] = ACTIONS(1277), - [aux_sym_switch_block_token1] = ACTIONS(1277), - [anon_sym_PLUS] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1277), - [anon_sym_TILDE] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(1275), - [anon_sym_AT] = ACTIONS(1275), - [aux_sym_clone_expression_token1] = ACTIONS(1277), - [aux_sym_print_intrinsic_token1] = ACTIONS(1277), - [aux_sym_object_creation_expression_token1] = ACTIONS(1277), - [anon_sym_DASH_DASH] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(1275), - [aux_sym__list_destructing_token1] = ACTIONS(1277), - [anon_sym_LBRACK] = ACTIONS(1275), - [anon_sym_self] = ACTIONS(1277), - [anon_sym_parent] = ACTIONS(1277), - [aux_sym__argument_name_token1] = ACTIONS(1277), - [aux_sym__argument_name_token2] = ACTIONS(1277), - [anon_sym_POUND_LBRACK] = ACTIONS(1275), - [aux_sym_encapsed_string_token1] = ACTIONS(1275), - [anon_sym_DQUOTE] = ACTIONS(1275), - [aux_sym_string_token1] = ACTIONS(1275), - [anon_sym_SQUOTE] = ACTIONS(1275), - [anon_sym_LT_LT_LT] = ACTIONS(1275), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_DOLLAR] = ACTIONS(1275), - [aux_sym_yield_expression_token1] = ACTIONS(1277), - [aux_sym_include_expression_token1] = ACTIONS(1277), - [aux_sym_include_once_expression_token1] = ACTIONS(1277), - [aux_sym_require_expression_token1] = ACTIONS(1277), - [aux_sym_require_once_expression_token1] = ACTIONS(1277), + [ts_builtin_sym_end] = ACTIONS(1268), + [sym_name] = ACTIONS(1270), + [anon_sym_QMARK_GT] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1268), + [aux_sym_function_static_declaration_token1] = ACTIONS(1270), + [aux_sym_global_declaration_token1] = ACTIONS(1270), + [aux_sym_namespace_definition_token1] = ACTIONS(1270), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1270), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1270), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1270), + [anon_sym_BSLASH] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_RBRACE] = ACTIONS(1268), + [aux_sym_trait_declaration_token1] = ACTIONS(1270), + [aux_sym_interface_declaration_token1] = ACTIONS(1270), + [aux_sym_enum_declaration_token1] = ACTIONS(1270), + [aux_sym_enum_case_token1] = ACTIONS(1270), + [aux_sym_class_declaration_token1] = ACTIONS(1270), + [aux_sym_final_modifier_token1] = ACTIONS(1270), + [aux_sym_abstract_modifier_token1] = ACTIONS(1270), + [aux_sym_readonly_modifier_token1] = ACTIONS(1270), + [sym_var_modifier] = ACTIONS(1270), + [aux_sym_visibility_modifier_token1] = ACTIONS(1270), + [aux_sym_visibility_modifier_token2] = ACTIONS(1270), + [aux_sym_visibility_modifier_token3] = ACTIONS(1270), + [aux_sym__arrow_function_header_token1] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1268), + [aux_sym_cast_type_token1] = ACTIONS(1270), + [aux_sym_echo_statement_token1] = ACTIONS(1270), + [aux_sym_exit_statement_token1] = ACTIONS(1270), + [anon_sym_unset] = ACTIONS(1270), + [aux_sym_declare_statement_token1] = ACTIONS(1270), + [aux_sym_declare_statement_token2] = ACTIONS(1270), + [sym_float] = ACTIONS(1270), + [aux_sym_try_statement_token1] = ACTIONS(1270), + [aux_sym_goto_statement_token1] = ACTIONS(1270), + [aux_sym_continue_statement_token1] = ACTIONS(1270), + [aux_sym_break_statement_token1] = ACTIONS(1270), + [sym_integer] = ACTIONS(1270), + [aux_sym_return_statement_token1] = ACTIONS(1270), + [aux_sym_throw_expression_token1] = ACTIONS(1270), + [aux_sym_while_statement_token1] = ACTIONS(1270), + [aux_sym_while_statement_token2] = ACTIONS(1270), + [aux_sym_do_statement_token1] = ACTIONS(1270), + [aux_sym_for_statement_token1] = ACTIONS(1270), + [aux_sym_for_statement_token2] = ACTIONS(1270), + [aux_sym_foreach_statement_token1] = ACTIONS(1270), + [aux_sym_foreach_statement_token2] = ACTIONS(1270), + [aux_sym_if_statement_token1] = ACTIONS(1270), + [aux_sym_if_statement_token2] = ACTIONS(1270), + [aux_sym_else_if_clause_token1] = ACTIONS(1270), + [aux_sym_else_clause_token1] = ACTIONS(1270), + [aux_sym_match_expression_token1] = ACTIONS(1270), + [aux_sym_match_default_expression_token1] = ACTIONS(1270), + [aux_sym_switch_statement_token1] = ACTIONS(1270), + [aux_sym_switch_block_token1] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_TILDE] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_AT] = ACTIONS(1268), + [aux_sym_clone_expression_token1] = ACTIONS(1270), + [aux_sym_print_intrinsic_token1] = ACTIONS(1270), + [aux_sym_object_creation_expression_token1] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [aux_sym__list_destructing_token1] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_self] = ACTIONS(1270), + [anon_sym_parent] = ACTIONS(1270), + [aux_sym__argument_name_token1] = ACTIONS(1270), + [aux_sym__argument_name_token2] = ACTIONS(1270), + [anon_sym_POUND_LBRACK] = ACTIONS(1268), + [aux_sym_encapsed_string_token1] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [aux_sym_string_token1] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_LT_LT_LT] = ACTIONS(1268), + [anon_sym_BQUOTE] = ACTIONS(1268), + [anon_sym_DOLLAR] = ACTIONS(1268), + [aux_sym_yield_expression_token1] = ACTIONS(1270), + [aux_sym_include_expression_token1] = ACTIONS(1270), + [aux_sym_include_once_expression_token1] = ACTIONS(1270), + [aux_sym_require_expression_token1] = ACTIONS(1270), + [aux_sym_require_once_expression_token1] = ACTIONS(1270), [sym_comment] = ACTIONS(3), }, [487] = { - [ts_builtin_sym_end] = ACTIONS(1279), - [sym_name] = ACTIONS(1281), - [anon_sym_QMARK_GT] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1279), - [aux_sym_function_static_declaration_token1] = ACTIONS(1281), - [aux_sym_global_declaration_token1] = ACTIONS(1281), - [aux_sym_namespace_definition_token1] = ACTIONS(1281), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1281), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1281), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1281), - [anon_sym_BSLASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_RBRACE] = ACTIONS(1279), - [aux_sym_trait_declaration_token1] = ACTIONS(1281), - [aux_sym_interface_declaration_token1] = ACTIONS(1281), - [aux_sym_enum_declaration_token1] = ACTIONS(1281), - [aux_sym_enum_case_token1] = ACTIONS(1281), - [aux_sym_class_declaration_token1] = ACTIONS(1281), - [aux_sym_final_modifier_token1] = ACTIONS(1281), - [aux_sym_abstract_modifier_token1] = ACTIONS(1281), - [aux_sym_readonly_modifier_token1] = ACTIONS(1281), - [aux_sym_visibility_modifier_token1] = ACTIONS(1281), - [aux_sym_visibility_modifier_token2] = ACTIONS(1281), - [aux_sym_visibility_modifier_token3] = ACTIONS(1281), - [aux_sym__arrow_function_header_token1] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1279), - [aux_sym_cast_type_token1] = ACTIONS(1281), - [aux_sym_echo_statement_token1] = ACTIONS(1281), - [aux_sym_exit_statement_token1] = ACTIONS(1281), - [anon_sym_unset] = ACTIONS(1281), - [aux_sym_declare_statement_token1] = ACTIONS(1281), - [aux_sym_declare_statement_token2] = ACTIONS(1281), - [sym_float] = ACTIONS(1281), - [aux_sym_try_statement_token1] = ACTIONS(1281), - [aux_sym_goto_statement_token1] = ACTIONS(1281), - [aux_sym_continue_statement_token1] = ACTIONS(1281), - [aux_sym_break_statement_token1] = ACTIONS(1281), - [sym_integer] = ACTIONS(1281), - [aux_sym_return_statement_token1] = ACTIONS(1281), - [aux_sym_throw_expression_token1] = ACTIONS(1281), - [aux_sym_while_statement_token1] = ACTIONS(1281), - [aux_sym_while_statement_token2] = ACTIONS(1281), - [aux_sym_do_statement_token1] = ACTIONS(1281), - [aux_sym_for_statement_token1] = ACTIONS(1281), - [aux_sym_for_statement_token2] = ACTIONS(1281), - [aux_sym_foreach_statement_token1] = ACTIONS(1281), - [aux_sym_foreach_statement_token2] = ACTIONS(1281), - [aux_sym_if_statement_token1] = ACTIONS(1281), - [aux_sym_if_statement_token2] = ACTIONS(1281), - [aux_sym_else_if_clause_token1] = ACTIONS(1281), - [aux_sym_else_clause_token1] = ACTIONS(1281), - [aux_sym_match_expression_token1] = ACTIONS(1281), - [aux_sym_match_default_expression_token1] = ACTIONS(1281), - [aux_sym_switch_statement_token1] = ACTIONS(1281), - [aux_sym_switch_block_token1] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1279), - [anon_sym_AT] = ACTIONS(1279), - [aux_sym_clone_expression_token1] = ACTIONS(1281), - [aux_sym_print_intrinsic_token1] = ACTIONS(1281), - [aux_sym_object_creation_expression_token1] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1279), - [anon_sym_PLUS_PLUS] = ACTIONS(1279), - [aux_sym__list_destructing_token1] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(1279), - [anon_sym_self] = ACTIONS(1281), - [anon_sym_parent] = ACTIONS(1281), - [aux_sym__argument_name_token1] = ACTIONS(1281), - [aux_sym__argument_name_token2] = ACTIONS(1281), - [anon_sym_POUND_LBRACK] = ACTIONS(1279), - [aux_sym_encapsed_string_token1] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [aux_sym_string_token1] = ACTIONS(1279), - [anon_sym_SQUOTE] = ACTIONS(1279), - [anon_sym_LT_LT_LT] = ACTIONS(1279), - [anon_sym_BQUOTE] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(1279), - [aux_sym_yield_expression_token1] = ACTIONS(1281), - [aux_sym_include_expression_token1] = ACTIONS(1281), - [aux_sym_include_once_expression_token1] = ACTIONS(1281), - [aux_sym_require_expression_token1] = ACTIONS(1281), - [aux_sym_require_once_expression_token1] = ACTIONS(1281), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__unary_expression] = STATE(925), + [sym_unary_op_expression] = STATE(925), + [sym_error_suppression_expression] = STATE(925), + [sym_clone_expression] = STATE(925), + [sym_primary_expression] = STATE(925), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(925), + [sym_cast_variable] = STATE(589), + [sym_member_access_expression] = STATE(589), + [sym_nullsafe_member_access_expression] = STATE(589), + [sym_scoped_property_access_expression] = STATE(589), + [sym_function_call_expression] = STATE(571), + [sym_scoped_call_expression] = STATE(571), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(571), + [sym_nullsafe_member_call_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(571), + [sym_variable_name] = STATE(571), + [sym_include_expression] = STATE(925), + [sym_include_once_expression] = STATE(925), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(579), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), [sym_comment] = ACTIONS(3), }, [488] = { - [ts_builtin_sym_end] = ACTIONS(1283), - [sym_name] = ACTIONS(1285), - [anon_sym_QMARK_GT] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1283), - [aux_sym_function_static_declaration_token1] = ACTIONS(1285), - [aux_sym_global_declaration_token1] = ACTIONS(1285), - [aux_sym_namespace_definition_token1] = ACTIONS(1285), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1285), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1285), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1285), - [anon_sym_BSLASH] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(1283), - [anon_sym_RBRACE] = ACTIONS(1283), - [aux_sym_trait_declaration_token1] = ACTIONS(1285), - [aux_sym_interface_declaration_token1] = ACTIONS(1285), - [aux_sym_enum_declaration_token1] = ACTIONS(1285), - [aux_sym_enum_case_token1] = ACTIONS(1285), - [aux_sym_class_declaration_token1] = ACTIONS(1285), - [aux_sym_final_modifier_token1] = ACTIONS(1285), - [aux_sym_abstract_modifier_token1] = ACTIONS(1285), - [aux_sym_readonly_modifier_token1] = ACTIONS(1285), - [aux_sym_visibility_modifier_token1] = ACTIONS(1285), - [aux_sym_visibility_modifier_token2] = ACTIONS(1285), - [aux_sym_visibility_modifier_token3] = ACTIONS(1285), - [aux_sym__arrow_function_header_token1] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1283), - [aux_sym_cast_type_token1] = ACTIONS(1285), - [aux_sym_echo_statement_token1] = ACTIONS(1285), - [aux_sym_exit_statement_token1] = ACTIONS(1285), - [anon_sym_unset] = ACTIONS(1285), - [aux_sym_declare_statement_token1] = ACTIONS(1285), - [aux_sym_declare_statement_token2] = ACTIONS(1285), - [sym_float] = ACTIONS(1285), - [aux_sym_try_statement_token1] = ACTIONS(1285), - [aux_sym_goto_statement_token1] = ACTIONS(1285), - [aux_sym_continue_statement_token1] = ACTIONS(1285), - [aux_sym_break_statement_token1] = ACTIONS(1285), - [sym_integer] = ACTIONS(1285), - [aux_sym_return_statement_token1] = ACTIONS(1285), - [aux_sym_throw_expression_token1] = ACTIONS(1285), - [aux_sym_while_statement_token1] = ACTIONS(1285), - [aux_sym_while_statement_token2] = ACTIONS(1285), - [aux_sym_do_statement_token1] = ACTIONS(1285), - [aux_sym_for_statement_token1] = ACTIONS(1285), - [aux_sym_for_statement_token2] = ACTIONS(1285), - [aux_sym_foreach_statement_token1] = ACTIONS(1285), - [aux_sym_foreach_statement_token2] = ACTIONS(1285), - [aux_sym_if_statement_token1] = ACTIONS(1285), - [aux_sym_if_statement_token2] = ACTIONS(1285), - [aux_sym_else_if_clause_token1] = ACTIONS(1285), - [aux_sym_else_clause_token1] = ACTIONS(1285), - [aux_sym_match_expression_token1] = ACTIONS(1285), - [aux_sym_match_default_expression_token1] = ACTIONS(1285), - [aux_sym_switch_statement_token1] = ACTIONS(1285), - [aux_sym_switch_block_token1] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_BANG] = ACTIONS(1283), - [anon_sym_AT] = ACTIONS(1283), - [aux_sym_clone_expression_token1] = ACTIONS(1285), - [aux_sym_print_intrinsic_token1] = ACTIONS(1285), - [aux_sym_object_creation_expression_token1] = ACTIONS(1285), - [anon_sym_DASH_DASH] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [aux_sym__list_destructing_token1] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_self] = ACTIONS(1285), - [anon_sym_parent] = ACTIONS(1285), - [aux_sym__argument_name_token1] = ACTIONS(1285), - [aux_sym__argument_name_token2] = ACTIONS(1285), - [anon_sym_POUND_LBRACK] = ACTIONS(1283), - [aux_sym_encapsed_string_token1] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1283), - [aux_sym_string_token1] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1283), - [anon_sym_LT_LT_LT] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1283), - [anon_sym_DOLLAR] = ACTIONS(1283), - [aux_sym_yield_expression_token1] = ACTIONS(1285), - [aux_sym_include_expression_token1] = ACTIONS(1285), - [aux_sym_include_once_expression_token1] = ACTIONS(1285), - [aux_sym_require_expression_token1] = ACTIONS(1285), - [aux_sym_require_once_expression_token1] = ACTIONS(1285), + [ts_builtin_sym_end] = ACTIONS(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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_TILDE] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1274), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1274), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [aux_sym__list_destructing_token1] = ACTIONS(1276), + [anon_sym_LBRACK] = ACTIONS(1274), + [anon_sym_self] = ACTIONS(1276), + [anon_sym_parent] = ACTIONS(1276), + [aux_sym__argument_name_token1] = ACTIONS(1276), + [aux_sym__argument_name_token2] = ACTIONS(1276), + [anon_sym_POUND_LBRACK] = ACTIONS(1274), + [aux_sym_encapsed_string_token1] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1274), + [aux_sym_string_token1] = ACTIONS(1274), + [anon_sym_SQUOTE] = ACTIONS(1274), + [anon_sym_LT_LT_LT] = ACTIONS(1274), + [anon_sym_BQUOTE] = ACTIONS(1274), + [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), }, [489] = { - [ts_builtin_sym_end] = ACTIONS(1287), - [sym_name] = ACTIONS(1289), - [anon_sym_QMARK_GT] = ACTIONS(1287), - [anon_sym_SEMI] = ACTIONS(1287), - [aux_sym_function_static_declaration_token1] = ACTIONS(1289), - [aux_sym_global_declaration_token1] = ACTIONS(1289), - [aux_sym_namespace_definition_token1] = ACTIONS(1289), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1289), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1289), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1287), - [anon_sym_LBRACE] = ACTIONS(1287), - [anon_sym_RBRACE] = ACTIONS(1287), - [aux_sym_trait_declaration_token1] = ACTIONS(1289), - [aux_sym_interface_declaration_token1] = ACTIONS(1289), - [aux_sym_enum_declaration_token1] = ACTIONS(1289), - [aux_sym_enum_case_token1] = ACTIONS(1289), - [aux_sym_class_declaration_token1] = ACTIONS(1289), - [aux_sym_final_modifier_token1] = ACTIONS(1289), - [aux_sym_abstract_modifier_token1] = ACTIONS(1289), - [aux_sym_readonly_modifier_token1] = ACTIONS(1289), - [aux_sym_visibility_modifier_token1] = ACTIONS(1289), - [aux_sym_visibility_modifier_token2] = ACTIONS(1289), - [aux_sym_visibility_modifier_token3] = ACTIONS(1289), - [aux_sym__arrow_function_header_token1] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1287), - [aux_sym_cast_type_token1] = ACTIONS(1289), - [aux_sym_echo_statement_token1] = ACTIONS(1289), - [aux_sym_exit_statement_token1] = ACTIONS(1289), - [anon_sym_unset] = ACTIONS(1289), - [aux_sym_declare_statement_token1] = ACTIONS(1289), - [aux_sym_declare_statement_token2] = ACTIONS(1289), - [sym_float] = ACTIONS(1289), - [aux_sym_try_statement_token1] = ACTIONS(1289), - [aux_sym_goto_statement_token1] = ACTIONS(1289), - [aux_sym_continue_statement_token1] = ACTIONS(1289), - [aux_sym_break_statement_token1] = ACTIONS(1289), - [sym_integer] = ACTIONS(1289), - [aux_sym_return_statement_token1] = ACTIONS(1289), - [aux_sym_throw_expression_token1] = ACTIONS(1289), - [aux_sym_while_statement_token1] = ACTIONS(1289), - [aux_sym_while_statement_token2] = ACTIONS(1289), - [aux_sym_do_statement_token1] = ACTIONS(1289), - [aux_sym_for_statement_token1] = ACTIONS(1289), - [aux_sym_for_statement_token2] = ACTIONS(1289), - [aux_sym_foreach_statement_token1] = ACTIONS(1289), - [aux_sym_foreach_statement_token2] = ACTIONS(1289), - [aux_sym_if_statement_token1] = ACTIONS(1289), - [aux_sym_if_statement_token2] = ACTIONS(1289), - [aux_sym_else_if_clause_token1] = ACTIONS(1289), - [aux_sym_else_clause_token1] = ACTIONS(1289), - [aux_sym_match_expression_token1] = ACTIONS(1289), - [aux_sym_match_default_expression_token1] = ACTIONS(1289), - [aux_sym_switch_statement_token1] = ACTIONS(1289), - [aux_sym_switch_block_token1] = ACTIONS(1289), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_TILDE] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1287), - [aux_sym_clone_expression_token1] = ACTIONS(1289), - [aux_sym_print_intrinsic_token1] = ACTIONS(1289), - [aux_sym_object_creation_expression_token1] = ACTIONS(1289), - [anon_sym_DASH_DASH] = ACTIONS(1287), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [aux_sym__list_destructing_token1] = ACTIONS(1289), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_self] = ACTIONS(1289), - [anon_sym_parent] = ACTIONS(1289), - [aux_sym__argument_name_token1] = ACTIONS(1289), - [aux_sym__argument_name_token2] = ACTIONS(1289), - [anon_sym_POUND_LBRACK] = ACTIONS(1287), - [aux_sym_encapsed_string_token1] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1287), - [aux_sym_string_token1] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1287), - [anon_sym_LT_LT_LT] = ACTIONS(1287), - [anon_sym_BQUOTE] = ACTIONS(1287), - [anon_sym_DOLLAR] = ACTIONS(1287), - [aux_sym_yield_expression_token1] = ACTIONS(1289), - [aux_sym_include_expression_token1] = ACTIONS(1289), - [aux_sym_include_once_expression_token1] = ACTIONS(1289), - [aux_sym_require_expression_token1] = ACTIONS(1289), - [aux_sym_require_once_expression_token1] = ACTIONS(1289), + [ts_builtin_sym_end] = ACTIONS(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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1278), + [aux_sym__list_destructing_token1] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_self] = ACTIONS(1280), + [anon_sym_parent] = ACTIONS(1280), + [aux_sym__argument_name_token1] = ACTIONS(1280), + [aux_sym__argument_name_token2] = ACTIONS(1280), + [anon_sym_POUND_LBRACK] = ACTIONS(1278), + [aux_sym_encapsed_string_token1] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [aux_sym_string_token1] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [anon_sym_LT_LT_LT] = ACTIONS(1278), + [anon_sym_BQUOTE] = ACTIONS(1278), + [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), }, [490] = { - [ts_builtin_sym_end] = ACTIONS(1287), - [sym_name] = ACTIONS(1289), - [anon_sym_QMARK_GT] = ACTIONS(1287), - [anon_sym_SEMI] = ACTIONS(1287), - [aux_sym_function_static_declaration_token1] = ACTIONS(1289), - [aux_sym_global_declaration_token1] = ACTIONS(1289), - [aux_sym_namespace_definition_token1] = ACTIONS(1289), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1289), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1289), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1287), - [anon_sym_LBRACE] = ACTIONS(1287), - [anon_sym_RBRACE] = ACTIONS(1287), - [aux_sym_trait_declaration_token1] = ACTIONS(1289), - [aux_sym_interface_declaration_token1] = ACTIONS(1289), - [aux_sym_enum_declaration_token1] = ACTIONS(1289), - [aux_sym_enum_case_token1] = ACTIONS(1289), - [aux_sym_class_declaration_token1] = ACTIONS(1289), - [aux_sym_final_modifier_token1] = ACTIONS(1289), - [aux_sym_abstract_modifier_token1] = ACTIONS(1289), - [aux_sym_readonly_modifier_token1] = ACTIONS(1289), - [aux_sym_visibility_modifier_token1] = ACTIONS(1289), - [aux_sym_visibility_modifier_token2] = ACTIONS(1289), - [aux_sym_visibility_modifier_token3] = ACTIONS(1289), - [aux_sym__arrow_function_header_token1] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1287), - [aux_sym_cast_type_token1] = ACTIONS(1289), - [aux_sym_echo_statement_token1] = ACTIONS(1289), - [aux_sym_exit_statement_token1] = ACTIONS(1289), - [anon_sym_unset] = ACTIONS(1289), - [aux_sym_declare_statement_token1] = ACTIONS(1289), - [aux_sym_declare_statement_token2] = ACTIONS(1289), - [sym_float] = ACTIONS(1289), - [aux_sym_try_statement_token1] = ACTIONS(1289), - [aux_sym_goto_statement_token1] = ACTIONS(1289), - [aux_sym_continue_statement_token1] = ACTIONS(1289), - [aux_sym_break_statement_token1] = ACTIONS(1289), - [sym_integer] = ACTIONS(1289), - [aux_sym_return_statement_token1] = ACTIONS(1289), - [aux_sym_throw_expression_token1] = ACTIONS(1289), - [aux_sym_while_statement_token1] = ACTIONS(1289), - [aux_sym_while_statement_token2] = ACTIONS(1289), - [aux_sym_do_statement_token1] = ACTIONS(1289), - [aux_sym_for_statement_token1] = ACTIONS(1289), - [aux_sym_for_statement_token2] = ACTIONS(1289), - [aux_sym_foreach_statement_token1] = ACTIONS(1289), - [aux_sym_foreach_statement_token2] = ACTIONS(1289), - [aux_sym_if_statement_token1] = ACTIONS(1289), - [aux_sym_if_statement_token2] = ACTIONS(1289), - [aux_sym_else_if_clause_token1] = ACTIONS(1289), - [aux_sym_else_clause_token1] = ACTIONS(1289), - [aux_sym_match_expression_token1] = ACTIONS(1289), - [aux_sym_match_default_expression_token1] = ACTIONS(1289), - [aux_sym_switch_statement_token1] = ACTIONS(1289), - [aux_sym_switch_block_token1] = ACTIONS(1289), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_TILDE] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1287), - [aux_sym_clone_expression_token1] = ACTIONS(1289), - [aux_sym_print_intrinsic_token1] = ACTIONS(1289), - [aux_sym_object_creation_expression_token1] = ACTIONS(1289), - [anon_sym_DASH_DASH] = ACTIONS(1287), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [aux_sym__list_destructing_token1] = ACTIONS(1289), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_self] = ACTIONS(1289), - [anon_sym_parent] = ACTIONS(1289), - [aux_sym__argument_name_token1] = ACTIONS(1289), - [aux_sym__argument_name_token2] = ACTIONS(1289), - [anon_sym_POUND_LBRACK] = ACTIONS(1287), - [aux_sym_encapsed_string_token1] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1287), - [aux_sym_string_token1] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1287), - [anon_sym_LT_LT_LT] = ACTIONS(1287), - [anon_sym_BQUOTE] = ACTIONS(1287), - [anon_sym_DOLLAR] = ACTIONS(1287), - [aux_sym_yield_expression_token1] = ACTIONS(1289), - [aux_sym_include_expression_token1] = ACTIONS(1289), - [aux_sym_include_once_expression_token1] = ACTIONS(1289), - [aux_sym_require_expression_token1] = ACTIONS(1289), - [aux_sym_require_once_expression_token1] = ACTIONS(1289), + [ts_builtin_sym_end] = ACTIONS(1260), + [sym_name] = ACTIONS(1262), + [anon_sym_QMARK_GT] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1260), + [aux_sym_function_static_declaration_token1] = ACTIONS(1262), + [aux_sym_global_declaration_token1] = ACTIONS(1262), + [aux_sym_namespace_definition_token1] = ACTIONS(1262), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1262), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1262), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1262), + [anon_sym_BSLASH] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1260), + [anon_sym_RBRACE] = ACTIONS(1260), + [aux_sym_trait_declaration_token1] = ACTIONS(1262), + [aux_sym_interface_declaration_token1] = ACTIONS(1262), + [aux_sym_enum_declaration_token1] = ACTIONS(1262), + [aux_sym_enum_case_token1] = ACTIONS(1262), + [aux_sym_class_declaration_token1] = ACTIONS(1262), + [aux_sym_final_modifier_token1] = ACTIONS(1262), + [aux_sym_abstract_modifier_token1] = ACTIONS(1262), + [aux_sym_readonly_modifier_token1] = ACTIONS(1262), + [sym_var_modifier] = ACTIONS(1262), + [aux_sym_visibility_modifier_token1] = ACTIONS(1262), + [aux_sym_visibility_modifier_token2] = ACTIONS(1262), + [aux_sym_visibility_modifier_token3] = ACTIONS(1262), + [aux_sym__arrow_function_header_token1] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1260), + [aux_sym_cast_type_token1] = ACTIONS(1262), + [aux_sym_echo_statement_token1] = ACTIONS(1262), + [aux_sym_exit_statement_token1] = ACTIONS(1262), + [anon_sym_unset] = ACTIONS(1262), + [aux_sym_declare_statement_token1] = ACTIONS(1262), + [aux_sym_declare_statement_token2] = ACTIONS(1262), + [sym_float] = ACTIONS(1262), + [aux_sym_try_statement_token1] = ACTIONS(1262), + [aux_sym_goto_statement_token1] = ACTIONS(1262), + [aux_sym_continue_statement_token1] = ACTIONS(1262), + [aux_sym_break_statement_token1] = ACTIONS(1262), + [sym_integer] = ACTIONS(1262), + [aux_sym_return_statement_token1] = ACTIONS(1262), + [aux_sym_throw_expression_token1] = ACTIONS(1262), + [aux_sym_while_statement_token1] = ACTIONS(1262), + [aux_sym_while_statement_token2] = ACTIONS(1262), + [aux_sym_do_statement_token1] = ACTIONS(1262), + [aux_sym_for_statement_token1] = ACTIONS(1262), + [aux_sym_for_statement_token2] = ACTIONS(1262), + [aux_sym_foreach_statement_token1] = ACTIONS(1262), + [aux_sym_foreach_statement_token2] = ACTIONS(1262), + [aux_sym_if_statement_token1] = ACTIONS(1262), + [aux_sym_if_statement_token2] = ACTIONS(1262), + [aux_sym_else_if_clause_token1] = ACTIONS(1262), + [aux_sym_else_clause_token1] = ACTIONS(1262), + [aux_sym_match_expression_token1] = ACTIONS(1262), + [aux_sym_match_default_expression_token1] = ACTIONS(1262), + [aux_sym_switch_statement_token1] = ACTIONS(1262), + [aux_sym_switch_block_token1] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_TILDE] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_AT] = ACTIONS(1260), + [aux_sym_clone_expression_token1] = ACTIONS(1262), + [aux_sym_print_intrinsic_token1] = ACTIONS(1262), + [aux_sym_object_creation_expression_token1] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [aux_sym__list_destructing_token1] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_self] = ACTIONS(1262), + [anon_sym_parent] = ACTIONS(1262), + [aux_sym__argument_name_token1] = ACTIONS(1262), + [aux_sym__argument_name_token2] = ACTIONS(1262), + [anon_sym_POUND_LBRACK] = ACTIONS(1260), + [aux_sym_encapsed_string_token1] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(1260), + [aux_sym_string_token1] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [anon_sym_LT_LT_LT] = ACTIONS(1260), + [anon_sym_BQUOTE] = ACTIONS(1260), + [anon_sym_DOLLAR] = ACTIONS(1260), + [aux_sym_yield_expression_token1] = ACTIONS(1262), + [aux_sym_include_expression_token1] = ACTIONS(1262), + [aux_sym_include_once_expression_token1] = ACTIONS(1262), + [aux_sym_require_expression_token1] = ACTIONS(1262), + [aux_sym_require_once_expression_token1] = ACTIONS(1262), [sym_comment] = ACTIONS(3), }, [491] = { - [ts_builtin_sym_end] = ACTIONS(1291), - [sym_name] = ACTIONS(1293), - [anon_sym_QMARK_GT] = ACTIONS(1291), - [anon_sym_SEMI] = ACTIONS(1291), - [aux_sym_function_static_declaration_token1] = ACTIONS(1293), - [aux_sym_global_declaration_token1] = ACTIONS(1293), - [aux_sym_namespace_definition_token1] = ACTIONS(1293), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1293), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1293), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1293), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_LBRACE] = ACTIONS(1291), - [anon_sym_RBRACE] = ACTIONS(1291), - [aux_sym_trait_declaration_token1] = ACTIONS(1293), - [aux_sym_interface_declaration_token1] = ACTIONS(1293), - [aux_sym_enum_declaration_token1] = ACTIONS(1293), - [aux_sym_enum_case_token1] = ACTIONS(1293), - [aux_sym_class_declaration_token1] = ACTIONS(1293), - [aux_sym_final_modifier_token1] = ACTIONS(1293), - [aux_sym_abstract_modifier_token1] = ACTIONS(1293), - [aux_sym_readonly_modifier_token1] = ACTIONS(1293), - [aux_sym_visibility_modifier_token1] = ACTIONS(1293), - [aux_sym_visibility_modifier_token2] = ACTIONS(1293), - [aux_sym_visibility_modifier_token3] = ACTIONS(1293), - [aux_sym__arrow_function_header_token1] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1291), - [aux_sym_cast_type_token1] = ACTIONS(1293), - [aux_sym_echo_statement_token1] = ACTIONS(1293), - [aux_sym_exit_statement_token1] = ACTIONS(1293), - [anon_sym_unset] = ACTIONS(1293), - [aux_sym_declare_statement_token1] = ACTIONS(1293), - [aux_sym_declare_statement_token2] = ACTIONS(1293), - [sym_float] = ACTIONS(1293), - [aux_sym_try_statement_token1] = ACTIONS(1293), - [aux_sym_goto_statement_token1] = ACTIONS(1293), - [aux_sym_continue_statement_token1] = ACTIONS(1293), - [aux_sym_break_statement_token1] = ACTIONS(1293), - [sym_integer] = ACTIONS(1293), - [aux_sym_return_statement_token1] = ACTIONS(1293), - [aux_sym_throw_expression_token1] = ACTIONS(1293), - [aux_sym_while_statement_token1] = ACTIONS(1293), - [aux_sym_while_statement_token2] = ACTIONS(1293), - [aux_sym_do_statement_token1] = ACTIONS(1293), - [aux_sym_for_statement_token1] = ACTIONS(1293), - [aux_sym_for_statement_token2] = ACTIONS(1293), - [aux_sym_foreach_statement_token1] = ACTIONS(1293), - [aux_sym_foreach_statement_token2] = ACTIONS(1293), - [aux_sym_if_statement_token1] = ACTIONS(1293), - [aux_sym_if_statement_token2] = ACTIONS(1293), - [aux_sym_else_if_clause_token1] = ACTIONS(1293), - [aux_sym_else_clause_token1] = ACTIONS(1293), - [aux_sym_match_expression_token1] = ACTIONS(1293), - [aux_sym_match_default_expression_token1] = ACTIONS(1293), - [aux_sym_switch_statement_token1] = ACTIONS(1293), - [aux_sym_switch_block_token1] = ACTIONS(1293), - [anon_sym_PLUS] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_TILDE] = ACTIONS(1291), - [anon_sym_BANG] = ACTIONS(1291), - [anon_sym_AT] = ACTIONS(1291), - [aux_sym_clone_expression_token1] = ACTIONS(1293), - [aux_sym_print_intrinsic_token1] = ACTIONS(1293), - [aux_sym_object_creation_expression_token1] = ACTIONS(1293), - [anon_sym_DASH_DASH] = ACTIONS(1291), - [anon_sym_PLUS_PLUS] = ACTIONS(1291), - [aux_sym__list_destructing_token1] = ACTIONS(1293), - [anon_sym_LBRACK] = ACTIONS(1291), - [anon_sym_self] = ACTIONS(1293), - [anon_sym_parent] = ACTIONS(1293), - [aux_sym__argument_name_token1] = ACTIONS(1293), - [aux_sym__argument_name_token2] = ACTIONS(1293), - [anon_sym_POUND_LBRACK] = ACTIONS(1291), - [aux_sym_encapsed_string_token1] = ACTIONS(1291), - [anon_sym_DQUOTE] = ACTIONS(1291), - [aux_sym_string_token1] = ACTIONS(1291), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_LT_LT_LT] = ACTIONS(1291), - [anon_sym_BQUOTE] = ACTIONS(1291), - [anon_sym_DOLLAR] = ACTIONS(1291), - [aux_sym_yield_expression_token1] = ACTIONS(1293), - [aux_sym_include_expression_token1] = ACTIONS(1293), - [aux_sym_include_once_expression_token1] = ACTIONS(1293), - [aux_sym_require_expression_token1] = ACTIONS(1293), - [aux_sym_require_once_expression_token1] = ACTIONS(1293), + [ts_builtin_sym_end] = ACTIONS(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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_TILDE] = ACTIONS(1282), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1282), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [aux_sym__list_destructing_token1] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1282), + [anon_sym_self] = ACTIONS(1284), + [anon_sym_parent] = ACTIONS(1284), + [aux_sym__argument_name_token1] = ACTIONS(1284), + [aux_sym__argument_name_token2] = ACTIONS(1284), + [anon_sym_POUND_LBRACK] = ACTIONS(1282), + [aux_sym_encapsed_string_token1] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1282), + [aux_sym_string_token1] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_LT_LT_LT] = ACTIONS(1282), + [anon_sym_BQUOTE] = ACTIONS(1282), + [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), }, [492] = { - [ts_builtin_sym_end] = ACTIONS(1295), - [sym_name] = ACTIONS(1297), - [anon_sym_QMARK_GT] = ACTIONS(1295), - [anon_sym_SEMI] = ACTIONS(1295), - [aux_sym_function_static_declaration_token1] = ACTIONS(1297), - [aux_sym_global_declaration_token1] = ACTIONS(1297), - [aux_sym_namespace_definition_token1] = ACTIONS(1297), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1297), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1297), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(1295), - [anon_sym_RBRACE] = ACTIONS(1295), - [aux_sym_trait_declaration_token1] = ACTIONS(1297), - [aux_sym_interface_declaration_token1] = ACTIONS(1297), - [aux_sym_enum_declaration_token1] = ACTIONS(1297), - [aux_sym_enum_case_token1] = ACTIONS(1297), - [aux_sym_class_declaration_token1] = ACTIONS(1297), - [aux_sym_final_modifier_token1] = ACTIONS(1297), - [aux_sym_abstract_modifier_token1] = ACTIONS(1297), - [aux_sym_readonly_modifier_token1] = ACTIONS(1297), - [aux_sym_visibility_modifier_token1] = ACTIONS(1297), - [aux_sym_visibility_modifier_token2] = ACTIONS(1297), - [aux_sym_visibility_modifier_token3] = ACTIONS(1297), - [aux_sym__arrow_function_header_token1] = ACTIONS(1297), - [anon_sym_LPAREN] = ACTIONS(1295), - [aux_sym_cast_type_token1] = ACTIONS(1297), - [aux_sym_echo_statement_token1] = ACTIONS(1297), - [aux_sym_exit_statement_token1] = ACTIONS(1297), - [anon_sym_unset] = ACTIONS(1297), - [aux_sym_declare_statement_token1] = ACTIONS(1297), - [aux_sym_declare_statement_token2] = ACTIONS(1297), - [sym_float] = ACTIONS(1297), - [aux_sym_try_statement_token1] = ACTIONS(1297), - [aux_sym_goto_statement_token1] = ACTIONS(1297), - [aux_sym_continue_statement_token1] = ACTIONS(1297), - [aux_sym_break_statement_token1] = ACTIONS(1297), - [sym_integer] = ACTIONS(1297), - [aux_sym_return_statement_token1] = ACTIONS(1297), - [aux_sym_throw_expression_token1] = ACTIONS(1297), - [aux_sym_while_statement_token1] = ACTIONS(1297), - [aux_sym_while_statement_token2] = ACTIONS(1297), - [aux_sym_do_statement_token1] = ACTIONS(1297), - [aux_sym_for_statement_token1] = ACTIONS(1297), - [aux_sym_for_statement_token2] = ACTIONS(1297), - [aux_sym_foreach_statement_token1] = ACTIONS(1297), - [aux_sym_foreach_statement_token2] = ACTIONS(1297), - [aux_sym_if_statement_token1] = ACTIONS(1297), - [aux_sym_if_statement_token2] = ACTIONS(1297), - [aux_sym_else_if_clause_token1] = ACTIONS(1297), - [aux_sym_else_clause_token1] = ACTIONS(1297), - [aux_sym_match_expression_token1] = ACTIONS(1297), - [aux_sym_match_default_expression_token1] = ACTIONS(1297), - [aux_sym_switch_statement_token1] = ACTIONS(1297), - [aux_sym_switch_block_token1] = ACTIONS(1297), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_TILDE] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1295), - [anon_sym_AT] = ACTIONS(1295), - [aux_sym_clone_expression_token1] = ACTIONS(1297), - [aux_sym_print_intrinsic_token1] = ACTIONS(1297), - [aux_sym_object_creation_expression_token1] = ACTIONS(1297), - [anon_sym_DASH_DASH] = ACTIONS(1295), - [anon_sym_PLUS_PLUS] = ACTIONS(1295), - [aux_sym__list_destructing_token1] = ACTIONS(1297), - [anon_sym_LBRACK] = ACTIONS(1295), - [anon_sym_self] = ACTIONS(1297), - [anon_sym_parent] = ACTIONS(1297), - [aux_sym__argument_name_token1] = ACTIONS(1297), - [aux_sym__argument_name_token2] = ACTIONS(1297), - [anon_sym_POUND_LBRACK] = ACTIONS(1295), - [aux_sym_encapsed_string_token1] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1295), - [aux_sym_string_token1] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1295), - [anon_sym_LT_LT_LT] = ACTIONS(1295), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_DOLLAR] = ACTIONS(1295), - [aux_sym_yield_expression_token1] = ACTIONS(1297), - [aux_sym_include_expression_token1] = ACTIONS(1297), - [aux_sym_include_once_expression_token1] = ACTIONS(1297), - [aux_sym_require_expression_token1] = ACTIONS(1297), - [aux_sym_require_once_expression_token1] = ACTIONS(1297), + [ts_builtin_sym_end] = ACTIONS(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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1286), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [aux_sym__list_destructing_token1] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_self] = ACTIONS(1288), + [anon_sym_parent] = ACTIONS(1288), + [aux_sym__argument_name_token1] = ACTIONS(1288), + [aux_sym__argument_name_token2] = ACTIONS(1288), + [anon_sym_POUND_LBRACK] = ACTIONS(1286), + [aux_sym_encapsed_string_token1] = ACTIONS(1286), + [anon_sym_DQUOTE] = ACTIONS(1286), + [aux_sym_string_token1] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1286), + [anon_sym_LT_LT_LT] = ACTIONS(1286), + [anon_sym_BQUOTE] = ACTIONS(1286), + [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), }, [493] = { - [ts_builtin_sym_end] = ACTIONS(1299), - [sym_name] = ACTIONS(1301), - [anon_sym_QMARK_GT] = ACTIONS(1299), - [anon_sym_SEMI] = ACTIONS(1299), - [aux_sym_function_static_declaration_token1] = ACTIONS(1301), - [aux_sym_global_declaration_token1] = ACTIONS(1301), - [aux_sym_namespace_definition_token1] = ACTIONS(1301), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1301), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1301), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1301), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_RBRACE] = ACTIONS(1299), - [aux_sym_trait_declaration_token1] = ACTIONS(1301), - [aux_sym_interface_declaration_token1] = ACTIONS(1301), - [aux_sym_enum_declaration_token1] = ACTIONS(1301), - [aux_sym_enum_case_token1] = ACTIONS(1301), - [aux_sym_class_declaration_token1] = ACTIONS(1301), - [aux_sym_final_modifier_token1] = ACTIONS(1301), - [aux_sym_abstract_modifier_token1] = ACTIONS(1301), - [aux_sym_readonly_modifier_token1] = ACTIONS(1301), - [aux_sym_visibility_modifier_token1] = ACTIONS(1301), - [aux_sym_visibility_modifier_token2] = ACTIONS(1301), - [aux_sym_visibility_modifier_token3] = ACTIONS(1301), - [aux_sym__arrow_function_header_token1] = ACTIONS(1301), - [anon_sym_LPAREN] = ACTIONS(1299), - [aux_sym_cast_type_token1] = ACTIONS(1301), - [aux_sym_echo_statement_token1] = ACTIONS(1301), - [aux_sym_exit_statement_token1] = ACTIONS(1301), - [anon_sym_unset] = ACTIONS(1301), - [aux_sym_declare_statement_token1] = ACTIONS(1301), - [aux_sym_declare_statement_token2] = ACTIONS(1301), - [sym_float] = ACTIONS(1301), - [aux_sym_try_statement_token1] = ACTIONS(1301), - [aux_sym_goto_statement_token1] = ACTIONS(1301), - [aux_sym_continue_statement_token1] = ACTIONS(1301), - [aux_sym_break_statement_token1] = ACTIONS(1301), - [sym_integer] = ACTIONS(1301), - [aux_sym_return_statement_token1] = ACTIONS(1301), - [aux_sym_throw_expression_token1] = ACTIONS(1301), - [aux_sym_while_statement_token1] = ACTIONS(1301), - [aux_sym_while_statement_token2] = ACTIONS(1301), - [aux_sym_do_statement_token1] = ACTIONS(1301), - [aux_sym_for_statement_token1] = ACTIONS(1301), - [aux_sym_for_statement_token2] = ACTIONS(1301), - [aux_sym_foreach_statement_token1] = ACTIONS(1301), - [aux_sym_foreach_statement_token2] = ACTIONS(1301), - [aux_sym_if_statement_token1] = ACTIONS(1301), - [aux_sym_if_statement_token2] = ACTIONS(1301), - [aux_sym_else_if_clause_token1] = ACTIONS(1301), - [aux_sym_else_clause_token1] = ACTIONS(1301), - [aux_sym_match_expression_token1] = ACTIONS(1301), - [aux_sym_match_default_expression_token1] = ACTIONS(1301), - [aux_sym_switch_statement_token1] = ACTIONS(1301), - [aux_sym_switch_block_token1] = ACTIONS(1301), - [anon_sym_PLUS] = ACTIONS(1301), - [anon_sym_DASH] = ACTIONS(1301), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(1299), - [anon_sym_AT] = ACTIONS(1299), - [aux_sym_clone_expression_token1] = ACTIONS(1301), - [aux_sym_print_intrinsic_token1] = ACTIONS(1301), - [aux_sym_object_creation_expression_token1] = ACTIONS(1301), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [aux_sym__list_destructing_token1] = ACTIONS(1301), - [anon_sym_LBRACK] = ACTIONS(1299), - [anon_sym_self] = ACTIONS(1301), - [anon_sym_parent] = ACTIONS(1301), - [aux_sym__argument_name_token1] = ACTIONS(1301), - [aux_sym__argument_name_token2] = ACTIONS(1301), - [anon_sym_POUND_LBRACK] = ACTIONS(1299), - [aux_sym_encapsed_string_token1] = ACTIONS(1299), - [anon_sym_DQUOTE] = ACTIONS(1299), - [aux_sym_string_token1] = ACTIONS(1299), - [anon_sym_SQUOTE] = ACTIONS(1299), - [anon_sym_LT_LT_LT] = ACTIONS(1299), - [anon_sym_BQUOTE] = ACTIONS(1299), - [anon_sym_DOLLAR] = ACTIONS(1299), - [aux_sym_yield_expression_token1] = ACTIONS(1301), - [aux_sym_include_expression_token1] = ACTIONS(1301), - [aux_sym_include_once_expression_token1] = ACTIONS(1301), - [aux_sym_require_expression_token1] = ACTIONS(1301), - [aux_sym_require_once_expression_token1] = ACTIONS(1301), + [ts_builtin_sym_end] = ACTIONS(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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1290), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1290), + [anon_sym_PLUS_PLUS] = ACTIONS(1290), + [aux_sym__list_destructing_token1] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1290), + [anon_sym_self] = ACTIONS(1292), + [anon_sym_parent] = ACTIONS(1292), + [aux_sym__argument_name_token1] = ACTIONS(1292), + [aux_sym__argument_name_token2] = ACTIONS(1292), + [anon_sym_POUND_LBRACK] = ACTIONS(1290), + [aux_sym_encapsed_string_token1] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [aux_sym_string_token1] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1290), + [anon_sym_LT_LT_LT] = ACTIONS(1290), + [anon_sym_BQUOTE] = ACTIONS(1290), + [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), }, [494] = { - [ts_builtin_sym_end] = ACTIONS(1299), - [sym_name] = ACTIONS(1301), - [anon_sym_QMARK_GT] = ACTIONS(1299), - [anon_sym_SEMI] = ACTIONS(1299), - [aux_sym_function_static_declaration_token1] = ACTIONS(1301), - [aux_sym_global_declaration_token1] = ACTIONS(1301), - [aux_sym_namespace_definition_token1] = ACTIONS(1301), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1301), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1301), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1301), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_RBRACE] = ACTIONS(1299), - [aux_sym_trait_declaration_token1] = ACTIONS(1301), - [aux_sym_interface_declaration_token1] = ACTIONS(1301), - [aux_sym_enum_declaration_token1] = ACTIONS(1301), - [aux_sym_enum_case_token1] = ACTIONS(1301), - [aux_sym_class_declaration_token1] = ACTIONS(1301), - [aux_sym_final_modifier_token1] = ACTIONS(1301), - [aux_sym_abstract_modifier_token1] = ACTIONS(1301), - [aux_sym_readonly_modifier_token1] = ACTIONS(1301), - [aux_sym_visibility_modifier_token1] = ACTIONS(1301), - [aux_sym_visibility_modifier_token2] = ACTIONS(1301), - [aux_sym_visibility_modifier_token3] = ACTIONS(1301), - [aux_sym__arrow_function_header_token1] = ACTIONS(1301), - [anon_sym_LPAREN] = ACTIONS(1299), - [aux_sym_cast_type_token1] = ACTIONS(1301), - [aux_sym_echo_statement_token1] = ACTIONS(1301), - [aux_sym_exit_statement_token1] = ACTIONS(1301), - [anon_sym_unset] = ACTIONS(1301), - [aux_sym_declare_statement_token1] = ACTIONS(1301), - [aux_sym_declare_statement_token2] = ACTIONS(1301), - [sym_float] = ACTIONS(1301), - [aux_sym_try_statement_token1] = ACTIONS(1301), - [aux_sym_goto_statement_token1] = ACTIONS(1301), - [aux_sym_continue_statement_token1] = ACTIONS(1301), - [aux_sym_break_statement_token1] = ACTIONS(1301), - [sym_integer] = ACTIONS(1301), - [aux_sym_return_statement_token1] = ACTIONS(1301), - [aux_sym_throw_expression_token1] = ACTIONS(1301), - [aux_sym_while_statement_token1] = ACTIONS(1301), - [aux_sym_while_statement_token2] = ACTIONS(1301), - [aux_sym_do_statement_token1] = ACTIONS(1301), - [aux_sym_for_statement_token1] = ACTIONS(1301), - [aux_sym_for_statement_token2] = ACTIONS(1301), - [aux_sym_foreach_statement_token1] = ACTIONS(1301), - [aux_sym_foreach_statement_token2] = ACTIONS(1301), - [aux_sym_if_statement_token1] = ACTIONS(1301), - [aux_sym_if_statement_token2] = ACTIONS(1301), - [aux_sym_else_if_clause_token1] = ACTIONS(1301), - [aux_sym_else_clause_token1] = ACTIONS(1301), - [aux_sym_match_expression_token1] = ACTIONS(1301), - [aux_sym_match_default_expression_token1] = ACTIONS(1301), - [aux_sym_switch_statement_token1] = ACTIONS(1301), - [aux_sym_switch_block_token1] = ACTIONS(1301), - [anon_sym_PLUS] = ACTIONS(1301), - [anon_sym_DASH] = ACTIONS(1301), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(1299), - [anon_sym_AT] = ACTIONS(1299), - [aux_sym_clone_expression_token1] = ACTIONS(1301), - [aux_sym_print_intrinsic_token1] = ACTIONS(1301), - [aux_sym_object_creation_expression_token1] = ACTIONS(1301), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [aux_sym__list_destructing_token1] = ACTIONS(1301), - [anon_sym_LBRACK] = ACTIONS(1299), - [anon_sym_self] = ACTIONS(1301), - [anon_sym_parent] = ACTIONS(1301), - [aux_sym__argument_name_token1] = ACTIONS(1301), - [aux_sym__argument_name_token2] = ACTIONS(1301), - [anon_sym_POUND_LBRACK] = ACTIONS(1299), - [aux_sym_encapsed_string_token1] = ACTIONS(1299), - [anon_sym_DQUOTE] = ACTIONS(1299), - [aux_sym_string_token1] = ACTIONS(1299), - [anon_sym_SQUOTE] = ACTIONS(1299), - [anon_sym_LT_LT_LT] = ACTIONS(1299), - [anon_sym_BQUOTE] = ACTIONS(1299), - [anon_sym_DOLLAR] = ACTIONS(1299), - [aux_sym_yield_expression_token1] = ACTIONS(1301), - [aux_sym_include_expression_token1] = ACTIONS(1301), - [aux_sym_include_once_expression_token1] = ACTIONS(1301), - [aux_sym_require_expression_token1] = ACTIONS(1301), - [aux_sym_require_once_expression_token1] = ACTIONS(1301), + [ts_builtin_sym_end] = ACTIONS(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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [aux_sym__list_destructing_token1] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(1294), + [anon_sym_self] = ACTIONS(1296), + [anon_sym_parent] = ACTIONS(1296), + [aux_sym__argument_name_token1] = ACTIONS(1296), + [aux_sym__argument_name_token2] = ACTIONS(1296), + [anon_sym_POUND_LBRACK] = ACTIONS(1294), + [aux_sym_encapsed_string_token1] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [aux_sym_string_token1] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [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), }, [495] = { - [ts_builtin_sym_end] = ACTIONS(1303), - [sym_name] = ACTIONS(1305), - [anon_sym_QMARK_GT] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1303), - [aux_sym_function_static_declaration_token1] = ACTIONS(1305), - [aux_sym_global_declaration_token1] = ACTIONS(1305), - [aux_sym_namespace_definition_token1] = ACTIONS(1305), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1305), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1305), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1305), - [anon_sym_BSLASH] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_RBRACE] = ACTIONS(1303), - [aux_sym_trait_declaration_token1] = ACTIONS(1305), - [aux_sym_interface_declaration_token1] = ACTIONS(1305), - [aux_sym_enum_declaration_token1] = ACTIONS(1305), - [aux_sym_enum_case_token1] = ACTIONS(1305), - [aux_sym_class_declaration_token1] = ACTIONS(1305), - [aux_sym_final_modifier_token1] = ACTIONS(1305), - [aux_sym_abstract_modifier_token1] = ACTIONS(1305), - [aux_sym_readonly_modifier_token1] = ACTIONS(1305), - [aux_sym_visibility_modifier_token1] = ACTIONS(1305), - [aux_sym_visibility_modifier_token2] = ACTIONS(1305), - [aux_sym_visibility_modifier_token3] = ACTIONS(1305), - [aux_sym__arrow_function_header_token1] = ACTIONS(1305), - [anon_sym_LPAREN] = ACTIONS(1303), - [aux_sym_cast_type_token1] = ACTIONS(1305), - [aux_sym_echo_statement_token1] = ACTIONS(1305), - [aux_sym_exit_statement_token1] = ACTIONS(1305), - [anon_sym_unset] = ACTIONS(1305), - [aux_sym_declare_statement_token1] = ACTIONS(1305), - [aux_sym_declare_statement_token2] = ACTIONS(1305), - [sym_float] = ACTIONS(1305), - [aux_sym_try_statement_token1] = ACTIONS(1305), - [aux_sym_goto_statement_token1] = ACTIONS(1305), - [aux_sym_continue_statement_token1] = ACTIONS(1305), - [aux_sym_break_statement_token1] = ACTIONS(1305), - [sym_integer] = ACTIONS(1305), - [aux_sym_return_statement_token1] = ACTIONS(1305), - [aux_sym_throw_expression_token1] = ACTIONS(1305), - [aux_sym_while_statement_token1] = ACTIONS(1305), - [aux_sym_while_statement_token2] = ACTIONS(1305), - [aux_sym_do_statement_token1] = ACTIONS(1305), - [aux_sym_for_statement_token1] = ACTIONS(1305), - [aux_sym_for_statement_token2] = ACTIONS(1305), - [aux_sym_foreach_statement_token1] = ACTIONS(1305), - [aux_sym_foreach_statement_token2] = ACTIONS(1305), - [aux_sym_if_statement_token1] = ACTIONS(1305), - [aux_sym_if_statement_token2] = ACTIONS(1305), - [aux_sym_else_if_clause_token1] = ACTIONS(1305), - [aux_sym_else_clause_token1] = ACTIONS(1305), - [aux_sym_match_expression_token1] = ACTIONS(1305), - [aux_sym_match_default_expression_token1] = ACTIONS(1305), - [aux_sym_switch_statement_token1] = ACTIONS(1305), - [aux_sym_switch_block_token1] = ACTIONS(1305), - [anon_sym_PLUS] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_TILDE] = ACTIONS(1303), - [anon_sym_BANG] = ACTIONS(1303), - [anon_sym_AT] = ACTIONS(1303), - [aux_sym_clone_expression_token1] = ACTIONS(1305), - [aux_sym_print_intrinsic_token1] = ACTIONS(1305), - [aux_sym_object_creation_expression_token1] = ACTIONS(1305), - [anon_sym_DASH_DASH] = ACTIONS(1303), - [anon_sym_PLUS_PLUS] = ACTIONS(1303), - [aux_sym__list_destructing_token1] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_self] = ACTIONS(1305), - [anon_sym_parent] = ACTIONS(1305), - [aux_sym__argument_name_token1] = ACTIONS(1305), - [aux_sym__argument_name_token2] = ACTIONS(1305), - [anon_sym_POUND_LBRACK] = ACTIONS(1303), - [aux_sym_encapsed_string_token1] = ACTIONS(1303), - [anon_sym_DQUOTE] = ACTIONS(1303), - [aux_sym_string_token1] = ACTIONS(1303), - [anon_sym_SQUOTE] = ACTIONS(1303), - [anon_sym_LT_LT_LT] = ACTIONS(1303), - [anon_sym_BQUOTE] = ACTIONS(1303), - [anon_sym_DOLLAR] = ACTIONS(1303), - [aux_sym_yield_expression_token1] = ACTIONS(1305), - [aux_sym_include_expression_token1] = ACTIONS(1305), - [aux_sym_include_once_expression_token1] = ACTIONS(1305), - [aux_sym_require_expression_token1] = ACTIONS(1305), - [aux_sym_require_once_expression_token1] = ACTIONS(1305), + [ts_builtin_sym_end] = ACTIONS(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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [aux_sym__list_destructing_token1] = ACTIONS(1300), + [anon_sym_LBRACK] = ACTIONS(1298), + [anon_sym_self] = ACTIONS(1300), + [anon_sym_parent] = ACTIONS(1300), + [aux_sym__argument_name_token1] = ACTIONS(1300), + [aux_sym__argument_name_token2] = ACTIONS(1300), + [anon_sym_POUND_LBRACK] = ACTIONS(1298), + [aux_sym_encapsed_string_token1] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [aux_sym_string_token1] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_LT_LT_LT] = ACTIONS(1298), + [anon_sym_BQUOTE] = ACTIONS(1298), + [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), }, [496] = { - [ts_builtin_sym_end] = ACTIONS(1307), - [sym_name] = ACTIONS(1309), - [anon_sym_QMARK_GT] = ACTIONS(1307), - [anon_sym_SEMI] = ACTIONS(1307), - [aux_sym_function_static_declaration_token1] = ACTIONS(1309), - [aux_sym_global_declaration_token1] = ACTIONS(1309), - [aux_sym_namespace_definition_token1] = ACTIONS(1309), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1309), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1309), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1309), - [anon_sym_BSLASH] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1307), - [anon_sym_RBRACE] = ACTIONS(1307), - [aux_sym_trait_declaration_token1] = ACTIONS(1309), - [aux_sym_interface_declaration_token1] = ACTIONS(1309), - [aux_sym_enum_declaration_token1] = ACTIONS(1309), - [aux_sym_enum_case_token1] = ACTIONS(1309), - [aux_sym_class_declaration_token1] = ACTIONS(1309), - [aux_sym_final_modifier_token1] = ACTIONS(1309), - [aux_sym_abstract_modifier_token1] = ACTIONS(1309), - [aux_sym_readonly_modifier_token1] = ACTIONS(1309), - [aux_sym_visibility_modifier_token1] = ACTIONS(1309), - [aux_sym_visibility_modifier_token2] = ACTIONS(1309), - [aux_sym_visibility_modifier_token3] = ACTIONS(1309), - [aux_sym__arrow_function_header_token1] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1307), - [aux_sym_cast_type_token1] = ACTIONS(1309), - [aux_sym_echo_statement_token1] = ACTIONS(1309), - [aux_sym_exit_statement_token1] = ACTIONS(1309), - [anon_sym_unset] = ACTIONS(1309), - [aux_sym_declare_statement_token1] = ACTIONS(1309), - [aux_sym_declare_statement_token2] = ACTIONS(1309), - [sym_float] = ACTIONS(1309), - [aux_sym_try_statement_token1] = ACTIONS(1309), - [aux_sym_goto_statement_token1] = ACTIONS(1309), - [aux_sym_continue_statement_token1] = ACTIONS(1309), - [aux_sym_break_statement_token1] = ACTIONS(1309), - [sym_integer] = ACTIONS(1309), - [aux_sym_return_statement_token1] = ACTIONS(1309), - [aux_sym_throw_expression_token1] = ACTIONS(1309), - [aux_sym_while_statement_token1] = ACTIONS(1309), - [aux_sym_while_statement_token2] = ACTIONS(1309), - [aux_sym_do_statement_token1] = ACTIONS(1309), - [aux_sym_for_statement_token1] = ACTIONS(1309), - [aux_sym_for_statement_token2] = ACTIONS(1309), - [aux_sym_foreach_statement_token1] = ACTIONS(1309), - [aux_sym_foreach_statement_token2] = ACTIONS(1309), - [aux_sym_if_statement_token1] = ACTIONS(1309), - [aux_sym_if_statement_token2] = ACTIONS(1309), - [aux_sym_else_if_clause_token1] = ACTIONS(1309), - [aux_sym_else_clause_token1] = ACTIONS(1309), - [aux_sym_match_expression_token1] = ACTIONS(1309), - [aux_sym_match_default_expression_token1] = ACTIONS(1309), - [aux_sym_switch_statement_token1] = ACTIONS(1309), - [aux_sym_switch_block_token1] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1307), - [anon_sym_BANG] = ACTIONS(1307), - [anon_sym_AT] = ACTIONS(1307), - [aux_sym_clone_expression_token1] = ACTIONS(1309), - [aux_sym_print_intrinsic_token1] = ACTIONS(1309), - [aux_sym_object_creation_expression_token1] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1307), - [anon_sym_PLUS_PLUS] = ACTIONS(1307), - [aux_sym__list_destructing_token1] = ACTIONS(1309), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_self] = ACTIONS(1309), - [anon_sym_parent] = ACTIONS(1309), - [aux_sym__argument_name_token1] = ACTIONS(1309), - [aux_sym__argument_name_token2] = ACTIONS(1309), - [anon_sym_POUND_LBRACK] = ACTIONS(1307), - [aux_sym_encapsed_string_token1] = ACTIONS(1307), - [anon_sym_DQUOTE] = ACTIONS(1307), - [aux_sym_string_token1] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1307), - [anon_sym_LT_LT_LT] = ACTIONS(1307), - [anon_sym_BQUOTE] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1307), - [aux_sym_yield_expression_token1] = ACTIONS(1309), - [aux_sym_include_expression_token1] = ACTIONS(1309), - [aux_sym_include_once_expression_token1] = ACTIONS(1309), - [aux_sym_require_expression_token1] = ACTIONS(1309), - [aux_sym_require_once_expression_token1] = ACTIONS(1309), + [ts_builtin_sym_end] = ACTIONS(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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [aux_sym__list_destructing_token1] = ACTIONS(1304), + [anon_sym_LBRACK] = ACTIONS(1302), + [anon_sym_self] = ACTIONS(1304), + [anon_sym_parent] = ACTIONS(1304), + [aux_sym__argument_name_token1] = ACTIONS(1304), + [aux_sym__argument_name_token2] = ACTIONS(1304), + [anon_sym_POUND_LBRACK] = ACTIONS(1302), + [aux_sym_encapsed_string_token1] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [aux_sym_string_token1] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_LT_LT_LT] = ACTIONS(1302), + [anon_sym_BQUOTE] = ACTIONS(1302), + [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), }, [497] = { - [ts_builtin_sym_end] = ACTIONS(1311), - [sym_name] = ACTIONS(1313), - [anon_sym_QMARK_GT] = ACTIONS(1311), - [anon_sym_SEMI] = ACTIONS(1311), - [aux_sym_function_static_declaration_token1] = ACTIONS(1313), - [aux_sym_global_declaration_token1] = ACTIONS(1313), - [aux_sym_namespace_definition_token1] = ACTIONS(1313), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1313), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1313), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1313), - [anon_sym_BSLASH] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1311), - [anon_sym_RBRACE] = ACTIONS(1311), - [aux_sym_trait_declaration_token1] = ACTIONS(1313), - [aux_sym_interface_declaration_token1] = ACTIONS(1313), - [aux_sym_enum_declaration_token1] = ACTIONS(1313), - [aux_sym_enum_case_token1] = ACTIONS(1313), - [aux_sym_class_declaration_token1] = ACTIONS(1313), - [aux_sym_final_modifier_token1] = ACTIONS(1313), - [aux_sym_abstract_modifier_token1] = ACTIONS(1313), - [aux_sym_readonly_modifier_token1] = ACTIONS(1313), - [aux_sym_visibility_modifier_token1] = ACTIONS(1313), - [aux_sym_visibility_modifier_token2] = ACTIONS(1313), - [aux_sym_visibility_modifier_token3] = ACTIONS(1313), - [aux_sym__arrow_function_header_token1] = ACTIONS(1313), - [anon_sym_LPAREN] = ACTIONS(1311), - [aux_sym_cast_type_token1] = ACTIONS(1313), - [aux_sym_echo_statement_token1] = ACTIONS(1313), - [aux_sym_exit_statement_token1] = ACTIONS(1313), - [anon_sym_unset] = ACTIONS(1313), - [aux_sym_declare_statement_token1] = ACTIONS(1313), - [aux_sym_declare_statement_token2] = ACTIONS(1313), - [sym_float] = ACTIONS(1313), - [aux_sym_try_statement_token1] = ACTIONS(1313), - [aux_sym_goto_statement_token1] = ACTIONS(1313), - [aux_sym_continue_statement_token1] = ACTIONS(1313), - [aux_sym_break_statement_token1] = ACTIONS(1313), - [sym_integer] = ACTIONS(1313), - [aux_sym_return_statement_token1] = ACTIONS(1313), - [aux_sym_throw_expression_token1] = ACTIONS(1313), - [aux_sym_while_statement_token1] = ACTIONS(1313), - [aux_sym_while_statement_token2] = ACTIONS(1313), - [aux_sym_do_statement_token1] = ACTIONS(1313), - [aux_sym_for_statement_token1] = ACTIONS(1313), - [aux_sym_for_statement_token2] = ACTIONS(1313), - [aux_sym_foreach_statement_token1] = ACTIONS(1313), - [aux_sym_foreach_statement_token2] = ACTIONS(1313), - [aux_sym_if_statement_token1] = ACTIONS(1313), - [aux_sym_if_statement_token2] = ACTIONS(1313), - [aux_sym_else_if_clause_token1] = ACTIONS(1313), - [aux_sym_else_clause_token1] = ACTIONS(1313), - [aux_sym_match_expression_token1] = ACTIONS(1313), - [aux_sym_match_default_expression_token1] = ACTIONS(1313), - [aux_sym_switch_statement_token1] = ACTIONS(1313), - [aux_sym_switch_block_token1] = ACTIONS(1313), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_TILDE] = ACTIONS(1311), - [anon_sym_BANG] = ACTIONS(1311), - [anon_sym_AT] = ACTIONS(1311), - [aux_sym_clone_expression_token1] = ACTIONS(1313), - [aux_sym_print_intrinsic_token1] = ACTIONS(1313), - [aux_sym_object_creation_expression_token1] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1311), - [anon_sym_PLUS_PLUS] = ACTIONS(1311), - [aux_sym__list_destructing_token1] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_self] = ACTIONS(1313), - [anon_sym_parent] = ACTIONS(1313), - [aux_sym__argument_name_token1] = ACTIONS(1313), - [aux_sym__argument_name_token2] = ACTIONS(1313), - [anon_sym_POUND_LBRACK] = ACTIONS(1311), - [aux_sym_encapsed_string_token1] = ACTIONS(1311), - [anon_sym_DQUOTE] = ACTIONS(1311), - [aux_sym_string_token1] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1311), - [anon_sym_LT_LT_LT] = ACTIONS(1311), - [anon_sym_BQUOTE] = ACTIONS(1311), - [anon_sym_DOLLAR] = ACTIONS(1311), - [aux_sym_yield_expression_token1] = ACTIONS(1313), - [aux_sym_include_expression_token1] = ACTIONS(1313), - [aux_sym_include_once_expression_token1] = ACTIONS(1313), - [aux_sym_require_expression_token1] = ACTIONS(1313), - [aux_sym_require_once_expression_token1] = ACTIONS(1313), + [ts_builtin_sym_end] = ACTIONS(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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [aux_sym__list_destructing_token1] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1306), + [anon_sym_self] = ACTIONS(1308), + [anon_sym_parent] = ACTIONS(1308), + [aux_sym__argument_name_token1] = ACTIONS(1308), + [aux_sym__argument_name_token2] = ACTIONS(1308), + [anon_sym_POUND_LBRACK] = ACTIONS(1306), + [aux_sym_encapsed_string_token1] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [aux_sym_string_token1] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_LT_LT_LT] = ACTIONS(1306), + [anon_sym_BQUOTE] = ACTIONS(1306), + [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), }, [498] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [sym_name] = ACTIONS(1317), - [anon_sym_QMARK_GT] = ACTIONS(1315), - [anon_sym_SEMI] = ACTIONS(1315), - [aux_sym_function_static_declaration_token1] = ACTIONS(1317), - [aux_sym_global_declaration_token1] = ACTIONS(1317), - [aux_sym_namespace_definition_token1] = ACTIONS(1317), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1317), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1317), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1317), - [anon_sym_BSLASH] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(1315), - [aux_sym_trait_declaration_token1] = ACTIONS(1317), - [aux_sym_interface_declaration_token1] = ACTIONS(1317), - [aux_sym_enum_declaration_token1] = ACTIONS(1317), - [aux_sym_enum_case_token1] = ACTIONS(1317), - [aux_sym_class_declaration_token1] = ACTIONS(1317), - [aux_sym_final_modifier_token1] = ACTIONS(1317), - [aux_sym_abstract_modifier_token1] = ACTIONS(1317), - [aux_sym_readonly_modifier_token1] = ACTIONS(1317), - [aux_sym_visibility_modifier_token1] = ACTIONS(1317), - [aux_sym_visibility_modifier_token2] = ACTIONS(1317), - [aux_sym_visibility_modifier_token3] = ACTIONS(1317), - [aux_sym__arrow_function_header_token1] = ACTIONS(1317), - [anon_sym_LPAREN] = ACTIONS(1315), - [aux_sym_cast_type_token1] = ACTIONS(1317), - [aux_sym_echo_statement_token1] = ACTIONS(1317), - [aux_sym_exit_statement_token1] = ACTIONS(1317), - [anon_sym_unset] = ACTIONS(1317), - [aux_sym_declare_statement_token1] = ACTIONS(1317), - [aux_sym_declare_statement_token2] = ACTIONS(1317), - [sym_float] = ACTIONS(1317), - [aux_sym_try_statement_token1] = ACTIONS(1317), - [aux_sym_goto_statement_token1] = ACTIONS(1317), - [aux_sym_continue_statement_token1] = ACTIONS(1317), - [aux_sym_break_statement_token1] = ACTIONS(1317), - [sym_integer] = ACTIONS(1317), - [aux_sym_return_statement_token1] = ACTIONS(1317), - [aux_sym_throw_expression_token1] = ACTIONS(1317), - [aux_sym_while_statement_token1] = ACTIONS(1317), - [aux_sym_while_statement_token2] = ACTIONS(1317), - [aux_sym_do_statement_token1] = ACTIONS(1317), - [aux_sym_for_statement_token1] = ACTIONS(1317), - [aux_sym_for_statement_token2] = ACTIONS(1317), - [aux_sym_foreach_statement_token1] = ACTIONS(1317), - [aux_sym_foreach_statement_token2] = ACTIONS(1317), - [aux_sym_if_statement_token1] = ACTIONS(1317), - [aux_sym_if_statement_token2] = ACTIONS(1317), - [aux_sym_else_if_clause_token1] = ACTIONS(1317), - [aux_sym_else_clause_token1] = ACTIONS(1317), - [aux_sym_match_expression_token1] = ACTIONS(1317), - [aux_sym_match_default_expression_token1] = ACTIONS(1317), - [aux_sym_switch_statement_token1] = ACTIONS(1317), - [aux_sym_switch_block_token1] = ACTIONS(1317), - [anon_sym_PLUS] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1315), - [anon_sym_AT] = ACTIONS(1315), - [aux_sym_clone_expression_token1] = ACTIONS(1317), - [aux_sym_print_intrinsic_token1] = ACTIONS(1317), - [aux_sym_object_creation_expression_token1] = ACTIONS(1317), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [aux_sym__list_destructing_token1] = ACTIONS(1317), - [anon_sym_LBRACK] = ACTIONS(1315), - [anon_sym_self] = ACTIONS(1317), - [anon_sym_parent] = ACTIONS(1317), - [aux_sym__argument_name_token1] = ACTIONS(1317), - [aux_sym__argument_name_token2] = ACTIONS(1317), - [anon_sym_POUND_LBRACK] = ACTIONS(1315), - [aux_sym_encapsed_string_token1] = ACTIONS(1315), - [anon_sym_DQUOTE] = ACTIONS(1315), - [aux_sym_string_token1] = ACTIONS(1315), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_LT_LT_LT] = ACTIONS(1315), - [anon_sym_BQUOTE] = ACTIONS(1315), - [anon_sym_DOLLAR] = ACTIONS(1315), - [aux_sym_yield_expression_token1] = ACTIONS(1317), - [aux_sym_include_expression_token1] = ACTIONS(1317), - [aux_sym_include_once_expression_token1] = ACTIONS(1317), - [aux_sym_require_expression_token1] = ACTIONS(1317), - [aux_sym_require_once_expression_token1] = ACTIONS(1317), + [ts_builtin_sym_end] = ACTIONS(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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [aux_sym__list_destructing_token1] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_self] = ACTIONS(1312), + [anon_sym_parent] = ACTIONS(1312), + [aux_sym__argument_name_token1] = ACTIONS(1312), + [aux_sym__argument_name_token2] = ACTIONS(1312), + [anon_sym_POUND_LBRACK] = ACTIONS(1310), + [aux_sym_encapsed_string_token1] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [aux_sym_string_token1] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(1310), + [anon_sym_BQUOTE] = ACTIONS(1310), + [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), }, [499] = { - [ts_builtin_sym_end] = ACTIONS(1319), - [sym_name] = ACTIONS(1321), - [anon_sym_QMARK_GT] = ACTIONS(1319), - [anon_sym_SEMI] = ACTIONS(1319), - [aux_sym_function_static_declaration_token1] = ACTIONS(1321), - [aux_sym_global_declaration_token1] = ACTIONS(1321), - [aux_sym_namespace_definition_token1] = ACTIONS(1321), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1321), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1321), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1321), - [anon_sym_BSLASH] = ACTIONS(1319), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(1319), - [aux_sym_trait_declaration_token1] = ACTIONS(1321), - [aux_sym_interface_declaration_token1] = ACTIONS(1321), - [aux_sym_enum_declaration_token1] = ACTIONS(1321), - [aux_sym_enum_case_token1] = ACTIONS(1321), - [aux_sym_class_declaration_token1] = ACTIONS(1321), - [aux_sym_final_modifier_token1] = ACTIONS(1321), - [aux_sym_abstract_modifier_token1] = ACTIONS(1321), - [aux_sym_readonly_modifier_token1] = ACTIONS(1321), - [aux_sym_visibility_modifier_token1] = ACTIONS(1321), - [aux_sym_visibility_modifier_token2] = ACTIONS(1321), - [aux_sym_visibility_modifier_token3] = ACTIONS(1321), - [aux_sym__arrow_function_header_token1] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(1319), - [aux_sym_cast_type_token1] = ACTIONS(1321), - [aux_sym_echo_statement_token1] = ACTIONS(1321), - [aux_sym_exit_statement_token1] = ACTIONS(1321), - [anon_sym_unset] = ACTIONS(1321), - [aux_sym_declare_statement_token1] = ACTIONS(1321), - [aux_sym_declare_statement_token2] = ACTIONS(1321), - [sym_float] = ACTIONS(1321), - [aux_sym_try_statement_token1] = ACTIONS(1321), - [aux_sym_goto_statement_token1] = ACTIONS(1321), - [aux_sym_continue_statement_token1] = ACTIONS(1321), - [aux_sym_break_statement_token1] = ACTIONS(1321), - [sym_integer] = ACTIONS(1321), - [aux_sym_return_statement_token1] = ACTIONS(1321), - [aux_sym_throw_expression_token1] = ACTIONS(1321), - [aux_sym_while_statement_token1] = ACTIONS(1321), - [aux_sym_while_statement_token2] = ACTIONS(1321), - [aux_sym_do_statement_token1] = ACTIONS(1321), - [aux_sym_for_statement_token1] = ACTIONS(1321), - [aux_sym_for_statement_token2] = ACTIONS(1321), - [aux_sym_foreach_statement_token1] = ACTIONS(1321), - [aux_sym_foreach_statement_token2] = ACTIONS(1321), - [aux_sym_if_statement_token1] = ACTIONS(1321), - [aux_sym_if_statement_token2] = ACTIONS(1321), - [aux_sym_else_if_clause_token1] = ACTIONS(1321), - [aux_sym_else_clause_token1] = ACTIONS(1321), - [aux_sym_match_expression_token1] = ACTIONS(1321), - [aux_sym_match_default_expression_token1] = ACTIONS(1321), - [aux_sym_switch_statement_token1] = ACTIONS(1321), - [aux_sym_switch_block_token1] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1319), - [anon_sym_AT] = ACTIONS(1319), - [aux_sym_clone_expression_token1] = ACTIONS(1321), - [aux_sym_print_intrinsic_token1] = ACTIONS(1321), - [aux_sym_object_creation_expression_token1] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1319), - [anon_sym_PLUS_PLUS] = ACTIONS(1319), - [aux_sym__list_destructing_token1] = ACTIONS(1321), - [anon_sym_LBRACK] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_parent] = ACTIONS(1321), - [aux_sym__argument_name_token1] = ACTIONS(1321), - [aux_sym__argument_name_token2] = ACTIONS(1321), - [anon_sym_POUND_LBRACK] = ACTIONS(1319), - [aux_sym_encapsed_string_token1] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [aux_sym_string_token1] = ACTIONS(1319), - [anon_sym_SQUOTE] = ACTIONS(1319), - [anon_sym_LT_LT_LT] = ACTIONS(1319), - [anon_sym_BQUOTE] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), - [aux_sym_yield_expression_token1] = ACTIONS(1321), - [aux_sym_include_expression_token1] = ACTIONS(1321), - [aux_sym_include_once_expression_token1] = ACTIONS(1321), - [aux_sym_require_expression_token1] = ACTIONS(1321), - [aux_sym_require_once_expression_token1] = ACTIONS(1321), + [ts_builtin_sym_end] = ACTIONS(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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [aux_sym__list_destructing_token1] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1314), + [anon_sym_self] = ACTIONS(1316), + [anon_sym_parent] = ACTIONS(1316), + [aux_sym__argument_name_token1] = ACTIONS(1316), + [aux_sym__argument_name_token2] = ACTIONS(1316), + [anon_sym_POUND_LBRACK] = ACTIONS(1314), + [aux_sym_encapsed_string_token1] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1314), + [aux_sym_string_token1] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_LT_LT_LT] = ACTIONS(1314), + [anon_sym_BQUOTE] = ACTIONS(1314), + [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), }, [500] = { - [ts_builtin_sym_end] = ACTIONS(1323), - [sym_name] = ACTIONS(1325), - [anon_sym_QMARK_GT] = ACTIONS(1323), - [anon_sym_SEMI] = ACTIONS(1323), - [aux_sym_function_static_declaration_token1] = ACTIONS(1325), - [aux_sym_global_declaration_token1] = ACTIONS(1325), - [aux_sym_namespace_definition_token1] = ACTIONS(1325), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1325), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1325), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1325), - [anon_sym_BSLASH] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_RBRACE] = ACTIONS(1323), - [aux_sym_trait_declaration_token1] = ACTIONS(1325), - [aux_sym_interface_declaration_token1] = ACTIONS(1325), - [aux_sym_enum_declaration_token1] = ACTIONS(1325), - [aux_sym_enum_case_token1] = ACTIONS(1325), - [aux_sym_class_declaration_token1] = ACTIONS(1325), - [aux_sym_final_modifier_token1] = ACTIONS(1325), - [aux_sym_abstract_modifier_token1] = ACTIONS(1325), - [aux_sym_readonly_modifier_token1] = ACTIONS(1325), - [aux_sym_visibility_modifier_token1] = ACTIONS(1325), - [aux_sym_visibility_modifier_token2] = ACTIONS(1325), - [aux_sym_visibility_modifier_token3] = ACTIONS(1325), - [aux_sym__arrow_function_header_token1] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1323), - [aux_sym_cast_type_token1] = ACTIONS(1325), - [aux_sym_echo_statement_token1] = ACTIONS(1325), - [aux_sym_exit_statement_token1] = ACTIONS(1325), - [anon_sym_unset] = ACTIONS(1325), - [aux_sym_declare_statement_token1] = ACTIONS(1325), - [aux_sym_declare_statement_token2] = ACTIONS(1325), - [sym_float] = ACTIONS(1325), - [aux_sym_try_statement_token1] = ACTIONS(1325), - [aux_sym_goto_statement_token1] = ACTIONS(1325), - [aux_sym_continue_statement_token1] = ACTIONS(1325), - [aux_sym_break_statement_token1] = ACTIONS(1325), - [sym_integer] = ACTIONS(1325), - [aux_sym_return_statement_token1] = ACTIONS(1325), - [aux_sym_throw_expression_token1] = ACTIONS(1325), - [aux_sym_while_statement_token1] = ACTIONS(1325), - [aux_sym_while_statement_token2] = ACTIONS(1325), - [aux_sym_do_statement_token1] = ACTIONS(1325), - [aux_sym_for_statement_token1] = ACTIONS(1325), - [aux_sym_for_statement_token2] = ACTIONS(1325), - [aux_sym_foreach_statement_token1] = ACTIONS(1325), - [aux_sym_foreach_statement_token2] = ACTIONS(1325), - [aux_sym_if_statement_token1] = ACTIONS(1325), - [aux_sym_if_statement_token2] = ACTIONS(1325), - [aux_sym_else_if_clause_token1] = ACTIONS(1325), - [aux_sym_else_clause_token1] = ACTIONS(1325), - [aux_sym_match_expression_token1] = ACTIONS(1325), - [aux_sym_match_default_expression_token1] = ACTIONS(1325), - [aux_sym_switch_statement_token1] = ACTIONS(1325), - [aux_sym_switch_block_token1] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_AT] = ACTIONS(1323), - [aux_sym_clone_expression_token1] = ACTIONS(1325), - [aux_sym_print_intrinsic_token1] = ACTIONS(1325), - [aux_sym_object_creation_expression_token1] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [aux_sym__list_destructing_token1] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1323), - [anon_sym_self] = ACTIONS(1325), - [anon_sym_parent] = ACTIONS(1325), - [aux_sym__argument_name_token1] = ACTIONS(1325), - [aux_sym__argument_name_token2] = ACTIONS(1325), - [anon_sym_POUND_LBRACK] = ACTIONS(1323), - [aux_sym_encapsed_string_token1] = ACTIONS(1323), - [anon_sym_DQUOTE] = ACTIONS(1323), - [aux_sym_string_token1] = ACTIONS(1323), - [anon_sym_SQUOTE] = ACTIONS(1323), - [anon_sym_LT_LT_LT] = ACTIONS(1323), - [anon_sym_BQUOTE] = ACTIONS(1323), - [anon_sym_DOLLAR] = ACTIONS(1323), - [aux_sym_yield_expression_token1] = ACTIONS(1325), - [aux_sym_include_expression_token1] = ACTIONS(1325), - [aux_sym_include_once_expression_token1] = ACTIONS(1325), - [aux_sym_require_expression_token1] = ACTIONS(1325), - [aux_sym_require_once_expression_token1] = ACTIONS(1325), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1278), + [aux_sym__list_destructing_token1] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_self] = ACTIONS(1280), + [anon_sym_parent] = ACTIONS(1280), + [aux_sym__argument_name_token1] = ACTIONS(1280), + [aux_sym__argument_name_token2] = ACTIONS(1280), + [anon_sym_POUND_LBRACK] = ACTIONS(1278), + [aux_sym_encapsed_string_token1] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [aux_sym_string_token1] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [anon_sym_LT_LT_LT] = ACTIONS(1278), + [anon_sym_BQUOTE] = ACTIONS(1278), + [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), }, [501] = { - [ts_builtin_sym_end] = ACTIONS(1137), - [sym_name] = ACTIONS(1139), - [anon_sym_QMARK_GT] = ACTIONS(1137), - [anon_sym_SEMI] = ACTIONS(1137), - [aux_sym_function_static_declaration_token1] = ACTIONS(1139), - [aux_sym_global_declaration_token1] = ACTIONS(1139), - [aux_sym_namespace_definition_token1] = ACTIONS(1139), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1139), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1139), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1139), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_RBRACE] = ACTIONS(1137), - [aux_sym_trait_declaration_token1] = ACTIONS(1139), - [aux_sym_interface_declaration_token1] = ACTIONS(1139), - [aux_sym_enum_declaration_token1] = ACTIONS(1139), - [aux_sym_enum_case_token1] = ACTIONS(1139), - [aux_sym_class_declaration_token1] = ACTIONS(1139), - [aux_sym_final_modifier_token1] = ACTIONS(1139), - [aux_sym_abstract_modifier_token1] = ACTIONS(1139), - [aux_sym_readonly_modifier_token1] = ACTIONS(1139), - [aux_sym_visibility_modifier_token1] = ACTIONS(1139), - [aux_sym_visibility_modifier_token2] = ACTIONS(1139), - [aux_sym_visibility_modifier_token3] = ACTIONS(1139), - [aux_sym__arrow_function_header_token1] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1137), - [aux_sym_cast_type_token1] = ACTIONS(1139), - [aux_sym_echo_statement_token1] = ACTIONS(1139), - [aux_sym_exit_statement_token1] = ACTIONS(1139), - [anon_sym_unset] = ACTIONS(1139), - [aux_sym_declare_statement_token1] = ACTIONS(1139), - [aux_sym_declare_statement_token2] = ACTIONS(1139), - [sym_float] = ACTIONS(1139), - [aux_sym_try_statement_token1] = ACTIONS(1139), - [aux_sym_goto_statement_token1] = ACTIONS(1139), - [aux_sym_continue_statement_token1] = ACTIONS(1139), - [aux_sym_break_statement_token1] = ACTIONS(1139), - [sym_integer] = ACTIONS(1139), - [aux_sym_return_statement_token1] = ACTIONS(1139), - [aux_sym_throw_expression_token1] = ACTIONS(1139), - [aux_sym_while_statement_token1] = ACTIONS(1139), - [aux_sym_while_statement_token2] = ACTIONS(1139), - [aux_sym_do_statement_token1] = ACTIONS(1139), - [aux_sym_for_statement_token1] = ACTIONS(1139), - [aux_sym_for_statement_token2] = ACTIONS(1139), - [aux_sym_foreach_statement_token1] = ACTIONS(1139), - [aux_sym_foreach_statement_token2] = ACTIONS(1139), - [aux_sym_if_statement_token1] = ACTIONS(1139), - [aux_sym_if_statement_token2] = ACTIONS(1139), - [aux_sym_else_if_clause_token1] = ACTIONS(1139), - [aux_sym_else_clause_token1] = ACTIONS(1139), - [aux_sym_match_expression_token1] = ACTIONS(1139), - [aux_sym_match_default_expression_token1] = ACTIONS(1139), - [aux_sym_switch_statement_token1] = ACTIONS(1139), - [aux_sym_switch_block_token1] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1139), - [anon_sym_DASH] = ACTIONS(1139), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_AT] = ACTIONS(1137), - [aux_sym_clone_expression_token1] = ACTIONS(1139), - [aux_sym_print_intrinsic_token1] = ACTIONS(1139), - [aux_sym_object_creation_expression_token1] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [aux_sym__list_destructing_token1] = ACTIONS(1139), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_self] = ACTIONS(1139), - [anon_sym_parent] = ACTIONS(1139), - [aux_sym__argument_name_token1] = ACTIONS(1139), - [aux_sym__argument_name_token2] = ACTIONS(1139), - [anon_sym_POUND_LBRACK] = ACTIONS(1137), - [aux_sym_encapsed_string_token1] = ACTIONS(1137), - [anon_sym_DQUOTE] = ACTIONS(1137), - [aux_sym_string_token1] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1137), - [anon_sym_LT_LT_LT] = ACTIONS(1137), - [anon_sym_BQUOTE] = ACTIONS(1137), - [anon_sym_DOLLAR] = ACTIONS(1137), - [aux_sym_yield_expression_token1] = ACTIONS(1139), - [aux_sym_include_expression_token1] = ACTIONS(1139), - [aux_sym_include_once_expression_token1] = ACTIONS(1139), - [aux_sym_require_expression_token1] = ACTIONS(1139), - [aux_sym_require_once_expression_token1] = ACTIONS(1139), + [ts_builtin_sym_end] = ACTIONS(1023), + [sym_name] = ACTIONS(1025), + [anon_sym_QMARK_GT] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1023), + [aux_sym_function_static_declaration_token1] = ACTIONS(1025), + [aux_sym_global_declaration_token1] = ACTIONS(1025), + [aux_sym_namespace_definition_token1] = ACTIONS(1025), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1025), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1025), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1025), + [anon_sym_BSLASH] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1023), + [aux_sym_trait_declaration_token1] = ACTIONS(1025), + [aux_sym_interface_declaration_token1] = ACTIONS(1025), + [aux_sym_enum_declaration_token1] = ACTIONS(1025), + [aux_sym_enum_case_token1] = ACTIONS(1025), + [aux_sym_class_declaration_token1] = ACTIONS(1025), + [aux_sym_final_modifier_token1] = ACTIONS(1025), + [aux_sym_abstract_modifier_token1] = ACTIONS(1025), + [aux_sym_readonly_modifier_token1] = ACTIONS(1025), + [sym_var_modifier] = ACTIONS(1025), + [aux_sym_visibility_modifier_token1] = ACTIONS(1025), + [aux_sym_visibility_modifier_token2] = ACTIONS(1025), + [aux_sym_visibility_modifier_token3] = ACTIONS(1025), + [aux_sym__arrow_function_header_token1] = ACTIONS(1025), + [anon_sym_LPAREN] = ACTIONS(1023), + [aux_sym_cast_type_token1] = ACTIONS(1025), + [aux_sym_echo_statement_token1] = ACTIONS(1025), + [aux_sym_exit_statement_token1] = ACTIONS(1025), + [anon_sym_unset] = ACTIONS(1025), + [aux_sym_declare_statement_token1] = ACTIONS(1025), + [aux_sym_declare_statement_token2] = ACTIONS(1025), + [sym_float] = ACTIONS(1025), + [aux_sym_try_statement_token1] = ACTIONS(1025), + [aux_sym_goto_statement_token1] = ACTIONS(1025), + [aux_sym_continue_statement_token1] = ACTIONS(1025), + [aux_sym_break_statement_token1] = ACTIONS(1025), + [sym_integer] = ACTIONS(1025), + [aux_sym_return_statement_token1] = ACTIONS(1025), + [aux_sym_throw_expression_token1] = ACTIONS(1025), + [aux_sym_while_statement_token1] = ACTIONS(1025), + [aux_sym_while_statement_token2] = ACTIONS(1025), + [aux_sym_do_statement_token1] = ACTIONS(1025), + [aux_sym_for_statement_token1] = ACTIONS(1025), + [aux_sym_for_statement_token2] = ACTIONS(1025), + [aux_sym_foreach_statement_token1] = ACTIONS(1025), + [aux_sym_foreach_statement_token2] = ACTIONS(1025), + [aux_sym_if_statement_token1] = ACTIONS(1025), + [aux_sym_if_statement_token2] = ACTIONS(1025), + [aux_sym_else_if_clause_token1] = ACTIONS(1025), + [aux_sym_else_clause_token1] = ACTIONS(1025), + [aux_sym_match_expression_token1] = ACTIONS(1025), + [aux_sym_match_default_expression_token1] = ACTIONS(1025), + [aux_sym_switch_statement_token1] = ACTIONS(1025), + [aux_sym_switch_block_token1] = ACTIONS(1025), + [anon_sym_PLUS] = ACTIONS(1025), + [anon_sym_DASH] = ACTIONS(1025), + [anon_sym_TILDE] = ACTIONS(1023), + [anon_sym_BANG] = ACTIONS(1023), + [anon_sym_AT] = ACTIONS(1023), + [aux_sym_clone_expression_token1] = ACTIONS(1025), + [aux_sym_print_intrinsic_token1] = ACTIONS(1025), + [aux_sym_object_creation_expression_token1] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [aux_sym__list_destructing_token1] = ACTIONS(1025), + [anon_sym_LBRACK] = ACTIONS(1023), + [anon_sym_self] = ACTIONS(1025), + [anon_sym_parent] = ACTIONS(1025), + [aux_sym__argument_name_token1] = ACTIONS(1025), + [aux_sym__argument_name_token2] = ACTIONS(1025), + [anon_sym_POUND_LBRACK] = ACTIONS(1023), + [aux_sym_encapsed_string_token1] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [aux_sym_string_token1] = ACTIONS(1023), + [anon_sym_SQUOTE] = ACTIONS(1023), + [anon_sym_LT_LT_LT] = ACTIONS(1023), + [anon_sym_BQUOTE] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1023), + [aux_sym_yield_expression_token1] = ACTIONS(1025), + [aux_sym_include_expression_token1] = ACTIONS(1025), + [aux_sym_include_once_expression_token1] = ACTIONS(1025), + [aux_sym_require_expression_token1] = ACTIONS(1025), + [aux_sym_require_once_expression_token1] = ACTIONS(1025), [sym_comment] = ACTIONS(3), }, [502] = { - [ts_builtin_sym_end] = ACTIONS(1323), - [sym_name] = ACTIONS(1325), - [anon_sym_QMARK_GT] = ACTIONS(1323), - [anon_sym_SEMI] = ACTIONS(1323), - [aux_sym_function_static_declaration_token1] = ACTIONS(1325), - [aux_sym_global_declaration_token1] = ACTIONS(1325), - [aux_sym_namespace_definition_token1] = ACTIONS(1325), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1325), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1325), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1325), - [anon_sym_BSLASH] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_RBRACE] = ACTIONS(1323), - [aux_sym_trait_declaration_token1] = ACTIONS(1325), - [aux_sym_interface_declaration_token1] = ACTIONS(1325), - [aux_sym_enum_declaration_token1] = ACTIONS(1325), - [aux_sym_enum_case_token1] = ACTIONS(1325), - [aux_sym_class_declaration_token1] = ACTIONS(1325), - [aux_sym_final_modifier_token1] = ACTIONS(1325), - [aux_sym_abstract_modifier_token1] = ACTIONS(1325), - [aux_sym_readonly_modifier_token1] = ACTIONS(1325), - [aux_sym_visibility_modifier_token1] = ACTIONS(1325), - [aux_sym_visibility_modifier_token2] = ACTIONS(1325), - [aux_sym_visibility_modifier_token3] = ACTIONS(1325), - [aux_sym__arrow_function_header_token1] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1323), - [aux_sym_cast_type_token1] = ACTIONS(1325), - [aux_sym_echo_statement_token1] = ACTIONS(1325), - [aux_sym_exit_statement_token1] = ACTIONS(1325), - [anon_sym_unset] = ACTIONS(1325), - [aux_sym_declare_statement_token1] = ACTIONS(1325), - [aux_sym_declare_statement_token2] = ACTIONS(1325), - [sym_float] = ACTIONS(1325), - [aux_sym_try_statement_token1] = ACTIONS(1325), - [aux_sym_goto_statement_token1] = ACTIONS(1325), - [aux_sym_continue_statement_token1] = ACTIONS(1325), - [aux_sym_break_statement_token1] = ACTIONS(1325), - [sym_integer] = ACTIONS(1325), - [aux_sym_return_statement_token1] = ACTIONS(1325), - [aux_sym_throw_expression_token1] = ACTIONS(1325), - [aux_sym_while_statement_token1] = ACTIONS(1325), - [aux_sym_while_statement_token2] = ACTIONS(1325), - [aux_sym_do_statement_token1] = ACTIONS(1325), - [aux_sym_for_statement_token1] = ACTIONS(1325), - [aux_sym_for_statement_token2] = ACTIONS(1325), - [aux_sym_foreach_statement_token1] = ACTIONS(1325), - [aux_sym_foreach_statement_token2] = ACTIONS(1325), - [aux_sym_if_statement_token1] = ACTIONS(1325), - [aux_sym_if_statement_token2] = ACTIONS(1325), - [aux_sym_else_if_clause_token1] = ACTIONS(1325), - [aux_sym_else_clause_token1] = ACTIONS(1325), - [aux_sym_match_expression_token1] = ACTIONS(1325), - [aux_sym_match_default_expression_token1] = ACTIONS(1325), - [aux_sym_switch_statement_token1] = ACTIONS(1325), - [aux_sym_switch_block_token1] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_AT] = ACTIONS(1323), - [aux_sym_clone_expression_token1] = ACTIONS(1325), - [aux_sym_print_intrinsic_token1] = ACTIONS(1325), - [aux_sym_object_creation_expression_token1] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [aux_sym__list_destructing_token1] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1323), - [anon_sym_self] = ACTIONS(1325), - [anon_sym_parent] = ACTIONS(1325), - [aux_sym__argument_name_token1] = ACTIONS(1325), - [aux_sym__argument_name_token2] = ACTIONS(1325), - [anon_sym_POUND_LBRACK] = ACTIONS(1323), - [aux_sym_encapsed_string_token1] = ACTIONS(1323), - [anon_sym_DQUOTE] = ACTIONS(1323), - [aux_sym_string_token1] = ACTIONS(1323), - [anon_sym_SQUOTE] = ACTIONS(1323), - [anon_sym_LT_LT_LT] = ACTIONS(1323), - [anon_sym_BQUOTE] = ACTIONS(1323), - [anon_sym_DOLLAR] = ACTIONS(1323), - [aux_sym_yield_expression_token1] = ACTIONS(1325), - [aux_sym_include_expression_token1] = ACTIONS(1325), - [aux_sym_include_once_expression_token1] = ACTIONS(1325), - [aux_sym_require_expression_token1] = ACTIONS(1325), - [aux_sym_require_once_expression_token1] = ACTIONS(1325), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [aux_sym__list_destructing_token1] = ACTIONS(1320), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_self] = ACTIONS(1320), + [anon_sym_parent] = ACTIONS(1320), + [aux_sym__argument_name_token1] = ACTIONS(1320), + [aux_sym__argument_name_token2] = ACTIONS(1320), + [anon_sym_POUND_LBRACK] = ACTIONS(1318), + [aux_sym_encapsed_string_token1] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [aux_sym_string_token1] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_LT_LT_LT] = ACTIONS(1318), + [anon_sym_BQUOTE] = ACTIONS(1318), + [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), }, [503] = { - [ts_builtin_sym_end] = ACTIONS(1327), - [sym_name] = ACTIONS(1329), - [anon_sym_QMARK_GT] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1327), - [aux_sym_function_static_declaration_token1] = ACTIONS(1329), - [aux_sym_global_declaration_token1] = ACTIONS(1329), - [aux_sym_namespace_definition_token1] = ACTIONS(1329), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1329), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1329), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1329), - [anon_sym_BSLASH] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1327), - [aux_sym_trait_declaration_token1] = ACTIONS(1329), - [aux_sym_interface_declaration_token1] = ACTIONS(1329), - [aux_sym_enum_declaration_token1] = ACTIONS(1329), - [aux_sym_enum_case_token1] = ACTIONS(1329), - [aux_sym_class_declaration_token1] = ACTIONS(1329), - [aux_sym_final_modifier_token1] = ACTIONS(1329), - [aux_sym_abstract_modifier_token1] = ACTIONS(1329), - [aux_sym_readonly_modifier_token1] = ACTIONS(1329), - [aux_sym_visibility_modifier_token1] = ACTIONS(1329), - [aux_sym_visibility_modifier_token2] = ACTIONS(1329), - [aux_sym_visibility_modifier_token3] = ACTIONS(1329), - [aux_sym__arrow_function_header_token1] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1327), - [aux_sym_cast_type_token1] = ACTIONS(1329), - [aux_sym_echo_statement_token1] = ACTIONS(1329), - [aux_sym_exit_statement_token1] = ACTIONS(1329), - [anon_sym_unset] = ACTIONS(1329), - [aux_sym_declare_statement_token1] = ACTIONS(1329), - [aux_sym_declare_statement_token2] = ACTIONS(1329), - [sym_float] = ACTIONS(1329), - [aux_sym_try_statement_token1] = ACTIONS(1329), - [aux_sym_goto_statement_token1] = ACTIONS(1329), - [aux_sym_continue_statement_token1] = ACTIONS(1329), - [aux_sym_break_statement_token1] = ACTIONS(1329), - [sym_integer] = ACTIONS(1329), - [aux_sym_return_statement_token1] = ACTIONS(1329), - [aux_sym_throw_expression_token1] = ACTIONS(1329), - [aux_sym_while_statement_token1] = ACTIONS(1329), - [aux_sym_while_statement_token2] = ACTIONS(1329), - [aux_sym_do_statement_token1] = ACTIONS(1329), - [aux_sym_for_statement_token1] = ACTIONS(1329), - [aux_sym_for_statement_token2] = ACTIONS(1329), - [aux_sym_foreach_statement_token1] = ACTIONS(1329), - [aux_sym_foreach_statement_token2] = ACTIONS(1329), - [aux_sym_if_statement_token1] = ACTIONS(1329), - [aux_sym_if_statement_token2] = ACTIONS(1329), - [aux_sym_else_if_clause_token1] = ACTIONS(1329), - [aux_sym_else_clause_token1] = ACTIONS(1329), - [aux_sym_match_expression_token1] = ACTIONS(1329), - [aux_sym_match_default_expression_token1] = ACTIONS(1329), - [aux_sym_switch_statement_token1] = ACTIONS(1329), - [aux_sym_switch_block_token1] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_TILDE] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_AT] = ACTIONS(1327), - [aux_sym_clone_expression_token1] = ACTIONS(1329), - [aux_sym_print_intrinsic_token1] = ACTIONS(1329), - [aux_sym_object_creation_expression_token1] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1327), - [aux_sym__list_destructing_token1] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_self] = ACTIONS(1329), - [anon_sym_parent] = ACTIONS(1329), - [aux_sym__argument_name_token1] = ACTIONS(1329), - [aux_sym__argument_name_token2] = ACTIONS(1329), - [anon_sym_POUND_LBRACK] = ACTIONS(1327), - [aux_sym_encapsed_string_token1] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1327), - [aux_sym_string_token1] = ACTIONS(1327), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_LT_LT_LT] = ACTIONS(1327), - [anon_sym_BQUOTE] = ACTIONS(1327), - [anon_sym_DOLLAR] = ACTIONS(1327), - [aux_sym_yield_expression_token1] = ACTIONS(1329), - [aux_sym_include_expression_token1] = ACTIONS(1329), - [aux_sym_include_once_expression_token1] = ACTIONS(1329), - [aux_sym_require_expression_token1] = ACTIONS(1329), - [aux_sym_require_once_expression_token1] = ACTIONS(1329), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [aux_sym__list_destructing_token1] = ACTIONS(1324), + [anon_sym_LBRACK] = ACTIONS(1322), + [anon_sym_self] = ACTIONS(1324), + [anon_sym_parent] = ACTIONS(1324), + [aux_sym__argument_name_token1] = ACTIONS(1324), + [aux_sym__argument_name_token2] = ACTIONS(1324), + [anon_sym_POUND_LBRACK] = ACTIONS(1322), + [aux_sym_encapsed_string_token1] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [aux_sym_string_token1] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_LT_LT_LT] = ACTIONS(1322), + [anon_sym_BQUOTE] = ACTIONS(1322), + [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), }, [504] = { - [ts_builtin_sym_end] = ACTIONS(1331), - [sym_name] = ACTIONS(1333), - [anon_sym_QMARK_GT] = ACTIONS(1331), - [anon_sym_SEMI] = ACTIONS(1331), - [aux_sym_function_static_declaration_token1] = ACTIONS(1333), - [aux_sym_global_declaration_token1] = ACTIONS(1333), - [aux_sym_namespace_definition_token1] = ACTIONS(1333), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1333), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1333), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1333), - [anon_sym_BSLASH] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_RBRACE] = ACTIONS(1331), - [aux_sym_trait_declaration_token1] = ACTIONS(1333), - [aux_sym_interface_declaration_token1] = ACTIONS(1333), - [aux_sym_enum_declaration_token1] = ACTIONS(1333), - [aux_sym_enum_case_token1] = ACTIONS(1333), - [aux_sym_class_declaration_token1] = ACTIONS(1333), - [aux_sym_final_modifier_token1] = ACTIONS(1333), - [aux_sym_abstract_modifier_token1] = ACTIONS(1333), - [aux_sym_readonly_modifier_token1] = ACTIONS(1333), - [aux_sym_visibility_modifier_token1] = ACTIONS(1333), - [aux_sym_visibility_modifier_token2] = ACTIONS(1333), - [aux_sym_visibility_modifier_token3] = ACTIONS(1333), - [aux_sym__arrow_function_header_token1] = ACTIONS(1333), - [anon_sym_LPAREN] = ACTIONS(1331), - [aux_sym_cast_type_token1] = ACTIONS(1333), - [aux_sym_echo_statement_token1] = ACTIONS(1333), - [aux_sym_exit_statement_token1] = ACTIONS(1333), - [anon_sym_unset] = ACTIONS(1333), - [aux_sym_declare_statement_token1] = ACTIONS(1333), - [aux_sym_declare_statement_token2] = ACTIONS(1333), - [sym_float] = ACTIONS(1333), - [aux_sym_try_statement_token1] = ACTIONS(1333), - [aux_sym_goto_statement_token1] = ACTIONS(1333), - [aux_sym_continue_statement_token1] = ACTIONS(1333), - [aux_sym_break_statement_token1] = ACTIONS(1333), - [sym_integer] = ACTIONS(1333), - [aux_sym_return_statement_token1] = ACTIONS(1333), - [aux_sym_throw_expression_token1] = ACTIONS(1333), - [aux_sym_while_statement_token1] = ACTIONS(1333), - [aux_sym_while_statement_token2] = ACTIONS(1333), - [aux_sym_do_statement_token1] = ACTIONS(1333), - [aux_sym_for_statement_token1] = ACTIONS(1333), - [aux_sym_for_statement_token2] = ACTIONS(1333), - [aux_sym_foreach_statement_token1] = ACTIONS(1333), - [aux_sym_foreach_statement_token2] = ACTIONS(1333), - [aux_sym_if_statement_token1] = ACTIONS(1333), - [aux_sym_if_statement_token2] = ACTIONS(1333), - [aux_sym_else_if_clause_token1] = ACTIONS(1333), - [aux_sym_else_clause_token1] = ACTIONS(1333), - [aux_sym_match_expression_token1] = ACTIONS(1333), - [aux_sym_match_default_expression_token1] = ACTIONS(1333), - [aux_sym_switch_statement_token1] = ACTIONS(1333), - [aux_sym_switch_block_token1] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1333), - [anon_sym_DASH] = ACTIONS(1333), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_AT] = ACTIONS(1331), - [aux_sym_clone_expression_token1] = ACTIONS(1333), - [aux_sym_print_intrinsic_token1] = ACTIONS(1333), - [aux_sym_object_creation_expression_token1] = ACTIONS(1333), - [anon_sym_DASH_DASH] = ACTIONS(1331), - [anon_sym_PLUS_PLUS] = ACTIONS(1331), - [aux_sym__list_destructing_token1] = ACTIONS(1333), - [anon_sym_LBRACK] = ACTIONS(1331), - [anon_sym_self] = ACTIONS(1333), - [anon_sym_parent] = ACTIONS(1333), - [aux_sym__argument_name_token1] = ACTIONS(1333), - [aux_sym__argument_name_token2] = ACTIONS(1333), - [anon_sym_POUND_LBRACK] = ACTIONS(1331), - [aux_sym_encapsed_string_token1] = ACTIONS(1331), - [anon_sym_DQUOTE] = ACTIONS(1331), - [aux_sym_string_token1] = ACTIONS(1331), - [anon_sym_SQUOTE] = ACTIONS(1331), - [anon_sym_LT_LT_LT] = ACTIONS(1331), - [anon_sym_BQUOTE] = ACTIONS(1331), - [anon_sym_DOLLAR] = ACTIONS(1331), - [aux_sym_yield_expression_token1] = ACTIONS(1333), - [aux_sym_include_expression_token1] = ACTIONS(1333), - [aux_sym_include_once_expression_token1] = ACTIONS(1333), - [aux_sym_require_expression_token1] = ACTIONS(1333), - [aux_sym_require_once_expression_token1] = ACTIONS(1333), + [ts_builtin_sym_end] = ACTIONS(1212), + [sym_name] = ACTIONS(1214), + [anon_sym_QMARK_GT] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1212), + [aux_sym_function_static_declaration_token1] = ACTIONS(1214), + [aux_sym_global_declaration_token1] = ACTIONS(1214), + [aux_sym_namespace_definition_token1] = ACTIONS(1214), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1214), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1214), + [anon_sym_BSLASH] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [aux_sym_trait_declaration_token1] = ACTIONS(1214), + [aux_sym_interface_declaration_token1] = ACTIONS(1214), + [aux_sym_enum_declaration_token1] = ACTIONS(1214), + [aux_sym_enum_case_token1] = ACTIONS(1214), + [aux_sym_class_declaration_token1] = ACTIONS(1214), + [aux_sym_final_modifier_token1] = ACTIONS(1214), + [aux_sym_abstract_modifier_token1] = ACTIONS(1214), + [aux_sym_readonly_modifier_token1] = ACTIONS(1214), + [sym_var_modifier] = ACTIONS(1214), + [aux_sym_visibility_modifier_token1] = ACTIONS(1214), + [aux_sym_visibility_modifier_token2] = ACTIONS(1214), + [aux_sym_visibility_modifier_token3] = ACTIONS(1214), + [aux_sym__arrow_function_header_token1] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1212), + [aux_sym_cast_type_token1] = ACTIONS(1214), + [aux_sym_echo_statement_token1] = ACTIONS(1214), + [aux_sym_exit_statement_token1] = ACTIONS(1214), + [anon_sym_unset] = ACTIONS(1214), + [aux_sym_declare_statement_token1] = ACTIONS(1214), + [aux_sym_declare_statement_token2] = ACTIONS(1214), + [sym_float] = ACTIONS(1214), + [aux_sym_try_statement_token1] = ACTIONS(1214), + [aux_sym_goto_statement_token1] = ACTIONS(1214), + [aux_sym_continue_statement_token1] = ACTIONS(1214), + [aux_sym_break_statement_token1] = ACTIONS(1214), + [sym_integer] = ACTIONS(1214), + [aux_sym_return_statement_token1] = ACTIONS(1214), + [aux_sym_throw_expression_token1] = ACTIONS(1214), + [aux_sym_while_statement_token1] = ACTIONS(1214), + [aux_sym_while_statement_token2] = ACTIONS(1214), + [aux_sym_do_statement_token1] = ACTIONS(1214), + [aux_sym_for_statement_token1] = ACTIONS(1214), + [aux_sym_for_statement_token2] = ACTIONS(1214), + [aux_sym_foreach_statement_token1] = ACTIONS(1214), + [aux_sym_foreach_statement_token2] = ACTIONS(1214), + [aux_sym_if_statement_token1] = ACTIONS(1214), + [aux_sym_if_statement_token2] = ACTIONS(1214), + [aux_sym_else_if_clause_token1] = ACTIONS(1214), + [aux_sym_else_clause_token1] = ACTIONS(1214), + [aux_sym_match_expression_token1] = ACTIONS(1214), + [aux_sym_match_default_expression_token1] = ACTIONS(1214), + [aux_sym_switch_statement_token1] = ACTIONS(1214), + [aux_sym_switch_block_token1] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_AT] = ACTIONS(1212), + [aux_sym_clone_expression_token1] = ACTIONS(1214), + [aux_sym_print_intrinsic_token1] = ACTIONS(1214), + [aux_sym_object_creation_expression_token1] = ACTIONS(1214), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [aux_sym__list_destructing_token1] = ACTIONS(1214), + [anon_sym_LBRACK] = ACTIONS(1212), + [anon_sym_self] = ACTIONS(1214), + [anon_sym_parent] = ACTIONS(1214), + [aux_sym__argument_name_token1] = ACTIONS(1214), + [aux_sym__argument_name_token2] = ACTIONS(1214), + [anon_sym_POUND_LBRACK] = ACTIONS(1212), + [aux_sym_encapsed_string_token1] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [aux_sym_string_token1] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [anon_sym_LT_LT_LT] = ACTIONS(1212), + [anon_sym_BQUOTE] = ACTIONS(1212), + [anon_sym_DOLLAR] = ACTIONS(1212), + [aux_sym_yield_expression_token1] = ACTIONS(1214), + [aux_sym_include_expression_token1] = ACTIONS(1214), + [aux_sym_include_once_expression_token1] = ACTIONS(1214), + [aux_sym_require_expression_token1] = ACTIONS(1214), + [aux_sym_require_once_expression_token1] = ACTIONS(1214), [sym_comment] = ACTIONS(3), }, [505] = { - [ts_builtin_sym_end] = ACTIONS(1335), - [sym_name] = ACTIONS(1337), - [anon_sym_QMARK_GT] = ACTIONS(1335), - [anon_sym_SEMI] = ACTIONS(1335), - [aux_sym_function_static_declaration_token1] = ACTIONS(1337), - [aux_sym_global_declaration_token1] = ACTIONS(1337), - [aux_sym_namespace_definition_token1] = ACTIONS(1337), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1337), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1337), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1337), - [anon_sym_BSLASH] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), - [aux_sym_trait_declaration_token1] = ACTIONS(1337), - [aux_sym_interface_declaration_token1] = ACTIONS(1337), - [aux_sym_enum_declaration_token1] = ACTIONS(1337), - [aux_sym_enum_case_token1] = ACTIONS(1337), - [aux_sym_class_declaration_token1] = ACTIONS(1337), - [aux_sym_final_modifier_token1] = ACTIONS(1337), - [aux_sym_abstract_modifier_token1] = ACTIONS(1337), - [aux_sym_readonly_modifier_token1] = ACTIONS(1337), - [aux_sym_visibility_modifier_token1] = ACTIONS(1337), - [aux_sym_visibility_modifier_token2] = ACTIONS(1337), - [aux_sym_visibility_modifier_token3] = ACTIONS(1337), - [aux_sym__arrow_function_header_token1] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1335), - [aux_sym_cast_type_token1] = ACTIONS(1337), - [aux_sym_echo_statement_token1] = ACTIONS(1337), - [aux_sym_exit_statement_token1] = ACTIONS(1337), - [anon_sym_unset] = ACTIONS(1337), - [aux_sym_declare_statement_token1] = ACTIONS(1337), - [aux_sym_declare_statement_token2] = ACTIONS(1337), - [sym_float] = ACTIONS(1337), - [aux_sym_try_statement_token1] = ACTIONS(1337), - [aux_sym_goto_statement_token1] = ACTIONS(1337), - [aux_sym_continue_statement_token1] = ACTIONS(1337), - [aux_sym_break_statement_token1] = ACTIONS(1337), - [sym_integer] = ACTIONS(1337), - [aux_sym_return_statement_token1] = ACTIONS(1337), - [aux_sym_throw_expression_token1] = ACTIONS(1337), - [aux_sym_while_statement_token1] = ACTIONS(1337), - [aux_sym_while_statement_token2] = ACTIONS(1337), - [aux_sym_do_statement_token1] = ACTIONS(1337), - [aux_sym_for_statement_token1] = ACTIONS(1337), - [aux_sym_for_statement_token2] = ACTIONS(1337), - [aux_sym_foreach_statement_token1] = ACTIONS(1337), - [aux_sym_foreach_statement_token2] = ACTIONS(1337), - [aux_sym_if_statement_token1] = ACTIONS(1337), - [aux_sym_if_statement_token2] = ACTIONS(1337), - [aux_sym_else_if_clause_token1] = ACTIONS(1337), - [aux_sym_else_clause_token1] = ACTIONS(1337), - [aux_sym_match_expression_token1] = ACTIONS(1337), - [aux_sym_match_default_expression_token1] = ACTIONS(1337), - [aux_sym_switch_statement_token1] = ACTIONS(1337), - [aux_sym_switch_block_token1] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1335), - [aux_sym_clone_expression_token1] = ACTIONS(1337), - [aux_sym_print_intrinsic_token1] = ACTIONS(1337), - [aux_sym_object_creation_expression_token1] = ACTIONS(1337), - [anon_sym_DASH_DASH] = ACTIONS(1335), - [anon_sym_PLUS_PLUS] = ACTIONS(1335), - [aux_sym__list_destructing_token1] = ACTIONS(1337), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_self] = ACTIONS(1337), - [anon_sym_parent] = ACTIONS(1337), - [aux_sym__argument_name_token1] = ACTIONS(1337), - [aux_sym__argument_name_token2] = ACTIONS(1337), - [anon_sym_POUND_LBRACK] = ACTIONS(1335), - [aux_sym_encapsed_string_token1] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [aux_sym_string_token1] = ACTIONS(1335), - [anon_sym_SQUOTE] = ACTIONS(1335), - [anon_sym_LT_LT_LT] = ACTIONS(1335), - [anon_sym_BQUOTE] = ACTIONS(1335), - [anon_sym_DOLLAR] = ACTIONS(1335), - [aux_sym_yield_expression_token1] = ACTIONS(1337), - [aux_sym_include_expression_token1] = ACTIONS(1337), - [aux_sym_include_once_expression_token1] = ACTIONS(1337), - [aux_sym_require_expression_token1] = ACTIONS(1337), - [aux_sym_require_once_expression_token1] = ACTIONS(1337), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__unary_expression] = STATE(925), + [sym_unary_op_expression] = STATE(925), + [sym_error_suppression_expression] = STATE(925), + [sym_clone_expression] = STATE(925), + [sym_primary_expression] = STATE(925), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(925), + [sym_cast_variable] = STATE(589), + [sym_member_access_expression] = STATE(589), + [sym_nullsafe_member_access_expression] = STATE(589), + [sym_scoped_property_access_expression] = STATE(589), + [sym_function_call_expression] = STATE(571), + [sym_scoped_call_expression] = STATE(571), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(571), + [sym_nullsafe_member_call_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(571), + [sym_variable_name] = STATE(571), + [sym_include_expression] = STATE(925), + [sym_include_once_expression] = STATE(925), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(633), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(643), + [aux_sym_clone_expression_token1] = ACTIONS(645), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(655), + [aux_sym_include_once_expression_token1] = ACTIONS(657), [sym_comment] = ACTIONS(3), }, [506] = { - [ts_builtin_sym_end] = ACTIONS(1339), - [sym_name] = ACTIONS(1341), - [anon_sym_QMARK_GT] = ACTIONS(1339), - [anon_sym_SEMI] = ACTIONS(1339), - [aux_sym_function_static_declaration_token1] = ACTIONS(1341), - [aux_sym_global_declaration_token1] = ACTIONS(1341), - [aux_sym_namespace_definition_token1] = ACTIONS(1341), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1341), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1341), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1341), - [anon_sym_BSLASH] = ACTIONS(1339), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_RBRACE] = ACTIONS(1339), - [aux_sym_trait_declaration_token1] = ACTIONS(1341), - [aux_sym_interface_declaration_token1] = ACTIONS(1341), - [aux_sym_enum_declaration_token1] = ACTIONS(1341), - [aux_sym_enum_case_token1] = ACTIONS(1341), - [aux_sym_class_declaration_token1] = ACTIONS(1341), - [aux_sym_final_modifier_token1] = ACTIONS(1341), - [aux_sym_abstract_modifier_token1] = ACTIONS(1341), - [aux_sym_readonly_modifier_token1] = ACTIONS(1341), - [aux_sym_visibility_modifier_token1] = ACTIONS(1341), - [aux_sym_visibility_modifier_token2] = ACTIONS(1341), - [aux_sym_visibility_modifier_token3] = ACTIONS(1341), - [aux_sym__arrow_function_header_token1] = ACTIONS(1341), - [anon_sym_LPAREN] = ACTIONS(1339), - [aux_sym_cast_type_token1] = ACTIONS(1341), - [aux_sym_echo_statement_token1] = ACTIONS(1341), - [aux_sym_exit_statement_token1] = ACTIONS(1341), - [anon_sym_unset] = ACTIONS(1341), - [aux_sym_declare_statement_token1] = ACTIONS(1341), - [aux_sym_declare_statement_token2] = ACTIONS(1341), - [sym_float] = ACTIONS(1341), - [aux_sym_try_statement_token1] = ACTIONS(1341), - [aux_sym_goto_statement_token1] = ACTIONS(1341), - [aux_sym_continue_statement_token1] = ACTIONS(1341), - [aux_sym_break_statement_token1] = ACTIONS(1341), - [sym_integer] = ACTIONS(1341), - [aux_sym_return_statement_token1] = ACTIONS(1341), - [aux_sym_throw_expression_token1] = ACTIONS(1341), - [aux_sym_while_statement_token1] = ACTIONS(1341), - [aux_sym_while_statement_token2] = ACTIONS(1341), - [aux_sym_do_statement_token1] = ACTIONS(1341), - [aux_sym_for_statement_token1] = ACTIONS(1341), - [aux_sym_for_statement_token2] = ACTIONS(1341), - [aux_sym_foreach_statement_token1] = ACTIONS(1341), - [aux_sym_foreach_statement_token2] = ACTIONS(1341), - [aux_sym_if_statement_token1] = ACTIONS(1341), - [aux_sym_if_statement_token2] = ACTIONS(1341), - [aux_sym_else_if_clause_token1] = ACTIONS(1341), - [aux_sym_else_clause_token1] = ACTIONS(1341), - [aux_sym_match_expression_token1] = ACTIONS(1341), - [aux_sym_match_default_expression_token1] = ACTIONS(1341), - [aux_sym_switch_statement_token1] = ACTIONS(1341), - [aux_sym_switch_block_token1] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1341), - [anon_sym_DASH] = ACTIONS(1341), - [anon_sym_TILDE] = ACTIONS(1339), - [anon_sym_BANG] = ACTIONS(1339), - [anon_sym_AT] = ACTIONS(1339), - [aux_sym_clone_expression_token1] = ACTIONS(1341), - [aux_sym_print_intrinsic_token1] = ACTIONS(1341), - [aux_sym_object_creation_expression_token1] = ACTIONS(1341), - [anon_sym_DASH_DASH] = ACTIONS(1339), - [anon_sym_PLUS_PLUS] = ACTIONS(1339), - [aux_sym__list_destructing_token1] = ACTIONS(1341), - [anon_sym_LBRACK] = ACTIONS(1339), - [anon_sym_self] = ACTIONS(1341), - [anon_sym_parent] = ACTIONS(1341), - [aux_sym__argument_name_token1] = ACTIONS(1341), - [aux_sym__argument_name_token2] = ACTIONS(1341), - [anon_sym_POUND_LBRACK] = ACTIONS(1339), - [aux_sym_encapsed_string_token1] = ACTIONS(1339), - [anon_sym_DQUOTE] = ACTIONS(1339), - [aux_sym_string_token1] = ACTIONS(1339), - [anon_sym_SQUOTE] = ACTIONS(1339), - [anon_sym_LT_LT_LT] = ACTIONS(1339), - [anon_sym_BQUOTE] = ACTIONS(1339), - [anon_sym_DOLLAR] = ACTIONS(1339), - [aux_sym_yield_expression_token1] = ACTIONS(1341), - [aux_sym_include_expression_token1] = ACTIONS(1341), - [aux_sym_include_once_expression_token1] = ACTIONS(1341), - [aux_sym_require_expression_token1] = ACTIONS(1341), - [aux_sym_require_once_expression_token1] = ACTIONS(1341), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [aux_sym__list_destructing_token1] = ACTIONS(1328), + [anon_sym_LBRACK] = ACTIONS(1326), + [anon_sym_self] = ACTIONS(1328), + [anon_sym_parent] = ACTIONS(1328), + [aux_sym__argument_name_token1] = ACTIONS(1328), + [aux_sym__argument_name_token2] = ACTIONS(1328), + [anon_sym_POUND_LBRACK] = ACTIONS(1326), + [aux_sym_encapsed_string_token1] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [aux_sym_string_token1] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_LT_LT_LT] = ACTIONS(1326), + [anon_sym_BQUOTE] = ACTIONS(1326), + [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), }, [507] = { - [ts_builtin_sym_end] = ACTIONS(1343), - [sym_name] = ACTIONS(1345), - [anon_sym_QMARK_GT] = ACTIONS(1343), - [anon_sym_SEMI] = ACTIONS(1343), - [aux_sym_function_static_declaration_token1] = ACTIONS(1345), - [aux_sym_global_declaration_token1] = ACTIONS(1345), - [aux_sym_namespace_definition_token1] = ACTIONS(1345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1345), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1345), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1345), - [anon_sym_BSLASH] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_RBRACE] = ACTIONS(1343), - [aux_sym_trait_declaration_token1] = ACTIONS(1345), - [aux_sym_interface_declaration_token1] = ACTIONS(1345), - [aux_sym_enum_declaration_token1] = ACTIONS(1345), - [aux_sym_enum_case_token1] = ACTIONS(1345), - [aux_sym_class_declaration_token1] = ACTIONS(1345), - [aux_sym_final_modifier_token1] = ACTIONS(1345), - [aux_sym_abstract_modifier_token1] = ACTIONS(1345), - [aux_sym_readonly_modifier_token1] = ACTIONS(1345), - [aux_sym_visibility_modifier_token1] = ACTIONS(1345), - [aux_sym_visibility_modifier_token2] = ACTIONS(1345), - [aux_sym_visibility_modifier_token3] = ACTIONS(1345), - [aux_sym__arrow_function_header_token1] = ACTIONS(1345), - [anon_sym_LPAREN] = ACTIONS(1343), - [aux_sym_cast_type_token1] = ACTIONS(1345), - [aux_sym_echo_statement_token1] = ACTIONS(1345), - [aux_sym_exit_statement_token1] = ACTIONS(1345), - [anon_sym_unset] = ACTIONS(1345), - [aux_sym_declare_statement_token1] = ACTIONS(1345), - [aux_sym_declare_statement_token2] = ACTIONS(1345), - [sym_float] = ACTIONS(1345), - [aux_sym_try_statement_token1] = ACTIONS(1345), - [aux_sym_goto_statement_token1] = ACTIONS(1345), - [aux_sym_continue_statement_token1] = ACTIONS(1345), - [aux_sym_break_statement_token1] = ACTIONS(1345), - [sym_integer] = ACTIONS(1345), - [aux_sym_return_statement_token1] = ACTIONS(1345), - [aux_sym_throw_expression_token1] = ACTIONS(1345), - [aux_sym_while_statement_token1] = ACTIONS(1345), - [aux_sym_while_statement_token2] = ACTIONS(1345), - [aux_sym_do_statement_token1] = ACTIONS(1345), - [aux_sym_for_statement_token1] = ACTIONS(1345), - [aux_sym_for_statement_token2] = ACTIONS(1345), - [aux_sym_foreach_statement_token1] = ACTIONS(1345), - [aux_sym_foreach_statement_token2] = ACTIONS(1345), - [aux_sym_if_statement_token1] = ACTIONS(1345), - [aux_sym_if_statement_token2] = ACTIONS(1345), - [aux_sym_else_if_clause_token1] = ACTIONS(1345), - [aux_sym_else_clause_token1] = ACTIONS(1345), - [aux_sym_match_expression_token1] = ACTIONS(1345), - [aux_sym_match_default_expression_token1] = ACTIONS(1345), - [aux_sym_switch_statement_token1] = ACTIONS(1345), - [aux_sym_switch_block_token1] = ACTIONS(1345), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_TILDE] = ACTIONS(1343), - [anon_sym_BANG] = ACTIONS(1343), - [anon_sym_AT] = ACTIONS(1343), - [aux_sym_clone_expression_token1] = ACTIONS(1345), - [aux_sym_print_intrinsic_token1] = ACTIONS(1345), - [aux_sym_object_creation_expression_token1] = ACTIONS(1345), - [anon_sym_DASH_DASH] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), - [aux_sym__list_destructing_token1] = ACTIONS(1345), - [anon_sym_LBRACK] = ACTIONS(1343), - [anon_sym_self] = ACTIONS(1345), - [anon_sym_parent] = ACTIONS(1345), - [aux_sym__argument_name_token1] = ACTIONS(1345), - [aux_sym__argument_name_token2] = ACTIONS(1345), - [anon_sym_POUND_LBRACK] = ACTIONS(1343), - [aux_sym_encapsed_string_token1] = ACTIONS(1343), - [anon_sym_DQUOTE] = ACTIONS(1343), - [aux_sym_string_token1] = ACTIONS(1343), - [anon_sym_SQUOTE] = ACTIONS(1343), - [anon_sym_LT_LT_LT] = ACTIONS(1343), - [anon_sym_BQUOTE] = ACTIONS(1343), - [anon_sym_DOLLAR] = ACTIONS(1343), - [aux_sym_yield_expression_token1] = ACTIONS(1345), - [aux_sym_include_expression_token1] = ACTIONS(1345), - [aux_sym_include_once_expression_token1] = ACTIONS(1345), - [aux_sym_require_expression_token1] = ACTIONS(1345), - [aux_sym_require_once_expression_token1] = ACTIONS(1345), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [aux_sym__list_destructing_token1] = ACTIONS(1332), + [anon_sym_LBRACK] = ACTIONS(1330), + [anon_sym_self] = ACTIONS(1332), + [anon_sym_parent] = ACTIONS(1332), + [aux_sym__argument_name_token1] = ACTIONS(1332), + [aux_sym__argument_name_token2] = ACTIONS(1332), + [anon_sym_POUND_LBRACK] = ACTIONS(1330), + [aux_sym_encapsed_string_token1] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [aux_sym_string_token1] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_LT_LT_LT] = ACTIONS(1330), + [anon_sym_BQUOTE] = ACTIONS(1330), + [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), }, [508] = { - [ts_builtin_sym_end] = ACTIONS(1347), - [sym_name] = ACTIONS(1349), - [anon_sym_QMARK_GT] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(1347), - [aux_sym_function_static_declaration_token1] = ACTIONS(1349), - [aux_sym_global_declaration_token1] = ACTIONS(1349), - [aux_sym_namespace_definition_token1] = ACTIONS(1349), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1349), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1349), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1349), - [anon_sym_BSLASH] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1347), - [anon_sym_RBRACE] = ACTIONS(1347), - [aux_sym_trait_declaration_token1] = ACTIONS(1349), - [aux_sym_interface_declaration_token1] = ACTIONS(1349), - [aux_sym_enum_declaration_token1] = ACTIONS(1349), - [aux_sym_enum_case_token1] = ACTIONS(1349), - [aux_sym_class_declaration_token1] = ACTIONS(1349), - [aux_sym_final_modifier_token1] = ACTIONS(1349), - [aux_sym_abstract_modifier_token1] = ACTIONS(1349), - [aux_sym_readonly_modifier_token1] = ACTIONS(1349), - [aux_sym_visibility_modifier_token1] = ACTIONS(1349), - [aux_sym_visibility_modifier_token2] = ACTIONS(1349), - [aux_sym_visibility_modifier_token3] = ACTIONS(1349), - [aux_sym__arrow_function_header_token1] = ACTIONS(1349), - [anon_sym_LPAREN] = ACTIONS(1347), - [aux_sym_cast_type_token1] = ACTIONS(1349), - [aux_sym_echo_statement_token1] = ACTIONS(1349), - [aux_sym_exit_statement_token1] = ACTIONS(1349), - [anon_sym_unset] = ACTIONS(1349), - [aux_sym_declare_statement_token1] = ACTIONS(1349), - [aux_sym_declare_statement_token2] = ACTIONS(1349), - [sym_float] = ACTIONS(1349), - [aux_sym_try_statement_token1] = ACTIONS(1349), - [aux_sym_goto_statement_token1] = ACTIONS(1349), - [aux_sym_continue_statement_token1] = ACTIONS(1349), - [aux_sym_break_statement_token1] = ACTIONS(1349), - [sym_integer] = ACTIONS(1349), - [aux_sym_return_statement_token1] = ACTIONS(1349), - [aux_sym_throw_expression_token1] = ACTIONS(1349), - [aux_sym_while_statement_token1] = ACTIONS(1349), - [aux_sym_while_statement_token2] = ACTIONS(1349), - [aux_sym_do_statement_token1] = ACTIONS(1349), - [aux_sym_for_statement_token1] = ACTIONS(1349), - [aux_sym_for_statement_token2] = ACTIONS(1349), - [aux_sym_foreach_statement_token1] = ACTIONS(1349), - [aux_sym_foreach_statement_token2] = ACTIONS(1349), - [aux_sym_if_statement_token1] = ACTIONS(1349), - [aux_sym_if_statement_token2] = ACTIONS(1349), - [aux_sym_else_if_clause_token1] = ACTIONS(1349), - [aux_sym_else_clause_token1] = ACTIONS(1349), - [aux_sym_match_expression_token1] = ACTIONS(1349), - [aux_sym_match_default_expression_token1] = ACTIONS(1349), - [aux_sym_switch_statement_token1] = ACTIONS(1349), - [aux_sym_switch_block_token1] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1347), - [anon_sym_BANG] = ACTIONS(1347), - [anon_sym_AT] = ACTIONS(1347), - [aux_sym_clone_expression_token1] = ACTIONS(1349), - [aux_sym_print_intrinsic_token1] = ACTIONS(1349), - [aux_sym_object_creation_expression_token1] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1347), - [aux_sym__list_destructing_token1] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(1347), - [anon_sym_self] = ACTIONS(1349), - [anon_sym_parent] = ACTIONS(1349), - [aux_sym__argument_name_token1] = ACTIONS(1349), - [aux_sym__argument_name_token2] = ACTIONS(1349), - [anon_sym_POUND_LBRACK] = ACTIONS(1347), - [aux_sym_encapsed_string_token1] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(1347), - [aux_sym_string_token1] = ACTIONS(1347), - [anon_sym_SQUOTE] = ACTIONS(1347), - [anon_sym_LT_LT_LT] = ACTIONS(1347), - [anon_sym_BQUOTE] = ACTIONS(1347), - [anon_sym_DOLLAR] = ACTIONS(1347), - [aux_sym_yield_expression_token1] = ACTIONS(1349), - [aux_sym_include_expression_token1] = ACTIONS(1349), - [aux_sym_include_once_expression_token1] = ACTIONS(1349), - [aux_sym_require_expression_token1] = ACTIONS(1349), - [aux_sym_require_once_expression_token1] = ACTIONS(1349), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [aux_sym__list_destructing_token1] = ACTIONS(1336), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_self] = ACTIONS(1336), + [anon_sym_parent] = ACTIONS(1336), + [aux_sym__argument_name_token1] = ACTIONS(1336), + [aux_sym__argument_name_token2] = ACTIONS(1336), + [anon_sym_POUND_LBRACK] = ACTIONS(1334), + [aux_sym_encapsed_string_token1] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [aux_sym_string_token1] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_LT_LT_LT] = ACTIONS(1334), + [anon_sym_BQUOTE] = ACTIONS(1334), + [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), }, [509] = { - [ts_builtin_sym_end] = ACTIONS(1351), - [sym_name] = ACTIONS(1353), - [anon_sym_QMARK_GT] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1351), - [aux_sym_function_static_declaration_token1] = ACTIONS(1353), - [aux_sym_global_declaration_token1] = ACTIONS(1353), - [aux_sym_namespace_definition_token1] = ACTIONS(1353), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1353), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1353), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1353), - [anon_sym_BSLASH] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1351), - [anon_sym_RBRACE] = ACTIONS(1351), - [aux_sym_trait_declaration_token1] = ACTIONS(1353), - [aux_sym_interface_declaration_token1] = ACTIONS(1353), - [aux_sym_enum_declaration_token1] = ACTIONS(1353), - [aux_sym_enum_case_token1] = ACTIONS(1353), - [aux_sym_class_declaration_token1] = ACTIONS(1353), - [aux_sym_final_modifier_token1] = ACTIONS(1353), - [aux_sym_abstract_modifier_token1] = ACTIONS(1353), - [aux_sym_readonly_modifier_token1] = ACTIONS(1353), - [aux_sym_visibility_modifier_token1] = ACTIONS(1353), - [aux_sym_visibility_modifier_token2] = ACTIONS(1353), - [aux_sym_visibility_modifier_token3] = ACTIONS(1353), - [aux_sym__arrow_function_header_token1] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1351), - [aux_sym_cast_type_token1] = ACTIONS(1353), - [aux_sym_echo_statement_token1] = ACTIONS(1353), - [aux_sym_exit_statement_token1] = ACTIONS(1353), - [anon_sym_unset] = ACTIONS(1353), - [aux_sym_declare_statement_token1] = ACTIONS(1353), - [aux_sym_declare_statement_token2] = ACTIONS(1353), - [sym_float] = ACTIONS(1353), - [aux_sym_try_statement_token1] = ACTIONS(1353), - [aux_sym_goto_statement_token1] = ACTIONS(1353), - [aux_sym_continue_statement_token1] = ACTIONS(1353), - [aux_sym_break_statement_token1] = ACTIONS(1353), - [sym_integer] = ACTIONS(1353), - [aux_sym_return_statement_token1] = ACTIONS(1353), - [aux_sym_throw_expression_token1] = ACTIONS(1353), - [aux_sym_while_statement_token1] = ACTIONS(1353), - [aux_sym_while_statement_token2] = ACTIONS(1353), - [aux_sym_do_statement_token1] = ACTIONS(1353), - [aux_sym_for_statement_token1] = ACTIONS(1353), - [aux_sym_for_statement_token2] = ACTIONS(1353), - [aux_sym_foreach_statement_token1] = ACTIONS(1353), - [aux_sym_foreach_statement_token2] = ACTIONS(1353), - [aux_sym_if_statement_token1] = ACTIONS(1353), - [aux_sym_if_statement_token2] = ACTIONS(1353), - [aux_sym_else_if_clause_token1] = ACTIONS(1353), - [aux_sym_else_clause_token1] = ACTIONS(1353), - [aux_sym_match_expression_token1] = ACTIONS(1353), - [aux_sym_match_default_expression_token1] = ACTIONS(1353), - [aux_sym_switch_statement_token1] = ACTIONS(1353), - [aux_sym_switch_block_token1] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1353), - [anon_sym_DASH] = ACTIONS(1353), - [anon_sym_TILDE] = ACTIONS(1351), - [anon_sym_BANG] = ACTIONS(1351), - [anon_sym_AT] = ACTIONS(1351), - [aux_sym_clone_expression_token1] = ACTIONS(1353), - [aux_sym_print_intrinsic_token1] = ACTIONS(1353), - [aux_sym_object_creation_expression_token1] = ACTIONS(1353), - [anon_sym_DASH_DASH] = ACTIONS(1351), - [anon_sym_PLUS_PLUS] = ACTIONS(1351), - [aux_sym__list_destructing_token1] = ACTIONS(1353), - [anon_sym_LBRACK] = ACTIONS(1351), - [anon_sym_self] = ACTIONS(1353), - [anon_sym_parent] = ACTIONS(1353), - [aux_sym__argument_name_token1] = ACTIONS(1353), - [aux_sym__argument_name_token2] = ACTIONS(1353), - [anon_sym_POUND_LBRACK] = ACTIONS(1351), - [aux_sym_encapsed_string_token1] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1351), - [aux_sym_string_token1] = ACTIONS(1351), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_LT_LT_LT] = ACTIONS(1351), - [anon_sym_BQUOTE] = ACTIONS(1351), - [anon_sym_DOLLAR] = ACTIONS(1351), - [aux_sym_yield_expression_token1] = ACTIONS(1353), - [aux_sym_include_expression_token1] = ACTIONS(1353), - [aux_sym_include_once_expression_token1] = ACTIONS(1353), - [aux_sym_require_expression_token1] = ACTIONS(1353), - [aux_sym_require_once_expression_token1] = ACTIONS(1353), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1338), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [aux_sym__list_destructing_token1] = ACTIONS(1340), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_self] = ACTIONS(1340), + [anon_sym_parent] = ACTIONS(1340), + [aux_sym__argument_name_token1] = ACTIONS(1340), + [aux_sym__argument_name_token2] = ACTIONS(1340), + [anon_sym_POUND_LBRACK] = ACTIONS(1338), + [aux_sym_encapsed_string_token1] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [aux_sym_string_token1] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [anon_sym_LT_LT_LT] = ACTIONS(1338), + [anon_sym_BQUOTE] = ACTIONS(1338), + [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), }, [510] = { - [ts_builtin_sym_end] = ACTIONS(1355), - [sym_name] = ACTIONS(1357), - [anon_sym_QMARK_GT] = ACTIONS(1355), - [anon_sym_SEMI] = ACTIONS(1355), - [aux_sym_function_static_declaration_token1] = ACTIONS(1357), - [aux_sym_global_declaration_token1] = ACTIONS(1357), - [aux_sym_namespace_definition_token1] = ACTIONS(1357), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1357), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1357), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1357), - [anon_sym_BSLASH] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_RBRACE] = ACTIONS(1355), - [aux_sym_trait_declaration_token1] = ACTIONS(1357), - [aux_sym_interface_declaration_token1] = ACTIONS(1357), - [aux_sym_enum_declaration_token1] = ACTIONS(1357), - [aux_sym_enum_case_token1] = ACTIONS(1357), - [aux_sym_class_declaration_token1] = ACTIONS(1357), - [aux_sym_final_modifier_token1] = ACTIONS(1357), - [aux_sym_abstract_modifier_token1] = ACTIONS(1357), - [aux_sym_readonly_modifier_token1] = ACTIONS(1357), - [aux_sym_visibility_modifier_token1] = ACTIONS(1357), - [aux_sym_visibility_modifier_token2] = ACTIONS(1357), - [aux_sym_visibility_modifier_token3] = ACTIONS(1357), - [aux_sym__arrow_function_header_token1] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1355), - [aux_sym_cast_type_token1] = ACTIONS(1357), - [aux_sym_echo_statement_token1] = ACTIONS(1357), - [aux_sym_exit_statement_token1] = ACTIONS(1357), - [anon_sym_unset] = ACTIONS(1357), - [aux_sym_declare_statement_token1] = ACTIONS(1357), - [aux_sym_declare_statement_token2] = ACTIONS(1357), - [sym_float] = ACTIONS(1357), - [aux_sym_try_statement_token1] = ACTIONS(1357), - [aux_sym_goto_statement_token1] = ACTIONS(1357), - [aux_sym_continue_statement_token1] = ACTIONS(1357), - [aux_sym_break_statement_token1] = ACTIONS(1357), - [sym_integer] = ACTIONS(1357), - [aux_sym_return_statement_token1] = ACTIONS(1357), - [aux_sym_throw_expression_token1] = ACTIONS(1357), - [aux_sym_while_statement_token1] = ACTIONS(1357), - [aux_sym_while_statement_token2] = ACTIONS(1357), - [aux_sym_do_statement_token1] = ACTIONS(1357), - [aux_sym_for_statement_token1] = ACTIONS(1357), - [aux_sym_for_statement_token2] = ACTIONS(1357), - [aux_sym_foreach_statement_token1] = ACTIONS(1357), - [aux_sym_foreach_statement_token2] = ACTIONS(1357), - [aux_sym_if_statement_token1] = ACTIONS(1357), - [aux_sym_if_statement_token2] = ACTIONS(1357), - [aux_sym_else_if_clause_token1] = ACTIONS(1357), - [aux_sym_else_clause_token1] = ACTIONS(1357), - [aux_sym_match_expression_token1] = ACTIONS(1357), - [aux_sym_match_default_expression_token1] = ACTIONS(1357), - [aux_sym_switch_statement_token1] = ACTIONS(1357), - [aux_sym_switch_block_token1] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1355), - [anon_sym_AT] = ACTIONS(1355), - [aux_sym_clone_expression_token1] = ACTIONS(1357), - [aux_sym_print_intrinsic_token1] = ACTIONS(1357), - [aux_sym_object_creation_expression_token1] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1355), - [anon_sym_PLUS_PLUS] = ACTIONS(1355), - [aux_sym__list_destructing_token1] = ACTIONS(1357), - [anon_sym_LBRACK] = ACTIONS(1355), - [anon_sym_self] = ACTIONS(1357), - [anon_sym_parent] = ACTIONS(1357), - [aux_sym__argument_name_token1] = ACTIONS(1357), - [aux_sym__argument_name_token2] = ACTIONS(1357), - [anon_sym_POUND_LBRACK] = ACTIONS(1355), - [aux_sym_encapsed_string_token1] = ACTIONS(1355), - [anon_sym_DQUOTE] = ACTIONS(1355), - [aux_sym_string_token1] = ACTIONS(1355), - [anon_sym_SQUOTE] = ACTIONS(1355), - [anon_sym_LT_LT_LT] = ACTIONS(1355), - [anon_sym_BQUOTE] = ACTIONS(1355), - [anon_sym_DOLLAR] = ACTIONS(1355), - [aux_sym_yield_expression_token1] = ACTIONS(1357), - [aux_sym_include_expression_token1] = ACTIONS(1357), - [aux_sym_include_once_expression_token1] = ACTIONS(1357), - [aux_sym_require_expression_token1] = ACTIONS(1357), - [aux_sym_require_once_expression_token1] = ACTIONS(1357), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [aux_sym__list_destructing_token1] = ACTIONS(1344), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_self] = ACTIONS(1344), + [anon_sym_parent] = ACTIONS(1344), + [aux_sym__argument_name_token1] = ACTIONS(1344), + [aux_sym__argument_name_token2] = ACTIONS(1344), + [anon_sym_POUND_LBRACK] = ACTIONS(1342), + [aux_sym_encapsed_string_token1] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_LT_LT_LT] = ACTIONS(1342), + [anon_sym_BQUOTE] = ACTIONS(1342), + [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), }, [511] = { - [ts_builtin_sym_end] = ACTIONS(1359), - [sym_name] = ACTIONS(1361), - [anon_sym_QMARK_GT] = ACTIONS(1359), - [anon_sym_SEMI] = ACTIONS(1359), - [aux_sym_function_static_declaration_token1] = ACTIONS(1361), - [aux_sym_global_declaration_token1] = ACTIONS(1361), - [aux_sym_namespace_definition_token1] = ACTIONS(1361), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1361), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1361), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1361), - [anon_sym_BSLASH] = ACTIONS(1359), - [anon_sym_LBRACE] = ACTIONS(1359), - [anon_sym_RBRACE] = ACTIONS(1359), - [aux_sym_trait_declaration_token1] = ACTIONS(1361), - [aux_sym_interface_declaration_token1] = ACTIONS(1361), - [aux_sym_enum_declaration_token1] = ACTIONS(1361), - [aux_sym_enum_case_token1] = ACTIONS(1361), - [aux_sym_class_declaration_token1] = ACTIONS(1361), - [aux_sym_final_modifier_token1] = ACTIONS(1361), - [aux_sym_abstract_modifier_token1] = ACTIONS(1361), - [aux_sym_readonly_modifier_token1] = ACTIONS(1361), - [aux_sym_visibility_modifier_token1] = ACTIONS(1361), - [aux_sym_visibility_modifier_token2] = ACTIONS(1361), - [aux_sym_visibility_modifier_token3] = ACTIONS(1361), - [aux_sym__arrow_function_header_token1] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_cast_type_token1] = ACTIONS(1361), - [aux_sym_echo_statement_token1] = ACTIONS(1361), - [aux_sym_exit_statement_token1] = ACTIONS(1361), - [anon_sym_unset] = ACTIONS(1361), - [aux_sym_declare_statement_token1] = ACTIONS(1361), - [aux_sym_declare_statement_token2] = ACTIONS(1361), - [sym_float] = ACTIONS(1361), - [aux_sym_try_statement_token1] = ACTIONS(1361), - [aux_sym_goto_statement_token1] = ACTIONS(1361), - [aux_sym_continue_statement_token1] = ACTIONS(1361), - [aux_sym_break_statement_token1] = ACTIONS(1361), - [sym_integer] = ACTIONS(1361), - [aux_sym_return_statement_token1] = ACTIONS(1361), - [aux_sym_throw_expression_token1] = ACTIONS(1361), - [aux_sym_while_statement_token1] = ACTIONS(1361), - [aux_sym_while_statement_token2] = ACTIONS(1361), - [aux_sym_do_statement_token1] = ACTIONS(1361), - [aux_sym_for_statement_token1] = ACTIONS(1361), - [aux_sym_for_statement_token2] = ACTIONS(1361), - [aux_sym_foreach_statement_token1] = ACTIONS(1361), - [aux_sym_foreach_statement_token2] = ACTIONS(1361), - [aux_sym_if_statement_token1] = ACTIONS(1361), - [aux_sym_if_statement_token2] = ACTIONS(1361), - [aux_sym_else_if_clause_token1] = ACTIONS(1361), - [aux_sym_else_clause_token1] = ACTIONS(1361), - [aux_sym_match_expression_token1] = ACTIONS(1361), - [aux_sym_match_default_expression_token1] = ACTIONS(1361), - [aux_sym_switch_statement_token1] = ACTIONS(1361), - [aux_sym_switch_block_token1] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1361), - [anon_sym_DASH] = ACTIONS(1361), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_AT] = ACTIONS(1359), - [aux_sym_clone_expression_token1] = ACTIONS(1361), - [aux_sym_print_intrinsic_token1] = ACTIONS(1361), - [aux_sym_object_creation_expression_token1] = ACTIONS(1361), - [anon_sym_DASH_DASH] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1359), - [aux_sym__list_destructing_token1] = ACTIONS(1361), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_self] = ACTIONS(1361), - [anon_sym_parent] = ACTIONS(1361), - [aux_sym__argument_name_token1] = ACTIONS(1361), - [aux_sym__argument_name_token2] = ACTIONS(1361), - [anon_sym_POUND_LBRACK] = ACTIONS(1359), - [aux_sym_encapsed_string_token1] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [aux_sym_string_token1] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1359), - [anon_sym_LT_LT_LT] = ACTIONS(1359), - [anon_sym_BQUOTE] = ACTIONS(1359), - [anon_sym_DOLLAR] = ACTIONS(1359), - [aux_sym_yield_expression_token1] = ACTIONS(1361), - [aux_sym_include_expression_token1] = ACTIONS(1361), - [aux_sym_include_once_expression_token1] = ACTIONS(1361), - [aux_sym_require_expression_token1] = ACTIONS(1361), - [aux_sym_require_once_expression_token1] = ACTIONS(1361), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [aux_sym__list_destructing_token1] = ACTIONS(1348), + [anon_sym_LBRACK] = ACTIONS(1346), + [anon_sym_self] = ACTIONS(1348), + [anon_sym_parent] = ACTIONS(1348), + [aux_sym__argument_name_token1] = ACTIONS(1348), + [aux_sym__argument_name_token2] = ACTIONS(1348), + [anon_sym_POUND_LBRACK] = ACTIONS(1346), + [aux_sym_encapsed_string_token1] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [aux_sym_string_token1] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_LT_LT_LT] = ACTIONS(1346), + [anon_sym_BQUOTE] = ACTIONS(1346), + [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), }, [512] = { - [ts_builtin_sym_end] = ACTIONS(1363), - [sym_name] = ACTIONS(1365), - [anon_sym_QMARK_GT] = ACTIONS(1363), - [anon_sym_SEMI] = ACTIONS(1363), - [aux_sym_function_static_declaration_token1] = ACTIONS(1365), - [aux_sym_global_declaration_token1] = ACTIONS(1365), - [aux_sym_namespace_definition_token1] = ACTIONS(1365), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1365), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1365), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1365), - [anon_sym_BSLASH] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_RBRACE] = ACTIONS(1363), - [aux_sym_trait_declaration_token1] = ACTIONS(1365), - [aux_sym_interface_declaration_token1] = ACTIONS(1365), - [aux_sym_enum_declaration_token1] = ACTIONS(1365), - [aux_sym_enum_case_token1] = ACTIONS(1365), - [aux_sym_class_declaration_token1] = ACTIONS(1365), - [aux_sym_final_modifier_token1] = ACTIONS(1365), - [aux_sym_abstract_modifier_token1] = ACTIONS(1365), - [aux_sym_readonly_modifier_token1] = ACTIONS(1365), - [aux_sym_visibility_modifier_token1] = ACTIONS(1365), - [aux_sym_visibility_modifier_token2] = ACTIONS(1365), - [aux_sym_visibility_modifier_token3] = ACTIONS(1365), - [aux_sym__arrow_function_header_token1] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1363), - [aux_sym_cast_type_token1] = ACTIONS(1365), - [aux_sym_echo_statement_token1] = ACTIONS(1365), - [aux_sym_exit_statement_token1] = ACTIONS(1365), - [anon_sym_unset] = ACTIONS(1365), - [aux_sym_declare_statement_token1] = ACTIONS(1365), - [aux_sym_declare_statement_token2] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [aux_sym_try_statement_token1] = ACTIONS(1365), - [aux_sym_goto_statement_token1] = ACTIONS(1365), - [aux_sym_continue_statement_token1] = ACTIONS(1365), - [aux_sym_break_statement_token1] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [aux_sym_return_statement_token1] = ACTIONS(1365), - [aux_sym_throw_expression_token1] = ACTIONS(1365), - [aux_sym_while_statement_token1] = ACTIONS(1365), - [aux_sym_while_statement_token2] = ACTIONS(1365), - [aux_sym_do_statement_token1] = ACTIONS(1365), - [aux_sym_for_statement_token1] = ACTIONS(1365), - [aux_sym_for_statement_token2] = ACTIONS(1365), - [aux_sym_foreach_statement_token1] = ACTIONS(1365), - [aux_sym_foreach_statement_token2] = ACTIONS(1365), - [aux_sym_if_statement_token1] = ACTIONS(1365), - [aux_sym_if_statement_token2] = ACTIONS(1365), - [aux_sym_else_if_clause_token1] = ACTIONS(1365), - [aux_sym_else_clause_token1] = ACTIONS(1365), - [aux_sym_match_expression_token1] = ACTIONS(1365), - [aux_sym_match_default_expression_token1] = ACTIONS(1365), - [aux_sym_switch_statement_token1] = ACTIONS(1365), - [aux_sym_switch_block_token1] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1363), - [anon_sym_BANG] = ACTIONS(1363), - [anon_sym_AT] = ACTIONS(1363), - [aux_sym_clone_expression_token1] = ACTIONS(1365), - [aux_sym_print_intrinsic_token1] = ACTIONS(1365), - [aux_sym_object_creation_expression_token1] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1363), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [aux_sym__list_destructing_token1] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(1363), - [anon_sym_self] = ACTIONS(1365), - [anon_sym_parent] = ACTIONS(1365), - [aux_sym__argument_name_token1] = ACTIONS(1365), - [aux_sym__argument_name_token2] = ACTIONS(1365), - [anon_sym_POUND_LBRACK] = ACTIONS(1363), - [aux_sym_encapsed_string_token1] = ACTIONS(1363), - [anon_sym_DQUOTE] = ACTIONS(1363), - [aux_sym_string_token1] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1363), - [anon_sym_LT_LT_LT] = ACTIONS(1363), - [anon_sym_BQUOTE] = ACTIONS(1363), - [anon_sym_DOLLAR] = ACTIONS(1363), - [aux_sym_yield_expression_token1] = ACTIONS(1365), - [aux_sym_include_expression_token1] = ACTIONS(1365), - [aux_sym_include_once_expression_token1] = ACTIONS(1365), - [aux_sym_require_expression_token1] = ACTIONS(1365), - [aux_sym_require_once_expression_token1] = ACTIONS(1365), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [aux_sym__list_destructing_token1] = ACTIONS(1352), + [anon_sym_LBRACK] = ACTIONS(1350), + [anon_sym_self] = ACTIONS(1352), + [anon_sym_parent] = ACTIONS(1352), + [aux_sym__argument_name_token1] = ACTIONS(1352), + [aux_sym__argument_name_token2] = ACTIONS(1352), + [anon_sym_POUND_LBRACK] = ACTIONS(1350), + [aux_sym_encapsed_string_token1] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [aux_sym_string_token1] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_LT_LT_LT] = ACTIONS(1350), + [anon_sym_BQUOTE] = ACTIONS(1350), + [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), }, [513] = { - [ts_builtin_sym_end] = ACTIONS(1367), - [sym_name] = ACTIONS(1369), - [anon_sym_QMARK_GT] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1367), - [aux_sym_function_static_declaration_token1] = ACTIONS(1369), - [aux_sym_global_declaration_token1] = ACTIONS(1369), - [aux_sym_namespace_definition_token1] = ACTIONS(1369), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1369), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1369), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1369), - [anon_sym_BSLASH] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [aux_sym_trait_declaration_token1] = ACTIONS(1369), - [aux_sym_interface_declaration_token1] = ACTIONS(1369), - [aux_sym_enum_declaration_token1] = ACTIONS(1369), - [aux_sym_enum_case_token1] = ACTIONS(1369), - [aux_sym_class_declaration_token1] = ACTIONS(1369), - [aux_sym_final_modifier_token1] = ACTIONS(1369), - [aux_sym_abstract_modifier_token1] = ACTIONS(1369), - [aux_sym_readonly_modifier_token1] = ACTIONS(1369), - [aux_sym_visibility_modifier_token1] = ACTIONS(1369), - [aux_sym_visibility_modifier_token2] = ACTIONS(1369), - [aux_sym_visibility_modifier_token3] = ACTIONS(1369), - [aux_sym__arrow_function_header_token1] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1367), - [aux_sym_cast_type_token1] = ACTIONS(1369), - [aux_sym_echo_statement_token1] = ACTIONS(1369), - [aux_sym_exit_statement_token1] = ACTIONS(1369), - [anon_sym_unset] = ACTIONS(1369), - [aux_sym_declare_statement_token1] = ACTIONS(1369), - [aux_sym_declare_statement_token2] = ACTIONS(1369), - [sym_float] = ACTIONS(1369), - [aux_sym_try_statement_token1] = ACTIONS(1369), - [aux_sym_goto_statement_token1] = ACTIONS(1369), - [aux_sym_continue_statement_token1] = ACTIONS(1369), - [aux_sym_break_statement_token1] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [aux_sym_return_statement_token1] = ACTIONS(1369), - [aux_sym_throw_expression_token1] = ACTIONS(1369), - [aux_sym_while_statement_token1] = ACTIONS(1369), - [aux_sym_while_statement_token2] = ACTIONS(1369), - [aux_sym_do_statement_token1] = ACTIONS(1369), - [aux_sym_for_statement_token1] = ACTIONS(1369), - [aux_sym_for_statement_token2] = ACTIONS(1369), - [aux_sym_foreach_statement_token1] = ACTIONS(1369), - [aux_sym_foreach_statement_token2] = ACTIONS(1369), - [aux_sym_if_statement_token1] = ACTIONS(1369), - [aux_sym_if_statement_token2] = ACTIONS(1369), - [aux_sym_else_if_clause_token1] = ACTIONS(1369), - [aux_sym_else_clause_token1] = ACTIONS(1369), - [aux_sym_match_expression_token1] = ACTIONS(1369), - [aux_sym_match_default_expression_token1] = ACTIONS(1369), - [aux_sym_switch_statement_token1] = ACTIONS(1369), - [aux_sym_switch_block_token1] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_AT] = ACTIONS(1367), - [aux_sym_clone_expression_token1] = ACTIONS(1369), - [aux_sym_print_intrinsic_token1] = ACTIONS(1369), - [aux_sym_object_creation_expression_token1] = ACTIONS(1369), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [aux_sym__list_destructing_token1] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_self] = ACTIONS(1369), - [anon_sym_parent] = ACTIONS(1369), - [aux_sym__argument_name_token1] = ACTIONS(1369), - [aux_sym__argument_name_token2] = ACTIONS(1369), - [anon_sym_POUND_LBRACK] = ACTIONS(1367), - [aux_sym_encapsed_string_token1] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [aux_sym_string_token1] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_LT_LT_LT] = ACTIONS(1367), - [anon_sym_BQUOTE] = ACTIONS(1367), - [anon_sym_DOLLAR] = ACTIONS(1367), - [aux_sym_yield_expression_token1] = ACTIONS(1369), - [aux_sym_include_expression_token1] = ACTIONS(1369), - [aux_sym_include_once_expression_token1] = ACTIONS(1369), - [aux_sym_require_expression_token1] = ACTIONS(1369), - [aux_sym_require_once_expression_token1] = ACTIONS(1369), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [aux_sym__list_destructing_token1] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1354), + [anon_sym_self] = ACTIONS(1356), + [anon_sym_parent] = ACTIONS(1356), + [aux_sym__argument_name_token1] = ACTIONS(1356), + [aux_sym__argument_name_token2] = ACTIONS(1356), + [anon_sym_POUND_LBRACK] = ACTIONS(1354), + [aux_sym_encapsed_string_token1] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [aux_sym_string_token1] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_LT_LT_LT] = ACTIONS(1354), + [anon_sym_BQUOTE] = ACTIONS(1354), + [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), }, [514] = { - [ts_builtin_sym_end] = ACTIONS(1371), - [sym_name] = ACTIONS(1373), - [anon_sym_QMARK_GT] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1371), - [aux_sym_function_static_declaration_token1] = ACTIONS(1373), - [aux_sym_global_declaration_token1] = ACTIONS(1373), - [aux_sym_namespace_definition_token1] = ACTIONS(1373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1373), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1373), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1373), - [anon_sym_BSLASH] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1371), - [aux_sym_trait_declaration_token1] = ACTIONS(1373), - [aux_sym_interface_declaration_token1] = ACTIONS(1373), - [aux_sym_enum_declaration_token1] = ACTIONS(1373), - [aux_sym_enum_case_token1] = ACTIONS(1373), - [aux_sym_class_declaration_token1] = ACTIONS(1373), - [aux_sym_final_modifier_token1] = ACTIONS(1373), - [aux_sym_abstract_modifier_token1] = ACTIONS(1373), - [aux_sym_readonly_modifier_token1] = ACTIONS(1373), - [aux_sym_visibility_modifier_token1] = ACTIONS(1373), - [aux_sym_visibility_modifier_token2] = ACTIONS(1373), - [aux_sym_visibility_modifier_token3] = ACTIONS(1373), - [aux_sym__arrow_function_header_token1] = ACTIONS(1373), - [anon_sym_LPAREN] = ACTIONS(1371), - [aux_sym_cast_type_token1] = ACTIONS(1373), - [aux_sym_echo_statement_token1] = ACTIONS(1373), - [aux_sym_exit_statement_token1] = ACTIONS(1373), - [anon_sym_unset] = ACTIONS(1373), - [aux_sym_declare_statement_token1] = ACTIONS(1373), - [aux_sym_declare_statement_token2] = ACTIONS(1373), - [sym_float] = ACTIONS(1373), - [aux_sym_try_statement_token1] = ACTIONS(1373), - [aux_sym_goto_statement_token1] = ACTIONS(1373), - [aux_sym_continue_statement_token1] = ACTIONS(1373), - [aux_sym_break_statement_token1] = ACTIONS(1373), - [sym_integer] = ACTIONS(1373), - [aux_sym_return_statement_token1] = ACTIONS(1373), - [aux_sym_throw_expression_token1] = ACTIONS(1373), - [aux_sym_while_statement_token1] = ACTIONS(1373), - [aux_sym_while_statement_token2] = ACTIONS(1373), - [aux_sym_do_statement_token1] = ACTIONS(1373), - [aux_sym_for_statement_token1] = ACTIONS(1373), - [aux_sym_for_statement_token2] = ACTIONS(1373), - [aux_sym_foreach_statement_token1] = ACTIONS(1373), - [aux_sym_foreach_statement_token2] = ACTIONS(1373), - [aux_sym_if_statement_token1] = ACTIONS(1373), - [aux_sym_if_statement_token2] = ACTIONS(1373), - [aux_sym_else_if_clause_token1] = ACTIONS(1373), - [aux_sym_else_clause_token1] = ACTIONS(1373), - [aux_sym_match_expression_token1] = ACTIONS(1373), - [aux_sym_match_default_expression_token1] = ACTIONS(1373), - [aux_sym_switch_statement_token1] = ACTIONS(1373), - [aux_sym_switch_block_token1] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1371), - [anon_sym_BANG] = ACTIONS(1371), - [anon_sym_AT] = ACTIONS(1371), - [aux_sym_clone_expression_token1] = ACTIONS(1373), - [aux_sym_print_intrinsic_token1] = ACTIONS(1373), - [aux_sym_object_creation_expression_token1] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1371), - [anon_sym_PLUS_PLUS] = ACTIONS(1371), - [aux_sym__list_destructing_token1] = ACTIONS(1373), - [anon_sym_LBRACK] = ACTIONS(1371), - [anon_sym_self] = ACTIONS(1373), - [anon_sym_parent] = ACTIONS(1373), - [aux_sym__argument_name_token1] = ACTIONS(1373), - [aux_sym__argument_name_token2] = ACTIONS(1373), - [anon_sym_POUND_LBRACK] = ACTIONS(1371), - [aux_sym_encapsed_string_token1] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1371), - [aux_sym_string_token1] = ACTIONS(1371), - [anon_sym_SQUOTE] = ACTIONS(1371), - [anon_sym_LT_LT_LT] = ACTIONS(1371), - [anon_sym_BQUOTE] = ACTIONS(1371), - [anon_sym_DOLLAR] = ACTIONS(1371), - [aux_sym_yield_expression_token1] = ACTIONS(1373), - [aux_sym_include_expression_token1] = ACTIONS(1373), - [aux_sym_include_once_expression_token1] = ACTIONS(1373), - [aux_sym_require_expression_token1] = ACTIONS(1373), - [aux_sym_require_once_expression_token1] = ACTIONS(1373), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [aux_sym__list_destructing_token1] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1358), + [anon_sym_self] = ACTIONS(1360), + [anon_sym_parent] = ACTIONS(1360), + [aux_sym__argument_name_token1] = ACTIONS(1360), + [aux_sym__argument_name_token2] = ACTIONS(1360), + [anon_sym_POUND_LBRACK] = ACTIONS(1358), + [aux_sym_encapsed_string_token1] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [aux_sym_string_token1] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [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), }, [515] = { - [ts_builtin_sym_end] = ACTIONS(1367), - [sym_name] = ACTIONS(1369), - [anon_sym_QMARK_GT] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1367), - [aux_sym_function_static_declaration_token1] = ACTIONS(1369), - [aux_sym_global_declaration_token1] = ACTIONS(1369), - [aux_sym_namespace_definition_token1] = ACTIONS(1369), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1369), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1369), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1369), - [anon_sym_BSLASH] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [aux_sym_trait_declaration_token1] = ACTIONS(1369), - [aux_sym_interface_declaration_token1] = ACTIONS(1369), - [aux_sym_enum_declaration_token1] = ACTIONS(1369), - [aux_sym_enum_case_token1] = ACTIONS(1369), - [aux_sym_class_declaration_token1] = ACTIONS(1369), - [aux_sym_final_modifier_token1] = ACTIONS(1369), - [aux_sym_abstract_modifier_token1] = ACTIONS(1369), - [aux_sym_readonly_modifier_token1] = ACTIONS(1369), - [aux_sym_visibility_modifier_token1] = ACTIONS(1369), - [aux_sym_visibility_modifier_token2] = ACTIONS(1369), - [aux_sym_visibility_modifier_token3] = ACTIONS(1369), - [aux_sym__arrow_function_header_token1] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1367), - [aux_sym_cast_type_token1] = ACTIONS(1369), - [aux_sym_echo_statement_token1] = ACTIONS(1369), - [aux_sym_exit_statement_token1] = ACTIONS(1369), - [anon_sym_unset] = ACTIONS(1369), - [aux_sym_declare_statement_token1] = ACTIONS(1369), - [aux_sym_declare_statement_token2] = ACTIONS(1369), - [sym_float] = ACTIONS(1369), - [aux_sym_try_statement_token1] = ACTIONS(1369), - [aux_sym_goto_statement_token1] = ACTIONS(1369), - [aux_sym_continue_statement_token1] = ACTIONS(1369), - [aux_sym_break_statement_token1] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [aux_sym_return_statement_token1] = ACTIONS(1369), - [aux_sym_throw_expression_token1] = ACTIONS(1369), - [aux_sym_while_statement_token1] = ACTIONS(1369), - [aux_sym_while_statement_token2] = ACTIONS(1369), - [aux_sym_do_statement_token1] = ACTIONS(1369), - [aux_sym_for_statement_token1] = ACTIONS(1369), - [aux_sym_for_statement_token2] = ACTIONS(1369), - [aux_sym_foreach_statement_token1] = ACTIONS(1369), - [aux_sym_foreach_statement_token2] = ACTIONS(1369), - [aux_sym_if_statement_token1] = ACTIONS(1369), - [aux_sym_if_statement_token2] = ACTIONS(1369), - [aux_sym_else_if_clause_token1] = ACTIONS(1369), - [aux_sym_else_clause_token1] = ACTIONS(1369), - [aux_sym_match_expression_token1] = ACTIONS(1369), - [aux_sym_match_default_expression_token1] = ACTIONS(1369), - [aux_sym_switch_statement_token1] = ACTIONS(1369), - [aux_sym_switch_block_token1] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_AT] = ACTIONS(1367), - [aux_sym_clone_expression_token1] = ACTIONS(1369), - [aux_sym_print_intrinsic_token1] = ACTIONS(1369), - [aux_sym_object_creation_expression_token1] = ACTIONS(1369), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [aux_sym__list_destructing_token1] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_self] = ACTIONS(1369), - [anon_sym_parent] = ACTIONS(1369), - [aux_sym__argument_name_token1] = ACTIONS(1369), - [aux_sym__argument_name_token2] = ACTIONS(1369), - [anon_sym_POUND_LBRACK] = ACTIONS(1367), - [aux_sym_encapsed_string_token1] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [aux_sym_string_token1] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_LT_LT_LT] = ACTIONS(1367), - [anon_sym_BQUOTE] = ACTIONS(1367), - [anon_sym_DOLLAR] = ACTIONS(1367), - [aux_sym_yield_expression_token1] = ACTIONS(1369), - [aux_sym_include_expression_token1] = ACTIONS(1369), - [aux_sym_include_once_expression_token1] = ACTIONS(1369), - [aux_sym_require_expression_token1] = ACTIONS(1369), - [aux_sym_require_once_expression_token1] = ACTIONS(1369), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [aux_sym__list_destructing_token1] = ACTIONS(1364), + [anon_sym_LBRACK] = ACTIONS(1362), + [anon_sym_self] = ACTIONS(1364), + [anon_sym_parent] = ACTIONS(1364), + [aux_sym__argument_name_token1] = ACTIONS(1364), + [aux_sym__argument_name_token2] = ACTIONS(1364), + [anon_sym_POUND_LBRACK] = ACTIONS(1362), + [aux_sym_encapsed_string_token1] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [aux_sym_string_token1] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_LT_LT_LT] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1362), + [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), }, [516] = { - [ts_builtin_sym_end] = ACTIONS(1375), - [sym_name] = ACTIONS(1377), - [anon_sym_QMARK_GT] = ACTIONS(1375), - [anon_sym_SEMI] = ACTIONS(1375), - [aux_sym_function_static_declaration_token1] = ACTIONS(1377), - [aux_sym_global_declaration_token1] = ACTIONS(1377), - [aux_sym_namespace_definition_token1] = ACTIONS(1377), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1377), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1377), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1377), - [anon_sym_BSLASH] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_RBRACE] = ACTIONS(1375), - [aux_sym_trait_declaration_token1] = ACTIONS(1377), - [aux_sym_interface_declaration_token1] = ACTIONS(1377), - [aux_sym_enum_declaration_token1] = ACTIONS(1377), - [aux_sym_enum_case_token1] = ACTIONS(1377), - [aux_sym_class_declaration_token1] = ACTIONS(1377), - [aux_sym_final_modifier_token1] = ACTIONS(1377), - [aux_sym_abstract_modifier_token1] = ACTIONS(1377), - [aux_sym_readonly_modifier_token1] = ACTIONS(1377), - [aux_sym_visibility_modifier_token1] = ACTIONS(1377), - [aux_sym_visibility_modifier_token2] = ACTIONS(1377), - [aux_sym_visibility_modifier_token3] = ACTIONS(1377), - [aux_sym__arrow_function_header_token1] = ACTIONS(1377), - [anon_sym_LPAREN] = ACTIONS(1375), - [aux_sym_cast_type_token1] = ACTIONS(1377), - [aux_sym_echo_statement_token1] = ACTIONS(1377), - [aux_sym_exit_statement_token1] = ACTIONS(1377), - [anon_sym_unset] = ACTIONS(1377), - [aux_sym_declare_statement_token1] = ACTIONS(1377), - [aux_sym_declare_statement_token2] = ACTIONS(1377), - [sym_float] = ACTIONS(1377), - [aux_sym_try_statement_token1] = ACTIONS(1377), - [aux_sym_goto_statement_token1] = ACTIONS(1377), - [aux_sym_continue_statement_token1] = ACTIONS(1377), - [aux_sym_break_statement_token1] = ACTIONS(1377), - [sym_integer] = ACTIONS(1377), - [aux_sym_return_statement_token1] = ACTIONS(1377), - [aux_sym_throw_expression_token1] = ACTIONS(1377), - [aux_sym_while_statement_token1] = ACTIONS(1377), - [aux_sym_while_statement_token2] = ACTIONS(1377), - [aux_sym_do_statement_token1] = ACTIONS(1377), - [aux_sym_for_statement_token1] = ACTIONS(1377), - [aux_sym_for_statement_token2] = ACTIONS(1377), - [aux_sym_foreach_statement_token1] = ACTIONS(1377), - [aux_sym_foreach_statement_token2] = ACTIONS(1377), - [aux_sym_if_statement_token1] = ACTIONS(1377), - [aux_sym_if_statement_token2] = ACTIONS(1377), - [aux_sym_else_if_clause_token1] = ACTIONS(1377), - [aux_sym_else_clause_token1] = ACTIONS(1377), - [aux_sym_match_expression_token1] = ACTIONS(1377), - [aux_sym_match_default_expression_token1] = ACTIONS(1377), - [aux_sym_switch_statement_token1] = ACTIONS(1377), - [aux_sym_switch_block_token1] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1375), - [anon_sym_AT] = ACTIONS(1375), - [aux_sym_clone_expression_token1] = ACTIONS(1377), - [aux_sym_print_intrinsic_token1] = ACTIONS(1377), - [aux_sym_object_creation_expression_token1] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1375), - [aux_sym__list_destructing_token1] = ACTIONS(1377), - [anon_sym_LBRACK] = ACTIONS(1375), - [anon_sym_self] = ACTIONS(1377), - [anon_sym_parent] = ACTIONS(1377), - [aux_sym__argument_name_token1] = ACTIONS(1377), - [aux_sym__argument_name_token2] = ACTIONS(1377), - [anon_sym_POUND_LBRACK] = ACTIONS(1375), - [aux_sym_encapsed_string_token1] = ACTIONS(1375), - [anon_sym_DQUOTE] = ACTIONS(1375), - [aux_sym_string_token1] = ACTIONS(1375), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_LT_LT_LT] = ACTIONS(1375), - [anon_sym_BQUOTE] = ACTIONS(1375), - [anon_sym_DOLLAR] = ACTIONS(1375), - [aux_sym_yield_expression_token1] = ACTIONS(1377), - [aux_sym_include_expression_token1] = ACTIONS(1377), - [aux_sym_include_once_expression_token1] = ACTIONS(1377), - [aux_sym_require_expression_token1] = ACTIONS(1377), - [aux_sym_require_once_expression_token1] = ACTIONS(1377), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1366), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [aux_sym__list_destructing_token1] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1366), + [anon_sym_self] = ACTIONS(1368), + [anon_sym_parent] = ACTIONS(1368), + [aux_sym__argument_name_token1] = ACTIONS(1368), + [aux_sym__argument_name_token2] = ACTIONS(1368), + [anon_sym_POUND_LBRACK] = ACTIONS(1366), + [aux_sym_encapsed_string_token1] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [aux_sym_string_token1] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_LT_LT_LT] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [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), }, [517] = { - [ts_builtin_sym_end] = ACTIONS(1177), - [sym_name] = ACTIONS(1179), - [anon_sym_QMARK_GT] = ACTIONS(1177), - [anon_sym_SEMI] = ACTIONS(1177), - [aux_sym_function_static_declaration_token1] = ACTIONS(1179), - [aux_sym_global_declaration_token1] = ACTIONS(1179), - [aux_sym_namespace_definition_token1] = ACTIONS(1179), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1179), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1179), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1179), - [anon_sym_BSLASH] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(1177), - [aux_sym_trait_declaration_token1] = ACTIONS(1179), - [aux_sym_interface_declaration_token1] = ACTIONS(1179), - [aux_sym_enum_declaration_token1] = ACTIONS(1179), - [aux_sym_enum_case_token1] = ACTIONS(1179), - [aux_sym_class_declaration_token1] = ACTIONS(1179), - [aux_sym_final_modifier_token1] = ACTIONS(1179), - [aux_sym_abstract_modifier_token1] = ACTIONS(1179), - [aux_sym_readonly_modifier_token1] = ACTIONS(1179), - [aux_sym_visibility_modifier_token1] = ACTIONS(1179), - [aux_sym_visibility_modifier_token2] = ACTIONS(1179), - [aux_sym_visibility_modifier_token3] = ACTIONS(1179), - [aux_sym__arrow_function_header_token1] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1177), - [aux_sym_cast_type_token1] = ACTIONS(1179), - [aux_sym_echo_statement_token1] = ACTIONS(1179), - [aux_sym_exit_statement_token1] = ACTIONS(1179), - [anon_sym_unset] = ACTIONS(1179), - [aux_sym_declare_statement_token1] = ACTIONS(1179), - [aux_sym_declare_statement_token2] = ACTIONS(1179), - [sym_float] = ACTIONS(1179), - [aux_sym_try_statement_token1] = ACTIONS(1179), - [aux_sym_goto_statement_token1] = ACTIONS(1179), - [aux_sym_continue_statement_token1] = ACTIONS(1179), - [aux_sym_break_statement_token1] = ACTIONS(1179), - [sym_integer] = ACTIONS(1179), - [aux_sym_return_statement_token1] = ACTIONS(1179), - [aux_sym_throw_expression_token1] = ACTIONS(1179), - [aux_sym_while_statement_token1] = ACTIONS(1179), - [aux_sym_while_statement_token2] = ACTIONS(1179), - [aux_sym_do_statement_token1] = ACTIONS(1179), - [aux_sym_for_statement_token1] = ACTIONS(1179), - [aux_sym_for_statement_token2] = ACTIONS(1179), - [aux_sym_foreach_statement_token1] = ACTIONS(1179), - [aux_sym_foreach_statement_token2] = ACTIONS(1179), - [aux_sym_if_statement_token1] = ACTIONS(1179), - [aux_sym_if_statement_token2] = ACTIONS(1179), - [aux_sym_else_if_clause_token1] = ACTIONS(1179), - [aux_sym_else_clause_token1] = ACTIONS(1179), - [aux_sym_match_expression_token1] = ACTIONS(1179), - [aux_sym_match_default_expression_token1] = ACTIONS(1179), - [aux_sym_switch_statement_token1] = ACTIONS(1179), - [aux_sym_switch_block_token1] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1179), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1177), - [anon_sym_AT] = ACTIONS(1177), - [aux_sym_clone_expression_token1] = ACTIONS(1179), - [aux_sym_print_intrinsic_token1] = ACTIONS(1179), - [aux_sym_object_creation_expression_token1] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1177), - [anon_sym_PLUS_PLUS] = ACTIONS(1177), - [aux_sym__list_destructing_token1] = ACTIONS(1179), - [anon_sym_LBRACK] = ACTIONS(1177), - [anon_sym_self] = ACTIONS(1179), - [anon_sym_parent] = ACTIONS(1179), - [aux_sym__argument_name_token1] = ACTIONS(1179), - [aux_sym__argument_name_token2] = ACTIONS(1179), - [anon_sym_POUND_LBRACK] = ACTIONS(1177), - [aux_sym_encapsed_string_token1] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1177), - [aux_sym_string_token1] = ACTIONS(1177), - [anon_sym_SQUOTE] = ACTIONS(1177), - [anon_sym_LT_LT_LT] = ACTIONS(1177), - [anon_sym_BQUOTE] = ACTIONS(1177), - [anon_sym_DOLLAR] = ACTIONS(1177), - [aux_sym_yield_expression_token1] = ACTIONS(1179), - [aux_sym_include_expression_token1] = ACTIONS(1179), - [aux_sym_include_once_expression_token1] = ACTIONS(1179), - [aux_sym_require_expression_token1] = ACTIONS(1179), - [aux_sym_require_once_expression_token1] = ACTIONS(1179), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [aux_sym__list_destructing_token1] = ACTIONS(1372), + [anon_sym_LBRACK] = ACTIONS(1370), + [anon_sym_self] = ACTIONS(1372), + [anon_sym_parent] = ACTIONS(1372), + [aux_sym__argument_name_token1] = ACTIONS(1372), + [aux_sym__argument_name_token2] = ACTIONS(1372), + [anon_sym_POUND_LBRACK] = ACTIONS(1370), + [aux_sym_encapsed_string_token1] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [aux_sym_string_token1] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_LT_LT_LT] = ACTIONS(1370), + [anon_sym_BQUOTE] = ACTIONS(1370), + [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), }, [518] = { - [ts_builtin_sym_end] = ACTIONS(1379), - [sym_name] = ACTIONS(1381), - [anon_sym_QMARK_GT] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1379), - [aux_sym_function_static_declaration_token1] = ACTIONS(1381), - [aux_sym_global_declaration_token1] = ACTIONS(1381), - [aux_sym_namespace_definition_token1] = ACTIONS(1381), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1381), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1381), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1381), - [anon_sym_BSLASH] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_RBRACE] = ACTIONS(1379), - [aux_sym_trait_declaration_token1] = ACTIONS(1381), - [aux_sym_interface_declaration_token1] = ACTIONS(1381), - [aux_sym_enum_declaration_token1] = ACTIONS(1381), - [aux_sym_enum_case_token1] = ACTIONS(1381), - [aux_sym_class_declaration_token1] = ACTIONS(1381), - [aux_sym_final_modifier_token1] = ACTIONS(1381), - [aux_sym_abstract_modifier_token1] = ACTIONS(1381), - [aux_sym_readonly_modifier_token1] = ACTIONS(1381), - [aux_sym_visibility_modifier_token1] = ACTIONS(1381), - [aux_sym_visibility_modifier_token2] = ACTIONS(1381), - [aux_sym_visibility_modifier_token3] = ACTIONS(1381), - [aux_sym__arrow_function_header_token1] = ACTIONS(1381), - [anon_sym_LPAREN] = ACTIONS(1379), - [aux_sym_cast_type_token1] = ACTIONS(1381), - [aux_sym_echo_statement_token1] = ACTIONS(1381), - [aux_sym_exit_statement_token1] = ACTIONS(1381), - [anon_sym_unset] = ACTIONS(1381), - [aux_sym_declare_statement_token1] = ACTIONS(1381), - [aux_sym_declare_statement_token2] = ACTIONS(1381), - [sym_float] = ACTIONS(1381), - [aux_sym_try_statement_token1] = ACTIONS(1381), - [aux_sym_goto_statement_token1] = ACTIONS(1381), - [aux_sym_continue_statement_token1] = ACTIONS(1381), - [aux_sym_break_statement_token1] = ACTIONS(1381), - [sym_integer] = ACTIONS(1381), - [aux_sym_return_statement_token1] = ACTIONS(1381), - [aux_sym_throw_expression_token1] = ACTIONS(1381), - [aux_sym_while_statement_token1] = ACTIONS(1381), - [aux_sym_while_statement_token2] = ACTIONS(1381), - [aux_sym_do_statement_token1] = ACTIONS(1381), - [aux_sym_for_statement_token1] = ACTIONS(1381), - [aux_sym_for_statement_token2] = ACTIONS(1381), - [aux_sym_foreach_statement_token1] = ACTIONS(1381), - [aux_sym_foreach_statement_token2] = ACTIONS(1381), - [aux_sym_if_statement_token1] = ACTIONS(1381), - [aux_sym_if_statement_token2] = ACTIONS(1381), - [aux_sym_else_if_clause_token1] = ACTIONS(1381), - [aux_sym_else_clause_token1] = ACTIONS(1381), - [aux_sym_match_expression_token1] = ACTIONS(1381), - [aux_sym_match_default_expression_token1] = ACTIONS(1381), - [aux_sym_switch_statement_token1] = ACTIONS(1381), - [aux_sym_switch_block_token1] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1379), - [aux_sym_clone_expression_token1] = ACTIONS(1381), - [aux_sym_print_intrinsic_token1] = ACTIONS(1381), - [aux_sym_object_creation_expression_token1] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [aux_sym__list_destructing_token1] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1379), - [anon_sym_self] = ACTIONS(1381), - [anon_sym_parent] = ACTIONS(1381), - [aux_sym__argument_name_token1] = ACTIONS(1381), - [aux_sym__argument_name_token2] = ACTIONS(1381), - [anon_sym_POUND_LBRACK] = ACTIONS(1379), - [aux_sym_encapsed_string_token1] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1379), - [aux_sym_string_token1] = ACTIONS(1379), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_LT_LT_LT] = ACTIONS(1379), - [anon_sym_BQUOTE] = ACTIONS(1379), - [anon_sym_DOLLAR] = ACTIONS(1379), - [aux_sym_yield_expression_token1] = ACTIONS(1381), - [aux_sym_include_expression_token1] = ACTIONS(1381), - [aux_sym_include_once_expression_token1] = ACTIONS(1381), - [aux_sym_require_expression_token1] = ACTIONS(1381), - [aux_sym_require_once_expression_token1] = ACTIONS(1381), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [aux_sym__list_destructing_token1] = ACTIONS(1376), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_self] = ACTIONS(1376), + [anon_sym_parent] = ACTIONS(1376), + [aux_sym__argument_name_token1] = ACTIONS(1376), + [aux_sym__argument_name_token2] = ACTIONS(1376), + [anon_sym_POUND_LBRACK] = ACTIONS(1374), + [aux_sym_encapsed_string_token1] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [aux_sym_string_token1] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_LT_LT_LT] = ACTIONS(1374), + [anon_sym_BQUOTE] = ACTIONS(1374), + [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), }, [519] = { - [ts_builtin_sym_end] = ACTIONS(1383), - [sym_name] = ACTIONS(1385), - [anon_sym_QMARK_GT] = ACTIONS(1383), - [anon_sym_SEMI] = ACTIONS(1383), - [aux_sym_function_static_declaration_token1] = ACTIONS(1385), - [aux_sym_global_declaration_token1] = ACTIONS(1385), - [aux_sym_namespace_definition_token1] = ACTIONS(1385), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1385), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1385), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1385), - [anon_sym_BSLASH] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1383), - [aux_sym_trait_declaration_token1] = ACTIONS(1385), - [aux_sym_interface_declaration_token1] = ACTIONS(1385), - [aux_sym_enum_declaration_token1] = ACTIONS(1385), - [aux_sym_enum_case_token1] = ACTIONS(1385), - [aux_sym_class_declaration_token1] = ACTIONS(1385), - [aux_sym_final_modifier_token1] = ACTIONS(1385), - [aux_sym_abstract_modifier_token1] = ACTIONS(1385), - [aux_sym_readonly_modifier_token1] = ACTIONS(1385), - [aux_sym_visibility_modifier_token1] = ACTIONS(1385), - [aux_sym_visibility_modifier_token2] = ACTIONS(1385), - [aux_sym_visibility_modifier_token3] = ACTIONS(1385), - [aux_sym__arrow_function_header_token1] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1383), - [aux_sym_cast_type_token1] = ACTIONS(1385), - [aux_sym_echo_statement_token1] = ACTIONS(1385), - [aux_sym_exit_statement_token1] = ACTIONS(1385), - [anon_sym_unset] = ACTIONS(1385), - [aux_sym_declare_statement_token1] = ACTIONS(1385), - [aux_sym_declare_statement_token2] = ACTIONS(1385), - [sym_float] = ACTIONS(1385), - [aux_sym_try_statement_token1] = ACTIONS(1385), - [aux_sym_goto_statement_token1] = ACTIONS(1385), - [aux_sym_continue_statement_token1] = ACTIONS(1385), - [aux_sym_break_statement_token1] = ACTIONS(1385), - [sym_integer] = ACTIONS(1385), - [aux_sym_return_statement_token1] = ACTIONS(1385), - [aux_sym_throw_expression_token1] = ACTIONS(1385), - [aux_sym_while_statement_token1] = ACTIONS(1385), - [aux_sym_while_statement_token2] = ACTIONS(1385), - [aux_sym_do_statement_token1] = ACTIONS(1385), - [aux_sym_for_statement_token1] = ACTIONS(1385), - [aux_sym_for_statement_token2] = ACTIONS(1385), - [aux_sym_foreach_statement_token1] = ACTIONS(1385), - [aux_sym_foreach_statement_token2] = ACTIONS(1385), - [aux_sym_if_statement_token1] = ACTIONS(1385), - [aux_sym_if_statement_token2] = ACTIONS(1385), - [aux_sym_else_if_clause_token1] = ACTIONS(1385), - [aux_sym_else_clause_token1] = ACTIONS(1385), - [aux_sym_match_expression_token1] = ACTIONS(1385), - [aux_sym_match_default_expression_token1] = ACTIONS(1385), - [aux_sym_switch_statement_token1] = ACTIONS(1385), - [aux_sym_switch_block_token1] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1383), - [anon_sym_AT] = ACTIONS(1383), - [aux_sym_clone_expression_token1] = ACTIONS(1385), - [aux_sym_print_intrinsic_token1] = ACTIONS(1385), - [aux_sym_object_creation_expression_token1] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1383), - [aux_sym__list_destructing_token1] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_self] = ACTIONS(1385), - [anon_sym_parent] = ACTIONS(1385), - [aux_sym__argument_name_token1] = ACTIONS(1385), - [aux_sym__argument_name_token2] = ACTIONS(1385), - [anon_sym_POUND_LBRACK] = ACTIONS(1383), - [aux_sym_encapsed_string_token1] = ACTIONS(1383), - [anon_sym_DQUOTE] = ACTIONS(1383), - [aux_sym_string_token1] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1383), - [anon_sym_LT_LT_LT] = ACTIONS(1383), - [anon_sym_BQUOTE] = ACTIONS(1383), - [anon_sym_DOLLAR] = ACTIONS(1383), - [aux_sym_yield_expression_token1] = ACTIONS(1385), - [aux_sym_include_expression_token1] = ACTIONS(1385), - [aux_sym_include_once_expression_token1] = ACTIONS(1385), - [aux_sym_require_expression_token1] = ACTIONS(1385), - [aux_sym_require_once_expression_token1] = ACTIONS(1385), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1378), + [anon_sym_PLUS_PLUS] = ACTIONS(1378), + [aux_sym__list_destructing_token1] = ACTIONS(1380), + [anon_sym_LBRACK] = ACTIONS(1378), + [anon_sym_self] = ACTIONS(1380), + [anon_sym_parent] = ACTIONS(1380), + [aux_sym__argument_name_token1] = ACTIONS(1380), + [aux_sym__argument_name_token2] = ACTIONS(1380), + [anon_sym_POUND_LBRACK] = ACTIONS(1378), + [aux_sym_encapsed_string_token1] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [aux_sym_string_token1] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_LT_LT_LT] = ACTIONS(1378), + [anon_sym_BQUOTE] = ACTIONS(1378), + [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), }, [520] = { - [ts_builtin_sym_end] = ACTIONS(1387), - [sym_name] = ACTIONS(1389), - [anon_sym_QMARK_GT] = ACTIONS(1387), - [anon_sym_SEMI] = ACTIONS(1387), - [aux_sym_function_static_declaration_token1] = ACTIONS(1389), - [aux_sym_global_declaration_token1] = ACTIONS(1389), - [aux_sym_namespace_definition_token1] = ACTIONS(1389), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1389), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1389), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1389), - [anon_sym_BSLASH] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_RBRACE] = ACTIONS(1387), - [aux_sym_trait_declaration_token1] = ACTIONS(1389), - [aux_sym_interface_declaration_token1] = ACTIONS(1389), - [aux_sym_enum_declaration_token1] = ACTIONS(1389), - [aux_sym_enum_case_token1] = ACTIONS(1389), - [aux_sym_class_declaration_token1] = ACTIONS(1389), - [aux_sym_final_modifier_token1] = ACTIONS(1389), - [aux_sym_abstract_modifier_token1] = ACTIONS(1389), - [aux_sym_readonly_modifier_token1] = ACTIONS(1389), - [aux_sym_visibility_modifier_token1] = ACTIONS(1389), - [aux_sym_visibility_modifier_token2] = ACTIONS(1389), - [aux_sym_visibility_modifier_token3] = ACTIONS(1389), - [aux_sym__arrow_function_header_token1] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1387), - [aux_sym_cast_type_token1] = ACTIONS(1389), - [aux_sym_echo_statement_token1] = ACTIONS(1389), - [aux_sym_exit_statement_token1] = ACTIONS(1389), - [anon_sym_unset] = ACTIONS(1389), - [aux_sym_declare_statement_token1] = ACTIONS(1389), - [aux_sym_declare_statement_token2] = ACTIONS(1389), - [sym_float] = ACTIONS(1389), - [aux_sym_try_statement_token1] = ACTIONS(1389), - [aux_sym_goto_statement_token1] = ACTIONS(1389), - [aux_sym_continue_statement_token1] = ACTIONS(1389), - [aux_sym_break_statement_token1] = ACTIONS(1389), - [sym_integer] = ACTIONS(1389), - [aux_sym_return_statement_token1] = ACTIONS(1389), - [aux_sym_throw_expression_token1] = ACTIONS(1389), - [aux_sym_while_statement_token1] = ACTIONS(1389), - [aux_sym_while_statement_token2] = ACTIONS(1389), - [aux_sym_do_statement_token1] = ACTIONS(1389), - [aux_sym_for_statement_token1] = ACTIONS(1389), - [aux_sym_for_statement_token2] = ACTIONS(1389), - [aux_sym_foreach_statement_token1] = ACTIONS(1389), - [aux_sym_foreach_statement_token2] = ACTIONS(1389), - [aux_sym_if_statement_token1] = ACTIONS(1389), - [aux_sym_if_statement_token2] = ACTIONS(1389), - [aux_sym_else_if_clause_token1] = ACTIONS(1389), - [aux_sym_else_clause_token1] = ACTIONS(1389), - [aux_sym_match_expression_token1] = ACTIONS(1389), - [aux_sym_match_default_expression_token1] = ACTIONS(1389), - [aux_sym_switch_statement_token1] = ACTIONS(1389), - [aux_sym_switch_block_token1] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_AT] = ACTIONS(1387), - [aux_sym_clone_expression_token1] = ACTIONS(1389), - [aux_sym_print_intrinsic_token1] = ACTIONS(1389), - [aux_sym_object_creation_expression_token1] = ACTIONS(1389), - [anon_sym_DASH_DASH] = ACTIONS(1387), - [anon_sym_PLUS_PLUS] = ACTIONS(1387), - [aux_sym__list_destructing_token1] = ACTIONS(1389), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_self] = ACTIONS(1389), - [anon_sym_parent] = ACTIONS(1389), - [aux_sym__argument_name_token1] = ACTIONS(1389), - [aux_sym__argument_name_token2] = ACTIONS(1389), - [anon_sym_POUND_LBRACK] = ACTIONS(1387), - [aux_sym_encapsed_string_token1] = ACTIONS(1387), - [anon_sym_DQUOTE] = ACTIONS(1387), - [aux_sym_string_token1] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1387), - [anon_sym_LT_LT_LT] = ACTIONS(1387), - [anon_sym_BQUOTE] = ACTIONS(1387), - [anon_sym_DOLLAR] = ACTIONS(1387), - [aux_sym_yield_expression_token1] = ACTIONS(1389), - [aux_sym_include_expression_token1] = ACTIONS(1389), - [aux_sym_include_once_expression_token1] = ACTIONS(1389), - [aux_sym_require_expression_token1] = ACTIONS(1389), - [aux_sym_require_once_expression_token1] = ACTIONS(1389), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [aux_sym__list_destructing_token1] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_self] = ACTIONS(1384), + [anon_sym_parent] = ACTIONS(1384), + [aux_sym__argument_name_token1] = ACTIONS(1384), + [aux_sym__argument_name_token2] = ACTIONS(1384), + [anon_sym_POUND_LBRACK] = ACTIONS(1382), + [aux_sym_encapsed_string_token1] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [aux_sym_string_token1] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_LT_LT_LT] = ACTIONS(1382), + [anon_sym_BQUOTE] = ACTIONS(1382), + [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), }, [521] = { - [ts_builtin_sym_end] = ACTIONS(1391), - [sym_name] = ACTIONS(1393), - [anon_sym_QMARK_GT] = ACTIONS(1391), - [anon_sym_SEMI] = ACTIONS(1391), - [aux_sym_function_static_declaration_token1] = ACTIONS(1393), - [aux_sym_global_declaration_token1] = ACTIONS(1393), - [aux_sym_namespace_definition_token1] = ACTIONS(1393), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1393), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1393), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1393), - [anon_sym_BSLASH] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_RBRACE] = ACTIONS(1391), - [aux_sym_trait_declaration_token1] = ACTIONS(1393), - [aux_sym_interface_declaration_token1] = ACTIONS(1393), - [aux_sym_enum_declaration_token1] = ACTIONS(1393), - [aux_sym_enum_case_token1] = ACTIONS(1393), - [aux_sym_class_declaration_token1] = ACTIONS(1393), - [aux_sym_final_modifier_token1] = ACTIONS(1393), - [aux_sym_abstract_modifier_token1] = ACTIONS(1393), - [aux_sym_readonly_modifier_token1] = ACTIONS(1393), - [aux_sym_visibility_modifier_token1] = ACTIONS(1393), - [aux_sym_visibility_modifier_token2] = ACTIONS(1393), - [aux_sym_visibility_modifier_token3] = ACTIONS(1393), - [aux_sym__arrow_function_header_token1] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1391), - [aux_sym_cast_type_token1] = ACTIONS(1393), - [aux_sym_echo_statement_token1] = ACTIONS(1393), - [aux_sym_exit_statement_token1] = ACTIONS(1393), - [anon_sym_unset] = ACTIONS(1393), - [aux_sym_declare_statement_token1] = ACTIONS(1393), - [aux_sym_declare_statement_token2] = ACTIONS(1393), - [sym_float] = ACTIONS(1393), - [aux_sym_try_statement_token1] = ACTIONS(1393), - [aux_sym_goto_statement_token1] = ACTIONS(1393), - [aux_sym_continue_statement_token1] = ACTIONS(1393), - [aux_sym_break_statement_token1] = ACTIONS(1393), - [sym_integer] = ACTIONS(1393), - [aux_sym_return_statement_token1] = ACTIONS(1393), - [aux_sym_throw_expression_token1] = ACTIONS(1393), - [aux_sym_while_statement_token1] = ACTIONS(1393), - [aux_sym_while_statement_token2] = ACTIONS(1393), - [aux_sym_do_statement_token1] = ACTIONS(1393), - [aux_sym_for_statement_token1] = ACTIONS(1393), - [aux_sym_for_statement_token2] = ACTIONS(1393), - [aux_sym_foreach_statement_token1] = ACTIONS(1393), - [aux_sym_foreach_statement_token2] = ACTIONS(1393), - [aux_sym_if_statement_token1] = ACTIONS(1393), - [aux_sym_if_statement_token2] = ACTIONS(1393), - [aux_sym_else_if_clause_token1] = ACTIONS(1393), - [aux_sym_else_clause_token1] = ACTIONS(1393), - [aux_sym_match_expression_token1] = ACTIONS(1393), - [aux_sym_match_default_expression_token1] = ACTIONS(1393), - [aux_sym_switch_statement_token1] = ACTIONS(1393), - [aux_sym_switch_block_token1] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1393), - [anon_sym_DASH] = ACTIONS(1393), - [anon_sym_TILDE] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1391), - [aux_sym_clone_expression_token1] = ACTIONS(1393), - [aux_sym_print_intrinsic_token1] = ACTIONS(1393), - [aux_sym_object_creation_expression_token1] = ACTIONS(1393), - [anon_sym_DASH_DASH] = ACTIONS(1391), - [anon_sym_PLUS_PLUS] = ACTIONS(1391), - [aux_sym__list_destructing_token1] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_self] = ACTIONS(1393), - [anon_sym_parent] = ACTIONS(1393), - [aux_sym__argument_name_token1] = ACTIONS(1393), - [aux_sym__argument_name_token2] = ACTIONS(1393), - [anon_sym_POUND_LBRACK] = ACTIONS(1391), - [aux_sym_encapsed_string_token1] = ACTIONS(1391), - [anon_sym_DQUOTE] = ACTIONS(1391), - [aux_sym_string_token1] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1391), - [anon_sym_LT_LT_LT] = ACTIONS(1391), - [anon_sym_BQUOTE] = ACTIONS(1391), - [anon_sym_DOLLAR] = ACTIONS(1391), - [aux_sym_yield_expression_token1] = ACTIONS(1393), - [aux_sym_include_expression_token1] = ACTIONS(1393), - [aux_sym_include_once_expression_token1] = ACTIONS(1393), - [aux_sym_require_expression_token1] = ACTIONS(1393), - [aux_sym_require_once_expression_token1] = ACTIONS(1393), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [aux_sym__list_destructing_token1] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1386), + [anon_sym_self] = ACTIONS(1388), + [anon_sym_parent] = ACTIONS(1388), + [aux_sym__argument_name_token1] = ACTIONS(1388), + [aux_sym__argument_name_token2] = ACTIONS(1388), + [anon_sym_POUND_LBRACK] = ACTIONS(1386), + [aux_sym_encapsed_string_token1] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1386), + [aux_sym_string_token1] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_LT_LT_LT] = ACTIONS(1386), + [anon_sym_BQUOTE] = ACTIONS(1386), + [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), }, [522] = { - [ts_builtin_sym_end] = ACTIONS(1395), - [sym_name] = ACTIONS(1397), - [anon_sym_QMARK_GT] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1395), - [aux_sym_function_static_declaration_token1] = ACTIONS(1397), - [aux_sym_global_declaration_token1] = ACTIONS(1397), - [aux_sym_namespace_definition_token1] = ACTIONS(1397), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1397), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1397), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1397), - [anon_sym_BSLASH] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [aux_sym_trait_declaration_token1] = ACTIONS(1397), - [aux_sym_interface_declaration_token1] = ACTIONS(1397), - [aux_sym_enum_declaration_token1] = ACTIONS(1397), - [aux_sym_enum_case_token1] = ACTIONS(1397), - [aux_sym_class_declaration_token1] = ACTIONS(1397), - [aux_sym_final_modifier_token1] = ACTIONS(1397), - [aux_sym_abstract_modifier_token1] = ACTIONS(1397), - [aux_sym_readonly_modifier_token1] = ACTIONS(1397), - [aux_sym_visibility_modifier_token1] = ACTIONS(1397), - [aux_sym_visibility_modifier_token2] = ACTIONS(1397), - [aux_sym_visibility_modifier_token3] = ACTIONS(1397), - [aux_sym__arrow_function_header_token1] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1395), - [aux_sym_cast_type_token1] = ACTIONS(1397), - [aux_sym_echo_statement_token1] = ACTIONS(1397), - [aux_sym_exit_statement_token1] = ACTIONS(1397), - [anon_sym_unset] = ACTIONS(1397), - [aux_sym_declare_statement_token1] = ACTIONS(1397), - [aux_sym_declare_statement_token2] = ACTIONS(1397), - [sym_float] = ACTIONS(1397), - [aux_sym_try_statement_token1] = ACTIONS(1397), - [aux_sym_goto_statement_token1] = ACTIONS(1397), - [aux_sym_continue_statement_token1] = ACTIONS(1397), - [aux_sym_break_statement_token1] = ACTIONS(1397), - [sym_integer] = ACTIONS(1397), - [aux_sym_return_statement_token1] = ACTIONS(1397), - [aux_sym_throw_expression_token1] = ACTIONS(1397), - [aux_sym_while_statement_token1] = ACTIONS(1397), - [aux_sym_while_statement_token2] = ACTIONS(1397), - [aux_sym_do_statement_token1] = ACTIONS(1397), - [aux_sym_for_statement_token1] = ACTIONS(1397), - [aux_sym_for_statement_token2] = ACTIONS(1397), - [aux_sym_foreach_statement_token1] = ACTIONS(1397), - [aux_sym_foreach_statement_token2] = ACTIONS(1397), - [aux_sym_if_statement_token1] = ACTIONS(1397), - [aux_sym_if_statement_token2] = ACTIONS(1397), - [aux_sym_else_if_clause_token1] = ACTIONS(1397), - [aux_sym_else_clause_token1] = ACTIONS(1397), - [aux_sym_match_expression_token1] = ACTIONS(1397), - [aux_sym_match_default_expression_token1] = ACTIONS(1397), - [aux_sym_switch_statement_token1] = ACTIONS(1397), - [aux_sym_switch_block_token1] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1395), - [aux_sym_clone_expression_token1] = ACTIONS(1397), - [aux_sym_print_intrinsic_token1] = ACTIONS(1397), - [aux_sym_object_creation_expression_token1] = ACTIONS(1397), - [anon_sym_DASH_DASH] = ACTIONS(1395), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [aux_sym__list_destructing_token1] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_self] = ACTIONS(1397), - [anon_sym_parent] = ACTIONS(1397), - [aux_sym__argument_name_token1] = ACTIONS(1397), - [aux_sym__argument_name_token2] = ACTIONS(1397), - [anon_sym_POUND_LBRACK] = ACTIONS(1395), - [aux_sym_encapsed_string_token1] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [aux_sym_string_token1] = ACTIONS(1395), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_LT_LT_LT] = ACTIONS(1395), - [anon_sym_BQUOTE] = ACTIONS(1395), - [anon_sym_DOLLAR] = ACTIONS(1395), - [aux_sym_yield_expression_token1] = ACTIONS(1397), - [aux_sym_include_expression_token1] = ACTIONS(1397), - [aux_sym_include_once_expression_token1] = ACTIONS(1397), - [aux_sym_require_expression_token1] = ACTIONS(1397), - [aux_sym_require_once_expression_token1] = ACTIONS(1397), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [aux_sym__list_destructing_token1] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_self] = ACTIONS(1392), + [anon_sym_parent] = ACTIONS(1392), + [aux_sym__argument_name_token1] = ACTIONS(1392), + [aux_sym__argument_name_token2] = ACTIONS(1392), + [anon_sym_POUND_LBRACK] = ACTIONS(1390), + [aux_sym_encapsed_string_token1] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [aux_sym_string_token1] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_LT_LT_LT] = ACTIONS(1390), + [anon_sym_BQUOTE] = ACTIONS(1390), + [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), }, [523] = { - [ts_builtin_sym_end] = ACTIONS(1399), - [sym_name] = ACTIONS(1401), - [anon_sym_QMARK_GT] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1399), - [aux_sym_function_static_declaration_token1] = ACTIONS(1401), - [aux_sym_global_declaration_token1] = ACTIONS(1401), - [aux_sym_namespace_definition_token1] = ACTIONS(1401), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1401), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1401), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1401), - [anon_sym_BSLASH] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [aux_sym_trait_declaration_token1] = ACTIONS(1401), - [aux_sym_interface_declaration_token1] = ACTIONS(1401), - [aux_sym_enum_declaration_token1] = ACTIONS(1401), - [aux_sym_enum_case_token1] = ACTIONS(1401), - [aux_sym_class_declaration_token1] = ACTIONS(1401), - [aux_sym_final_modifier_token1] = ACTIONS(1401), - [aux_sym_abstract_modifier_token1] = ACTIONS(1401), - [aux_sym_readonly_modifier_token1] = ACTIONS(1401), - [aux_sym_visibility_modifier_token1] = ACTIONS(1401), - [aux_sym_visibility_modifier_token2] = ACTIONS(1401), - [aux_sym_visibility_modifier_token3] = ACTIONS(1401), - [aux_sym__arrow_function_header_token1] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1399), - [aux_sym_cast_type_token1] = ACTIONS(1401), - [aux_sym_echo_statement_token1] = ACTIONS(1401), - [aux_sym_exit_statement_token1] = ACTIONS(1401), - [anon_sym_unset] = ACTIONS(1401), - [aux_sym_declare_statement_token1] = ACTIONS(1401), - [aux_sym_declare_statement_token2] = ACTIONS(1401), - [sym_float] = ACTIONS(1401), - [aux_sym_try_statement_token1] = ACTIONS(1401), - [aux_sym_goto_statement_token1] = ACTIONS(1401), - [aux_sym_continue_statement_token1] = ACTIONS(1401), - [aux_sym_break_statement_token1] = ACTIONS(1401), - [sym_integer] = ACTIONS(1401), - [aux_sym_return_statement_token1] = ACTIONS(1401), - [aux_sym_throw_expression_token1] = ACTIONS(1401), - [aux_sym_while_statement_token1] = ACTIONS(1401), - [aux_sym_while_statement_token2] = ACTIONS(1401), - [aux_sym_do_statement_token1] = ACTIONS(1401), - [aux_sym_for_statement_token1] = ACTIONS(1401), - [aux_sym_for_statement_token2] = ACTIONS(1401), - [aux_sym_foreach_statement_token1] = ACTIONS(1401), - [aux_sym_foreach_statement_token2] = ACTIONS(1401), - [aux_sym_if_statement_token1] = ACTIONS(1401), - [aux_sym_if_statement_token2] = ACTIONS(1401), - [aux_sym_else_if_clause_token1] = ACTIONS(1401), - [aux_sym_else_clause_token1] = ACTIONS(1401), - [aux_sym_match_expression_token1] = ACTIONS(1401), - [aux_sym_match_default_expression_token1] = ACTIONS(1401), - [aux_sym_switch_statement_token1] = ACTIONS(1401), - [aux_sym_switch_block_token1] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1399), - [anon_sym_AT] = ACTIONS(1399), - [aux_sym_clone_expression_token1] = ACTIONS(1401), - [aux_sym_print_intrinsic_token1] = ACTIONS(1401), - [aux_sym_object_creation_expression_token1] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [aux_sym__list_destructing_token1] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_self] = ACTIONS(1401), - [anon_sym_parent] = ACTIONS(1401), - [aux_sym__argument_name_token1] = ACTIONS(1401), - [aux_sym__argument_name_token2] = ACTIONS(1401), - [anon_sym_POUND_LBRACK] = ACTIONS(1399), - [aux_sym_encapsed_string_token1] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_SQUOTE] = ACTIONS(1399), - [anon_sym_LT_LT_LT] = ACTIONS(1399), - [anon_sym_BQUOTE] = ACTIONS(1399), - [anon_sym_DOLLAR] = ACTIONS(1399), - [aux_sym_yield_expression_token1] = ACTIONS(1401), - [aux_sym_include_expression_token1] = ACTIONS(1401), - [aux_sym_include_once_expression_token1] = ACTIONS(1401), - [aux_sym_require_expression_token1] = ACTIONS(1401), - [aux_sym_require_once_expression_token1] = ACTIONS(1401), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [aux_sym__list_destructing_token1] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_self] = ACTIONS(1396), + [anon_sym_parent] = ACTIONS(1396), + [aux_sym__argument_name_token1] = ACTIONS(1396), + [aux_sym__argument_name_token2] = ACTIONS(1396), + [anon_sym_POUND_LBRACK] = ACTIONS(1394), + [aux_sym_encapsed_string_token1] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [aux_sym_string_token1] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [anon_sym_LT_LT_LT] = ACTIONS(1394), + [anon_sym_BQUOTE] = ACTIONS(1394), + [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), }, [524] = { - [ts_builtin_sym_end] = ACTIONS(1403), - [sym_name] = ACTIONS(1405), - [anon_sym_QMARK_GT] = ACTIONS(1403), - [anon_sym_SEMI] = ACTIONS(1403), - [aux_sym_function_static_declaration_token1] = ACTIONS(1405), - [aux_sym_global_declaration_token1] = ACTIONS(1405), - [aux_sym_namespace_definition_token1] = ACTIONS(1405), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1405), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1405), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1405), - [anon_sym_BSLASH] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [aux_sym_trait_declaration_token1] = ACTIONS(1405), - [aux_sym_interface_declaration_token1] = ACTIONS(1405), - [aux_sym_enum_declaration_token1] = ACTIONS(1405), - [aux_sym_enum_case_token1] = ACTIONS(1405), - [aux_sym_class_declaration_token1] = ACTIONS(1405), - [aux_sym_final_modifier_token1] = ACTIONS(1405), - [aux_sym_abstract_modifier_token1] = ACTIONS(1405), - [aux_sym_readonly_modifier_token1] = ACTIONS(1405), - [aux_sym_visibility_modifier_token1] = ACTIONS(1405), - [aux_sym_visibility_modifier_token2] = ACTIONS(1405), - [aux_sym_visibility_modifier_token3] = ACTIONS(1405), - [aux_sym__arrow_function_header_token1] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1403), - [aux_sym_cast_type_token1] = ACTIONS(1405), - [aux_sym_echo_statement_token1] = ACTIONS(1405), - [aux_sym_exit_statement_token1] = ACTIONS(1405), - [anon_sym_unset] = ACTIONS(1405), - [aux_sym_declare_statement_token1] = ACTIONS(1405), - [aux_sym_declare_statement_token2] = ACTIONS(1405), - [sym_float] = ACTIONS(1405), - [aux_sym_try_statement_token1] = ACTIONS(1405), - [aux_sym_goto_statement_token1] = ACTIONS(1405), - [aux_sym_continue_statement_token1] = ACTIONS(1405), - [aux_sym_break_statement_token1] = ACTIONS(1405), - [sym_integer] = ACTIONS(1405), - [aux_sym_return_statement_token1] = ACTIONS(1405), - [aux_sym_throw_expression_token1] = ACTIONS(1405), - [aux_sym_while_statement_token1] = ACTIONS(1405), - [aux_sym_while_statement_token2] = ACTIONS(1405), - [aux_sym_do_statement_token1] = ACTIONS(1405), - [aux_sym_for_statement_token1] = ACTIONS(1405), - [aux_sym_for_statement_token2] = ACTIONS(1405), - [aux_sym_foreach_statement_token1] = ACTIONS(1405), - [aux_sym_foreach_statement_token2] = ACTIONS(1405), - [aux_sym_if_statement_token1] = ACTIONS(1405), - [aux_sym_if_statement_token2] = ACTIONS(1405), - [aux_sym_else_if_clause_token1] = ACTIONS(1405), - [aux_sym_else_clause_token1] = ACTIONS(1405), - [aux_sym_match_expression_token1] = ACTIONS(1405), - [aux_sym_match_default_expression_token1] = ACTIONS(1405), - [aux_sym_switch_statement_token1] = ACTIONS(1405), - [aux_sym_switch_block_token1] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_AT] = ACTIONS(1403), - [aux_sym_clone_expression_token1] = ACTIONS(1405), - [aux_sym_print_intrinsic_token1] = ACTIONS(1405), - [aux_sym_object_creation_expression_token1] = ACTIONS(1405), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [aux_sym__list_destructing_token1] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1403), - [anon_sym_self] = ACTIONS(1405), - [anon_sym_parent] = ACTIONS(1405), - [aux_sym__argument_name_token1] = ACTIONS(1405), - [aux_sym__argument_name_token2] = ACTIONS(1405), - [anon_sym_POUND_LBRACK] = ACTIONS(1403), - [aux_sym_encapsed_string_token1] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [aux_sym_string_token1] = ACTIONS(1403), - [anon_sym_SQUOTE] = ACTIONS(1403), - [anon_sym_LT_LT_LT] = ACTIONS(1403), - [anon_sym_BQUOTE] = ACTIONS(1403), - [anon_sym_DOLLAR] = ACTIONS(1403), - [aux_sym_yield_expression_token1] = ACTIONS(1405), - [aux_sym_include_expression_token1] = ACTIONS(1405), - [aux_sym_include_once_expression_token1] = ACTIONS(1405), - [aux_sym_require_expression_token1] = ACTIONS(1405), - [aux_sym_require_once_expression_token1] = ACTIONS(1405), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1290), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1290), + [anon_sym_PLUS_PLUS] = ACTIONS(1290), + [aux_sym__list_destructing_token1] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1290), + [anon_sym_self] = ACTIONS(1292), + [anon_sym_parent] = ACTIONS(1292), + [aux_sym__argument_name_token1] = ACTIONS(1292), + [aux_sym__argument_name_token2] = ACTIONS(1292), + [anon_sym_POUND_LBRACK] = ACTIONS(1290), + [aux_sym_encapsed_string_token1] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [aux_sym_string_token1] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1290), + [anon_sym_LT_LT_LT] = ACTIONS(1290), + [anon_sym_BQUOTE] = ACTIONS(1290), + [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), }, [525] = { - [ts_builtin_sym_end] = ACTIONS(1407), - [sym_name] = ACTIONS(1409), - [anon_sym_QMARK_GT] = ACTIONS(1407), - [anon_sym_SEMI] = ACTIONS(1407), - [aux_sym_function_static_declaration_token1] = ACTIONS(1409), - [aux_sym_global_declaration_token1] = ACTIONS(1409), - [aux_sym_namespace_definition_token1] = ACTIONS(1409), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1409), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1409), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1409), - [anon_sym_BSLASH] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1407), - [aux_sym_trait_declaration_token1] = ACTIONS(1409), - [aux_sym_interface_declaration_token1] = ACTIONS(1409), - [aux_sym_enum_declaration_token1] = ACTIONS(1409), - [aux_sym_enum_case_token1] = ACTIONS(1409), - [aux_sym_class_declaration_token1] = ACTIONS(1409), - [aux_sym_final_modifier_token1] = ACTIONS(1409), - [aux_sym_abstract_modifier_token1] = ACTIONS(1409), - [aux_sym_readonly_modifier_token1] = ACTIONS(1409), - [aux_sym_visibility_modifier_token1] = ACTIONS(1409), - [aux_sym_visibility_modifier_token2] = ACTIONS(1409), - [aux_sym_visibility_modifier_token3] = ACTIONS(1409), - [aux_sym__arrow_function_header_token1] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1407), - [aux_sym_cast_type_token1] = ACTIONS(1409), - [aux_sym_echo_statement_token1] = ACTIONS(1409), - [aux_sym_exit_statement_token1] = ACTIONS(1409), - [anon_sym_unset] = ACTIONS(1409), - [aux_sym_declare_statement_token1] = ACTIONS(1409), - [aux_sym_declare_statement_token2] = ACTIONS(1409), - [sym_float] = ACTIONS(1409), - [aux_sym_try_statement_token1] = ACTIONS(1409), - [aux_sym_goto_statement_token1] = ACTIONS(1409), - [aux_sym_continue_statement_token1] = ACTIONS(1409), - [aux_sym_break_statement_token1] = ACTIONS(1409), - [sym_integer] = ACTIONS(1409), - [aux_sym_return_statement_token1] = ACTIONS(1409), - [aux_sym_throw_expression_token1] = ACTIONS(1409), - [aux_sym_while_statement_token1] = ACTIONS(1409), - [aux_sym_while_statement_token2] = ACTIONS(1409), - [aux_sym_do_statement_token1] = ACTIONS(1409), - [aux_sym_for_statement_token1] = ACTIONS(1409), - [aux_sym_for_statement_token2] = ACTIONS(1409), - [aux_sym_foreach_statement_token1] = ACTIONS(1409), - [aux_sym_foreach_statement_token2] = ACTIONS(1409), - [aux_sym_if_statement_token1] = ACTIONS(1409), - [aux_sym_if_statement_token2] = ACTIONS(1409), - [aux_sym_else_if_clause_token1] = ACTIONS(1409), - [aux_sym_else_clause_token1] = ACTIONS(1409), - [aux_sym_match_expression_token1] = ACTIONS(1409), - [aux_sym_match_default_expression_token1] = ACTIONS(1409), - [aux_sym_switch_statement_token1] = ACTIONS(1409), - [aux_sym_switch_block_token1] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_AT] = ACTIONS(1407), - [aux_sym_clone_expression_token1] = ACTIONS(1409), - [aux_sym_print_intrinsic_token1] = ACTIONS(1409), - [aux_sym_object_creation_expression_token1] = ACTIONS(1409), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [aux_sym__list_destructing_token1] = ACTIONS(1409), - [anon_sym_LBRACK] = ACTIONS(1407), - [anon_sym_self] = ACTIONS(1409), - [anon_sym_parent] = ACTIONS(1409), - [aux_sym__argument_name_token1] = ACTIONS(1409), - [aux_sym__argument_name_token2] = ACTIONS(1409), - [anon_sym_POUND_LBRACK] = ACTIONS(1407), - [aux_sym_encapsed_string_token1] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1407), - [aux_sym_string_token1] = ACTIONS(1407), - [anon_sym_SQUOTE] = ACTIONS(1407), - [anon_sym_LT_LT_LT] = ACTIONS(1407), - [anon_sym_BQUOTE] = ACTIONS(1407), - [anon_sym_DOLLAR] = ACTIONS(1407), - [aux_sym_yield_expression_token1] = ACTIONS(1409), - [aux_sym_include_expression_token1] = ACTIONS(1409), - [aux_sym_include_once_expression_token1] = ACTIONS(1409), - [aux_sym_require_expression_token1] = ACTIONS(1409), - [aux_sym_require_once_expression_token1] = ACTIONS(1409), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1398), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [aux_sym__list_destructing_token1] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_self] = ACTIONS(1400), + [anon_sym_parent] = ACTIONS(1400), + [aux_sym__argument_name_token1] = ACTIONS(1400), + [aux_sym__argument_name_token2] = ACTIONS(1400), + [anon_sym_POUND_LBRACK] = ACTIONS(1398), + [aux_sym_encapsed_string_token1] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [aux_sym_string_token1] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_LT_LT_LT] = ACTIONS(1398), + [anon_sym_BQUOTE] = ACTIONS(1398), + [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), }, [526] = { - [ts_builtin_sym_end] = ACTIONS(1411), - [sym_name] = ACTIONS(1413), - [anon_sym_QMARK_GT] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [aux_sym_function_static_declaration_token1] = ACTIONS(1413), - [aux_sym_global_declaration_token1] = ACTIONS(1413), - [aux_sym_namespace_definition_token1] = ACTIONS(1413), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1413), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1413), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1413), - [anon_sym_BSLASH] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [aux_sym_trait_declaration_token1] = ACTIONS(1413), - [aux_sym_interface_declaration_token1] = ACTIONS(1413), - [aux_sym_enum_declaration_token1] = ACTIONS(1413), - [aux_sym_enum_case_token1] = ACTIONS(1413), - [aux_sym_class_declaration_token1] = ACTIONS(1413), - [aux_sym_final_modifier_token1] = ACTIONS(1413), - [aux_sym_abstract_modifier_token1] = ACTIONS(1413), - [aux_sym_readonly_modifier_token1] = ACTIONS(1413), - [aux_sym_visibility_modifier_token1] = ACTIONS(1413), - [aux_sym_visibility_modifier_token2] = ACTIONS(1413), - [aux_sym_visibility_modifier_token3] = ACTIONS(1413), - [aux_sym__arrow_function_header_token1] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1411), - [aux_sym_cast_type_token1] = ACTIONS(1413), - [aux_sym_echo_statement_token1] = ACTIONS(1413), - [aux_sym_exit_statement_token1] = ACTIONS(1413), - [anon_sym_unset] = ACTIONS(1413), - [aux_sym_declare_statement_token1] = ACTIONS(1413), - [aux_sym_declare_statement_token2] = ACTIONS(1413), - [sym_float] = ACTIONS(1413), - [aux_sym_try_statement_token1] = ACTIONS(1413), - [aux_sym_goto_statement_token1] = ACTIONS(1413), - [aux_sym_continue_statement_token1] = ACTIONS(1413), - [aux_sym_break_statement_token1] = ACTIONS(1413), - [sym_integer] = ACTIONS(1413), - [aux_sym_return_statement_token1] = ACTIONS(1413), - [aux_sym_throw_expression_token1] = ACTIONS(1413), - [aux_sym_while_statement_token1] = ACTIONS(1413), - [aux_sym_while_statement_token2] = ACTIONS(1413), - [aux_sym_do_statement_token1] = ACTIONS(1413), - [aux_sym_for_statement_token1] = ACTIONS(1413), - [aux_sym_for_statement_token2] = ACTIONS(1413), - [aux_sym_foreach_statement_token1] = ACTIONS(1413), - [aux_sym_foreach_statement_token2] = ACTIONS(1413), - [aux_sym_if_statement_token1] = ACTIONS(1413), - [aux_sym_if_statement_token2] = ACTIONS(1413), - [aux_sym_else_if_clause_token1] = ACTIONS(1413), - [aux_sym_else_clause_token1] = ACTIONS(1413), - [aux_sym_match_expression_token1] = ACTIONS(1413), - [aux_sym_match_default_expression_token1] = ACTIONS(1413), - [aux_sym_switch_statement_token1] = ACTIONS(1413), - [aux_sym_switch_block_token1] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_AT] = ACTIONS(1411), - [aux_sym_clone_expression_token1] = ACTIONS(1413), - [aux_sym_print_intrinsic_token1] = ACTIONS(1413), - [aux_sym_object_creation_expression_token1] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [aux_sym__list_destructing_token1] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_self] = ACTIONS(1413), - [anon_sym_parent] = ACTIONS(1413), - [aux_sym__argument_name_token1] = ACTIONS(1413), - [aux_sym__argument_name_token2] = ACTIONS(1413), - [anon_sym_POUND_LBRACK] = ACTIONS(1411), - [aux_sym_encapsed_string_token1] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [aux_sym_string_token1] = ACTIONS(1411), - [anon_sym_SQUOTE] = ACTIONS(1411), - [anon_sym_LT_LT_LT] = ACTIONS(1411), - [anon_sym_BQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1411), - [aux_sym_yield_expression_token1] = ACTIONS(1413), - [aux_sym_include_expression_token1] = ACTIONS(1413), - [aux_sym_include_once_expression_token1] = ACTIONS(1413), - [aux_sym_require_expression_token1] = ACTIONS(1413), - [aux_sym_require_once_expression_token1] = ACTIONS(1413), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [aux_sym__list_destructing_token1] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_self] = ACTIONS(1404), + [anon_sym_parent] = ACTIONS(1404), + [aux_sym__argument_name_token1] = ACTIONS(1404), + [aux_sym__argument_name_token2] = ACTIONS(1404), + [anon_sym_POUND_LBRACK] = ACTIONS(1402), + [aux_sym_encapsed_string_token1] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1402), + [aux_sym_string_token1] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_LT_LT_LT] = ACTIONS(1402), + [anon_sym_BQUOTE] = ACTIONS(1402), + [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), }, [527] = { - [ts_builtin_sym_end] = ACTIONS(1415), - [sym_name] = ACTIONS(1417), - [anon_sym_QMARK_GT] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1415), - [aux_sym_function_static_declaration_token1] = ACTIONS(1417), - [aux_sym_global_declaration_token1] = ACTIONS(1417), - [aux_sym_namespace_definition_token1] = ACTIONS(1417), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1417), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1417), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1417), - [anon_sym_BSLASH] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_RBRACE] = ACTIONS(1415), - [aux_sym_trait_declaration_token1] = ACTIONS(1417), - [aux_sym_interface_declaration_token1] = ACTIONS(1417), - [aux_sym_enum_declaration_token1] = ACTIONS(1417), - [aux_sym_enum_case_token1] = ACTIONS(1417), - [aux_sym_class_declaration_token1] = ACTIONS(1417), - [aux_sym_final_modifier_token1] = ACTIONS(1417), - [aux_sym_abstract_modifier_token1] = ACTIONS(1417), - [aux_sym_readonly_modifier_token1] = ACTIONS(1417), - [aux_sym_visibility_modifier_token1] = ACTIONS(1417), - [aux_sym_visibility_modifier_token2] = ACTIONS(1417), - [aux_sym_visibility_modifier_token3] = ACTIONS(1417), - [aux_sym__arrow_function_header_token1] = ACTIONS(1417), - [anon_sym_LPAREN] = ACTIONS(1415), - [aux_sym_cast_type_token1] = ACTIONS(1417), - [aux_sym_echo_statement_token1] = ACTIONS(1417), - [aux_sym_exit_statement_token1] = ACTIONS(1417), - [anon_sym_unset] = ACTIONS(1417), - [aux_sym_declare_statement_token1] = ACTIONS(1417), - [aux_sym_declare_statement_token2] = ACTIONS(1417), - [sym_float] = ACTIONS(1417), - [aux_sym_try_statement_token1] = ACTIONS(1417), - [aux_sym_goto_statement_token1] = ACTIONS(1417), - [aux_sym_continue_statement_token1] = ACTIONS(1417), - [aux_sym_break_statement_token1] = ACTIONS(1417), - [sym_integer] = ACTIONS(1417), - [aux_sym_return_statement_token1] = ACTIONS(1417), - [aux_sym_throw_expression_token1] = ACTIONS(1417), - [aux_sym_while_statement_token1] = ACTIONS(1417), - [aux_sym_while_statement_token2] = ACTIONS(1417), - [aux_sym_do_statement_token1] = ACTIONS(1417), - [aux_sym_for_statement_token1] = ACTIONS(1417), - [aux_sym_for_statement_token2] = ACTIONS(1417), - [aux_sym_foreach_statement_token1] = ACTIONS(1417), - [aux_sym_foreach_statement_token2] = ACTIONS(1417), - [aux_sym_if_statement_token1] = ACTIONS(1417), - [aux_sym_if_statement_token2] = ACTIONS(1417), - [aux_sym_else_if_clause_token1] = ACTIONS(1417), - [aux_sym_else_clause_token1] = ACTIONS(1417), - [aux_sym_match_expression_token1] = ACTIONS(1417), - [aux_sym_match_default_expression_token1] = ACTIONS(1417), - [aux_sym_switch_statement_token1] = ACTIONS(1417), - [aux_sym_switch_block_token1] = ACTIONS(1417), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_AT] = ACTIONS(1415), - [aux_sym_clone_expression_token1] = ACTIONS(1417), - [aux_sym_print_intrinsic_token1] = ACTIONS(1417), - [aux_sym_object_creation_expression_token1] = ACTIONS(1417), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [aux_sym__list_destructing_token1] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_self] = ACTIONS(1417), - [anon_sym_parent] = ACTIONS(1417), - [aux_sym__argument_name_token1] = ACTIONS(1417), - [aux_sym__argument_name_token2] = ACTIONS(1417), - [anon_sym_POUND_LBRACK] = ACTIONS(1415), - [aux_sym_encapsed_string_token1] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1415), - [aux_sym_string_token1] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_LT_LT_LT] = ACTIONS(1415), - [anon_sym_BQUOTE] = ACTIONS(1415), - [anon_sym_DOLLAR] = ACTIONS(1415), - [aux_sym_yield_expression_token1] = ACTIONS(1417), - [aux_sym_include_expression_token1] = ACTIONS(1417), - [aux_sym_include_once_expression_token1] = ACTIONS(1417), - [aux_sym_require_expression_token1] = ACTIONS(1417), - [aux_sym_require_once_expression_token1] = ACTIONS(1417), + [ts_builtin_sym_end] = ACTIONS(1062), + [sym_name] = ACTIONS(1064), + [anon_sym_QMARK_GT] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [aux_sym_function_static_declaration_token1] = ACTIONS(1064), + [aux_sym_global_declaration_token1] = ACTIONS(1064), + [aux_sym_namespace_definition_token1] = ACTIONS(1064), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1064), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1064), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1064), + [anon_sym_BSLASH] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), + [aux_sym_trait_declaration_token1] = ACTIONS(1064), + [aux_sym_interface_declaration_token1] = ACTIONS(1064), + [aux_sym_enum_declaration_token1] = ACTIONS(1064), + [aux_sym_enum_case_token1] = ACTIONS(1064), + [aux_sym_class_declaration_token1] = ACTIONS(1064), + [aux_sym_final_modifier_token1] = ACTIONS(1064), + [aux_sym_abstract_modifier_token1] = ACTIONS(1064), + [aux_sym_readonly_modifier_token1] = ACTIONS(1064), + [sym_var_modifier] = ACTIONS(1064), + [aux_sym_visibility_modifier_token1] = ACTIONS(1064), + [aux_sym_visibility_modifier_token2] = ACTIONS(1064), + [aux_sym_visibility_modifier_token3] = ACTIONS(1064), + [aux_sym__arrow_function_header_token1] = ACTIONS(1064), + [anon_sym_LPAREN] = ACTIONS(1062), + [aux_sym_cast_type_token1] = ACTIONS(1064), + [aux_sym_echo_statement_token1] = ACTIONS(1064), + [aux_sym_exit_statement_token1] = ACTIONS(1064), + [anon_sym_unset] = ACTIONS(1064), + [aux_sym_declare_statement_token1] = ACTIONS(1064), + [aux_sym_declare_statement_token2] = ACTIONS(1064), + [sym_float] = ACTIONS(1064), + [aux_sym_try_statement_token1] = ACTIONS(1064), + [aux_sym_goto_statement_token1] = ACTIONS(1064), + [aux_sym_continue_statement_token1] = ACTIONS(1064), + [aux_sym_break_statement_token1] = ACTIONS(1064), + [sym_integer] = ACTIONS(1064), + [aux_sym_return_statement_token1] = ACTIONS(1064), + [aux_sym_throw_expression_token1] = ACTIONS(1064), + [aux_sym_while_statement_token1] = ACTIONS(1064), + [aux_sym_while_statement_token2] = ACTIONS(1064), + [aux_sym_do_statement_token1] = ACTIONS(1064), + [aux_sym_for_statement_token1] = ACTIONS(1064), + [aux_sym_for_statement_token2] = ACTIONS(1064), + [aux_sym_foreach_statement_token1] = ACTIONS(1064), + [aux_sym_foreach_statement_token2] = ACTIONS(1064), + [aux_sym_if_statement_token1] = ACTIONS(1064), + [aux_sym_if_statement_token2] = ACTIONS(1064), + [aux_sym_else_if_clause_token1] = ACTIONS(1064), + [aux_sym_else_clause_token1] = ACTIONS(1064), + [aux_sym_match_expression_token1] = ACTIONS(1064), + [aux_sym_match_default_expression_token1] = ACTIONS(1064), + [aux_sym_switch_statement_token1] = ACTIONS(1064), + [aux_sym_switch_block_token1] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(1062), + [aux_sym_clone_expression_token1] = ACTIONS(1064), + [aux_sym_print_intrinsic_token1] = ACTIONS(1064), + [aux_sym_object_creation_expression_token1] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [aux_sym__list_destructing_token1] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(1062), + [anon_sym_self] = ACTIONS(1064), + [anon_sym_parent] = ACTIONS(1064), + [aux_sym__argument_name_token1] = ACTIONS(1064), + [aux_sym__argument_name_token2] = ACTIONS(1064), + [anon_sym_POUND_LBRACK] = ACTIONS(1062), + [aux_sym_encapsed_string_token1] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [aux_sym_string_token1] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_LT_LT_LT] = ACTIONS(1062), + [anon_sym_BQUOTE] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1062), + [aux_sym_yield_expression_token1] = ACTIONS(1064), + [aux_sym_include_expression_token1] = ACTIONS(1064), + [aux_sym_include_once_expression_token1] = ACTIONS(1064), + [aux_sym_require_expression_token1] = ACTIONS(1064), + [aux_sym_require_once_expression_token1] = ACTIONS(1064), [sym_comment] = ACTIONS(3), }, [528] = { - [ts_builtin_sym_end] = ACTIONS(1419), - [sym_name] = ACTIONS(1421), - [anon_sym_QMARK_GT] = ACTIONS(1419), - [anon_sym_SEMI] = ACTIONS(1419), - [aux_sym_function_static_declaration_token1] = ACTIONS(1421), - [aux_sym_global_declaration_token1] = ACTIONS(1421), - [aux_sym_namespace_definition_token1] = ACTIONS(1421), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1421), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1421), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1421), - [anon_sym_BSLASH] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1419), - [aux_sym_trait_declaration_token1] = ACTIONS(1421), - [aux_sym_interface_declaration_token1] = ACTIONS(1421), - [aux_sym_enum_declaration_token1] = ACTIONS(1421), - [aux_sym_enum_case_token1] = ACTIONS(1421), - [aux_sym_class_declaration_token1] = ACTIONS(1421), - [aux_sym_final_modifier_token1] = ACTIONS(1421), - [aux_sym_abstract_modifier_token1] = ACTIONS(1421), - [aux_sym_readonly_modifier_token1] = ACTIONS(1421), - [aux_sym_visibility_modifier_token1] = ACTIONS(1421), - [aux_sym_visibility_modifier_token2] = ACTIONS(1421), - [aux_sym_visibility_modifier_token3] = ACTIONS(1421), - [aux_sym__arrow_function_header_token1] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(1419), - [aux_sym_cast_type_token1] = ACTIONS(1421), - [aux_sym_echo_statement_token1] = ACTIONS(1421), - [aux_sym_exit_statement_token1] = ACTIONS(1421), - [anon_sym_unset] = ACTIONS(1421), - [aux_sym_declare_statement_token1] = ACTIONS(1421), - [aux_sym_declare_statement_token2] = ACTIONS(1421), - [sym_float] = ACTIONS(1421), - [aux_sym_try_statement_token1] = ACTIONS(1421), - [aux_sym_goto_statement_token1] = ACTIONS(1421), - [aux_sym_continue_statement_token1] = ACTIONS(1421), - [aux_sym_break_statement_token1] = ACTIONS(1421), - [sym_integer] = ACTIONS(1421), - [aux_sym_return_statement_token1] = ACTIONS(1421), - [aux_sym_throw_expression_token1] = ACTIONS(1421), - [aux_sym_while_statement_token1] = ACTIONS(1421), - [aux_sym_while_statement_token2] = ACTIONS(1421), - [aux_sym_do_statement_token1] = ACTIONS(1421), - [aux_sym_for_statement_token1] = ACTIONS(1421), - [aux_sym_for_statement_token2] = ACTIONS(1421), - [aux_sym_foreach_statement_token1] = ACTIONS(1421), - [aux_sym_foreach_statement_token2] = ACTIONS(1421), - [aux_sym_if_statement_token1] = ACTIONS(1421), - [aux_sym_if_statement_token2] = ACTIONS(1421), - [aux_sym_else_if_clause_token1] = ACTIONS(1421), - [aux_sym_else_clause_token1] = ACTIONS(1421), - [aux_sym_match_expression_token1] = ACTIONS(1421), - [aux_sym_match_default_expression_token1] = ACTIONS(1421), - [aux_sym_switch_statement_token1] = ACTIONS(1421), - [aux_sym_switch_block_token1] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_AT] = ACTIONS(1419), - [aux_sym_clone_expression_token1] = ACTIONS(1421), - [aux_sym_print_intrinsic_token1] = ACTIONS(1421), - [aux_sym_object_creation_expression_token1] = ACTIONS(1421), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [aux_sym__list_destructing_token1] = ACTIONS(1421), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_self] = ACTIONS(1421), - [anon_sym_parent] = ACTIONS(1421), - [aux_sym__argument_name_token1] = ACTIONS(1421), - [aux_sym__argument_name_token2] = ACTIONS(1421), - [anon_sym_POUND_LBRACK] = ACTIONS(1419), - [aux_sym_encapsed_string_token1] = ACTIONS(1419), - [anon_sym_DQUOTE] = ACTIONS(1419), - [aux_sym_string_token1] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(1419), - [anon_sym_LT_LT_LT] = ACTIONS(1419), - [anon_sym_BQUOTE] = ACTIONS(1419), - [anon_sym_DOLLAR] = ACTIONS(1419), - [aux_sym_yield_expression_token1] = ACTIONS(1421), - [aux_sym_include_expression_token1] = ACTIONS(1421), - [aux_sym_include_once_expression_token1] = ACTIONS(1421), - [aux_sym_require_expression_token1] = ACTIONS(1421), - [aux_sym_require_once_expression_token1] = ACTIONS(1421), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1406), + [anon_sym_PLUS_PLUS] = ACTIONS(1406), + [aux_sym__list_destructing_token1] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1406), + [anon_sym_self] = ACTIONS(1408), + [anon_sym_parent] = ACTIONS(1408), + [aux_sym__argument_name_token1] = ACTIONS(1408), + [aux_sym__argument_name_token2] = ACTIONS(1408), + [anon_sym_POUND_LBRACK] = ACTIONS(1406), + [aux_sym_encapsed_string_token1] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [aux_sym_string_token1] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_LT_LT_LT] = ACTIONS(1406), + [anon_sym_BQUOTE] = ACTIONS(1406), + [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), }, [529] = { - [ts_builtin_sym_end] = ACTIONS(1423), - [sym_name] = ACTIONS(1425), - [anon_sym_QMARK_GT] = ACTIONS(1423), - [anon_sym_SEMI] = ACTIONS(1423), - [aux_sym_function_static_declaration_token1] = ACTIONS(1425), - [aux_sym_global_declaration_token1] = ACTIONS(1425), - [aux_sym_namespace_definition_token1] = ACTIONS(1425), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1425), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1425), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1425), - [anon_sym_BSLASH] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_RBRACE] = ACTIONS(1423), - [aux_sym_trait_declaration_token1] = ACTIONS(1425), - [aux_sym_interface_declaration_token1] = ACTIONS(1425), - [aux_sym_enum_declaration_token1] = ACTIONS(1425), - [aux_sym_enum_case_token1] = ACTIONS(1425), - [aux_sym_class_declaration_token1] = ACTIONS(1425), - [aux_sym_final_modifier_token1] = ACTIONS(1425), - [aux_sym_abstract_modifier_token1] = ACTIONS(1425), - [aux_sym_readonly_modifier_token1] = ACTIONS(1425), - [aux_sym_visibility_modifier_token1] = ACTIONS(1425), - [aux_sym_visibility_modifier_token2] = ACTIONS(1425), - [aux_sym_visibility_modifier_token3] = ACTIONS(1425), - [aux_sym__arrow_function_header_token1] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1423), - [aux_sym_cast_type_token1] = ACTIONS(1425), - [aux_sym_echo_statement_token1] = ACTIONS(1425), - [aux_sym_exit_statement_token1] = ACTIONS(1425), - [anon_sym_unset] = ACTIONS(1425), - [aux_sym_declare_statement_token1] = ACTIONS(1425), - [aux_sym_declare_statement_token2] = ACTIONS(1425), - [sym_float] = ACTIONS(1425), - [aux_sym_try_statement_token1] = ACTIONS(1425), - [aux_sym_goto_statement_token1] = ACTIONS(1425), - [aux_sym_continue_statement_token1] = ACTIONS(1425), - [aux_sym_break_statement_token1] = ACTIONS(1425), - [sym_integer] = ACTIONS(1425), - [aux_sym_return_statement_token1] = ACTIONS(1425), - [aux_sym_throw_expression_token1] = ACTIONS(1425), - [aux_sym_while_statement_token1] = ACTIONS(1425), - [aux_sym_while_statement_token2] = ACTIONS(1425), - [aux_sym_do_statement_token1] = ACTIONS(1425), - [aux_sym_for_statement_token1] = ACTIONS(1425), - [aux_sym_for_statement_token2] = ACTIONS(1425), - [aux_sym_foreach_statement_token1] = ACTIONS(1425), - [aux_sym_foreach_statement_token2] = ACTIONS(1425), - [aux_sym_if_statement_token1] = ACTIONS(1425), - [aux_sym_if_statement_token2] = ACTIONS(1425), - [aux_sym_else_if_clause_token1] = ACTIONS(1425), - [aux_sym_else_clause_token1] = ACTIONS(1425), - [aux_sym_match_expression_token1] = ACTIONS(1425), - [aux_sym_match_default_expression_token1] = ACTIONS(1425), - [aux_sym_switch_statement_token1] = ACTIONS(1425), - [aux_sym_switch_block_token1] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_TILDE] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_AT] = ACTIONS(1423), - [aux_sym_clone_expression_token1] = ACTIONS(1425), - [aux_sym_print_intrinsic_token1] = ACTIONS(1425), - [aux_sym_object_creation_expression_token1] = ACTIONS(1425), - [anon_sym_DASH_DASH] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [aux_sym__list_destructing_token1] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(1423), - [anon_sym_self] = ACTIONS(1425), - [anon_sym_parent] = ACTIONS(1425), - [aux_sym__argument_name_token1] = ACTIONS(1425), - [aux_sym__argument_name_token2] = ACTIONS(1425), - [anon_sym_POUND_LBRACK] = ACTIONS(1423), - [aux_sym_encapsed_string_token1] = ACTIONS(1423), - [anon_sym_DQUOTE] = ACTIONS(1423), - [aux_sym_string_token1] = ACTIONS(1423), - [anon_sym_SQUOTE] = ACTIONS(1423), - [anon_sym_LT_LT_LT] = ACTIONS(1423), - [anon_sym_BQUOTE] = ACTIONS(1423), - [anon_sym_DOLLAR] = ACTIONS(1423), - [aux_sym_yield_expression_token1] = ACTIONS(1425), - [aux_sym_include_expression_token1] = ACTIONS(1425), - [aux_sym_include_once_expression_token1] = ACTIONS(1425), - [aux_sym_require_expression_token1] = ACTIONS(1425), - [aux_sym_require_once_expression_token1] = ACTIONS(1425), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [aux_sym__list_destructing_token1] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_self] = ACTIONS(1404), + [anon_sym_parent] = ACTIONS(1404), + [aux_sym__argument_name_token1] = ACTIONS(1404), + [aux_sym__argument_name_token2] = ACTIONS(1404), + [anon_sym_POUND_LBRACK] = ACTIONS(1402), + [aux_sym_encapsed_string_token1] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1402), + [aux_sym_string_token1] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_LT_LT_LT] = ACTIONS(1402), + [anon_sym_BQUOTE] = ACTIONS(1402), + [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), }, [530] = { - [ts_builtin_sym_end] = ACTIONS(1351), - [sym_name] = ACTIONS(1353), - [anon_sym_QMARK_GT] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1351), - [aux_sym_function_static_declaration_token1] = ACTIONS(1353), - [aux_sym_global_declaration_token1] = ACTIONS(1353), - [aux_sym_namespace_definition_token1] = ACTIONS(1353), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1353), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1353), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1353), - [anon_sym_BSLASH] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1351), - [anon_sym_RBRACE] = ACTIONS(1351), - [aux_sym_trait_declaration_token1] = ACTIONS(1353), - [aux_sym_interface_declaration_token1] = ACTIONS(1353), - [aux_sym_enum_declaration_token1] = ACTIONS(1353), - [aux_sym_enum_case_token1] = ACTIONS(1353), - [aux_sym_class_declaration_token1] = ACTIONS(1353), - [aux_sym_final_modifier_token1] = ACTIONS(1353), - [aux_sym_abstract_modifier_token1] = ACTIONS(1353), - [aux_sym_readonly_modifier_token1] = ACTIONS(1353), - [aux_sym_visibility_modifier_token1] = ACTIONS(1353), - [aux_sym_visibility_modifier_token2] = ACTIONS(1353), - [aux_sym_visibility_modifier_token3] = ACTIONS(1353), - [aux_sym__arrow_function_header_token1] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1351), - [aux_sym_cast_type_token1] = ACTIONS(1353), - [aux_sym_echo_statement_token1] = ACTIONS(1353), - [aux_sym_exit_statement_token1] = ACTIONS(1353), - [anon_sym_unset] = ACTIONS(1353), - [aux_sym_declare_statement_token1] = ACTIONS(1353), - [aux_sym_declare_statement_token2] = ACTIONS(1353), - [sym_float] = ACTIONS(1353), - [aux_sym_try_statement_token1] = ACTIONS(1353), - [aux_sym_goto_statement_token1] = ACTIONS(1353), - [aux_sym_continue_statement_token1] = ACTIONS(1353), - [aux_sym_break_statement_token1] = ACTIONS(1353), - [sym_integer] = ACTIONS(1353), - [aux_sym_return_statement_token1] = ACTIONS(1353), - [aux_sym_throw_expression_token1] = ACTIONS(1353), - [aux_sym_while_statement_token1] = ACTIONS(1353), - [aux_sym_while_statement_token2] = ACTIONS(1353), - [aux_sym_do_statement_token1] = ACTIONS(1353), - [aux_sym_for_statement_token1] = ACTIONS(1353), - [aux_sym_for_statement_token2] = ACTIONS(1353), - [aux_sym_foreach_statement_token1] = ACTIONS(1353), - [aux_sym_foreach_statement_token2] = ACTIONS(1353), - [aux_sym_if_statement_token1] = ACTIONS(1353), - [aux_sym_if_statement_token2] = ACTIONS(1353), - [aux_sym_else_if_clause_token1] = ACTIONS(1353), - [aux_sym_else_clause_token1] = ACTIONS(1353), - [aux_sym_match_expression_token1] = ACTIONS(1353), - [aux_sym_match_default_expression_token1] = ACTIONS(1353), - [aux_sym_switch_statement_token1] = ACTIONS(1353), - [aux_sym_switch_block_token1] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1353), - [anon_sym_DASH] = ACTIONS(1353), - [anon_sym_TILDE] = ACTIONS(1351), - [anon_sym_BANG] = ACTIONS(1351), - [anon_sym_AT] = ACTIONS(1351), - [aux_sym_clone_expression_token1] = ACTIONS(1353), - [aux_sym_print_intrinsic_token1] = ACTIONS(1353), - [aux_sym_object_creation_expression_token1] = ACTIONS(1353), - [anon_sym_DASH_DASH] = ACTIONS(1351), - [anon_sym_PLUS_PLUS] = ACTIONS(1351), - [aux_sym__list_destructing_token1] = ACTIONS(1353), - [anon_sym_LBRACK] = ACTIONS(1351), - [anon_sym_self] = ACTIONS(1353), - [anon_sym_parent] = ACTIONS(1353), - [aux_sym__argument_name_token1] = ACTIONS(1353), - [aux_sym__argument_name_token2] = ACTIONS(1353), - [anon_sym_POUND_LBRACK] = ACTIONS(1351), - [aux_sym_encapsed_string_token1] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1351), - [aux_sym_string_token1] = ACTIONS(1351), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_LT_LT_LT] = ACTIONS(1351), - [anon_sym_BQUOTE] = ACTIONS(1351), - [anon_sym_DOLLAR] = ACTIONS(1351), - [aux_sym_yield_expression_token1] = ACTIONS(1353), - [aux_sym_include_expression_token1] = ACTIONS(1353), - [aux_sym_include_once_expression_token1] = ACTIONS(1353), - [aux_sym_require_expression_token1] = ACTIONS(1353), - [aux_sym_require_once_expression_token1] = ACTIONS(1353), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1410), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [aux_sym__list_destructing_token1] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1410), + [anon_sym_self] = ACTIONS(1412), + [anon_sym_parent] = ACTIONS(1412), + [aux_sym__argument_name_token1] = ACTIONS(1412), + [aux_sym__argument_name_token2] = ACTIONS(1412), + [anon_sym_POUND_LBRACK] = ACTIONS(1410), + [aux_sym_encapsed_string_token1] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [aux_sym_string_token1] = ACTIONS(1410), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_LT_LT_LT] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1410), + [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), }, [531] = { - [ts_builtin_sym_end] = ACTIONS(1427), - [sym_name] = ACTIONS(1429), - [anon_sym_QMARK_GT] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1427), - [aux_sym_function_static_declaration_token1] = ACTIONS(1429), - [aux_sym_global_declaration_token1] = ACTIONS(1429), - [aux_sym_namespace_definition_token1] = ACTIONS(1429), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1429), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1429), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1429), - [anon_sym_BSLASH] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1427), - [aux_sym_trait_declaration_token1] = ACTIONS(1429), - [aux_sym_interface_declaration_token1] = ACTIONS(1429), - [aux_sym_enum_declaration_token1] = ACTIONS(1429), - [aux_sym_enum_case_token1] = ACTIONS(1429), - [aux_sym_class_declaration_token1] = ACTIONS(1429), - [aux_sym_final_modifier_token1] = ACTIONS(1429), - [aux_sym_abstract_modifier_token1] = ACTIONS(1429), - [aux_sym_readonly_modifier_token1] = ACTIONS(1429), - [aux_sym_visibility_modifier_token1] = ACTIONS(1429), - [aux_sym_visibility_modifier_token2] = ACTIONS(1429), - [aux_sym_visibility_modifier_token3] = ACTIONS(1429), - [aux_sym__arrow_function_header_token1] = ACTIONS(1429), - [anon_sym_LPAREN] = ACTIONS(1427), - [aux_sym_cast_type_token1] = ACTIONS(1429), - [aux_sym_echo_statement_token1] = ACTIONS(1429), - [aux_sym_exit_statement_token1] = ACTIONS(1429), - [anon_sym_unset] = ACTIONS(1429), - [aux_sym_declare_statement_token1] = ACTIONS(1429), - [aux_sym_declare_statement_token2] = ACTIONS(1429), - [sym_float] = ACTIONS(1429), - [aux_sym_try_statement_token1] = ACTIONS(1429), - [aux_sym_goto_statement_token1] = ACTIONS(1429), - [aux_sym_continue_statement_token1] = ACTIONS(1429), - [aux_sym_break_statement_token1] = ACTIONS(1429), - [sym_integer] = ACTIONS(1429), - [aux_sym_return_statement_token1] = ACTIONS(1429), - [aux_sym_throw_expression_token1] = ACTIONS(1429), - [aux_sym_while_statement_token1] = ACTIONS(1429), - [aux_sym_while_statement_token2] = ACTIONS(1429), - [aux_sym_do_statement_token1] = ACTIONS(1429), - [aux_sym_for_statement_token1] = ACTIONS(1429), - [aux_sym_for_statement_token2] = ACTIONS(1429), - [aux_sym_foreach_statement_token1] = ACTIONS(1429), - [aux_sym_foreach_statement_token2] = ACTIONS(1429), - [aux_sym_if_statement_token1] = ACTIONS(1429), - [aux_sym_if_statement_token2] = ACTIONS(1429), - [aux_sym_else_if_clause_token1] = ACTIONS(1429), - [aux_sym_else_clause_token1] = ACTIONS(1429), - [aux_sym_match_expression_token1] = ACTIONS(1429), - [aux_sym_match_default_expression_token1] = ACTIONS(1429), - [aux_sym_switch_statement_token1] = ACTIONS(1429), - [aux_sym_switch_block_token1] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_TILDE] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_AT] = ACTIONS(1427), - [aux_sym_clone_expression_token1] = ACTIONS(1429), - [aux_sym_print_intrinsic_token1] = ACTIONS(1429), - [aux_sym_object_creation_expression_token1] = ACTIONS(1429), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [aux_sym__list_destructing_token1] = ACTIONS(1429), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_self] = ACTIONS(1429), - [anon_sym_parent] = ACTIONS(1429), - [aux_sym__argument_name_token1] = ACTIONS(1429), - [aux_sym__argument_name_token2] = ACTIONS(1429), - [anon_sym_POUND_LBRACK] = ACTIONS(1427), - [aux_sym_encapsed_string_token1] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1427), - [aux_sym_string_token1] = ACTIONS(1427), - [anon_sym_SQUOTE] = ACTIONS(1427), - [anon_sym_LT_LT_LT] = ACTIONS(1427), - [anon_sym_BQUOTE] = ACTIONS(1427), - [anon_sym_DOLLAR] = ACTIONS(1427), - [aux_sym_yield_expression_token1] = ACTIONS(1429), - [aux_sym_include_expression_token1] = ACTIONS(1429), - [aux_sym_include_once_expression_token1] = ACTIONS(1429), - [aux_sym_require_expression_token1] = ACTIONS(1429), - [aux_sym_require_once_expression_token1] = ACTIONS(1429), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__unary_expression] = STATE(925), + [sym_unary_op_expression] = STATE(925), + [sym_error_suppression_expression] = STATE(925), + [sym_clone_expression] = STATE(925), + [sym_primary_expression] = STATE(925), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(925), + [sym_cast_variable] = STATE(624), + [sym_member_access_expression] = STATE(624), + [sym_nullsafe_member_access_expression] = STATE(624), + [sym_scoped_property_access_expression] = STATE(624), + [sym_function_call_expression] = STATE(596), + [sym_scoped_call_expression] = STATE(596), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(596), + [sym_nullsafe_member_call_expression] = STATE(596), + [sym_subscript_expression] = STATE(596), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(596), + [sym_variable_name] = STATE(596), + [sym_include_expression] = STATE(925), + [sym_include_once_expression] = STATE(925), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(859), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(595), + [aux_sym_clone_expression_token1] = ACTIONS(597), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(625), + [aux_sym_include_once_expression_token1] = ACTIONS(627), [sym_comment] = ACTIONS(3), }, [532] = { - [ts_builtin_sym_end] = ACTIONS(1431), - [sym_name] = ACTIONS(1433), - [anon_sym_QMARK_GT] = ACTIONS(1431), - [anon_sym_SEMI] = ACTIONS(1431), - [aux_sym_function_static_declaration_token1] = ACTIONS(1433), - [aux_sym_global_declaration_token1] = ACTIONS(1433), - [aux_sym_namespace_definition_token1] = ACTIONS(1433), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1433), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1433), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1433), - [anon_sym_BSLASH] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1431), - [aux_sym_trait_declaration_token1] = ACTIONS(1433), - [aux_sym_interface_declaration_token1] = ACTIONS(1433), - [aux_sym_enum_declaration_token1] = ACTIONS(1433), - [aux_sym_enum_case_token1] = ACTIONS(1433), - [aux_sym_class_declaration_token1] = ACTIONS(1433), - [aux_sym_final_modifier_token1] = ACTIONS(1433), - [aux_sym_abstract_modifier_token1] = ACTIONS(1433), - [aux_sym_readonly_modifier_token1] = ACTIONS(1433), - [aux_sym_visibility_modifier_token1] = ACTIONS(1433), - [aux_sym_visibility_modifier_token2] = ACTIONS(1433), - [aux_sym_visibility_modifier_token3] = ACTIONS(1433), - [aux_sym__arrow_function_header_token1] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1431), - [aux_sym_cast_type_token1] = ACTIONS(1433), - [aux_sym_echo_statement_token1] = ACTIONS(1433), - [aux_sym_exit_statement_token1] = ACTIONS(1433), - [anon_sym_unset] = ACTIONS(1433), - [aux_sym_declare_statement_token1] = ACTIONS(1433), - [aux_sym_declare_statement_token2] = ACTIONS(1433), - [sym_float] = ACTIONS(1433), - [aux_sym_try_statement_token1] = ACTIONS(1433), - [aux_sym_goto_statement_token1] = ACTIONS(1433), - [aux_sym_continue_statement_token1] = ACTIONS(1433), - [aux_sym_break_statement_token1] = ACTIONS(1433), - [sym_integer] = ACTIONS(1433), - [aux_sym_return_statement_token1] = ACTIONS(1433), - [aux_sym_throw_expression_token1] = ACTIONS(1433), - [aux_sym_while_statement_token1] = ACTIONS(1433), - [aux_sym_while_statement_token2] = ACTIONS(1433), - [aux_sym_do_statement_token1] = ACTIONS(1433), - [aux_sym_for_statement_token1] = ACTIONS(1433), - [aux_sym_for_statement_token2] = ACTIONS(1433), - [aux_sym_foreach_statement_token1] = ACTIONS(1433), - [aux_sym_foreach_statement_token2] = ACTIONS(1433), - [aux_sym_if_statement_token1] = ACTIONS(1433), - [aux_sym_if_statement_token2] = ACTIONS(1433), - [aux_sym_else_if_clause_token1] = ACTIONS(1433), - [aux_sym_else_clause_token1] = ACTIONS(1433), - [aux_sym_match_expression_token1] = ACTIONS(1433), - [aux_sym_match_default_expression_token1] = ACTIONS(1433), - [aux_sym_switch_statement_token1] = ACTIONS(1433), - [aux_sym_switch_block_token1] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_TILDE] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1431), - [aux_sym_clone_expression_token1] = ACTIONS(1433), - [aux_sym_print_intrinsic_token1] = ACTIONS(1433), - [aux_sym_object_creation_expression_token1] = ACTIONS(1433), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [aux_sym__list_destructing_token1] = ACTIONS(1433), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_self] = ACTIONS(1433), - [anon_sym_parent] = ACTIONS(1433), - [aux_sym__argument_name_token1] = ACTIONS(1433), - [aux_sym__argument_name_token2] = ACTIONS(1433), - [anon_sym_POUND_LBRACK] = ACTIONS(1431), - [aux_sym_encapsed_string_token1] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(1431), - [aux_sym_string_token1] = ACTIONS(1431), - [anon_sym_SQUOTE] = ACTIONS(1431), - [anon_sym_LT_LT_LT] = ACTIONS(1431), - [anon_sym_BQUOTE] = ACTIONS(1431), - [anon_sym_DOLLAR] = ACTIONS(1431), - [aux_sym_yield_expression_token1] = ACTIONS(1433), - [aux_sym_include_expression_token1] = ACTIONS(1433), - [aux_sym_include_once_expression_token1] = ACTIONS(1433), - [aux_sym_require_expression_token1] = ACTIONS(1433), - [aux_sym_require_once_expression_token1] = ACTIONS(1433), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1414), + [anon_sym_PLUS_PLUS] = ACTIONS(1414), + [aux_sym__list_destructing_token1] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_self] = ACTIONS(1416), + [anon_sym_parent] = ACTIONS(1416), + [aux_sym__argument_name_token1] = ACTIONS(1416), + [aux_sym__argument_name_token2] = ACTIONS(1416), + [anon_sym_POUND_LBRACK] = ACTIONS(1414), + [aux_sym_encapsed_string_token1] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [aux_sym_string_token1] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_LT_LT_LT] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1414), + [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), }, [533] = { - [ts_builtin_sym_end] = ACTIONS(1435), - [sym_name] = ACTIONS(1437), - [anon_sym_QMARK_GT] = ACTIONS(1435), - [anon_sym_SEMI] = ACTIONS(1435), - [aux_sym_function_static_declaration_token1] = ACTIONS(1437), - [aux_sym_global_declaration_token1] = ACTIONS(1437), - [aux_sym_namespace_definition_token1] = ACTIONS(1437), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1437), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1437), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1437), - [anon_sym_BSLASH] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [aux_sym_trait_declaration_token1] = ACTIONS(1437), - [aux_sym_interface_declaration_token1] = ACTIONS(1437), - [aux_sym_enum_declaration_token1] = ACTIONS(1437), - [aux_sym_enum_case_token1] = ACTIONS(1437), - [aux_sym_class_declaration_token1] = ACTIONS(1437), - [aux_sym_final_modifier_token1] = ACTIONS(1437), - [aux_sym_abstract_modifier_token1] = ACTIONS(1437), - [aux_sym_readonly_modifier_token1] = ACTIONS(1437), - [aux_sym_visibility_modifier_token1] = ACTIONS(1437), - [aux_sym_visibility_modifier_token2] = ACTIONS(1437), - [aux_sym_visibility_modifier_token3] = ACTIONS(1437), - [aux_sym__arrow_function_header_token1] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1435), - [aux_sym_cast_type_token1] = ACTIONS(1437), - [aux_sym_echo_statement_token1] = ACTIONS(1437), - [aux_sym_exit_statement_token1] = ACTIONS(1437), - [anon_sym_unset] = ACTIONS(1437), - [aux_sym_declare_statement_token1] = ACTIONS(1437), - [aux_sym_declare_statement_token2] = ACTIONS(1437), - [sym_float] = ACTIONS(1437), - [aux_sym_try_statement_token1] = ACTIONS(1437), - [aux_sym_goto_statement_token1] = ACTIONS(1437), - [aux_sym_continue_statement_token1] = ACTIONS(1437), - [aux_sym_break_statement_token1] = ACTIONS(1437), - [sym_integer] = ACTIONS(1437), - [aux_sym_return_statement_token1] = ACTIONS(1437), - [aux_sym_throw_expression_token1] = ACTIONS(1437), - [aux_sym_while_statement_token1] = ACTIONS(1437), - [aux_sym_while_statement_token2] = ACTIONS(1437), - [aux_sym_do_statement_token1] = ACTIONS(1437), - [aux_sym_for_statement_token1] = ACTIONS(1437), - [aux_sym_for_statement_token2] = ACTIONS(1437), - [aux_sym_foreach_statement_token1] = ACTIONS(1437), - [aux_sym_foreach_statement_token2] = ACTIONS(1437), - [aux_sym_if_statement_token1] = ACTIONS(1437), - [aux_sym_if_statement_token2] = ACTIONS(1437), - [aux_sym_else_if_clause_token1] = ACTIONS(1437), - [aux_sym_else_clause_token1] = ACTIONS(1437), - [aux_sym_match_expression_token1] = ACTIONS(1437), - [aux_sym_match_default_expression_token1] = ACTIONS(1437), - [aux_sym_switch_statement_token1] = ACTIONS(1437), - [aux_sym_switch_block_token1] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_AT] = ACTIONS(1435), - [aux_sym_clone_expression_token1] = ACTIONS(1437), - [aux_sym_print_intrinsic_token1] = ACTIONS(1437), - [aux_sym_object_creation_expression_token1] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [aux_sym__list_destructing_token1] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1435), - [anon_sym_self] = ACTIONS(1437), - [anon_sym_parent] = ACTIONS(1437), - [aux_sym__argument_name_token1] = ACTIONS(1437), - [aux_sym__argument_name_token2] = ACTIONS(1437), - [anon_sym_POUND_LBRACK] = ACTIONS(1435), - [aux_sym_encapsed_string_token1] = ACTIONS(1435), - [anon_sym_DQUOTE] = ACTIONS(1435), - [aux_sym_string_token1] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1435), - [anon_sym_LT_LT_LT] = ACTIONS(1435), - [anon_sym_BQUOTE] = ACTIONS(1435), - [anon_sym_DOLLAR] = ACTIONS(1435), - [aux_sym_yield_expression_token1] = ACTIONS(1437), - [aux_sym_include_expression_token1] = ACTIONS(1437), - [aux_sym_include_once_expression_token1] = ACTIONS(1437), - [aux_sym_require_expression_token1] = ACTIONS(1437), - [aux_sym_require_once_expression_token1] = ACTIONS(1437), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1418), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [aux_sym__list_destructing_token1] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_self] = ACTIONS(1420), + [anon_sym_parent] = ACTIONS(1420), + [aux_sym__argument_name_token1] = ACTIONS(1420), + [aux_sym__argument_name_token2] = ACTIONS(1420), + [anon_sym_POUND_LBRACK] = ACTIONS(1418), + [aux_sym_encapsed_string_token1] = ACTIONS(1418), + [anon_sym_DQUOTE] = ACTIONS(1418), + [aux_sym_string_token1] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_LT_LT_LT] = ACTIONS(1418), + [anon_sym_BQUOTE] = ACTIONS(1418), + [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), }, [534] = { - [ts_builtin_sym_end] = ACTIONS(1439), - [sym_name] = ACTIONS(1441), - [anon_sym_QMARK_GT] = ACTIONS(1439), - [anon_sym_SEMI] = ACTIONS(1439), - [aux_sym_function_static_declaration_token1] = ACTIONS(1441), - [aux_sym_global_declaration_token1] = ACTIONS(1441), - [aux_sym_namespace_definition_token1] = ACTIONS(1441), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1441), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1441), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1441), - [anon_sym_BSLASH] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_RBRACE] = ACTIONS(1439), - [aux_sym_trait_declaration_token1] = ACTIONS(1441), - [aux_sym_interface_declaration_token1] = ACTIONS(1441), - [aux_sym_enum_declaration_token1] = ACTIONS(1441), - [aux_sym_enum_case_token1] = ACTIONS(1441), - [aux_sym_class_declaration_token1] = ACTIONS(1441), - [aux_sym_final_modifier_token1] = ACTIONS(1441), - [aux_sym_abstract_modifier_token1] = ACTIONS(1441), - [aux_sym_readonly_modifier_token1] = ACTIONS(1441), - [aux_sym_visibility_modifier_token1] = ACTIONS(1441), - [aux_sym_visibility_modifier_token2] = ACTIONS(1441), - [aux_sym_visibility_modifier_token3] = ACTIONS(1441), - [aux_sym__arrow_function_header_token1] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1439), - [aux_sym_cast_type_token1] = ACTIONS(1441), - [aux_sym_echo_statement_token1] = ACTIONS(1441), - [aux_sym_exit_statement_token1] = ACTIONS(1441), - [anon_sym_unset] = ACTIONS(1441), - [aux_sym_declare_statement_token1] = ACTIONS(1441), - [aux_sym_declare_statement_token2] = ACTIONS(1441), - [sym_float] = ACTIONS(1441), - [aux_sym_try_statement_token1] = ACTIONS(1441), - [aux_sym_goto_statement_token1] = ACTIONS(1441), - [aux_sym_continue_statement_token1] = ACTIONS(1441), - [aux_sym_break_statement_token1] = ACTIONS(1441), - [sym_integer] = ACTIONS(1441), - [aux_sym_return_statement_token1] = ACTIONS(1441), - [aux_sym_throw_expression_token1] = ACTIONS(1441), - [aux_sym_while_statement_token1] = ACTIONS(1441), - [aux_sym_while_statement_token2] = ACTIONS(1441), - [aux_sym_do_statement_token1] = ACTIONS(1441), - [aux_sym_for_statement_token1] = ACTIONS(1441), - [aux_sym_for_statement_token2] = ACTIONS(1441), - [aux_sym_foreach_statement_token1] = ACTIONS(1441), - [aux_sym_foreach_statement_token2] = ACTIONS(1441), - [aux_sym_if_statement_token1] = ACTIONS(1441), - [aux_sym_if_statement_token2] = ACTIONS(1441), - [aux_sym_else_if_clause_token1] = ACTIONS(1441), - [aux_sym_else_clause_token1] = ACTIONS(1441), - [aux_sym_match_expression_token1] = ACTIONS(1441), - [aux_sym_match_default_expression_token1] = ACTIONS(1441), - [aux_sym_switch_statement_token1] = ACTIONS(1441), - [aux_sym_switch_block_token1] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1439), - [anon_sym_AT] = ACTIONS(1439), - [aux_sym_clone_expression_token1] = ACTIONS(1441), - [aux_sym_print_intrinsic_token1] = ACTIONS(1441), - [aux_sym_object_creation_expression_token1] = ACTIONS(1441), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [aux_sym__list_destructing_token1] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1439), - [anon_sym_self] = ACTIONS(1441), - [anon_sym_parent] = ACTIONS(1441), - [aux_sym__argument_name_token1] = ACTIONS(1441), - [aux_sym__argument_name_token2] = ACTIONS(1441), - [anon_sym_POUND_LBRACK] = ACTIONS(1439), - [aux_sym_encapsed_string_token1] = ACTIONS(1439), - [anon_sym_DQUOTE] = ACTIONS(1439), - [aux_sym_string_token1] = ACTIONS(1439), - [anon_sym_SQUOTE] = ACTIONS(1439), - [anon_sym_LT_LT_LT] = ACTIONS(1439), - [anon_sym_BQUOTE] = ACTIONS(1439), - [anon_sym_DOLLAR] = ACTIONS(1439), - [aux_sym_yield_expression_token1] = ACTIONS(1441), - [aux_sym_include_expression_token1] = ACTIONS(1441), - [aux_sym_include_once_expression_token1] = ACTIONS(1441), - [aux_sym_require_expression_token1] = ACTIONS(1441), - [aux_sym_require_once_expression_token1] = ACTIONS(1441), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1422), + [anon_sym_PLUS_PLUS] = ACTIONS(1422), + [aux_sym__list_destructing_token1] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1422), + [anon_sym_self] = ACTIONS(1424), + [anon_sym_parent] = ACTIONS(1424), + [aux_sym__argument_name_token1] = ACTIONS(1424), + [aux_sym__argument_name_token2] = ACTIONS(1424), + [anon_sym_POUND_LBRACK] = ACTIONS(1422), + [aux_sym_encapsed_string_token1] = ACTIONS(1422), + [anon_sym_DQUOTE] = ACTIONS(1422), + [aux_sym_string_token1] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1422), + [anon_sym_LT_LT_LT] = ACTIONS(1422), + [anon_sym_BQUOTE] = ACTIONS(1422), + [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), }, [535] = { - [ts_builtin_sym_end] = ACTIONS(1443), - [sym_name] = ACTIONS(1445), - [anon_sym_QMARK_GT] = ACTIONS(1443), - [anon_sym_SEMI] = ACTIONS(1443), - [aux_sym_function_static_declaration_token1] = ACTIONS(1445), - [aux_sym_global_declaration_token1] = ACTIONS(1445), - [aux_sym_namespace_definition_token1] = ACTIONS(1445), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1445), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1445), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1445), - [anon_sym_BSLASH] = ACTIONS(1443), - [anon_sym_LBRACE] = ACTIONS(1443), - [anon_sym_RBRACE] = ACTIONS(1443), - [aux_sym_trait_declaration_token1] = ACTIONS(1445), - [aux_sym_interface_declaration_token1] = ACTIONS(1445), - [aux_sym_enum_declaration_token1] = ACTIONS(1445), - [aux_sym_enum_case_token1] = ACTIONS(1445), - [aux_sym_class_declaration_token1] = ACTIONS(1445), - [aux_sym_final_modifier_token1] = ACTIONS(1445), - [aux_sym_abstract_modifier_token1] = ACTIONS(1445), - [aux_sym_readonly_modifier_token1] = ACTIONS(1445), - [aux_sym_visibility_modifier_token1] = ACTIONS(1445), - [aux_sym_visibility_modifier_token2] = ACTIONS(1445), - [aux_sym_visibility_modifier_token3] = ACTIONS(1445), - [aux_sym__arrow_function_header_token1] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1443), - [aux_sym_cast_type_token1] = ACTIONS(1445), - [aux_sym_echo_statement_token1] = ACTIONS(1445), - [aux_sym_exit_statement_token1] = ACTIONS(1445), - [anon_sym_unset] = ACTIONS(1445), - [aux_sym_declare_statement_token1] = ACTIONS(1445), - [aux_sym_declare_statement_token2] = ACTIONS(1445), - [sym_float] = ACTIONS(1445), - [aux_sym_try_statement_token1] = ACTIONS(1445), - [aux_sym_goto_statement_token1] = ACTIONS(1445), - [aux_sym_continue_statement_token1] = ACTIONS(1445), - [aux_sym_break_statement_token1] = ACTIONS(1445), - [sym_integer] = ACTIONS(1445), - [aux_sym_return_statement_token1] = ACTIONS(1445), - [aux_sym_throw_expression_token1] = ACTIONS(1445), - [aux_sym_while_statement_token1] = ACTIONS(1445), - [aux_sym_while_statement_token2] = ACTIONS(1445), - [aux_sym_do_statement_token1] = ACTIONS(1445), - [aux_sym_for_statement_token1] = ACTIONS(1445), - [aux_sym_for_statement_token2] = ACTIONS(1445), - [aux_sym_foreach_statement_token1] = ACTIONS(1445), - [aux_sym_foreach_statement_token2] = ACTIONS(1445), - [aux_sym_if_statement_token1] = ACTIONS(1445), - [aux_sym_if_statement_token2] = ACTIONS(1445), - [aux_sym_else_if_clause_token1] = ACTIONS(1445), - [aux_sym_else_clause_token1] = ACTIONS(1445), - [aux_sym_match_expression_token1] = ACTIONS(1445), - [aux_sym_match_default_expression_token1] = ACTIONS(1445), - [aux_sym_switch_statement_token1] = ACTIONS(1445), - [aux_sym_switch_block_token1] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_TILDE] = ACTIONS(1443), - [anon_sym_BANG] = ACTIONS(1443), - [anon_sym_AT] = ACTIONS(1443), - [aux_sym_clone_expression_token1] = ACTIONS(1445), - [aux_sym_print_intrinsic_token1] = ACTIONS(1445), - [aux_sym_object_creation_expression_token1] = ACTIONS(1445), - [anon_sym_DASH_DASH] = ACTIONS(1443), - [anon_sym_PLUS_PLUS] = ACTIONS(1443), - [aux_sym__list_destructing_token1] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_self] = ACTIONS(1445), - [anon_sym_parent] = ACTIONS(1445), - [aux_sym__argument_name_token1] = ACTIONS(1445), - [aux_sym__argument_name_token2] = ACTIONS(1445), - [anon_sym_POUND_LBRACK] = ACTIONS(1443), - [aux_sym_encapsed_string_token1] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [aux_sym_string_token1] = ACTIONS(1443), - [anon_sym_SQUOTE] = ACTIONS(1443), - [anon_sym_LT_LT_LT] = ACTIONS(1443), - [anon_sym_BQUOTE] = ACTIONS(1443), - [anon_sym_DOLLAR] = ACTIONS(1443), - [aux_sym_yield_expression_token1] = ACTIONS(1445), - [aux_sym_include_expression_token1] = ACTIONS(1445), - [aux_sym_include_once_expression_token1] = ACTIONS(1445), - [aux_sym_require_expression_token1] = ACTIONS(1445), - [aux_sym_require_once_expression_token1] = ACTIONS(1445), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [aux_sym__list_destructing_token1] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_self] = ACTIONS(1428), + [anon_sym_parent] = ACTIONS(1428), + [aux_sym__argument_name_token1] = ACTIONS(1428), + [aux_sym__argument_name_token2] = ACTIONS(1428), + [anon_sym_POUND_LBRACK] = ACTIONS(1426), + [aux_sym_encapsed_string_token1] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [aux_sym_string_token1] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_LT_LT_LT] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [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), }, [536] = { - [ts_builtin_sym_end] = ACTIONS(1447), - [sym_name] = ACTIONS(1449), - [anon_sym_QMARK_GT] = ACTIONS(1447), - [anon_sym_SEMI] = ACTIONS(1447), - [aux_sym_function_static_declaration_token1] = ACTIONS(1449), - [aux_sym_global_declaration_token1] = ACTIONS(1449), - [aux_sym_namespace_definition_token1] = ACTIONS(1449), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1449), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1449), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1449), - [anon_sym_BSLASH] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1447), - [anon_sym_RBRACE] = ACTIONS(1447), - [aux_sym_trait_declaration_token1] = ACTIONS(1449), - [aux_sym_interface_declaration_token1] = ACTIONS(1449), - [aux_sym_enum_declaration_token1] = ACTIONS(1449), - [aux_sym_enum_case_token1] = ACTIONS(1449), - [aux_sym_class_declaration_token1] = ACTIONS(1449), - [aux_sym_final_modifier_token1] = ACTIONS(1449), - [aux_sym_abstract_modifier_token1] = ACTIONS(1449), - [aux_sym_readonly_modifier_token1] = ACTIONS(1449), - [aux_sym_visibility_modifier_token1] = ACTIONS(1449), - [aux_sym_visibility_modifier_token2] = ACTIONS(1449), - [aux_sym_visibility_modifier_token3] = ACTIONS(1449), - [aux_sym__arrow_function_header_token1] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1447), - [aux_sym_cast_type_token1] = ACTIONS(1449), - [aux_sym_echo_statement_token1] = ACTIONS(1449), - [aux_sym_exit_statement_token1] = ACTIONS(1449), - [anon_sym_unset] = ACTIONS(1449), - [aux_sym_declare_statement_token1] = ACTIONS(1449), - [aux_sym_declare_statement_token2] = ACTIONS(1449), - [sym_float] = ACTIONS(1449), - [aux_sym_try_statement_token1] = ACTIONS(1449), - [aux_sym_goto_statement_token1] = ACTIONS(1449), - [aux_sym_continue_statement_token1] = ACTIONS(1449), - [aux_sym_break_statement_token1] = ACTIONS(1449), - [sym_integer] = ACTIONS(1449), - [aux_sym_return_statement_token1] = ACTIONS(1449), - [aux_sym_throw_expression_token1] = ACTIONS(1449), - [aux_sym_while_statement_token1] = ACTIONS(1449), - [aux_sym_while_statement_token2] = ACTIONS(1449), - [aux_sym_do_statement_token1] = ACTIONS(1449), - [aux_sym_for_statement_token1] = ACTIONS(1449), - [aux_sym_for_statement_token2] = ACTIONS(1449), - [aux_sym_foreach_statement_token1] = ACTIONS(1449), - [aux_sym_foreach_statement_token2] = ACTIONS(1449), - [aux_sym_if_statement_token1] = ACTIONS(1449), - [aux_sym_if_statement_token2] = ACTIONS(1449), - [aux_sym_else_if_clause_token1] = ACTIONS(1449), - [aux_sym_else_clause_token1] = ACTIONS(1449), - [aux_sym_match_expression_token1] = ACTIONS(1449), - [aux_sym_match_default_expression_token1] = ACTIONS(1449), - [aux_sym_switch_statement_token1] = ACTIONS(1449), - [aux_sym_switch_block_token1] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_AT] = ACTIONS(1447), - [aux_sym_clone_expression_token1] = ACTIONS(1449), - [aux_sym_print_intrinsic_token1] = ACTIONS(1449), - [aux_sym_object_creation_expression_token1] = ACTIONS(1449), - [anon_sym_DASH_DASH] = ACTIONS(1447), - [anon_sym_PLUS_PLUS] = ACTIONS(1447), - [aux_sym__list_destructing_token1] = ACTIONS(1449), - [anon_sym_LBRACK] = ACTIONS(1447), - [anon_sym_self] = ACTIONS(1449), - [anon_sym_parent] = ACTIONS(1449), - [aux_sym__argument_name_token1] = ACTIONS(1449), - [aux_sym__argument_name_token2] = ACTIONS(1449), - [anon_sym_POUND_LBRACK] = ACTIONS(1447), - [aux_sym_encapsed_string_token1] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [aux_sym_string_token1] = ACTIONS(1447), - [anon_sym_SQUOTE] = ACTIONS(1447), - [anon_sym_LT_LT_LT] = ACTIONS(1447), - [anon_sym_BQUOTE] = ACTIONS(1447), - [anon_sym_DOLLAR] = ACTIONS(1447), - [aux_sym_yield_expression_token1] = ACTIONS(1449), - [aux_sym_include_expression_token1] = ACTIONS(1449), - [aux_sym_include_once_expression_token1] = ACTIONS(1449), - [aux_sym_require_expression_token1] = ACTIONS(1449), - [aux_sym_require_once_expression_token1] = ACTIONS(1449), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1430), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [aux_sym__list_destructing_token1] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_self] = ACTIONS(1432), + [anon_sym_parent] = ACTIONS(1432), + [aux_sym__argument_name_token1] = ACTIONS(1432), + [aux_sym__argument_name_token2] = ACTIONS(1432), + [anon_sym_POUND_LBRACK] = ACTIONS(1430), + [aux_sym_encapsed_string_token1] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [aux_sym_string_token1] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_LT_LT_LT] = ACTIONS(1430), + [anon_sym_BQUOTE] = ACTIONS(1430), + [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), }, [537] = { - [ts_builtin_sym_end] = ACTIONS(1451), - [sym_name] = ACTIONS(1453), - [anon_sym_QMARK_GT] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1451), - [aux_sym_function_static_declaration_token1] = ACTIONS(1453), - [aux_sym_global_declaration_token1] = ACTIONS(1453), - [aux_sym_namespace_definition_token1] = ACTIONS(1453), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1453), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1453), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1453), - [anon_sym_BSLASH] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1451), - [anon_sym_RBRACE] = ACTIONS(1451), - [aux_sym_trait_declaration_token1] = ACTIONS(1453), - [aux_sym_interface_declaration_token1] = ACTIONS(1453), - [aux_sym_enum_declaration_token1] = ACTIONS(1453), - [aux_sym_enum_case_token1] = ACTIONS(1453), - [aux_sym_class_declaration_token1] = ACTIONS(1453), - [aux_sym_final_modifier_token1] = ACTIONS(1453), - [aux_sym_abstract_modifier_token1] = ACTIONS(1453), - [aux_sym_readonly_modifier_token1] = ACTIONS(1453), - [aux_sym_visibility_modifier_token1] = ACTIONS(1453), - [aux_sym_visibility_modifier_token2] = ACTIONS(1453), - [aux_sym_visibility_modifier_token3] = ACTIONS(1453), - [aux_sym__arrow_function_header_token1] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1451), - [aux_sym_cast_type_token1] = ACTIONS(1453), - [aux_sym_echo_statement_token1] = ACTIONS(1453), - [aux_sym_exit_statement_token1] = ACTIONS(1453), - [anon_sym_unset] = ACTIONS(1453), - [aux_sym_declare_statement_token1] = ACTIONS(1453), - [aux_sym_declare_statement_token2] = ACTIONS(1453), - [sym_float] = ACTIONS(1453), - [aux_sym_try_statement_token1] = ACTIONS(1453), - [aux_sym_goto_statement_token1] = ACTIONS(1453), - [aux_sym_continue_statement_token1] = ACTIONS(1453), - [aux_sym_break_statement_token1] = ACTIONS(1453), - [sym_integer] = ACTIONS(1453), - [aux_sym_return_statement_token1] = ACTIONS(1453), - [aux_sym_throw_expression_token1] = ACTIONS(1453), - [aux_sym_while_statement_token1] = ACTIONS(1453), - [aux_sym_while_statement_token2] = ACTIONS(1453), - [aux_sym_do_statement_token1] = ACTIONS(1453), - [aux_sym_for_statement_token1] = ACTIONS(1453), - [aux_sym_for_statement_token2] = ACTIONS(1453), - [aux_sym_foreach_statement_token1] = ACTIONS(1453), - [aux_sym_foreach_statement_token2] = ACTIONS(1453), - [aux_sym_if_statement_token1] = ACTIONS(1453), - [aux_sym_if_statement_token2] = ACTIONS(1453), - [aux_sym_else_if_clause_token1] = ACTIONS(1453), - [aux_sym_else_clause_token1] = ACTIONS(1453), - [aux_sym_match_expression_token1] = ACTIONS(1453), - [aux_sym_match_default_expression_token1] = ACTIONS(1453), - [aux_sym_switch_statement_token1] = ACTIONS(1453), - [aux_sym_switch_block_token1] = ACTIONS(1453), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1451), - [aux_sym_clone_expression_token1] = ACTIONS(1453), - [aux_sym_print_intrinsic_token1] = ACTIONS(1453), - [aux_sym_object_creation_expression_token1] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [aux_sym__list_destructing_token1] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1451), - [anon_sym_self] = ACTIONS(1453), - [anon_sym_parent] = ACTIONS(1453), - [aux_sym__argument_name_token1] = ACTIONS(1453), - [aux_sym__argument_name_token2] = ACTIONS(1453), - [anon_sym_POUND_LBRACK] = ACTIONS(1451), - [aux_sym_encapsed_string_token1] = ACTIONS(1451), - [anon_sym_DQUOTE] = ACTIONS(1451), - [aux_sym_string_token1] = ACTIONS(1451), - [anon_sym_SQUOTE] = ACTIONS(1451), - [anon_sym_LT_LT_LT] = ACTIONS(1451), - [anon_sym_BQUOTE] = ACTIONS(1451), - [anon_sym_DOLLAR] = ACTIONS(1451), - [aux_sym_yield_expression_token1] = ACTIONS(1453), - [aux_sym_include_expression_token1] = ACTIONS(1453), - [aux_sym_include_once_expression_token1] = ACTIONS(1453), - [aux_sym_require_expression_token1] = ACTIONS(1453), - [aux_sym_require_once_expression_token1] = ACTIONS(1453), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1434), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [aux_sym__list_destructing_token1] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_self] = ACTIONS(1436), + [anon_sym_parent] = ACTIONS(1436), + [aux_sym__argument_name_token1] = ACTIONS(1436), + [aux_sym__argument_name_token2] = ACTIONS(1436), + [anon_sym_POUND_LBRACK] = ACTIONS(1434), + [aux_sym_encapsed_string_token1] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [aux_sym_string_token1] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_LT_LT_LT] = ACTIONS(1434), + [anon_sym_BQUOTE] = ACTIONS(1434), + [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), }, [538] = { - [ts_builtin_sym_end] = ACTIONS(1455), - [sym_name] = ACTIONS(1457), - [anon_sym_QMARK_GT] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1455), - [aux_sym_function_static_declaration_token1] = ACTIONS(1457), - [aux_sym_global_declaration_token1] = ACTIONS(1457), - [aux_sym_namespace_definition_token1] = ACTIONS(1457), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1457), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1457), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1457), - [anon_sym_BSLASH] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_RBRACE] = ACTIONS(1455), - [aux_sym_trait_declaration_token1] = ACTIONS(1457), - [aux_sym_interface_declaration_token1] = ACTIONS(1457), - [aux_sym_enum_declaration_token1] = ACTIONS(1457), - [aux_sym_enum_case_token1] = ACTIONS(1457), - [aux_sym_class_declaration_token1] = ACTIONS(1457), - [aux_sym_final_modifier_token1] = ACTIONS(1457), - [aux_sym_abstract_modifier_token1] = ACTIONS(1457), - [aux_sym_readonly_modifier_token1] = ACTIONS(1457), - [aux_sym_visibility_modifier_token1] = ACTIONS(1457), - [aux_sym_visibility_modifier_token2] = ACTIONS(1457), - [aux_sym_visibility_modifier_token3] = ACTIONS(1457), - [aux_sym__arrow_function_header_token1] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1455), - [aux_sym_cast_type_token1] = ACTIONS(1457), - [aux_sym_echo_statement_token1] = ACTIONS(1457), - [aux_sym_exit_statement_token1] = ACTIONS(1457), - [anon_sym_unset] = ACTIONS(1457), - [aux_sym_declare_statement_token1] = ACTIONS(1457), - [aux_sym_declare_statement_token2] = ACTIONS(1457), - [sym_float] = ACTIONS(1457), - [aux_sym_try_statement_token1] = ACTIONS(1457), - [aux_sym_goto_statement_token1] = ACTIONS(1457), - [aux_sym_continue_statement_token1] = ACTIONS(1457), - [aux_sym_break_statement_token1] = ACTIONS(1457), - [sym_integer] = ACTIONS(1457), - [aux_sym_return_statement_token1] = ACTIONS(1457), - [aux_sym_throw_expression_token1] = ACTIONS(1457), - [aux_sym_while_statement_token1] = ACTIONS(1457), - [aux_sym_while_statement_token2] = ACTIONS(1457), - [aux_sym_do_statement_token1] = ACTIONS(1457), - [aux_sym_for_statement_token1] = ACTIONS(1457), - [aux_sym_for_statement_token2] = ACTIONS(1457), - [aux_sym_foreach_statement_token1] = ACTIONS(1457), - [aux_sym_foreach_statement_token2] = ACTIONS(1457), - [aux_sym_if_statement_token1] = ACTIONS(1457), - [aux_sym_if_statement_token2] = ACTIONS(1457), - [aux_sym_else_if_clause_token1] = ACTIONS(1457), - [aux_sym_else_clause_token1] = ACTIONS(1457), - [aux_sym_match_expression_token1] = ACTIONS(1457), - [aux_sym_match_default_expression_token1] = ACTIONS(1457), - [aux_sym_switch_statement_token1] = ACTIONS(1457), - [aux_sym_switch_block_token1] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1457), - [anon_sym_DASH] = ACTIONS(1457), - [anon_sym_TILDE] = ACTIONS(1455), - [anon_sym_BANG] = ACTIONS(1455), - [anon_sym_AT] = ACTIONS(1455), - [aux_sym_clone_expression_token1] = ACTIONS(1457), - [aux_sym_print_intrinsic_token1] = ACTIONS(1457), - [aux_sym_object_creation_expression_token1] = ACTIONS(1457), - [anon_sym_DASH_DASH] = ACTIONS(1455), - [anon_sym_PLUS_PLUS] = ACTIONS(1455), - [aux_sym__list_destructing_token1] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_self] = ACTIONS(1457), - [anon_sym_parent] = ACTIONS(1457), - [aux_sym__argument_name_token1] = ACTIONS(1457), - [aux_sym__argument_name_token2] = ACTIONS(1457), - [anon_sym_POUND_LBRACK] = ACTIONS(1455), - [aux_sym_encapsed_string_token1] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [aux_sym_string_token1] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1455), - [anon_sym_LT_LT_LT] = ACTIONS(1455), - [anon_sym_BQUOTE] = ACTIONS(1455), - [anon_sym_DOLLAR] = ACTIONS(1455), - [aux_sym_yield_expression_token1] = ACTIONS(1457), - [aux_sym_include_expression_token1] = ACTIONS(1457), - [aux_sym_include_once_expression_token1] = ACTIONS(1457), - [aux_sym_require_expression_token1] = ACTIONS(1457), - [aux_sym_require_once_expression_token1] = ACTIONS(1457), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [aux_sym__list_destructing_token1] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_self] = ACTIONS(1440), + [anon_sym_parent] = ACTIONS(1440), + [aux_sym__argument_name_token1] = ACTIONS(1440), + [aux_sym__argument_name_token2] = ACTIONS(1440), + [anon_sym_POUND_LBRACK] = ACTIONS(1438), + [aux_sym_encapsed_string_token1] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [aux_sym_string_token1] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_LT_LT_LT] = ACTIONS(1438), + [anon_sym_BQUOTE] = ACTIONS(1438), + [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), }, [539] = { - [ts_builtin_sym_end] = ACTIONS(1459), - [sym_name] = ACTIONS(1461), - [anon_sym_QMARK_GT] = ACTIONS(1459), - [anon_sym_SEMI] = ACTIONS(1459), - [aux_sym_function_static_declaration_token1] = ACTIONS(1461), - [aux_sym_global_declaration_token1] = ACTIONS(1461), - [aux_sym_namespace_definition_token1] = ACTIONS(1461), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1461), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1461), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1461), - [anon_sym_BSLASH] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_RBRACE] = ACTIONS(1459), - [aux_sym_trait_declaration_token1] = ACTIONS(1461), - [aux_sym_interface_declaration_token1] = ACTIONS(1461), - [aux_sym_enum_declaration_token1] = ACTIONS(1461), - [aux_sym_enum_case_token1] = ACTIONS(1461), - [aux_sym_class_declaration_token1] = ACTIONS(1461), - [aux_sym_final_modifier_token1] = ACTIONS(1461), - [aux_sym_abstract_modifier_token1] = ACTIONS(1461), - [aux_sym_readonly_modifier_token1] = ACTIONS(1461), - [aux_sym_visibility_modifier_token1] = ACTIONS(1461), - [aux_sym_visibility_modifier_token2] = ACTIONS(1461), - [aux_sym_visibility_modifier_token3] = ACTIONS(1461), - [aux_sym__arrow_function_header_token1] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_cast_type_token1] = ACTIONS(1461), - [aux_sym_echo_statement_token1] = ACTIONS(1461), - [aux_sym_exit_statement_token1] = ACTIONS(1461), - [anon_sym_unset] = ACTIONS(1461), - [aux_sym_declare_statement_token1] = ACTIONS(1461), - [aux_sym_declare_statement_token2] = ACTIONS(1461), - [sym_float] = ACTIONS(1461), - [aux_sym_try_statement_token1] = ACTIONS(1461), - [aux_sym_goto_statement_token1] = ACTIONS(1461), - [aux_sym_continue_statement_token1] = ACTIONS(1461), - [aux_sym_break_statement_token1] = ACTIONS(1461), - [sym_integer] = ACTIONS(1461), - [aux_sym_return_statement_token1] = ACTIONS(1461), - [aux_sym_throw_expression_token1] = ACTIONS(1461), - [aux_sym_while_statement_token1] = ACTIONS(1461), - [aux_sym_while_statement_token2] = ACTIONS(1461), - [aux_sym_do_statement_token1] = ACTIONS(1461), - [aux_sym_for_statement_token1] = ACTIONS(1461), - [aux_sym_for_statement_token2] = ACTIONS(1461), - [aux_sym_foreach_statement_token1] = ACTIONS(1461), - [aux_sym_foreach_statement_token2] = ACTIONS(1461), - [aux_sym_if_statement_token1] = ACTIONS(1461), - [aux_sym_if_statement_token2] = ACTIONS(1461), - [aux_sym_else_if_clause_token1] = ACTIONS(1461), - [aux_sym_else_clause_token1] = ACTIONS(1461), - [aux_sym_match_expression_token1] = ACTIONS(1461), - [aux_sym_match_default_expression_token1] = ACTIONS(1461), - [aux_sym_switch_statement_token1] = ACTIONS(1461), - [aux_sym_switch_block_token1] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1461), - [anon_sym_DASH] = ACTIONS(1461), - [anon_sym_TILDE] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1459), - [anon_sym_AT] = ACTIONS(1459), - [aux_sym_clone_expression_token1] = ACTIONS(1461), - [aux_sym_print_intrinsic_token1] = ACTIONS(1461), - [aux_sym_object_creation_expression_token1] = ACTIONS(1461), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [aux_sym__list_destructing_token1] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(1459), - [anon_sym_self] = ACTIONS(1461), - [anon_sym_parent] = ACTIONS(1461), - [aux_sym__argument_name_token1] = ACTIONS(1461), - [aux_sym__argument_name_token2] = ACTIONS(1461), - [anon_sym_POUND_LBRACK] = ACTIONS(1459), - [aux_sym_encapsed_string_token1] = ACTIONS(1459), - [anon_sym_DQUOTE] = ACTIONS(1459), - [aux_sym_string_token1] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1459), - [anon_sym_LT_LT_LT] = ACTIONS(1459), - [anon_sym_BQUOTE] = ACTIONS(1459), - [anon_sym_DOLLAR] = ACTIONS(1459), - [aux_sym_yield_expression_token1] = ACTIONS(1461), - [aux_sym_include_expression_token1] = ACTIONS(1461), - [aux_sym_include_once_expression_token1] = ACTIONS(1461), - [aux_sym_require_expression_token1] = ACTIONS(1461), - [aux_sym_require_once_expression_token1] = ACTIONS(1461), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [aux_sym__list_destructing_token1] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_self] = ACTIONS(1444), + [anon_sym_parent] = ACTIONS(1444), + [aux_sym__argument_name_token1] = ACTIONS(1444), + [aux_sym__argument_name_token2] = ACTIONS(1444), + [anon_sym_POUND_LBRACK] = ACTIONS(1442), + [aux_sym_encapsed_string_token1] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [aux_sym_string_token1] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_LT_LT_LT] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1442), + [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), }, [540] = { - [ts_builtin_sym_end] = ACTIONS(1463), - [sym_name] = ACTIONS(1465), - [anon_sym_QMARK_GT] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1463), - [aux_sym_function_static_declaration_token1] = ACTIONS(1465), - [aux_sym_global_declaration_token1] = ACTIONS(1465), - [aux_sym_namespace_definition_token1] = ACTIONS(1465), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1465), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1465), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1465), - [anon_sym_BSLASH] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1463), - [aux_sym_trait_declaration_token1] = ACTIONS(1465), - [aux_sym_interface_declaration_token1] = ACTIONS(1465), - [aux_sym_enum_declaration_token1] = ACTIONS(1465), - [aux_sym_enum_case_token1] = ACTIONS(1465), - [aux_sym_class_declaration_token1] = ACTIONS(1465), - [aux_sym_final_modifier_token1] = ACTIONS(1465), - [aux_sym_abstract_modifier_token1] = ACTIONS(1465), - [aux_sym_readonly_modifier_token1] = ACTIONS(1465), - [aux_sym_visibility_modifier_token1] = ACTIONS(1465), - [aux_sym_visibility_modifier_token2] = ACTIONS(1465), - [aux_sym_visibility_modifier_token3] = ACTIONS(1465), - [aux_sym__arrow_function_header_token1] = ACTIONS(1465), - [anon_sym_LPAREN] = ACTIONS(1463), - [aux_sym_cast_type_token1] = ACTIONS(1465), - [aux_sym_echo_statement_token1] = ACTIONS(1465), - [aux_sym_exit_statement_token1] = ACTIONS(1465), - [anon_sym_unset] = ACTIONS(1465), - [aux_sym_declare_statement_token1] = ACTIONS(1465), - [aux_sym_declare_statement_token2] = ACTIONS(1465), - [sym_float] = ACTIONS(1465), - [aux_sym_try_statement_token1] = ACTIONS(1465), - [aux_sym_goto_statement_token1] = ACTIONS(1465), - [aux_sym_continue_statement_token1] = ACTIONS(1465), - [aux_sym_break_statement_token1] = ACTIONS(1465), - [sym_integer] = ACTIONS(1465), - [aux_sym_return_statement_token1] = ACTIONS(1465), - [aux_sym_throw_expression_token1] = ACTIONS(1465), - [aux_sym_while_statement_token1] = ACTIONS(1465), - [aux_sym_while_statement_token2] = ACTIONS(1465), - [aux_sym_do_statement_token1] = ACTIONS(1465), - [aux_sym_for_statement_token1] = ACTIONS(1465), - [aux_sym_for_statement_token2] = ACTIONS(1465), - [aux_sym_foreach_statement_token1] = ACTIONS(1465), - [aux_sym_foreach_statement_token2] = ACTIONS(1465), - [aux_sym_if_statement_token1] = ACTIONS(1465), - [aux_sym_if_statement_token2] = ACTIONS(1465), - [aux_sym_else_if_clause_token1] = ACTIONS(1465), - [aux_sym_else_clause_token1] = ACTIONS(1465), - [aux_sym_match_expression_token1] = ACTIONS(1465), - [aux_sym_match_default_expression_token1] = ACTIONS(1465), - [aux_sym_switch_statement_token1] = ACTIONS(1465), - [aux_sym_switch_block_token1] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1463), - [anon_sym_AT] = ACTIONS(1463), - [aux_sym_clone_expression_token1] = ACTIONS(1465), - [aux_sym_print_intrinsic_token1] = ACTIONS(1465), - [aux_sym_object_creation_expression_token1] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1463), - [anon_sym_PLUS_PLUS] = ACTIONS(1463), - [aux_sym__list_destructing_token1] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(1463), - [anon_sym_self] = ACTIONS(1465), - [anon_sym_parent] = ACTIONS(1465), - [aux_sym__argument_name_token1] = ACTIONS(1465), - [aux_sym__argument_name_token2] = ACTIONS(1465), - [anon_sym_POUND_LBRACK] = ACTIONS(1463), - [aux_sym_encapsed_string_token1] = ACTIONS(1463), - [anon_sym_DQUOTE] = ACTIONS(1463), - [aux_sym_string_token1] = ACTIONS(1463), - [anon_sym_SQUOTE] = ACTIONS(1463), - [anon_sym_LT_LT_LT] = ACTIONS(1463), - [anon_sym_BQUOTE] = ACTIONS(1463), - [anon_sym_DOLLAR] = ACTIONS(1463), - [aux_sym_yield_expression_token1] = ACTIONS(1465), - [aux_sym_include_expression_token1] = ACTIONS(1465), - [aux_sym_include_once_expression_token1] = ACTIONS(1465), - [aux_sym_require_expression_token1] = ACTIONS(1465), - [aux_sym_require_once_expression_token1] = ACTIONS(1465), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [aux_sym__list_destructing_token1] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_self] = ACTIONS(1448), + [anon_sym_parent] = ACTIONS(1448), + [aux_sym__argument_name_token1] = ACTIONS(1448), + [aux_sym__argument_name_token2] = ACTIONS(1448), + [anon_sym_POUND_LBRACK] = ACTIONS(1446), + [aux_sym_encapsed_string_token1] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [aux_sym_string_token1] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_LT_LT_LT] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1446), + [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), }, [541] = { - [ts_builtin_sym_end] = ACTIONS(1467), - [sym_name] = ACTIONS(1469), - [anon_sym_QMARK_GT] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1467), - [aux_sym_function_static_declaration_token1] = ACTIONS(1469), - [aux_sym_global_declaration_token1] = ACTIONS(1469), - [aux_sym_namespace_definition_token1] = ACTIONS(1469), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1469), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1469), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1469), - [anon_sym_BSLASH] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), - [aux_sym_trait_declaration_token1] = ACTIONS(1469), - [aux_sym_interface_declaration_token1] = ACTIONS(1469), - [aux_sym_enum_declaration_token1] = ACTIONS(1469), - [aux_sym_enum_case_token1] = ACTIONS(1469), - [aux_sym_class_declaration_token1] = ACTIONS(1469), - [aux_sym_final_modifier_token1] = ACTIONS(1469), - [aux_sym_abstract_modifier_token1] = ACTIONS(1469), - [aux_sym_readonly_modifier_token1] = ACTIONS(1469), - [aux_sym_visibility_modifier_token1] = ACTIONS(1469), - [aux_sym_visibility_modifier_token2] = ACTIONS(1469), - [aux_sym_visibility_modifier_token3] = ACTIONS(1469), - [aux_sym__arrow_function_header_token1] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1467), - [aux_sym_cast_type_token1] = ACTIONS(1469), - [aux_sym_echo_statement_token1] = ACTIONS(1469), - [aux_sym_exit_statement_token1] = ACTIONS(1469), - [anon_sym_unset] = ACTIONS(1469), - [aux_sym_declare_statement_token1] = ACTIONS(1469), - [aux_sym_declare_statement_token2] = ACTIONS(1469), - [sym_float] = ACTIONS(1469), - [aux_sym_try_statement_token1] = ACTIONS(1469), - [aux_sym_goto_statement_token1] = ACTIONS(1469), - [aux_sym_continue_statement_token1] = ACTIONS(1469), - [aux_sym_break_statement_token1] = ACTIONS(1469), - [sym_integer] = ACTIONS(1469), - [aux_sym_return_statement_token1] = ACTIONS(1469), - [aux_sym_throw_expression_token1] = ACTIONS(1469), - [aux_sym_while_statement_token1] = ACTIONS(1469), - [aux_sym_while_statement_token2] = ACTIONS(1469), - [aux_sym_do_statement_token1] = ACTIONS(1469), - [aux_sym_for_statement_token1] = ACTIONS(1469), - [aux_sym_for_statement_token2] = ACTIONS(1469), - [aux_sym_foreach_statement_token1] = ACTIONS(1469), - [aux_sym_foreach_statement_token2] = ACTIONS(1469), - [aux_sym_if_statement_token1] = ACTIONS(1469), - [aux_sym_if_statement_token2] = ACTIONS(1469), - [aux_sym_else_if_clause_token1] = ACTIONS(1469), - [aux_sym_else_clause_token1] = ACTIONS(1469), - [aux_sym_match_expression_token1] = ACTIONS(1469), - [aux_sym_match_default_expression_token1] = ACTIONS(1469), - [aux_sym_switch_statement_token1] = ACTIONS(1469), - [aux_sym_switch_block_token1] = ACTIONS(1469), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_AT] = ACTIONS(1467), - [aux_sym_clone_expression_token1] = ACTIONS(1469), - [aux_sym_print_intrinsic_token1] = ACTIONS(1469), - [aux_sym_object_creation_expression_token1] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [aux_sym__list_destructing_token1] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_self] = ACTIONS(1469), - [anon_sym_parent] = ACTIONS(1469), - [aux_sym__argument_name_token1] = ACTIONS(1469), - [aux_sym__argument_name_token2] = ACTIONS(1469), - [anon_sym_POUND_LBRACK] = ACTIONS(1467), - [aux_sym_encapsed_string_token1] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [aux_sym_string_token1] = ACTIONS(1467), - [anon_sym_SQUOTE] = ACTIONS(1467), - [anon_sym_LT_LT_LT] = ACTIONS(1467), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_DOLLAR] = ACTIONS(1467), - [aux_sym_yield_expression_token1] = ACTIONS(1469), - [aux_sym_include_expression_token1] = ACTIONS(1469), - [aux_sym_include_once_expression_token1] = ACTIONS(1469), - [aux_sym_require_expression_token1] = ACTIONS(1469), - [aux_sym_require_once_expression_token1] = ACTIONS(1469), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1450), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [aux_sym__list_destructing_token1] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_self] = ACTIONS(1452), + [anon_sym_parent] = ACTIONS(1452), + [aux_sym__argument_name_token1] = ACTIONS(1452), + [aux_sym__argument_name_token2] = ACTIONS(1452), + [anon_sym_POUND_LBRACK] = ACTIONS(1450), + [aux_sym_encapsed_string_token1] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [aux_sym_string_token1] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_LT_LT_LT] = ACTIONS(1450), + [anon_sym_BQUOTE] = ACTIONS(1450), + [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), }, [542] = { - [ts_builtin_sym_end] = ACTIONS(1471), - [sym_name] = ACTIONS(1473), - [anon_sym_QMARK_GT] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1471), - [aux_sym_function_static_declaration_token1] = ACTIONS(1473), - [aux_sym_global_declaration_token1] = ACTIONS(1473), - [aux_sym_namespace_definition_token1] = ACTIONS(1473), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1473), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1473), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1473), - [anon_sym_BSLASH] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_RBRACE] = ACTIONS(1471), - [aux_sym_trait_declaration_token1] = ACTIONS(1473), - [aux_sym_interface_declaration_token1] = ACTIONS(1473), - [aux_sym_enum_declaration_token1] = ACTIONS(1473), - [aux_sym_enum_case_token1] = ACTIONS(1473), - [aux_sym_class_declaration_token1] = ACTIONS(1473), - [aux_sym_final_modifier_token1] = ACTIONS(1473), - [aux_sym_abstract_modifier_token1] = ACTIONS(1473), - [aux_sym_readonly_modifier_token1] = ACTIONS(1473), - [aux_sym_visibility_modifier_token1] = ACTIONS(1473), - [aux_sym_visibility_modifier_token2] = ACTIONS(1473), - [aux_sym_visibility_modifier_token3] = ACTIONS(1473), - [aux_sym__arrow_function_header_token1] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1471), - [aux_sym_cast_type_token1] = ACTIONS(1473), - [aux_sym_echo_statement_token1] = ACTIONS(1473), - [aux_sym_exit_statement_token1] = ACTIONS(1473), - [anon_sym_unset] = ACTIONS(1473), - [aux_sym_declare_statement_token1] = ACTIONS(1473), - [aux_sym_declare_statement_token2] = ACTIONS(1473), - [sym_float] = ACTIONS(1473), - [aux_sym_try_statement_token1] = ACTIONS(1473), - [aux_sym_goto_statement_token1] = ACTIONS(1473), - [aux_sym_continue_statement_token1] = ACTIONS(1473), - [aux_sym_break_statement_token1] = ACTIONS(1473), - [sym_integer] = ACTIONS(1473), - [aux_sym_return_statement_token1] = ACTIONS(1473), - [aux_sym_throw_expression_token1] = ACTIONS(1473), - [aux_sym_while_statement_token1] = ACTIONS(1473), - [aux_sym_while_statement_token2] = ACTIONS(1473), - [aux_sym_do_statement_token1] = ACTIONS(1473), - [aux_sym_for_statement_token1] = ACTIONS(1473), - [aux_sym_for_statement_token2] = ACTIONS(1473), - [aux_sym_foreach_statement_token1] = ACTIONS(1473), - [aux_sym_foreach_statement_token2] = ACTIONS(1473), - [aux_sym_if_statement_token1] = ACTIONS(1473), - [aux_sym_if_statement_token2] = ACTIONS(1473), - [aux_sym_else_if_clause_token1] = ACTIONS(1473), - [aux_sym_else_clause_token1] = ACTIONS(1473), - [aux_sym_match_expression_token1] = ACTIONS(1473), - [aux_sym_match_default_expression_token1] = ACTIONS(1473), - [aux_sym_switch_statement_token1] = ACTIONS(1473), - [aux_sym_switch_block_token1] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_AT] = ACTIONS(1471), - [aux_sym_clone_expression_token1] = ACTIONS(1473), - [aux_sym_print_intrinsic_token1] = ACTIONS(1473), - [aux_sym_object_creation_expression_token1] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [aux_sym__list_destructing_token1] = ACTIONS(1473), - [anon_sym_LBRACK] = ACTIONS(1471), - [anon_sym_self] = ACTIONS(1473), - [anon_sym_parent] = ACTIONS(1473), - [aux_sym__argument_name_token1] = ACTIONS(1473), - [aux_sym__argument_name_token2] = ACTIONS(1473), - [anon_sym_POUND_LBRACK] = ACTIONS(1471), - [aux_sym_encapsed_string_token1] = ACTIONS(1471), - [anon_sym_DQUOTE] = ACTIONS(1471), - [aux_sym_string_token1] = ACTIONS(1471), - [anon_sym_SQUOTE] = ACTIONS(1471), - [anon_sym_LT_LT_LT] = ACTIONS(1471), - [anon_sym_BQUOTE] = ACTIONS(1471), - [anon_sym_DOLLAR] = ACTIONS(1471), - [aux_sym_yield_expression_token1] = ACTIONS(1473), - [aux_sym_include_expression_token1] = ACTIONS(1473), - [aux_sym_include_once_expression_token1] = ACTIONS(1473), - [aux_sym_require_expression_token1] = ACTIONS(1473), - [aux_sym_require_once_expression_token1] = ACTIONS(1473), + [ts_builtin_sym_end] = ACTIONS(1035), + [sym_name] = ACTIONS(1037), + [anon_sym_QMARK_GT] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1035), + [aux_sym_function_static_declaration_token1] = ACTIONS(1037), + [aux_sym_global_declaration_token1] = ACTIONS(1037), + [aux_sym_namespace_definition_token1] = ACTIONS(1037), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1037), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1037), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1037), + [anon_sym_BSLASH] = ACTIONS(1035), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_RBRACE] = ACTIONS(1035), + [aux_sym_trait_declaration_token1] = ACTIONS(1037), + [aux_sym_interface_declaration_token1] = ACTIONS(1037), + [aux_sym_enum_declaration_token1] = ACTIONS(1037), + [aux_sym_enum_case_token1] = ACTIONS(1037), + [aux_sym_class_declaration_token1] = ACTIONS(1037), + [aux_sym_final_modifier_token1] = ACTIONS(1037), + [aux_sym_abstract_modifier_token1] = ACTIONS(1037), + [aux_sym_readonly_modifier_token1] = ACTIONS(1037), + [sym_var_modifier] = ACTIONS(1037), + [aux_sym_visibility_modifier_token1] = ACTIONS(1037), + [aux_sym_visibility_modifier_token2] = ACTIONS(1037), + [aux_sym_visibility_modifier_token3] = ACTIONS(1037), + [aux_sym__arrow_function_header_token1] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1035), + [aux_sym_cast_type_token1] = ACTIONS(1037), + [aux_sym_echo_statement_token1] = ACTIONS(1037), + [aux_sym_exit_statement_token1] = ACTIONS(1037), + [anon_sym_unset] = ACTIONS(1037), + [aux_sym_declare_statement_token1] = ACTIONS(1037), + [aux_sym_declare_statement_token2] = ACTIONS(1037), + [sym_float] = ACTIONS(1037), + [aux_sym_try_statement_token1] = ACTIONS(1037), + [aux_sym_goto_statement_token1] = ACTIONS(1037), + [aux_sym_continue_statement_token1] = ACTIONS(1037), + [aux_sym_break_statement_token1] = ACTIONS(1037), + [sym_integer] = ACTIONS(1037), + [aux_sym_return_statement_token1] = ACTIONS(1037), + [aux_sym_throw_expression_token1] = ACTIONS(1037), + [aux_sym_while_statement_token1] = ACTIONS(1037), + [aux_sym_while_statement_token2] = ACTIONS(1037), + [aux_sym_do_statement_token1] = ACTIONS(1037), + [aux_sym_for_statement_token1] = ACTIONS(1037), + [aux_sym_for_statement_token2] = ACTIONS(1037), + [aux_sym_foreach_statement_token1] = ACTIONS(1037), + [aux_sym_foreach_statement_token2] = ACTIONS(1037), + [aux_sym_if_statement_token1] = ACTIONS(1037), + [aux_sym_if_statement_token2] = ACTIONS(1037), + [aux_sym_else_if_clause_token1] = ACTIONS(1037), + [aux_sym_else_clause_token1] = ACTIONS(1037), + [aux_sym_match_expression_token1] = ACTIONS(1037), + [aux_sym_match_default_expression_token1] = ACTIONS(1037), + [aux_sym_switch_statement_token1] = ACTIONS(1037), + [aux_sym_switch_block_token1] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_TILDE] = ACTIONS(1035), + [anon_sym_BANG] = ACTIONS(1035), + [anon_sym_AT] = ACTIONS(1035), + [aux_sym_clone_expression_token1] = ACTIONS(1037), + [aux_sym_print_intrinsic_token1] = ACTIONS(1037), + [aux_sym_object_creation_expression_token1] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1035), + [aux_sym__list_destructing_token1] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_self] = ACTIONS(1037), + [anon_sym_parent] = ACTIONS(1037), + [aux_sym__argument_name_token1] = ACTIONS(1037), + [aux_sym__argument_name_token2] = ACTIONS(1037), + [anon_sym_POUND_LBRACK] = ACTIONS(1035), + [aux_sym_encapsed_string_token1] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(1035), + [aux_sym_string_token1] = ACTIONS(1035), + [anon_sym_SQUOTE] = ACTIONS(1035), + [anon_sym_LT_LT_LT] = ACTIONS(1035), + [anon_sym_BQUOTE] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1035), + [aux_sym_yield_expression_token1] = ACTIONS(1037), + [aux_sym_include_expression_token1] = ACTIONS(1037), + [aux_sym_include_once_expression_token1] = ACTIONS(1037), + [aux_sym_require_expression_token1] = ACTIONS(1037), + [aux_sym_require_once_expression_token1] = ACTIONS(1037), [sym_comment] = ACTIONS(3), }, [543] = { - [ts_builtin_sym_end] = ACTIONS(1475), - [sym_name] = ACTIONS(1477), - [anon_sym_QMARK_GT] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [aux_sym_function_static_declaration_token1] = ACTIONS(1477), - [aux_sym_global_declaration_token1] = ACTIONS(1477), - [aux_sym_namespace_definition_token1] = ACTIONS(1477), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1477), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1477), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1477), - [anon_sym_BSLASH] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [aux_sym_trait_declaration_token1] = ACTIONS(1477), - [aux_sym_interface_declaration_token1] = ACTIONS(1477), - [aux_sym_enum_declaration_token1] = ACTIONS(1477), - [aux_sym_enum_case_token1] = ACTIONS(1477), - [aux_sym_class_declaration_token1] = ACTIONS(1477), - [aux_sym_final_modifier_token1] = ACTIONS(1477), - [aux_sym_abstract_modifier_token1] = ACTIONS(1477), - [aux_sym_readonly_modifier_token1] = ACTIONS(1477), - [aux_sym_visibility_modifier_token1] = ACTIONS(1477), - [aux_sym_visibility_modifier_token2] = ACTIONS(1477), - [aux_sym_visibility_modifier_token3] = ACTIONS(1477), - [aux_sym__arrow_function_header_token1] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1475), - [aux_sym_cast_type_token1] = ACTIONS(1477), - [aux_sym_echo_statement_token1] = ACTIONS(1477), - [aux_sym_exit_statement_token1] = ACTIONS(1477), - [anon_sym_unset] = ACTIONS(1477), - [aux_sym_declare_statement_token1] = ACTIONS(1477), - [aux_sym_declare_statement_token2] = ACTIONS(1477), - [sym_float] = ACTIONS(1477), - [aux_sym_try_statement_token1] = ACTIONS(1477), - [aux_sym_goto_statement_token1] = ACTIONS(1477), - [aux_sym_continue_statement_token1] = ACTIONS(1477), - [aux_sym_break_statement_token1] = ACTIONS(1477), - [sym_integer] = ACTIONS(1477), - [aux_sym_return_statement_token1] = ACTIONS(1477), - [aux_sym_throw_expression_token1] = ACTIONS(1477), - [aux_sym_while_statement_token1] = ACTIONS(1477), - [aux_sym_while_statement_token2] = ACTIONS(1477), - [aux_sym_do_statement_token1] = ACTIONS(1477), - [aux_sym_for_statement_token1] = ACTIONS(1477), - [aux_sym_for_statement_token2] = ACTIONS(1477), - [aux_sym_foreach_statement_token1] = ACTIONS(1477), - [aux_sym_foreach_statement_token2] = ACTIONS(1477), - [aux_sym_if_statement_token1] = ACTIONS(1477), - [aux_sym_if_statement_token2] = ACTIONS(1477), - [aux_sym_else_if_clause_token1] = ACTIONS(1477), - [aux_sym_else_clause_token1] = ACTIONS(1477), - [aux_sym_match_expression_token1] = ACTIONS(1477), - [aux_sym_match_default_expression_token1] = ACTIONS(1477), - [aux_sym_switch_statement_token1] = ACTIONS(1477), - [aux_sym_switch_block_token1] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1475), - [aux_sym_clone_expression_token1] = ACTIONS(1477), - [aux_sym_print_intrinsic_token1] = ACTIONS(1477), - [aux_sym_object_creation_expression_token1] = ACTIONS(1477), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [aux_sym__list_destructing_token1] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_self] = ACTIONS(1477), - [anon_sym_parent] = ACTIONS(1477), - [aux_sym__argument_name_token1] = ACTIONS(1477), - [aux_sym__argument_name_token2] = ACTIONS(1477), - [anon_sym_POUND_LBRACK] = ACTIONS(1475), - [aux_sym_encapsed_string_token1] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [aux_sym_string_token1] = ACTIONS(1475), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_LT_LT_LT] = ACTIONS(1475), - [anon_sym_BQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1475), - [aux_sym_yield_expression_token1] = ACTIONS(1477), - [aux_sym_include_expression_token1] = ACTIONS(1477), - [aux_sym_include_once_expression_token1] = ACTIONS(1477), - [aux_sym_require_expression_token1] = ACTIONS(1477), - [aux_sym_require_once_expression_token1] = ACTIONS(1477), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [aux_sym__list_destructing_token1] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_self] = ACTIONS(1456), + [anon_sym_parent] = ACTIONS(1456), + [aux_sym__argument_name_token1] = ACTIONS(1456), + [aux_sym__argument_name_token2] = ACTIONS(1456), + [anon_sym_POUND_LBRACK] = ACTIONS(1454), + [aux_sym_encapsed_string_token1] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [aux_sym_string_token1] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_LT_LT_LT] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [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), }, [544] = { - [ts_builtin_sym_end] = ACTIONS(1479), - [sym_name] = ACTIONS(1481), - [anon_sym_QMARK_GT] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [aux_sym_function_static_declaration_token1] = ACTIONS(1481), - [aux_sym_global_declaration_token1] = ACTIONS(1481), - [aux_sym_namespace_definition_token1] = ACTIONS(1481), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1481), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1481), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1481), - [anon_sym_BSLASH] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1479), - [aux_sym_trait_declaration_token1] = ACTIONS(1481), - [aux_sym_interface_declaration_token1] = ACTIONS(1481), - [aux_sym_enum_declaration_token1] = ACTIONS(1481), - [aux_sym_enum_case_token1] = ACTIONS(1481), - [aux_sym_class_declaration_token1] = ACTIONS(1481), - [aux_sym_final_modifier_token1] = ACTIONS(1481), - [aux_sym_abstract_modifier_token1] = ACTIONS(1481), - [aux_sym_readonly_modifier_token1] = ACTIONS(1481), - [aux_sym_visibility_modifier_token1] = ACTIONS(1481), - [aux_sym_visibility_modifier_token2] = ACTIONS(1481), - [aux_sym_visibility_modifier_token3] = ACTIONS(1481), - [aux_sym__arrow_function_header_token1] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_cast_type_token1] = ACTIONS(1481), - [aux_sym_echo_statement_token1] = ACTIONS(1481), - [aux_sym_exit_statement_token1] = ACTIONS(1481), - [anon_sym_unset] = ACTIONS(1481), - [aux_sym_declare_statement_token1] = ACTIONS(1481), - [aux_sym_declare_statement_token2] = ACTIONS(1481), - [sym_float] = ACTIONS(1481), - [aux_sym_try_statement_token1] = ACTIONS(1481), - [aux_sym_goto_statement_token1] = ACTIONS(1481), - [aux_sym_continue_statement_token1] = ACTIONS(1481), - [aux_sym_break_statement_token1] = ACTIONS(1481), - [sym_integer] = ACTIONS(1481), - [aux_sym_return_statement_token1] = ACTIONS(1481), - [aux_sym_throw_expression_token1] = ACTIONS(1481), - [aux_sym_while_statement_token1] = ACTIONS(1481), - [aux_sym_while_statement_token2] = ACTIONS(1481), - [aux_sym_do_statement_token1] = ACTIONS(1481), - [aux_sym_for_statement_token1] = ACTIONS(1481), - [aux_sym_for_statement_token2] = ACTIONS(1481), - [aux_sym_foreach_statement_token1] = ACTIONS(1481), - [aux_sym_foreach_statement_token2] = ACTIONS(1481), - [aux_sym_if_statement_token1] = ACTIONS(1481), - [aux_sym_if_statement_token2] = ACTIONS(1481), - [aux_sym_else_if_clause_token1] = ACTIONS(1481), - [aux_sym_else_clause_token1] = ACTIONS(1481), - [aux_sym_match_expression_token1] = ACTIONS(1481), - [aux_sym_match_default_expression_token1] = ACTIONS(1481), - [aux_sym_switch_statement_token1] = ACTIONS(1481), - [aux_sym_switch_block_token1] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1479), - [anon_sym_AT] = ACTIONS(1479), - [aux_sym_clone_expression_token1] = ACTIONS(1481), - [aux_sym_print_intrinsic_token1] = ACTIONS(1481), - [aux_sym_object_creation_expression_token1] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1479), - [anon_sym_PLUS_PLUS] = ACTIONS(1479), - [aux_sym__list_destructing_token1] = ACTIONS(1481), - [anon_sym_LBRACK] = ACTIONS(1479), - [anon_sym_self] = ACTIONS(1481), - [anon_sym_parent] = ACTIONS(1481), - [aux_sym__argument_name_token1] = ACTIONS(1481), - [aux_sym__argument_name_token2] = ACTIONS(1481), - [anon_sym_POUND_LBRACK] = ACTIONS(1479), - [aux_sym_encapsed_string_token1] = ACTIONS(1479), - [anon_sym_DQUOTE] = ACTIONS(1479), - [aux_sym_string_token1] = ACTIONS(1479), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_LT_LT_LT] = ACTIONS(1479), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [aux_sym_yield_expression_token1] = ACTIONS(1481), - [aux_sym_include_expression_token1] = ACTIONS(1481), - [aux_sym_include_once_expression_token1] = ACTIONS(1481), - [aux_sym_require_expression_token1] = ACTIONS(1481), - [aux_sym_require_once_expression_token1] = ACTIONS(1481), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [aux_sym__list_destructing_token1] = ACTIONS(1460), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_self] = ACTIONS(1460), + [anon_sym_parent] = ACTIONS(1460), + [aux_sym__argument_name_token1] = ACTIONS(1460), + [aux_sym__argument_name_token2] = ACTIONS(1460), + [anon_sym_POUND_LBRACK] = ACTIONS(1458), + [aux_sym_encapsed_string_token1] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [aux_sym_string_token1] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_LT_LT_LT] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [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), }, [545] = { - [ts_builtin_sym_end] = ACTIONS(1483), - [sym_name] = ACTIONS(1485), - [anon_sym_QMARK_GT] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1483), - [aux_sym_function_static_declaration_token1] = ACTIONS(1485), - [aux_sym_global_declaration_token1] = ACTIONS(1485), - [aux_sym_namespace_definition_token1] = ACTIONS(1485), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1485), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1485), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1485), - [anon_sym_BSLASH] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [aux_sym_trait_declaration_token1] = ACTIONS(1485), - [aux_sym_interface_declaration_token1] = ACTIONS(1485), - [aux_sym_enum_declaration_token1] = ACTIONS(1485), - [aux_sym_enum_case_token1] = ACTIONS(1485), - [aux_sym_class_declaration_token1] = ACTIONS(1485), - [aux_sym_final_modifier_token1] = ACTIONS(1485), - [aux_sym_abstract_modifier_token1] = ACTIONS(1485), - [aux_sym_readonly_modifier_token1] = ACTIONS(1485), - [aux_sym_visibility_modifier_token1] = ACTIONS(1485), - [aux_sym_visibility_modifier_token2] = ACTIONS(1485), - [aux_sym_visibility_modifier_token3] = ACTIONS(1485), - [aux_sym__arrow_function_header_token1] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1483), - [aux_sym_cast_type_token1] = ACTIONS(1485), - [aux_sym_echo_statement_token1] = ACTIONS(1485), - [aux_sym_exit_statement_token1] = ACTIONS(1485), - [anon_sym_unset] = ACTIONS(1485), - [aux_sym_declare_statement_token1] = ACTIONS(1485), - [aux_sym_declare_statement_token2] = ACTIONS(1485), - [sym_float] = ACTIONS(1485), - [aux_sym_try_statement_token1] = ACTIONS(1485), - [aux_sym_goto_statement_token1] = ACTIONS(1485), - [aux_sym_continue_statement_token1] = ACTIONS(1485), - [aux_sym_break_statement_token1] = ACTIONS(1485), - [sym_integer] = ACTIONS(1485), - [aux_sym_return_statement_token1] = ACTIONS(1485), - [aux_sym_throw_expression_token1] = ACTIONS(1485), - [aux_sym_while_statement_token1] = ACTIONS(1485), - [aux_sym_while_statement_token2] = ACTIONS(1485), - [aux_sym_do_statement_token1] = ACTIONS(1485), - [aux_sym_for_statement_token1] = ACTIONS(1485), - [aux_sym_for_statement_token2] = ACTIONS(1485), - [aux_sym_foreach_statement_token1] = ACTIONS(1485), - [aux_sym_foreach_statement_token2] = ACTIONS(1485), - [aux_sym_if_statement_token1] = ACTIONS(1485), - [aux_sym_if_statement_token2] = ACTIONS(1485), - [aux_sym_else_if_clause_token1] = ACTIONS(1485), - [aux_sym_else_clause_token1] = ACTIONS(1485), - [aux_sym_match_expression_token1] = ACTIONS(1485), - [aux_sym_match_default_expression_token1] = ACTIONS(1485), - [aux_sym_switch_statement_token1] = ACTIONS(1485), - [aux_sym_switch_block_token1] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_AT] = ACTIONS(1483), - [aux_sym_clone_expression_token1] = ACTIONS(1485), - [aux_sym_print_intrinsic_token1] = ACTIONS(1485), - [aux_sym_object_creation_expression_token1] = ACTIONS(1485), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [aux_sym__list_destructing_token1] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_self] = ACTIONS(1485), - [anon_sym_parent] = ACTIONS(1485), - [aux_sym__argument_name_token1] = ACTIONS(1485), - [aux_sym__argument_name_token2] = ACTIONS(1485), - [anon_sym_POUND_LBRACK] = ACTIONS(1483), - [aux_sym_encapsed_string_token1] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1483), - [aux_sym_string_token1] = ACTIONS(1483), - [anon_sym_SQUOTE] = ACTIONS(1483), - [anon_sym_LT_LT_LT] = ACTIONS(1483), - [anon_sym_BQUOTE] = ACTIONS(1483), - [anon_sym_DOLLAR] = ACTIONS(1483), - [aux_sym_yield_expression_token1] = ACTIONS(1485), - [aux_sym_include_expression_token1] = ACTIONS(1485), - [aux_sym_include_once_expression_token1] = ACTIONS(1485), - [aux_sym_require_expression_token1] = ACTIONS(1485), - [aux_sym_require_once_expression_token1] = ACTIONS(1485), + [sym_qualified_name] = STATE(679), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym__unary_expression] = STATE(925), + [sym_unary_op_expression] = STATE(925), + [sym_error_suppression_expression] = STATE(925), + [sym_clone_expression] = STATE(925), + [sym_primary_expression] = STATE(925), + [sym_parenthesized_expression] = STATE(681), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_expression] = STATE(925), + [sym_cast_variable] = STATE(589), + [sym_member_access_expression] = STATE(589), + [sym_nullsafe_member_access_expression] = STATE(589), + [sym_scoped_property_access_expression] = STATE(589), + [sym_function_call_expression] = STATE(571), + [sym_scoped_call_expression] = STATE(571), + [sym__scope_resolution_qualifier] = STATE(2539), + [sym_relative_scope] = STATE(2539), + [sym_member_call_expression] = STATE(571), + [sym_nullsafe_member_call_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym__dereferencable_expression] = STATE(1638), + [sym_array_creation_expression] = STATE(681), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(683), + [sym_string] = STATE(683), + [sym_heredoc] = STATE(683), + [sym_nowdoc] = STATE(683), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(683), + [sym_dynamic_variable_name] = STATE(571), + [sym_variable_name] = STATE(571), + [sym_include_expression] = STATE(925), + [sym_include_once_expression] = STATE(925), + [sym__reserved_identifier] = STATE(1544), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(565), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [anon_sym_PLUS] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [aux_sym_clone_expression_token1] = ACTIONS(685), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(695), + [aux_sym_include_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(3), }, [546] = { - [ts_builtin_sym_end] = ACTIONS(1487), - [sym_name] = ACTIONS(1489), - [anon_sym_QMARK_GT] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1487), - [aux_sym_function_static_declaration_token1] = ACTIONS(1489), - [aux_sym_global_declaration_token1] = ACTIONS(1489), - [aux_sym_namespace_definition_token1] = ACTIONS(1489), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1489), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1489), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1489), - [anon_sym_BSLASH] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(1487), - [aux_sym_trait_declaration_token1] = ACTIONS(1489), - [aux_sym_interface_declaration_token1] = ACTIONS(1489), - [aux_sym_enum_declaration_token1] = ACTIONS(1489), - [aux_sym_enum_case_token1] = ACTIONS(1489), - [aux_sym_class_declaration_token1] = ACTIONS(1489), - [aux_sym_final_modifier_token1] = ACTIONS(1489), - [aux_sym_abstract_modifier_token1] = ACTIONS(1489), - [aux_sym_readonly_modifier_token1] = ACTIONS(1489), - [aux_sym_visibility_modifier_token1] = ACTIONS(1489), - [aux_sym_visibility_modifier_token2] = ACTIONS(1489), - [aux_sym_visibility_modifier_token3] = ACTIONS(1489), - [aux_sym__arrow_function_header_token1] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1487), - [aux_sym_cast_type_token1] = ACTIONS(1489), - [aux_sym_echo_statement_token1] = ACTIONS(1489), - [aux_sym_exit_statement_token1] = ACTIONS(1489), - [anon_sym_unset] = ACTIONS(1489), - [aux_sym_declare_statement_token1] = ACTIONS(1489), - [aux_sym_declare_statement_token2] = ACTIONS(1489), - [sym_float] = ACTIONS(1489), - [aux_sym_try_statement_token1] = ACTIONS(1489), - [aux_sym_goto_statement_token1] = ACTIONS(1489), - [aux_sym_continue_statement_token1] = ACTIONS(1489), - [aux_sym_break_statement_token1] = ACTIONS(1489), - [sym_integer] = ACTIONS(1489), - [aux_sym_return_statement_token1] = ACTIONS(1489), - [aux_sym_throw_expression_token1] = ACTIONS(1489), - [aux_sym_while_statement_token1] = ACTIONS(1489), - [aux_sym_while_statement_token2] = ACTIONS(1489), - [aux_sym_do_statement_token1] = ACTIONS(1489), - [aux_sym_for_statement_token1] = ACTIONS(1489), - [aux_sym_for_statement_token2] = ACTIONS(1489), - [aux_sym_foreach_statement_token1] = ACTIONS(1489), - [aux_sym_foreach_statement_token2] = ACTIONS(1489), - [aux_sym_if_statement_token1] = ACTIONS(1489), - [aux_sym_if_statement_token2] = ACTIONS(1489), - [aux_sym_else_if_clause_token1] = ACTIONS(1489), - [aux_sym_else_clause_token1] = ACTIONS(1489), - [aux_sym_match_expression_token1] = ACTIONS(1489), - [aux_sym_match_default_expression_token1] = ACTIONS(1489), - [aux_sym_switch_statement_token1] = ACTIONS(1489), - [aux_sym_switch_block_token1] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(1487), - [aux_sym_clone_expression_token1] = ACTIONS(1489), - [aux_sym_print_intrinsic_token1] = ACTIONS(1489), - [aux_sym_object_creation_expression_token1] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1487), - [aux_sym__list_destructing_token1] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1487), - [anon_sym_self] = ACTIONS(1489), - [anon_sym_parent] = ACTIONS(1489), - [aux_sym__argument_name_token1] = ACTIONS(1489), - [aux_sym__argument_name_token2] = ACTIONS(1489), - [anon_sym_POUND_LBRACK] = ACTIONS(1487), - [aux_sym_encapsed_string_token1] = ACTIONS(1487), - [anon_sym_DQUOTE] = ACTIONS(1487), - [aux_sym_string_token1] = ACTIONS(1487), - [anon_sym_SQUOTE] = ACTIONS(1487), - [anon_sym_LT_LT_LT] = ACTIONS(1487), - [anon_sym_BQUOTE] = ACTIONS(1487), - [anon_sym_DOLLAR] = ACTIONS(1487), - [aux_sym_yield_expression_token1] = ACTIONS(1489), - [aux_sym_include_expression_token1] = ACTIONS(1489), - [aux_sym_include_once_expression_token1] = ACTIONS(1489), - [aux_sym_require_expression_token1] = ACTIONS(1489), - [aux_sym_require_once_expression_token1] = ACTIONS(1489), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [aux_sym__list_destructing_token1] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_self] = ACTIONS(1444), + [anon_sym_parent] = ACTIONS(1444), + [aux_sym__argument_name_token1] = ACTIONS(1444), + [aux_sym__argument_name_token2] = ACTIONS(1444), + [anon_sym_POUND_LBRACK] = ACTIONS(1442), + [aux_sym_encapsed_string_token1] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [aux_sym_string_token1] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_LT_LT_LT] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1442), + [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), }, [547] = { - [ts_builtin_sym_end] = ACTIONS(1491), - [sym_name] = ACTIONS(1493), - [anon_sym_QMARK_GT] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1491), - [aux_sym_function_static_declaration_token1] = ACTIONS(1493), - [aux_sym_global_declaration_token1] = ACTIONS(1493), - [aux_sym_namespace_definition_token1] = ACTIONS(1493), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1493), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1493), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1493), - [anon_sym_BSLASH] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1491), - [aux_sym_trait_declaration_token1] = ACTIONS(1493), - [aux_sym_interface_declaration_token1] = ACTIONS(1493), - [aux_sym_enum_declaration_token1] = ACTIONS(1493), - [aux_sym_enum_case_token1] = ACTIONS(1493), - [aux_sym_class_declaration_token1] = ACTIONS(1493), - [aux_sym_final_modifier_token1] = ACTIONS(1493), - [aux_sym_abstract_modifier_token1] = ACTIONS(1493), - [aux_sym_readonly_modifier_token1] = ACTIONS(1493), - [aux_sym_visibility_modifier_token1] = ACTIONS(1493), - [aux_sym_visibility_modifier_token2] = ACTIONS(1493), - [aux_sym_visibility_modifier_token3] = ACTIONS(1493), - [aux_sym__arrow_function_header_token1] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1491), - [aux_sym_cast_type_token1] = ACTIONS(1493), - [aux_sym_echo_statement_token1] = ACTIONS(1493), - [aux_sym_exit_statement_token1] = ACTIONS(1493), - [anon_sym_unset] = ACTIONS(1493), - [aux_sym_declare_statement_token1] = ACTIONS(1493), - [aux_sym_declare_statement_token2] = ACTIONS(1493), - [sym_float] = ACTIONS(1493), - [aux_sym_try_statement_token1] = ACTIONS(1493), - [aux_sym_goto_statement_token1] = ACTIONS(1493), - [aux_sym_continue_statement_token1] = ACTIONS(1493), - [aux_sym_break_statement_token1] = ACTIONS(1493), - [sym_integer] = ACTIONS(1493), - [aux_sym_return_statement_token1] = ACTIONS(1493), - [aux_sym_throw_expression_token1] = ACTIONS(1493), - [aux_sym_while_statement_token1] = ACTIONS(1493), - [aux_sym_while_statement_token2] = ACTIONS(1493), - [aux_sym_do_statement_token1] = ACTIONS(1493), - [aux_sym_for_statement_token1] = ACTIONS(1493), - [aux_sym_for_statement_token2] = ACTIONS(1493), - [aux_sym_foreach_statement_token1] = ACTIONS(1493), - [aux_sym_foreach_statement_token2] = ACTIONS(1493), - [aux_sym_if_statement_token1] = ACTIONS(1493), - [aux_sym_if_statement_token2] = ACTIONS(1493), - [aux_sym_else_if_clause_token1] = ACTIONS(1493), - [aux_sym_else_clause_token1] = ACTIONS(1493), - [aux_sym_match_expression_token1] = ACTIONS(1493), - [aux_sym_match_default_expression_token1] = ACTIONS(1493), - [aux_sym_switch_statement_token1] = ACTIONS(1493), - [aux_sym_switch_block_token1] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_AT] = ACTIONS(1491), - [aux_sym_clone_expression_token1] = ACTIONS(1493), - [aux_sym_print_intrinsic_token1] = ACTIONS(1493), - [aux_sym_object_creation_expression_token1] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [aux_sym__list_destructing_token1] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_self] = ACTIONS(1493), - [anon_sym_parent] = ACTIONS(1493), - [aux_sym__argument_name_token1] = ACTIONS(1493), - [aux_sym__argument_name_token2] = ACTIONS(1493), - [anon_sym_POUND_LBRACK] = ACTIONS(1491), - [aux_sym_encapsed_string_token1] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1491), - [aux_sym_string_token1] = ACTIONS(1491), - [anon_sym_SQUOTE] = ACTIONS(1491), - [anon_sym_LT_LT_LT] = ACTIONS(1491), - [anon_sym_BQUOTE] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1491), - [aux_sym_yield_expression_token1] = ACTIONS(1493), - [aux_sym_include_expression_token1] = ACTIONS(1493), - [aux_sym_include_once_expression_token1] = ACTIONS(1493), - [aux_sym_require_expression_token1] = ACTIONS(1493), - [aux_sym_require_once_expression_token1] = ACTIONS(1493), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [aux_sym__list_destructing_token1] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_self] = ACTIONS(1464), + [anon_sym_parent] = ACTIONS(1464), + [aux_sym__argument_name_token1] = ACTIONS(1464), + [aux_sym__argument_name_token2] = ACTIONS(1464), + [anon_sym_POUND_LBRACK] = ACTIONS(1462), + [aux_sym_encapsed_string_token1] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [aux_sym_string_token1] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_LT_LT_LT] = ACTIONS(1462), + [anon_sym_BQUOTE] = ACTIONS(1462), + [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), }, [548] = { - [ts_builtin_sym_end] = ACTIONS(1495), - [sym_name] = ACTIONS(1497), - [anon_sym_QMARK_GT] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1495), - [aux_sym_function_static_declaration_token1] = ACTIONS(1497), - [aux_sym_global_declaration_token1] = ACTIONS(1497), - [aux_sym_namespace_definition_token1] = ACTIONS(1497), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1497), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1497), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1497), - [anon_sym_BSLASH] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1495), - [aux_sym_trait_declaration_token1] = ACTIONS(1497), - [aux_sym_interface_declaration_token1] = ACTIONS(1497), - [aux_sym_enum_declaration_token1] = ACTIONS(1497), - [aux_sym_enum_case_token1] = ACTIONS(1497), - [aux_sym_class_declaration_token1] = ACTIONS(1497), - [aux_sym_final_modifier_token1] = ACTIONS(1497), - [aux_sym_abstract_modifier_token1] = ACTIONS(1497), - [aux_sym_readonly_modifier_token1] = ACTIONS(1497), - [aux_sym_visibility_modifier_token1] = ACTIONS(1497), - [aux_sym_visibility_modifier_token2] = ACTIONS(1497), - [aux_sym_visibility_modifier_token3] = ACTIONS(1497), - [aux_sym__arrow_function_header_token1] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1495), - [aux_sym_cast_type_token1] = ACTIONS(1497), - [aux_sym_echo_statement_token1] = ACTIONS(1497), - [aux_sym_exit_statement_token1] = ACTIONS(1497), - [anon_sym_unset] = ACTIONS(1497), - [aux_sym_declare_statement_token1] = ACTIONS(1497), - [aux_sym_declare_statement_token2] = ACTIONS(1497), - [sym_float] = ACTIONS(1497), - [aux_sym_try_statement_token1] = ACTIONS(1497), - [aux_sym_goto_statement_token1] = ACTIONS(1497), - [aux_sym_continue_statement_token1] = ACTIONS(1497), - [aux_sym_break_statement_token1] = ACTIONS(1497), - [sym_integer] = ACTIONS(1497), - [aux_sym_return_statement_token1] = ACTIONS(1497), - [aux_sym_throw_expression_token1] = ACTIONS(1497), - [aux_sym_while_statement_token1] = ACTIONS(1497), - [aux_sym_while_statement_token2] = ACTIONS(1497), - [aux_sym_do_statement_token1] = ACTIONS(1497), - [aux_sym_for_statement_token1] = ACTIONS(1497), - [aux_sym_for_statement_token2] = ACTIONS(1497), - [aux_sym_foreach_statement_token1] = ACTIONS(1497), - [aux_sym_foreach_statement_token2] = ACTIONS(1497), - [aux_sym_if_statement_token1] = ACTIONS(1497), - [aux_sym_if_statement_token2] = ACTIONS(1497), - [aux_sym_else_if_clause_token1] = ACTIONS(1497), - [aux_sym_else_clause_token1] = ACTIONS(1497), - [aux_sym_match_expression_token1] = ACTIONS(1497), - [aux_sym_match_default_expression_token1] = ACTIONS(1497), - [aux_sym_switch_statement_token1] = ACTIONS(1497), - [aux_sym_switch_block_token1] = ACTIONS(1497), - [anon_sym_PLUS] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(1495), - [aux_sym_clone_expression_token1] = ACTIONS(1497), - [aux_sym_print_intrinsic_token1] = ACTIONS(1497), - [aux_sym_object_creation_expression_token1] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [aux_sym__list_destructing_token1] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_self] = ACTIONS(1497), - [anon_sym_parent] = ACTIONS(1497), - [aux_sym__argument_name_token1] = ACTIONS(1497), - [aux_sym__argument_name_token2] = ACTIONS(1497), - [anon_sym_POUND_LBRACK] = ACTIONS(1495), - [aux_sym_encapsed_string_token1] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [aux_sym_string_token1] = ACTIONS(1495), - [anon_sym_SQUOTE] = ACTIONS(1495), - [anon_sym_LT_LT_LT] = ACTIONS(1495), - [anon_sym_BQUOTE] = ACTIONS(1495), - [anon_sym_DOLLAR] = ACTIONS(1495), - [aux_sym_yield_expression_token1] = ACTIONS(1497), - [aux_sym_include_expression_token1] = ACTIONS(1497), - [aux_sym_include_once_expression_token1] = ACTIONS(1497), - [aux_sym_require_expression_token1] = ACTIONS(1497), - [aux_sym_require_once_expression_token1] = ACTIONS(1497), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [aux_sym__list_destructing_token1] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_self] = ACTIONS(1468), + [anon_sym_parent] = ACTIONS(1468), + [aux_sym__argument_name_token1] = ACTIONS(1468), + [aux_sym__argument_name_token2] = ACTIONS(1468), + [anon_sym_POUND_LBRACK] = ACTIONS(1466), + [aux_sym_encapsed_string_token1] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [aux_sym_string_token1] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_LT_LT_LT] = ACTIONS(1466), + [anon_sym_BQUOTE] = ACTIONS(1466), + [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), }, [549] = { - [ts_builtin_sym_end] = ACTIONS(1487), - [sym_name] = ACTIONS(1489), - [anon_sym_QMARK_GT] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1487), - [aux_sym_function_static_declaration_token1] = ACTIONS(1489), - [aux_sym_global_declaration_token1] = ACTIONS(1489), - [aux_sym_namespace_definition_token1] = ACTIONS(1489), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1489), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1489), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1489), - [anon_sym_BSLASH] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(1487), - [aux_sym_trait_declaration_token1] = ACTIONS(1489), - [aux_sym_interface_declaration_token1] = ACTIONS(1489), - [aux_sym_enum_declaration_token1] = ACTIONS(1489), - [aux_sym_enum_case_token1] = ACTIONS(1489), - [aux_sym_class_declaration_token1] = ACTIONS(1489), - [aux_sym_final_modifier_token1] = ACTIONS(1489), - [aux_sym_abstract_modifier_token1] = ACTIONS(1489), - [aux_sym_readonly_modifier_token1] = ACTIONS(1489), - [aux_sym_visibility_modifier_token1] = ACTIONS(1489), - [aux_sym_visibility_modifier_token2] = ACTIONS(1489), - [aux_sym_visibility_modifier_token3] = ACTIONS(1489), - [aux_sym__arrow_function_header_token1] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1487), - [aux_sym_cast_type_token1] = ACTIONS(1489), - [aux_sym_echo_statement_token1] = ACTIONS(1489), - [aux_sym_exit_statement_token1] = ACTIONS(1489), - [anon_sym_unset] = ACTIONS(1489), - [aux_sym_declare_statement_token1] = ACTIONS(1489), - [aux_sym_declare_statement_token2] = ACTIONS(1489), - [sym_float] = ACTIONS(1489), - [aux_sym_try_statement_token1] = ACTIONS(1489), - [aux_sym_goto_statement_token1] = ACTIONS(1489), - [aux_sym_continue_statement_token1] = ACTIONS(1489), - [aux_sym_break_statement_token1] = ACTIONS(1489), - [sym_integer] = ACTIONS(1489), - [aux_sym_return_statement_token1] = ACTIONS(1489), - [aux_sym_throw_expression_token1] = ACTIONS(1489), - [aux_sym_while_statement_token1] = ACTIONS(1489), - [aux_sym_while_statement_token2] = ACTIONS(1489), - [aux_sym_do_statement_token1] = ACTIONS(1489), - [aux_sym_for_statement_token1] = ACTIONS(1489), - [aux_sym_for_statement_token2] = ACTIONS(1489), - [aux_sym_foreach_statement_token1] = ACTIONS(1489), - [aux_sym_foreach_statement_token2] = ACTIONS(1489), - [aux_sym_if_statement_token1] = ACTIONS(1489), - [aux_sym_if_statement_token2] = ACTIONS(1489), - [aux_sym_else_if_clause_token1] = ACTIONS(1489), - [aux_sym_else_clause_token1] = ACTIONS(1489), - [aux_sym_match_expression_token1] = ACTIONS(1489), - [aux_sym_match_default_expression_token1] = ACTIONS(1489), - [aux_sym_switch_statement_token1] = ACTIONS(1489), - [aux_sym_switch_block_token1] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(1487), - [aux_sym_clone_expression_token1] = ACTIONS(1489), - [aux_sym_print_intrinsic_token1] = ACTIONS(1489), - [aux_sym_object_creation_expression_token1] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1487), - [aux_sym__list_destructing_token1] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1487), - [anon_sym_self] = ACTIONS(1489), - [anon_sym_parent] = ACTIONS(1489), - [aux_sym__argument_name_token1] = ACTIONS(1489), - [aux_sym__argument_name_token2] = ACTIONS(1489), - [anon_sym_POUND_LBRACK] = ACTIONS(1487), - [aux_sym_encapsed_string_token1] = ACTIONS(1487), - [anon_sym_DQUOTE] = ACTIONS(1487), - [aux_sym_string_token1] = ACTIONS(1487), - [anon_sym_SQUOTE] = ACTIONS(1487), - [anon_sym_LT_LT_LT] = ACTIONS(1487), - [anon_sym_BQUOTE] = ACTIONS(1487), - [anon_sym_DOLLAR] = ACTIONS(1487), - [aux_sym_yield_expression_token1] = ACTIONS(1489), - [aux_sym_include_expression_token1] = ACTIONS(1489), - [aux_sym_include_once_expression_token1] = ACTIONS(1489), - [aux_sym_require_expression_token1] = ACTIONS(1489), - [aux_sym_require_once_expression_token1] = ACTIONS(1489), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [aux_sym__list_destructing_token1] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_self] = ACTIONS(1472), + [anon_sym_parent] = ACTIONS(1472), + [aux_sym__argument_name_token1] = ACTIONS(1472), + [aux_sym__argument_name_token2] = ACTIONS(1472), + [anon_sym_POUND_LBRACK] = ACTIONS(1470), + [aux_sym_encapsed_string_token1] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_LT_LT_LT] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + [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), }, [550] = { - [ts_builtin_sym_end] = ACTIONS(1499), - [sym_name] = ACTIONS(1501), - [anon_sym_QMARK_GT] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [aux_sym_function_static_declaration_token1] = ACTIONS(1501), - [aux_sym_global_declaration_token1] = ACTIONS(1501), - [aux_sym_namespace_definition_token1] = ACTIONS(1501), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1501), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1501), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1501), - [anon_sym_BSLASH] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [aux_sym_trait_declaration_token1] = ACTIONS(1501), - [aux_sym_interface_declaration_token1] = ACTIONS(1501), - [aux_sym_enum_declaration_token1] = ACTIONS(1501), - [aux_sym_enum_case_token1] = ACTIONS(1501), - [aux_sym_class_declaration_token1] = ACTIONS(1501), - [aux_sym_final_modifier_token1] = ACTIONS(1501), - [aux_sym_abstract_modifier_token1] = ACTIONS(1501), - [aux_sym_readonly_modifier_token1] = ACTIONS(1501), - [aux_sym_visibility_modifier_token1] = ACTIONS(1501), - [aux_sym_visibility_modifier_token2] = ACTIONS(1501), - [aux_sym_visibility_modifier_token3] = ACTIONS(1501), - [aux_sym__arrow_function_header_token1] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1499), - [aux_sym_cast_type_token1] = ACTIONS(1501), - [aux_sym_echo_statement_token1] = ACTIONS(1501), - [aux_sym_exit_statement_token1] = ACTIONS(1501), - [anon_sym_unset] = ACTIONS(1501), - [aux_sym_declare_statement_token1] = ACTIONS(1501), - [aux_sym_declare_statement_token2] = ACTIONS(1501), - [sym_float] = ACTIONS(1501), - [aux_sym_try_statement_token1] = ACTIONS(1501), - [aux_sym_goto_statement_token1] = ACTIONS(1501), - [aux_sym_continue_statement_token1] = ACTIONS(1501), - [aux_sym_break_statement_token1] = ACTIONS(1501), - [sym_integer] = ACTIONS(1501), - [aux_sym_return_statement_token1] = ACTIONS(1501), - [aux_sym_throw_expression_token1] = ACTIONS(1501), - [aux_sym_while_statement_token1] = ACTIONS(1501), - [aux_sym_while_statement_token2] = ACTIONS(1501), - [aux_sym_do_statement_token1] = ACTIONS(1501), - [aux_sym_for_statement_token1] = ACTIONS(1501), - [aux_sym_for_statement_token2] = ACTIONS(1501), - [aux_sym_foreach_statement_token1] = ACTIONS(1501), - [aux_sym_foreach_statement_token2] = ACTIONS(1501), - [aux_sym_if_statement_token1] = ACTIONS(1501), - [aux_sym_if_statement_token2] = ACTIONS(1501), - [aux_sym_else_if_clause_token1] = ACTIONS(1501), - [aux_sym_else_clause_token1] = ACTIONS(1501), - [aux_sym_match_expression_token1] = ACTIONS(1501), - [aux_sym_match_default_expression_token1] = ACTIONS(1501), - [aux_sym_switch_statement_token1] = ACTIONS(1501), - [aux_sym_switch_block_token1] = ACTIONS(1501), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_AT] = ACTIONS(1499), - [aux_sym_clone_expression_token1] = ACTIONS(1501), - [aux_sym_print_intrinsic_token1] = ACTIONS(1501), - [aux_sym_object_creation_expression_token1] = ACTIONS(1501), - [anon_sym_DASH_DASH] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1499), - [aux_sym__list_destructing_token1] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_self] = ACTIONS(1501), - [anon_sym_parent] = ACTIONS(1501), - [aux_sym__argument_name_token1] = ACTIONS(1501), - [aux_sym__argument_name_token2] = ACTIONS(1501), - [anon_sym_POUND_LBRACK] = ACTIONS(1499), - [aux_sym_encapsed_string_token1] = ACTIONS(1499), - [anon_sym_DQUOTE] = ACTIONS(1499), - [aux_sym_string_token1] = ACTIONS(1499), - [anon_sym_SQUOTE] = ACTIONS(1499), - [anon_sym_LT_LT_LT] = ACTIONS(1499), - [anon_sym_BQUOTE] = ACTIONS(1499), - [anon_sym_DOLLAR] = ACTIONS(1499), - [aux_sym_yield_expression_token1] = ACTIONS(1501), - [aux_sym_include_expression_token1] = ACTIONS(1501), - [aux_sym_include_once_expression_token1] = ACTIONS(1501), - [aux_sym_require_expression_token1] = ACTIONS(1501), - [aux_sym_require_once_expression_token1] = ACTIONS(1501), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [aux_sym__list_destructing_token1] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_self] = ACTIONS(1476), + [anon_sym_parent] = ACTIONS(1476), + [aux_sym__argument_name_token1] = ACTIONS(1476), + [aux_sym__argument_name_token2] = ACTIONS(1476), + [anon_sym_POUND_LBRACK] = ACTIONS(1474), + [aux_sym_encapsed_string_token1] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [aux_sym_string_token1] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_LT_LT_LT] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), + [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), }, [551] = { - [ts_builtin_sym_end] = ACTIONS(1503), - [sym_name] = ACTIONS(1505), - [anon_sym_QMARK_GT] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(1503), - [aux_sym_function_static_declaration_token1] = ACTIONS(1505), - [aux_sym_global_declaration_token1] = ACTIONS(1505), - [aux_sym_namespace_definition_token1] = ACTIONS(1505), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1505), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1505), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1505), - [anon_sym_BSLASH] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1503), - [aux_sym_trait_declaration_token1] = ACTIONS(1505), - [aux_sym_interface_declaration_token1] = ACTIONS(1505), - [aux_sym_enum_declaration_token1] = ACTIONS(1505), - [aux_sym_enum_case_token1] = ACTIONS(1505), - [aux_sym_class_declaration_token1] = ACTIONS(1505), - [aux_sym_final_modifier_token1] = ACTIONS(1505), - [aux_sym_abstract_modifier_token1] = ACTIONS(1505), - [aux_sym_readonly_modifier_token1] = ACTIONS(1505), - [aux_sym_visibility_modifier_token1] = ACTIONS(1505), - [aux_sym_visibility_modifier_token2] = ACTIONS(1505), - [aux_sym_visibility_modifier_token3] = ACTIONS(1505), - [aux_sym__arrow_function_header_token1] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1503), - [aux_sym_cast_type_token1] = ACTIONS(1505), - [aux_sym_echo_statement_token1] = ACTIONS(1505), - [aux_sym_exit_statement_token1] = ACTIONS(1505), - [anon_sym_unset] = ACTIONS(1505), - [aux_sym_declare_statement_token1] = ACTIONS(1505), - [aux_sym_declare_statement_token2] = ACTIONS(1505), - [sym_float] = ACTIONS(1505), - [aux_sym_try_statement_token1] = ACTIONS(1505), - [aux_sym_goto_statement_token1] = ACTIONS(1505), - [aux_sym_continue_statement_token1] = ACTIONS(1505), - [aux_sym_break_statement_token1] = ACTIONS(1505), - [sym_integer] = ACTIONS(1505), - [aux_sym_return_statement_token1] = ACTIONS(1505), - [aux_sym_throw_expression_token1] = ACTIONS(1505), - [aux_sym_while_statement_token1] = ACTIONS(1505), - [aux_sym_while_statement_token2] = ACTIONS(1505), - [aux_sym_do_statement_token1] = ACTIONS(1505), - [aux_sym_for_statement_token1] = ACTIONS(1505), - [aux_sym_for_statement_token2] = ACTIONS(1505), - [aux_sym_foreach_statement_token1] = ACTIONS(1505), - [aux_sym_foreach_statement_token2] = ACTIONS(1505), - [aux_sym_if_statement_token1] = ACTIONS(1505), - [aux_sym_if_statement_token2] = ACTIONS(1505), - [aux_sym_else_if_clause_token1] = ACTIONS(1505), - [aux_sym_else_clause_token1] = ACTIONS(1505), - [aux_sym_match_expression_token1] = ACTIONS(1505), - [aux_sym_match_default_expression_token1] = ACTIONS(1505), - [aux_sym_switch_statement_token1] = ACTIONS(1505), - [aux_sym_switch_block_token1] = ACTIONS(1505), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(1503), - [aux_sym_clone_expression_token1] = ACTIONS(1505), - [aux_sym_print_intrinsic_token1] = ACTIONS(1505), - [aux_sym_object_creation_expression_token1] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [aux_sym__list_destructing_token1] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_self] = ACTIONS(1505), - [anon_sym_parent] = ACTIONS(1505), - [aux_sym__argument_name_token1] = ACTIONS(1505), - [aux_sym__argument_name_token2] = ACTIONS(1505), - [anon_sym_POUND_LBRACK] = ACTIONS(1503), - [aux_sym_encapsed_string_token1] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1503), - [aux_sym_string_token1] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1503), - [anon_sym_LT_LT_LT] = ACTIONS(1503), - [anon_sym_BQUOTE] = ACTIONS(1503), - [anon_sym_DOLLAR] = ACTIONS(1503), - [aux_sym_yield_expression_token1] = ACTIONS(1505), - [aux_sym_include_expression_token1] = ACTIONS(1505), - [aux_sym_include_once_expression_token1] = ACTIONS(1505), - [aux_sym_require_expression_token1] = ACTIONS(1505), - [aux_sym_require_once_expression_token1] = ACTIONS(1505), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [aux_sym__list_destructing_token1] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_self] = ACTIONS(1480), + [anon_sym_parent] = ACTIONS(1480), + [aux_sym__argument_name_token1] = ACTIONS(1480), + [aux_sym__argument_name_token2] = ACTIONS(1480), + [anon_sym_POUND_LBRACK] = ACTIONS(1478), + [aux_sym_encapsed_string_token1] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [aux_sym_string_token1] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_LT_LT_LT] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1478), + [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), }, [552] = { - [ts_builtin_sym_end] = ACTIONS(1507), - [sym_name] = ACTIONS(1509), - [anon_sym_QMARK_GT] = ACTIONS(1507), - [anon_sym_SEMI] = ACTIONS(1507), - [aux_sym_function_static_declaration_token1] = ACTIONS(1509), - [aux_sym_global_declaration_token1] = ACTIONS(1509), - [aux_sym_namespace_definition_token1] = ACTIONS(1509), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1509), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1509), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1509), - [anon_sym_BSLASH] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [aux_sym_trait_declaration_token1] = ACTIONS(1509), - [aux_sym_interface_declaration_token1] = ACTIONS(1509), - [aux_sym_enum_declaration_token1] = ACTIONS(1509), - [aux_sym_enum_case_token1] = ACTIONS(1509), - [aux_sym_class_declaration_token1] = ACTIONS(1509), - [aux_sym_final_modifier_token1] = ACTIONS(1509), - [aux_sym_abstract_modifier_token1] = ACTIONS(1509), - [aux_sym_readonly_modifier_token1] = ACTIONS(1509), - [aux_sym_visibility_modifier_token1] = ACTIONS(1509), - [aux_sym_visibility_modifier_token2] = ACTIONS(1509), - [aux_sym_visibility_modifier_token3] = ACTIONS(1509), - [aux_sym__arrow_function_header_token1] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(1507), - [aux_sym_cast_type_token1] = ACTIONS(1509), - [aux_sym_echo_statement_token1] = ACTIONS(1509), - [aux_sym_exit_statement_token1] = ACTIONS(1509), - [anon_sym_unset] = ACTIONS(1509), - [aux_sym_declare_statement_token1] = ACTIONS(1509), - [aux_sym_declare_statement_token2] = ACTIONS(1509), - [sym_float] = ACTIONS(1509), - [aux_sym_try_statement_token1] = ACTIONS(1509), - [aux_sym_goto_statement_token1] = ACTIONS(1509), - [aux_sym_continue_statement_token1] = ACTIONS(1509), - [aux_sym_break_statement_token1] = ACTIONS(1509), - [sym_integer] = ACTIONS(1509), - [aux_sym_return_statement_token1] = ACTIONS(1509), - [aux_sym_throw_expression_token1] = ACTIONS(1509), - [aux_sym_while_statement_token1] = ACTIONS(1509), - [aux_sym_while_statement_token2] = ACTIONS(1509), - [aux_sym_do_statement_token1] = ACTIONS(1509), - [aux_sym_for_statement_token1] = ACTIONS(1509), - [aux_sym_for_statement_token2] = ACTIONS(1509), - [aux_sym_foreach_statement_token1] = ACTIONS(1509), - [aux_sym_foreach_statement_token2] = ACTIONS(1509), - [aux_sym_if_statement_token1] = ACTIONS(1509), - [aux_sym_if_statement_token2] = ACTIONS(1509), - [aux_sym_else_if_clause_token1] = ACTIONS(1509), - [aux_sym_else_clause_token1] = ACTIONS(1509), - [aux_sym_match_expression_token1] = ACTIONS(1509), - [aux_sym_match_default_expression_token1] = ACTIONS(1509), - [aux_sym_switch_statement_token1] = ACTIONS(1509), - [aux_sym_switch_block_token1] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_AT] = ACTIONS(1507), - [aux_sym_clone_expression_token1] = ACTIONS(1509), - [aux_sym_print_intrinsic_token1] = ACTIONS(1509), - [aux_sym_object_creation_expression_token1] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [aux_sym__list_destructing_token1] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_self] = ACTIONS(1509), - [anon_sym_parent] = ACTIONS(1509), - [aux_sym__argument_name_token1] = ACTIONS(1509), - [aux_sym__argument_name_token2] = ACTIONS(1509), - [anon_sym_POUND_LBRACK] = ACTIONS(1507), - [aux_sym_encapsed_string_token1] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1507), - [aux_sym_string_token1] = ACTIONS(1507), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_LT_LT_LT] = ACTIONS(1507), - [anon_sym_BQUOTE] = ACTIONS(1507), - [anon_sym_DOLLAR] = ACTIONS(1507), - [aux_sym_yield_expression_token1] = ACTIONS(1509), - [aux_sym_include_expression_token1] = ACTIONS(1509), - [aux_sym_include_once_expression_token1] = ACTIONS(1509), - [aux_sym_require_expression_token1] = ACTIONS(1509), - [aux_sym_require_once_expression_token1] = ACTIONS(1509), + [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), + [sym_var_modifier] = 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), + [aux_sym_exit_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_PLUS] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_AT] = 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_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [aux_sym__list_destructing_token1] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_self] = ACTIONS(1484), + [anon_sym_parent] = ACTIONS(1484), + [aux_sym__argument_name_token1] = ACTIONS(1484), + [aux_sym__argument_name_token2] = ACTIONS(1484), + [anon_sym_POUND_LBRACK] = ACTIONS(1482), + [aux_sym_encapsed_string_token1] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [aux_sym_string_token1] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_LT_LT_LT] = ACTIONS(1482), + [anon_sym_BQUOTE] = ACTIONS(1482), + [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), }, [553] = { - [ts_builtin_sym_end] = ACTIONS(1511), - [sym_name] = ACTIONS(1513), - [anon_sym_QMARK_GT] = ACTIONS(1511), - [anon_sym_SEMI] = ACTIONS(1511), - [aux_sym_function_static_declaration_token1] = ACTIONS(1513), - [aux_sym_global_declaration_token1] = ACTIONS(1513), - [aux_sym_namespace_definition_token1] = ACTIONS(1513), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1513), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1513), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1513), - [anon_sym_BSLASH] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_RBRACE] = ACTIONS(1511), - [aux_sym_trait_declaration_token1] = ACTIONS(1513), - [aux_sym_interface_declaration_token1] = ACTIONS(1513), - [aux_sym_enum_declaration_token1] = ACTIONS(1513), - [aux_sym_enum_case_token1] = ACTIONS(1513), - [aux_sym_class_declaration_token1] = ACTIONS(1513), - [aux_sym_final_modifier_token1] = ACTIONS(1513), - [aux_sym_abstract_modifier_token1] = ACTIONS(1513), - [aux_sym_readonly_modifier_token1] = ACTIONS(1513), - [aux_sym_visibility_modifier_token1] = ACTIONS(1513), - [aux_sym_visibility_modifier_token2] = ACTIONS(1513), - [aux_sym_visibility_modifier_token3] = ACTIONS(1513), - [aux_sym__arrow_function_header_token1] = ACTIONS(1513), - [anon_sym_LPAREN] = ACTIONS(1511), - [aux_sym_cast_type_token1] = ACTIONS(1513), - [aux_sym_echo_statement_token1] = ACTIONS(1513), - [aux_sym_exit_statement_token1] = ACTIONS(1513), - [anon_sym_unset] = ACTIONS(1513), - [aux_sym_declare_statement_token1] = ACTIONS(1513), - [aux_sym_declare_statement_token2] = ACTIONS(1513), - [sym_float] = ACTIONS(1513), - [aux_sym_try_statement_token1] = ACTIONS(1513), - [aux_sym_goto_statement_token1] = ACTIONS(1513), - [aux_sym_continue_statement_token1] = ACTIONS(1513), - [aux_sym_break_statement_token1] = ACTIONS(1513), - [sym_integer] = ACTIONS(1513), - [aux_sym_return_statement_token1] = ACTIONS(1513), - [aux_sym_throw_expression_token1] = ACTIONS(1513), - [aux_sym_while_statement_token1] = ACTIONS(1513), - [aux_sym_while_statement_token2] = ACTIONS(1513), - [aux_sym_do_statement_token1] = ACTIONS(1513), - [aux_sym_for_statement_token1] = ACTIONS(1513), - [aux_sym_for_statement_token2] = ACTIONS(1513), - [aux_sym_foreach_statement_token1] = ACTIONS(1513), - [aux_sym_foreach_statement_token2] = ACTIONS(1513), - [aux_sym_if_statement_token1] = ACTIONS(1513), - [aux_sym_if_statement_token2] = ACTIONS(1513), - [aux_sym_else_if_clause_token1] = ACTIONS(1513), - [aux_sym_else_clause_token1] = ACTIONS(1513), - [aux_sym_match_expression_token1] = ACTIONS(1513), - [aux_sym_match_default_expression_token1] = ACTIONS(1513), - [aux_sym_switch_statement_token1] = ACTIONS(1513), - [aux_sym_switch_block_token1] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1511), - [aux_sym_clone_expression_token1] = ACTIONS(1513), - [aux_sym_print_intrinsic_token1] = ACTIONS(1513), - [aux_sym_object_creation_expression_token1] = ACTIONS(1513), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [aux_sym__list_destructing_token1] = ACTIONS(1513), - [anon_sym_LBRACK] = ACTIONS(1511), - [anon_sym_self] = ACTIONS(1513), - [anon_sym_parent] = ACTIONS(1513), - [aux_sym__argument_name_token1] = ACTIONS(1513), - [aux_sym__argument_name_token2] = ACTIONS(1513), - [anon_sym_POUND_LBRACK] = ACTIONS(1511), - [aux_sym_encapsed_string_token1] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(1511), - [aux_sym_string_token1] = ACTIONS(1511), - [anon_sym_SQUOTE] = ACTIONS(1511), - [anon_sym_LT_LT_LT] = ACTIONS(1511), - [anon_sym_BQUOTE] = ACTIONS(1511), - [anon_sym_DOLLAR] = ACTIONS(1511), - [aux_sym_yield_expression_token1] = ACTIONS(1513), - [aux_sym_include_expression_token1] = ACTIONS(1513), - [aux_sym_include_once_expression_token1] = ACTIONS(1513), - [aux_sym_require_expression_token1] = ACTIONS(1513), - [aux_sym_require_once_expression_token1] = ACTIONS(1513), + [ts_builtin_sym_end] = ACTIONS(1486), + [sym_name] = ACTIONS(1488), + [anon_sym_QMARK_GT] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [aux_sym_function_static_declaration_token1] = ACTIONS(1488), + [aux_sym_global_declaration_token1] = ACTIONS(1488), + [aux_sym_namespace_definition_token1] = ACTIONS(1488), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1488), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1488), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1488), + [anon_sym_BSLASH] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [aux_sym_trait_declaration_token1] = ACTIONS(1488), + [aux_sym_interface_declaration_token1] = ACTIONS(1488), + [aux_sym_enum_declaration_token1] = ACTIONS(1488), + [aux_sym_enum_case_token1] = ACTIONS(1488), + [aux_sym_class_declaration_token1] = ACTIONS(1488), + [aux_sym_final_modifier_token1] = ACTIONS(1488), + [aux_sym_abstract_modifier_token1] = ACTIONS(1488), + [aux_sym_readonly_modifier_token1] = ACTIONS(1488), + [sym_var_modifier] = ACTIONS(1488), + [aux_sym_visibility_modifier_token1] = ACTIONS(1488), + [aux_sym_visibility_modifier_token2] = ACTIONS(1488), + [aux_sym_visibility_modifier_token3] = ACTIONS(1488), + [aux_sym__arrow_function_header_token1] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(1486), + [aux_sym_cast_type_token1] = ACTIONS(1488), + [aux_sym_echo_statement_token1] = ACTIONS(1488), + [aux_sym_exit_statement_token1] = ACTIONS(1488), + [anon_sym_unset] = ACTIONS(1488), + [aux_sym_declare_statement_token1] = ACTIONS(1488), + [aux_sym_declare_statement_token2] = ACTIONS(1488), + [sym_float] = ACTIONS(1488), + [aux_sym_try_statement_token1] = ACTIONS(1488), + [aux_sym_goto_statement_token1] = ACTIONS(1488), + [aux_sym_continue_statement_token1] = ACTIONS(1488), + [aux_sym_break_statement_token1] = ACTIONS(1488), + [sym_integer] = ACTIONS(1488), + [aux_sym_return_statement_token1] = ACTIONS(1488), + [aux_sym_throw_expression_token1] = ACTIONS(1488), + [aux_sym_while_statement_token1] = ACTIONS(1488), + [aux_sym_while_statement_token2] = ACTIONS(1488), + [aux_sym_do_statement_token1] = ACTIONS(1488), + [aux_sym_for_statement_token1] = ACTIONS(1488), + [aux_sym_for_statement_token2] = ACTIONS(1488), + [aux_sym_foreach_statement_token1] = ACTIONS(1488), + [aux_sym_foreach_statement_token2] = ACTIONS(1488), + [aux_sym_if_statement_token1] = ACTIONS(1488), + [aux_sym_if_statement_token2] = ACTIONS(1488), + [aux_sym_else_if_clause_token1] = ACTIONS(1488), + [aux_sym_else_clause_token1] = ACTIONS(1488), + [aux_sym_match_expression_token1] = ACTIONS(1488), + [aux_sym_match_default_expression_token1] = ACTIONS(1488), + [aux_sym_switch_statement_token1] = ACTIONS(1488), + [aux_sym_switch_block_token1] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1486), + [aux_sym_clone_expression_token1] = ACTIONS(1488), + [aux_sym_print_intrinsic_token1] = ACTIONS(1488), + [aux_sym_object_creation_expression_token1] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [aux_sym__list_destructing_token1] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_self] = ACTIONS(1488), + [anon_sym_parent] = ACTIONS(1488), + [aux_sym__argument_name_token1] = ACTIONS(1488), + [aux_sym__argument_name_token2] = ACTIONS(1488), + [anon_sym_POUND_LBRACK] = ACTIONS(1486), + [aux_sym_encapsed_string_token1] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [aux_sym_string_token1] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_LT_LT_LT] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [aux_sym_yield_expression_token1] = ACTIONS(1488), + [aux_sym_include_expression_token1] = ACTIONS(1488), + [aux_sym_include_once_expression_token1] = ACTIONS(1488), + [aux_sym_require_expression_token1] = ACTIONS(1488), + [aux_sym_require_once_expression_token1] = ACTIONS(1488), [sym_comment] = ACTIONS(3), }, [554] = { - [ts_builtin_sym_end] = ACTIONS(1515), - [sym_name] = ACTIONS(1517), - [anon_sym_QMARK_GT] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1515), - [aux_sym_function_static_declaration_token1] = ACTIONS(1517), - [aux_sym_global_declaration_token1] = ACTIONS(1517), - [aux_sym_namespace_definition_token1] = ACTIONS(1517), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1517), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1517), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1517), - [anon_sym_BSLASH] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1515), - [aux_sym_trait_declaration_token1] = ACTIONS(1517), - [aux_sym_interface_declaration_token1] = ACTIONS(1517), - [aux_sym_enum_declaration_token1] = ACTIONS(1517), - [aux_sym_enum_case_token1] = ACTIONS(1517), - [aux_sym_class_declaration_token1] = ACTIONS(1517), - [aux_sym_final_modifier_token1] = ACTIONS(1517), - [aux_sym_abstract_modifier_token1] = ACTIONS(1517), - [aux_sym_readonly_modifier_token1] = ACTIONS(1517), - [aux_sym_visibility_modifier_token1] = ACTIONS(1517), - [aux_sym_visibility_modifier_token2] = ACTIONS(1517), - [aux_sym_visibility_modifier_token3] = ACTIONS(1517), - [aux_sym__arrow_function_header_token1] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1515), - [aux_sym_cast_type_token1] = ACTIONS(1517), - [aux_sym_echo_statement_token1] = ACTIONS(1517), - [aux_sym_exit_statement_token1] = ACTIONS(1517), - [anon_sym_unset] = ACTIONS(1517), - [aux_sym_declare_statement_token1] = ACTIONS(1517), - [aux_sym_declare_statement_token2] = ACTIONS(1517), - [sym_float] = ACTIONS(1517), - [aux_sym_try_statement_token1] = ACTIONS(1517), - [aux_sym_goto_statement_token1] = ACTIONS(1517), - [aux_sym_continue_statement_token1] = ACTIONS(1517), - [aux_sym_break_statement_token1] = ACTIONS(1517), - [sym_integer] = ACTIONS(1517), - [aux_sym_return_statement_token1] = ACTIONS(1517), - [aux_sym_throw_expression_token1] = ACTIONS(1517), - [aux_sym_while_statement_token1] = ACTIONS(1517), - [aux_sym_while_statement_token2] = ACTIONS(1517), - [aux_sym_do_statement_token1] = ACTIONS(1517), - [aux_sym_for_statement_token1] = ACTIONS(1517), - [aux_sym_for_statement_token2] = ACTIONS(1517), - [aux_sym_foreach_statement_token1] = ACTIONS(1517), - [aux_sym_foreach_statement_token2] = ACTIONS(1517), - [aux_sym_if_statement_token1] = ACTIONS(1517), - [aux_sym_if_statement_token2] = ACTIONS(1517), - [aux_sym_else_if_clause_token1] = ACTIONS(1517), - [aux_sym_else_clause_token1] = ACTIONS(1517), - [aux_sym_match_expression_token1] = ACTIONS(1517), - [aux_sym_match_default_expression_token1] = ACTIONS(1517), - [aux_sym_switch_statement_token1] = ACTIONS(1517), - [aux_sym_switch_block_token1] = ACTIONS(1517), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_AT] = ACTIONS(1515), - [aux_sym_clone_expression_token1] = ACTIONS(1517), - [aux_sym_print_intrinsic_token1] = ACTIONS(1517), - [aux_sym_object_creation_expression_token1] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [aux_sym__list_destructing_token1] = ACTIONS(1517), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_self] = ACTIONS(1517), - [anon_sym_parent] = ACTIONS(1517), - [aux_sym__argument_name_token1] = ACTIONS(1517), - [aux_sym__argument_name_token2] = ACTIONS(1517), - [anon_sym_POUND_LBRACK] = ACTIONS(1515), - [aux_sym_encapsed_string_token1] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), - [aux_sym_string_token1] = ACTIONS(1515), - [anon_sym_SQUOTE] = ACTIONS(1515), - [anon_sym_LT_LT_LT] = ACTIONS(1515), - [anon_sym_BQUOTE] = ACTIONS(1515), - [anon_sym_DOLLAR] = ACTIONS(1515), - [aux_sym_yield_expression_token1] = ACTIONS(1517), - [aux_sym_include_expression_token1] = ACTIONS(1517), - [aux_sym_include_once_expression_token1] = ACTIONS(1517), - [aux_sym_require_expression_token1] = ACTIONS(1517), - [aux_sym_require_once_expression_token1] = ACTIONS(1517), + [ts_builtin_sym_end] = ACTIONS(1490), + [sym_name] = ACTIONS(1492), + [anon_sym_QMARK_GT] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [aux_sym_function_static_declaration_token1] = ACTIONS(1492), + [aux_sym_global_declaration_token1] = ACTIONS(1492), + [aux_sym_namespace_definition_token1] = ACTIONS(1492), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1492), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1492), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1492), + [anon_sym_BSLASH] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [aux_sym_trait_declaration_token1] = ACTIONS(1492), + [aux_sym_interface_declaration_token1] = ACTIONS(1492), + [aux_sym_enum_declaration_token1] = ACTIONS(1492), + [aux_sym_enum_case_token1] = ACTIONS(1492), + [aux_sym_class_declaration_token1] = ACTIONS(1492), + [aux_sym_final_modifier_token1] = ACTIONS(1492), + [aux_sym_abstract_modifier_token1] = ACTIONS(1492), + [aux_sym_readonly_modifier_token1] = ACTIONS(1492), + [sym_var_modifier] = ACTIONS(1492), + [aux_sym_visibility_modifier_token1] = ACTIONS(1492), + [aux_sym_visibility_modifier_token2] = ACTIONS(1492), + [aux_sym_visibility_modifier_token3] = ACTIONS(1492), + [aux_sym__arrow_function_header_token1] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1490), + [aux_sym_cast_type_token1] = ACTIONS(1492), + [aux_sym_echo_statement_token1] = ACTIONS(1492), + [aux_sym_exit_statement_token1] = ACTIONS(1492), + [anon_sym_unset] = ACTIONS(1492), + [aux_sym_declare_statement_token1] = ACTIONS(1492), + [aux_sym_declare_statement_token2] = ACTIONS(1492), + [sym_float] = ACTIONS(1492), + [aux_sym_try_statement_token1] = ACTIONS(1492), + [aux_sym_goto_statement_token1] = ACTIONS(1492), + [aux_sym_continue_statement_token1] = ACTIONS(1492), + [aux_sym_break_statement_token1] = ACTIONS(1492), + [sym_integer] = ACTIONS(1492), + [aux_sym_return_statement_token1] = ACTIONS(1492), + [aux_sym_throw_expression_token1] = ACTIONS(1492), + [aux_sym_while_statement_token1] = ACTIONS(1492), + [aux_sym_while_statement_token2] = ACTIONS(1492), + [aux_sym_do_statement_token1] = ACTIONS(1492), + [aux_sym_for_statement_token1] = ACTIONS(1492), + [aux_sym_for_statement_token2] = ACTIONS(1492), + [aux_sym_foreach_statement_token1] = ACTIONS(1492), + [aux_sym_foreach_statement_token2] = ACTIONS(1492), + [aux_sym_if_statement_token1] = ACTIONS(1492), + [aux_sym_if_statement_token2] = ACTIONS(1492), + [aux_sym_else_if_clause_token1] = ACTIONS(1492), + [aux_sym_else_clause_token1] = ACTIONS(1492), + [aux_sym_match_expression_token1] = ACTIONS(1492), + [aux_sym_match_default_expression_token1] = ACTIONS(1492), + [aux_sym_switch_statement_token1] = ACTIONS(1492), + [aux_sym_switch_block_token1] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_AT] = ACTIONS(1490), + [aux_sym_clone_expression_token1] = ACTIONS(1492), + [aux_sym_print_intrinsic_token1] = ACTIONS(1492), + [aux_sym_object_creation_expression_token1] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [aux_sym__list_destructing_token1] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_self] = ACTIONS(1492), + [anon_sym_parent] = ACTIONS(1492), + [aux_sym__argument_name_token1] = ACTIONS(1492), + [aux_sym__argument_name_token2] = ACTIONS(1492), + [anon_sym_POUND_LBRACK] = ACTIONS(1490), + [aux_sym_encapsed_string_token1] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [aux_sym_string_token1] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_LT_LT_LT] = ACTIONS(1490), + [anon_sym_BQUOTE] = ACTIONS(1490), + [anon_sym_DOLLAR] = ACTIONS(1490), + [aux_sym_yield_expression_token1] = ACTIONS(1492), + [aux_sym_include_expression_token1] = ACTIONS(1492), + [aux_sym_include_once_expression_token1] = ACTIONS(1492), + [aux_sym_require_expression_token1] = ACTIONS(1492), + [aux_sym_require_once_expression_token1] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, [555] = { - [ts_builtin_sym_end] = ACTIONS(1519), - [sym_name] = ACTIONS(1521), - [anon_sym_QMARK_GT] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1519), - [aux_sym_function_static_declaration_token1] = ACTIONS(1521), - [aux_sym_global_declaration_token1] = ACTIONS(1521), - [aux_sym_namespace_definition_token1] = ACTIONS(1521), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1521), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1521), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1521), - [anon_sym_BSLASH] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [aux_sym_trait_declaration_token1] = ACTIONS(1521), - [aux_sym_interface_declaration_token1] = ACTIONS(1521), - [aux_sym_enum_declaration_token1] = ACTIONS(1521), - [aux_sym_enum_case_token1] = ACTIONS(1521), - [aux_sym_class_declaration_token1] = ACTIONS(1521), - [aux_sym_final_modifier_token1] = ACTIONS(1521), - [aux_sym_abstract_modifier_token1] = ACTIONS(1521), - [aux_sym_readonly_modifier_token1] = ACTIONS(1521), - [aux_sym_visibility_modifier_token1] = ACTIONS(1521), - [aux_sym_visibility_modifier_token2] = ACTIONS(1521), - [aux_sym_visibility_modifier_token3] = ACTIONS(1521), - [aux_sym__arrow_function_header_token1] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1519), - [aux_sym_cast_type_token1] = ACTIONS(1521), - [aux_sym_echo_statement_token1] = ACTIONS(1521), - [aux_sym_exit_statement_token1] = ACTIONS(1521), - [anon_sym_unset] = ACTIONS(1521), - [aux_sym_declare_statement_token1] = ACTIONS(1521), - [aux_sym_declare_statement_token2] = ACTIONS(1521), - [sym_float] = ACTIONS(1521), - [aux_sym_try_statement_token1] = ACTIONS(1521), - [aux_sym_goto_statement_token1] = ACTIONS(1521), - [aux_sym_continue_statement_token1] = ACTIONS(1521), - [aux_sym_break_statement_token1] = ACTIONS(1521), - [sym_integer] = ACTIONS(1521), - [aux_sym_return_statement_token1] = ACTIONS(1521), - [aux_sym_throw_expression_token1] = ACTIONS(1521), - [aux_sym_while_statement_token1] = ACTIONS(1521), - [aux_sym_while_statement_token2] = ACTIONS(1521), - [aux_sym_do_statement_token1] = ACTIONS(1521), - [aux_sym_for_statement_token1] = ACTIONS(1521), - [aux_sym_for_statement_token2] = ACTIONS(1521), - [aux_sym_foreach_statement_token1] = ACTIONS(1521), - [aux_sym_foreach_statement_token2] = ACTIONS(1521), - [aux_sym_if_statement_token1] = ACTIONS(1521), - [aux_sym_if_statement_token2] = ACTIONS(1521), - [aux_sym_else_if_clause_token1] = ACTIONS(1521), - [aux_sym_else_clause_token1] = ACTIONS(1521), - [aux_sym_match_expression_token1] = ACTIONS(1521), - [aux_sym_match_default_expression_token1] = ACTIONS(1521), - [aux_sym_switch_statement_token1] = ACTIONS(1521), - [aux_sym_switch_block_token1] = ACTIONS(1521), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_TILDE] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(1519), - [aux_sym_clone_expression_token1] = ACTIONS(1521), - [aux_sym_print_intrinsic_token1] = ACTIONS(1521), - [aux_sym_object_creation_expression_token1] = ACTIONS(1521), - [anon_sym_DASH_DASH] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1519), - [aux_sym__list_destructing_token1] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_self] = ACTIONS(1521), - [anon_sym_parent] = ACTIONS(1521), - [aux_sym__argument_name_token1] = ACTIONS(1521), - [aux_sym__argument_name_token2] = ACTIONS(1521), - [anon_sym_POUND_LBRACK] = ACTIONS(1519), - [aux_sym_encapsed_string_token1] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [aux_sym_string_token1] = ACTIONS(1519), - [anon_sym_SQUOTE] = ACTIONS(1519), - [anon_sym_LT_LT_LT] = ACTIONS(1519), - [anon_sym_BQUOTE] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(1519), - [aux_sym_yield_expression_token1] = ACTIONS(1521), - [aux_sym_include_expression_token1] = ACTIONS(1521), - [aux_sym_include_once_expression_token1] = ACTIONS(1521), - [aux_sym_require_expression_token1] = ACTIONS(1521), - [aux_sym_require_once_expression_token1] = ACTIONS(1521), + [ts_builtin_sym_end] = ACTIONS(1494), + [sym_name] = ACTIONS(1496), + [anon_sym_QMARK_GT] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [aux_sym_function_static_declaration_token1] = ACTIONS(1496), + [aux_sym_global_declaration_token1] = ACTIONS(1496), + [aux_sym_namespace_definition_token1] = ACTIONS(1496), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1496), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1496), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1496), + [anon_sym_BSLASH] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_RBRACE] = ACTIONS(1494), + [aux_sym_trait_declaration_token1] = ACTIONS(1496), + [aux_sym_interface_declaration_token1] = ACTIONS(1496), + [aux_sym_enum_declaration_token1] = ACTIONS(1496), + [aux_sym_enum_case_token1] = ACTIONS(1496), + [aux_sym_class_declaration_token1] = ACTIONS(1496), + [aux_sym_final_modifier_token1] = ACTIONS(1496), + [aux_sym_abstract_modifier_token1] = ACTIONS(1496), + [aux_sym_readonly_modifier_token1] = ACTIONS(1496), + [sym_var_modifier] = ACTIONS(1496), + [aux_sym_visibility_modifier_token1] = ACTIONS(1496), + [aux_sym_visibility_modifier_token2] = ACTIONS(1496), + [aux_sym_visibility_modifier_token3] = ACTIONS(1496), + [aux_sym__arrow_function_header_token1] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1494), + [aux_sym_cast_type_token1] = ACTIONS(1496), + [aux_sym_echo_statement_token1] = ACTIONS(1496), + [aux_sym_exit_statement_token1] = ACTIONS(1496), + [anon_sym_unset] = ACTIONS(1496), + [aux_sym_declare_statement_token1] = ACTIONS(1496), + [aux_sym_declare_statement_token2] = ACTIONS(1496), + [sym_float] = ACTIONS(1496), + [aux_sym_try_statement_token1] = ACTIONS(1496), + [aux_sym_goto_statement_token1] = ACTIONS(1496), + [aux_sym_continue_statement_token1] = ACTIONS(1496), + [aux_sym_break_statement_token1] = ACTIONS(1496), + [sym_integer] = ACTIONS(1496), + [aux_sym_return_statement_token1] = ACTIONS(1496), + [aux_sym_throw_expression_token1] = ACTIONS(1496), + [aux_sym_while_statement_token1] = ACTIONS(1496), + [aux_sym_while_statement_token2] = ACTIONS(1496), + [aux_sym_do_statement_token1] = ACTIONS(1496), + [aux_sym_for_statement_token1] = ACTIONS(1496), + [aux_sym_for_statement_token2] = ACTIONS(1496), + [aux_sym_foreach_statement_token1] = ACTIONS(1496), + [aux_sym_foreach_statement_token2] = ACTIONS(1496), + [aux_sym_if_statement_token1] = ACTIONS(1496), + [aux_sym_if_statement_token2] = ACTIONS(1496), + [aux_sym_else_if_clause_token1] = ACTIONS(1496), + [aux_sym_else_clause_token1] = ACTIONS(1496), + [aux_sym_match_expression_token1] = ACTIONS(1496), + [aux_sym_match_default_expression_token1] = ACTIONS(1496), + [aux_sym_switch_statement_token1] = ACTIONS(1496), + [aux_sym_switch_block_token1] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_AT] = ACTIONS(1494), + [aux_sym_clone_expression_token1] = ACTIONS(1496), + [aux_sym_print_intrinsic_token1] = ACTIONS(1496), + [aux_sym_object_creation_expression_token1] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [aux_sym__list_destructing_token1] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_self] = ACTIONS(1496), + [anon_sym_parent] = ACTIONS(1496), + [aux_sym__argument_name_token1] = ACTIONS(1496), + [aux_sym__argument_name_token2] = ACTIONS(1496), + [anon_sym_POUND_LBRACK] = ACTIONS(1494), + [aux_sym_encapsed_string_token1] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [aux_sym_string_token1] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_LT_LT_LT] = ACTIONS(1494), + [anon_sym_BQUOTE] = ACTIONS(1494), + [anon_sym_DOLLAR] = ACTIONS(1494), + [aux_sym_yield_expression_token1] = ACTIONS(1496), + [aux_sym_include_expression_token1] = ACTIONS(1496), + [aux_sym_include_once_expression_token1] = ACTIONS(1496), + [aux_sym_require_expression_token1] = ACTIONS(1496), + [aux_sym_require_once_expression_token1] = ACTIONS(1496), [sym_comment] = ACTIONS(3), }, [556] = { - [ts_builtin_sym_end] = ACTIONS(1523), - [sym_name] = ACTIONS(1525), - [anon_sym_QMARK_GT] = ACTIONS(1523), - [anon_sym_SEMI] = ACTIONS(1523), - [aux_sym_function_static_declaration_token1] = ACTIONS(1525), - [aux_sym_global_declaration_token1] = ACTIONS(1525), - [aux_sym_namespace_definition_token1] = ACTIONS(1525), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1525), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1525), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1525), - [anon_sym_BSLASH] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_RBRACE] = ACTIONS(1523), - [aux_sym_trait_declaration_token1] = ACTIONS(1525), - [aux_sym_interface_declaration_token1] = ACTIONS(1525), - [aux_sym_enum_declaration_token1] = ACTIONS(1525), - [aux_sym_enum_case_token1] = ACTIONS(1525), - [aux_sym_class_declaration_token1] = ACTIONS(1525), - [aux_sym_final_modifier_token1] = ACTIONS(1525), - [aux_sym_abstract_modifier_token1] = ACTIONS(1525), - [aux_sym_readonly_modifier_token1] = ACTIONS(1525), - [aux_sym_visibility_modifier_token1] = ACTIONS(1525), - [aux_sym_visibility_modifier_token2] = ACTIONS(1525), - [aux_sym_visibility_modifier_token3] = ACTIONS(1525), - [aux_sym__arrow_function_header_token1] = ACTIONS(1525), - [anon_sym_LPAREN] = ACTIONS(1523), - [aux_sym_cast_type_token1] = ACTIONS(1525), - [aux_sym_echo_statement_token1] = ACTIONS(1525), - [aux_sym_exit_statement_token1] = ACTIONS(1525), - [anon_sym_unset] = ACTIONS(1525), - [aux_sym_declare_statement_token1] = ACTIONS(1525), - [aux_sym_declare_statement_token2] = ACTIONS(1525), - [sym_float] = ACTIONS(1525), - [aux_sym_try_statement_token1] = ACTIONS(1525), - [aux_sym_goto_statement_token1] = ACTIONS(1525), - [aux_sym_continue_statement_token1] = ACTIONS(1525), - [aux_sym_break_statement_token1] = ACTIONS(1525), - [sym_integer] = ACTIONS(1525), - [aux_sym_return_statement_token1] = ACTIONS(1525), - [aux_sym_throw_expression_token1] = ACTIONS(1525), - [aux_sym_while_statement_token1] = ACTIONS(1525), - [aux_sym_while_statement_token2] = ACTIONS(1525), - [aux_sym_do_statement_token1] = ACTIONS(1525), - [aux_sym_for_statement_token1] = ACTIONS(1525), - [aux_sym_for_statement_token2] = ACTIONS(1525), - [aux_sym_foreach_statement_token1] = ACTIONS(1525), - [aux_sym_foreach_statement_token2] = ACTIONS(1525), - [aux_sym_if_statement_token1] = ACTIONS(1525), - [aux_sym_if_statement_token2] = ACTIONS(1525), - [aux_sym_else_if_clause_token1] = ACTIONS(1525), - [aux_sym_else_clause_token1] = ACTIONS(1525), - [aux_sym_match_expression_token1] = ACTIONS(1525), - [aux_sym_match_default_expression_token1] = ACTIONS(1525), - [aux_sym_switch_statement_token1] = ACTIONS(1525), - [aux_sym_switch_block_token1] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_TILDE] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_AT] = ACTIONS(1523), - [aux_sym_clone_expression_token1] = ACTIONS(1525), - [aux_sym_print_intrinsic_token1] = ACTIONS(1525), - [aux_sym_object_creation_expression_token1] = ACTIONS(1525), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [aux_sym__list_destructing_token1] = ACTIONS(1525), - [anon_sym_LBRACK] = ACTIONS(1523), - [anon_sym_self] = ACTIONS(1525), - [anon_sym_parent] = ACTIONS(1525), - [aux_sym__argument_name_token1] = ACTIONS(1525), - [aux_sym__argument_name_token2] = ACTIONS(1525), - [anon_sym_POUND_LBRACK] = ACTIONS(1523), - [aux_sym_encapsed_string_token1] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1523), - [aux_sym_string_token1] = ACTIONS(1523), - [anon_sym_SQUOTE] = ACTIONS(1523), - [anon_sym_LT_LT_LT] = ACTIONS(1523), - [anon_sym_BQUOTE] = ACTIONS(1523), - [anon_sym_DOLLAR] = ACTIONS(1523), - [aux_sym_yield_expression_token1] = ACTIONS(1525), - [aux_sym_include_expression_token1] = ACTIONS(1525), - [aux_sym_include_once_expression_token1] = ACTIONS(1525), - [aux_sym_require_expression_token1] = ACTIONS(1525), - [aux_sym_require_once_expression_token1] = ACTIONS(1525), + [ts_builtin_sym_end] = ACTIONS(1498), + [sym_name] = ACTIONS(1500), + [anon_sym_QMARK_GT] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [aux_sym_function_static_declaration_token1] = ACTIONS(1500), + [aux_sym_global_declaration_token1] = ACTIONS(1500), + [aux_sym_namespace_definition_token1] = ACTIONS(1500), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1500), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1500), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1500), + [anon_sym_BSLASH] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [aux_sym_trait_declaration_token1] = ACTIONS(1500), + [aux_sym_interface_declaration_token1] = ACTIONS(1500), + [aux_sym_enum_declaration_token1] = ACTIONS(1500), + [aux_sym_enum_case_token1] = ACTIONS(1500), + [aux_sym_class_declaration_token1] = ACTIONS(1500), + [aux_sym_final_modifier_token1] = ACTIONS(1500), + [aux_sym_abstract_modifier_token1] = ACTIONS(1500), + [aux_sym_readonly_modifier_token1] = ACTIONS(1500), + [sym_var_modifier] = ACTIONS(1500), + [aux_sym_visibility_modifier_token1] = ACTIONS(1500), + [aux_sym_visibility_modifier_token2] = ACTIONS(1500), + [aux_sym_visibility_modifier_token3] = ACTIONS(1500), + [aux_sym__arrow_function_header_token1] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1498), + [aux_sym_cast_type_token1] = ACTIONS(1500), + [aux_sym_echo_statement_token1] = ACTIONS(1500), + [aux_sym_exit_statement_token1] = ACTIONS(1500), + [anon_sym_unset] = ACTIONS(1500), + [aux_sym_declare_statement_token1] = ACTIONS(1500), + [aux_sym_declare_statement_token2] = ACTIONS(1500), + [sym_float] = ACTIONS(1500), + [aux_sym_try_statement_token1] = ACTIONS(1500), + [aux_sym_goto_statement_token1] = ACTIONS(1500), + [aux_sym_continue_statement_token1] = ACTIONS(1500), + [aux_sym_break_statement_token1] = ACTIONS(1500), + [sym_integer] = ACTIONS(1500), + [aux_sym_return_statement_token1] = ACTIONS(1500), + [aux_sym_throw_expression_token1] = ACTIONS(1500), + [aux_sym_while_statement_token1] = ACTIONS(1500), + [aux_sym_while_statement_token2] = ACTIONS(1500), + [aux_sym_do_statement_token1] = ACTIONS(1500), + [aux_sym_for_statement_token1] = ACTIONS(1500), + [aux_sym_for_statement_token2] = ACTIONS(1500), + [aux_sym_foreach_statement_token1] = ACTIONS(1500), + [aux_sym_foreach_statement_token2] = ACTIONS(1500), + [aux_sym_if_statement_token1] = ACTIONS(1500), + [aux_sym_if_statement_token2] = ACTIONS(1500), + [aux_sym_else_if_clause_token1] = ACTIONS(1500), + [aux_sym_else_clause_token1] = ACTIONS(1500), + [aux_sym_match_expression_token1] = ACTIONS(1500), + [aux_sym_match_default_expression_token1] = ACTIONS(1500), + [aux_sym_switch_statement_token1] = ACTIONS(1500), + [aux_sym_switch_block_token1] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_AT] = ACTIONS(1498), + [aux_sym_clone_expression_token1] = ACTIONS(1500), + [aux_sym_print_intrinsic_token1] = ACTIONS(1500), + [aux_sym_object_creation_expression_token1] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [aux_sym__list_destructing_token1] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1498), + [anon_sym_self] = ACTIONS(1500), + [anon_sym_parent] = ACTIONS(1500), + [aux_sym__argument_name_token1] = ACTIONS(1500), + [aux_sym__argument_name_token2] = ACTIONS(1500), + [anon_sym_POUND_LBRACK] = ACTIONS(1498), + [aux_sym_encapsed_string_token1] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [aux_sym_string_token1] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_LT_LT_LT] = ACTIONS(1498), + [anon_sym_BQUOTE] = ACTIONS(1498), + [anon_sym_DOLLAR] = ACTIONS(1498), + [aux_sym_yield_expression_token1] = ACTIONS(1500), + [aux_sym_include_expression_token1] = ACTIONS(1500), + [aux_sym_include_once_expression_token1] = ACTIONS(1500), + [aux_sym_require_expression_token1] = ACTIONS(1500), + [aux_sym_require_once_expression_token1] = ACTIONS(1500), [sym_comment] = ACTIONS(3), }, [557] = { - [ts_builtin_sym_end] = ACTIONS(1527), - [sym_name] = ACTIONS(1529), - [anon_sym_QMARK_GT] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1527), - [aux_sym_function_static_declaration_token1] = ACTIONS(1529), - [aux_sym_global_declaration_token1] = ACTIONS(1529), - [aux_sym_namespace_definition_token1] = ACTIONS(1529), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1529), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1529), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1529), - [anon_sym_BSLASH] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(1527), - [aux_sym_trait_declaration_token1] = ACTIONS(1529), - [aux_sym_interface_declaration_token1] = ACTIONS(1529), - [aux_sym_enum_declaration_token1] = ACTIONS(1529), - [aux_sym_enum_case_token1] = ACTIONS(1529), - [aux_sym_class_declaration_token1] = ACTIONS(1529), - [aux_sym_final_modifier_token1] = ACTIONS(1529), - [aux_sym_abstract_modifier_token1] = ACTIONS(1529), - [aux_sym_readonly_modifier_token1] = ACTIONS(1529), - [aux_sym_visibility_modifier_token1] = ACTIONS(1529), - [aux_sym_visibility_modifier_token2] = ACTIONS(1529), - [aux_sym_visibility_modifier_token3] = ACTIONS(1529), - [aux_sym__arrow_function_header_token1] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1527), - [aux_sym_cast_type_token1] = ACTIONS(1529), - [aux_sym_echo_statement_token1] = ACTIONS(1529), - [aux_sym_exit_statement_token1] = ACTIONS(1529), - [anon_sym_unset] = ACTIONS(1529), - [aux_sym_declare_statement_token1] = ACTIONS(1529), - [aux_sym_declare_statement_token2] = ACTIONS(1529), - [sym_float] = ACTIONS(1529), - [aux_sym_try_statement_token1] = ACTIONS(1529), - [aux_sym_goto_statement_token1] = ACTIONS(1529), - [aux_sym_continue_statement_token1] = ACTIONS(1529), - [aux_sym_break_statement_token1] = ACTIONS(1529), - [sym_integer] = ACTIONS(1529), - [aux_sym_return_statement_token1] = ACTIONS(1529), - [aux_sym_throw_expression_token1] = ACTIONS(1529), - [aux_sym_while_statement_token1] = ACTIONS(1529), - [aux_sym_while_statement_token2] = ACTIONS(1529), - [aux_sym_do_statement_token1] = ACTIONS(1529), - [aux_sym_for_statement_token1] = ACTIONS(1529), - [aux_sym_for_statement_token2] = ACTIONS(1529), - [aux_sym_foreach_statement_token1] = ACTIONS(1529), - [aux_sym_foreach_statement_token2] = ACTIONS(1529), - [aux_sym_if_statement_token1] = ACTIONS(1529), - [aux_sym_if_statement_token2] = ACTIONS(1529), - [aux_sym_else_if_clause_token1] = ACTIONS(1529), - [aux_sym_else_clause_token1] = ACTIONS(1529), - [aux_sym_match_expression_token1] = ACTIONS(1529), - [aux_sym_match_default_expression_token1] = ACTIONS(1529), - [aux_sym_switch_statement_token1] = ACTIONS(1529), - [aux_sym_switch_block_token1] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(1527), - [aux_sym_clone_expression_token1] = ACTIONS(1529), - [aux_sym_print_intrinsic_token1] = ACTIONS(1529), - [aux_sym_object_creation_expression_token1] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [aux_sym__list_destructing_token1] = ACTIONS(1529), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_self] = ACTIONS(1529), - [anon_sym_parent] = ACTIONS(1529), - [aux_sym__argument_name_token1] = ACTIONS(1529), - [aux_sym__argument_name_token2] = ACTIONS(1529), - [anon_sym_POUND_LBRACK] = ACTIONS(1527), - [aux_sym_encapsed_string_token1] = ACTIONS(1527), - [anon_sym_DQUOTE] = ACTIONS(1527), - [aux_sym_string_token1] = ACTIONS(1527), - [anon_sym_SQUOTE] = ACTIONS(1527), - [anon_sym_LT_LT_LT] = ACTIONS(1527), - [anon_sym_BQUOTE] = ACTIONS(1527), - [anon_sym_DOLLAR] = ACTIONS(1527), - [aux_sym_yield_expression_token1] = ACTIONS(1529), - [aux_sym_include_expression_token1] = ACTIONS(1529), - [aux_sym_include_once_expression_token1] = ACTIONS(1529), - [aux_sym_require_expression_token1] = ACTIONS(1529), - [aux_sym_require_once_expression_token1] = ACTIONS(1529), + [ts_builtin_sym_end] = ACTIONS(1502), + [sym_name] = ACTIONS(1504), + [anon_sym_QMARK_GT] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [aux_sym_function_static_declaration_token1] = ACTIONS(1504), + [aux_sym_global_declaration_token1] = ACTIONS(1504), + [aux_sym_namespace_definition_token1] = ACTIONS(1504), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1504), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1504), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1504), + [anon_sym_BSLASH] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1502), + [aux_sym_trait_declaration_token1] = ACTIONS(1504), + [aux_sym_interface_declaration_token1] = ACTIONS(1504), + [aux_sym_enum_declaration_token1] = ACTIONS(1504), + [aux_sym_enum_case_token1] = ACTIONS(1504), + [aux_sym_class_declaration_token1] = ACTIONS(1504), + [aux_sym_final_modifier_token1] = ACTIONS(1504), + [aux_sym_abstract_modifier_token1] = ACTIONS(1504), + [aux_sym_readonly_modifier_token1] = ACTIONS(1504), + [sym_var_modifier] = ACTIONS(1504), + [aux_sym_visibility_modifier_token1] = ACTIONS(1504), + [aux_sym_visibility_modifier_token2] = ACTIONS(1504), + [aux_sym_visibility_modifier_token3] = ACTIONS(1504), + [aux_sym__arrow_function_header_token1] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1502), + [aux_sym_cast_type_token1] = ACTIONS(1504), + [aux_sym_echo_statement_token1] = ACTIONS(1504), + [aux_sym_exit_statement_token1] = ACTIONS(1504), + [anon_sym_unset] = ACTIONS(1504), + [aux_sym_declare_statement_token1] = ACTIONS(1504), + [aux_sym_declare_statement_token2] = ACTIONS(1504), + [sym_float] = ACTIONS(1504), + [aux_sym_try_statement_token1] = ACTIONS(1504), + [aux_sym_goto_statement_token1] = ACTIONS(1504), + [aux_sym_continue_statement_token1] = ACTIONS(1504), + [aux_sym_break_statement_token1] = ACTIONS(1504), + [sym_integer] = ACTIONS(1504), + [aux_sym_return_statement_token1] = ACTIONS(1504), + [aux_sym_throw_expression_token1] = ACTIONS(1504), + [aux_sym_while_statement_token1] = ACTIONS(1504), + [aux_sym_while_statement_token2] = ACTIONS(1504), + [aux_sym_do_statement_token1] = ACTIONS(1504), + [aux_sym_for_statement_token1] = ACTIONS(1504), + [aux_sym_for_statement_token2] = ACTIONS(1504), + [aux_sym_foreach_statement_token1] = ACTIONS(1504), + [aux_sym_foreach_statement_token2] = ACTIONS(1504), + [aux_sym_if_statement_token1] = ACTIONS(1504), + [aux_sym_if_statement_token2] = ACTIONS(1504), + [aux_sym_else_if_clause_token1] = ACTIONS(1504), + [aux_sym_else_clause_token1] = ACTIONS(1504), + [aux_sym_match_expression_token1] = ACTIONS(1504), + [aux_sym_match_default_expression_token1] = ACTIONS(1504), + [aux_sym_switch_statement_token1] = ACTIONS(1504), + [aux_sym_switch_block_token1] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_AT] = ACTIONS(1502), + [aux_sym_clone_expression_token1] = ACTIONS(1504), + [aux_sym_print_intrinsic_token1] = ACTIONS(1504), + [aux_sym_object_creation_expression_token1] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [aux_sym__list_destructing_token1] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_self] = ACTIONS(1504), + [anon_sym_parent] = ACTIONS(1504), + [aux_sym__argument_name_token1] = ACTIONS(1504), + [aux_sym__argument_name_token2] = ACTIONS(1504), + [anon_sym_POUND_LBRACK] = ACTIONS(1502), + [aux_sym_encapsed_string_token1] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [aux_sym_string_token1] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_LT_LT_LT] = ACTIONS(1502), + [anon_sym_BQUOTE] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1502), + [aux_sym_yield_expression_token1] = ACTIONS(1504), + [aux_sym_include_expression_token1] = ACTIONS(1504), + [aux_sym_include_once_expression_token1] = ACTIONS(1504), + [aux_sym_require_expression_token1] = ACTIONS(1504), + [aux_sym_require_once_expression_token1] = ACTIONS(1504), [sym_comment] = ACTIONS(3), }, [558] = { - [ts_builtin_sym_end] = ACTIONS(1531), - [sym_name] = ACTIONS(1533), - [anon_sym_QMARK_GT] = ACTIONS(1531), - [anon_sym_SEMI] = ACTIONS(1531), - [aux_sym_function_static_declaration_token1] = ACTIONS(1533), - [aux_sym_global_declaration_token1] = ACTIONS(1533), - [aux_sym_namespace_definition_token1] = ACTIONS(1533), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1533), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1533), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1533), - [anon_sym_BSLASH] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), - [aux_sym_trait_declaration_token1] = ACTIONS(1533), - [aux_sym_interface_declaration_token1] = ACTIONS(1533), - [aux_sym_enum_declaration_token1] = ACTIONS(1533), - [aux_sym_enum_case_token1] = ACTIONS(1533), - [aux_sym_class_declaration_token1] = ACTIONS(1533), - [aux_sym_final_modifier_token1] = ACTIONS(1533), - [aux_sym_abstract_modifier_token1] = ACTIONS(1533), - [aux_sym_readonly_modifier_token1] = ACTIONS(1533), - [aux_sym_visibility_modifier_token1] = ACTIONS(1533), - [aux_sym_visibility_modifier_token2] = ACTIONS(1533), - [aux_sym_visibility_modifier_token3] = ACTIONS(1533), - [aux_sym__arrow_function_header_token1] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1531), - [aux_sym_cast_type_token1] = ACTIONS(1533), - [aux_sym_echo_statement_token1] = ACTIONS(1533), - [aux_sym_exit_statement_token1] = ACTIONS(1533), - [anon_sym_unset] = ACTIONS(1533), - [aux_sym_declare_statement_token1] = ACTIONS(1533), - [aux_sym_declare_statement_token2] = ACTIONS(1533), - [sym_float] = ACTIONS(1533), - [aux_sym_try_statement_token1] = ACTIONS(1533), - [aux_sym_goto_statement_token1] = ACTIONS(1533), - [aux_sym_continue_statement_token1] = ACTIONS(1533), - [aux_sym_break_statement_token1] = ACTIONS(1533), - [sym_integer] = ACTIONS(1533), - [aux_sym_return_statement_token1] = ACTIONS(1533), - [aux_sym_throw_expression_token1] = ACTIONS(1533), - [aux_sym_while_statement_token1] = ACTIONS(1533), - [aux_sym_while_statement_token2] = ACTIONS(1533), - [aux_sym_do_statement_token1] = ACTIONS(1533), - [aux_sym_for_statement_token1] = ACTIONS(1533), - [aux_sym_for_statement_token2] = ACTIONS(1533), - [aux_sym_foreach_statement_token1] = ACTIONS(1533), - [aux_sym_foreach_statement_token2] = ACTIONS(1533), - [aux_sym_if_statement_token1] = ACTIONS(1533), - [aux_sym_if_statement_token2] = ACTIONS(1533), - [aux_sym_else_if_clause_token1] = ACTIONS(1533), - [aux_sym_else_clause_token1] = ACTIONS(1533), - [aux_sym_match_expression_token1] = ACTIONS(1533), - [aux_sym_match_default_expression_token1] = ACTIONS(1533), - [aux_sym_switch_statement_token1] = ACTIONS(1533), - [aux_sym_switch_block_token1] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_AT] = ACTIONS(1531), - [aux_sym_clone_expression_token1] = ACTIONS(1533), - [aux_sym_print_intrinsic_token1] = ACTIONS(1533), - [aux_sym_object_creation_expression_token1] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1531), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [aux_sym__list_destructing_token1] = ACTIONS(1533), - [anon_sym_LBRACK] = ACTIONS(1531), - [anon_sym_self] = ACTIONS(1533), - [anon_sym_parent] = ACTIONS(1533), - [aux_sym__argument_name_token1] = ACTIONS(1533), - [aux_sym__argument_name_token2] = ACTIONS(1533), - [anon_sym_POUND_LBRACK] = ACTIONS(1531), - [aux_sym_encapsed_string_token1] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [aux_sym_string_token1] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_LT_LT_LT] = ACTIONS(1531), - [anon_sym_BQUOTE] = ACTIONS(1531), - [anon_sym_DOLLAR] = ACTIONS(1531), - [aux_sym_yield_expression_token1] = ACTIONS(1533), - [aux_sym_include_expression_token1] = ACTIONS(1533), - [aux_sym_include_once_expression_token1] = ACTIONS(1533), - [aux_sym_require_expression_token1] = ACTIONS(1533), - [aux_sym_require_once_expression_token1] = ACTIONS(1533), + [ts_builtin_sym_end] = ACTIONS(1486), + [sym_name] = ACTIONS(1488), + [anon_sym_QMARK_GT] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [aux_sym_function_static_declaration_token1] = ACTIONS(1488), + [aux_sym_global_declaration_token1] = ACTIONS(1488), + [aux_sym_namespace_definition_token1] = ACTIONS(1488), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1488), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1488), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1488), + [anon_sym_BSLASH] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [aux_sym_trait_declaration_token1] = ACTIONS(1488), + [aux_sym_interface_declaration_token1] = ACTIONS(1488), + [aux_sym_enum_declaration_token1] = ACTIONS(1488), + [aux_sym_enum_case_token1] = ACTIONS(1488), + [aux_sym_class_declaration_token1] = ACTIONS(1488), + [aux_sym_final_modifier_token1] = ACTIONS(1488), + [aux_sym_abstract_modifier_token1] = ACTIONS(1488), + [aux_sym_readonly_modifier_token1] = ACTIONS(1488), + [sym_var_modifier] = ACTIONS(1488), + [aux_sym_visibility_modifier_token1] = ACTIONS(1488), + [aux_sym_visibility_modifier_token2] = ACTIONS(1488), + [aux_sym_visibility_modifier_token3] = ACTIONS(1488), + [aux_sym__arrow_function_header_token1] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(1486), + [aux_sym_cast_type_token1] = ACTIONS(1488), + [aux_sym_echo_statement_token1] = ACTIONS(1488), + [aux_sym_exit_statement_token1] = ACTIONS(1488), + [anon_sym_unset] = ACTIONS(1488), + [aux_sym_declare_statement_token1] = ACTIONS(1488), + [aux_sym_declare_statement_token2] = ACTIONS(1488), + [sym_float] = ACTIONS(1488), + [aux_sym_try_statement_token1] = ACTIONS(1488), + [aux_sym_goto_statement_token1] = ACTIONS(1488), + [aux_sym_continue_statement_token1] = ACTIONS(1488), + [aux_sym_break_statement_token1] = ACTIONS(1488), + [sym_integer] = ACTIONS(1488), + [aux_sym_return_statement_token1] = ACTIONS(1488), + [aux_sym_throw_expression_token1] = ACTIONS(1488), + [aux_sym_while_statement_token1] = ACTIONS(1488), + [aux_sym_while_statement_token2] = ACTIONS(1488), + [aux_sym_do_statement_token1] = ACTIONS(1488), + [aux_sym_for_statement_token1] = ACTIONS(1488), + [aux_sym_for_statement_token2] = ACTIONS(1488), + [aux_sym_foreach_statement_token1] = ACTIONS(1488), + [aux_sym_foreach_statement_token2] = ACTIONS(1488), + [aux_sym_if_statement_token1] = ACTIONS(1488), + [aux_sym_if_statement_token2] = ACTIONS(1488), + [aux_sym_else_if_clause_token1] = ACTIONS(1488), + [aux_sym_else_clause_token1] = ACTIONS(1488), + [aux_sym_match_expression_token1] = ACTIONS(1488), + [aux_sym_match_default_expression_token1] = ACTIONS(1488), + [aux_sym_switch_statement_token1] = ACTIONS(1488), + [aux_sym_switch_block_token1] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1486), + [aux_sym_clone_expression_token1] = ACTIONS(1488), + [aux_sym_print_intrinsic_token1] = ACTIONS(1488), + [aux_sym_object_creation_expression_token1] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [aux_sym__list_destructing_token1] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_self] = ACTIONS(1488), + [anon_sym_parent] = ACTIONS(1488), + [aux_sym__argument_name_token1] = ACTIONS(1488), + [aux_sym__argument_name_token2] = ACTIONS(1488), + [anon_sym_POUND_LBRACK] = ACTIONS(1486), + [aux_sym_encapsed_string_token1] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [aux_sym_string_token1] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_LT_LT_LT] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [aux_sym_yield_expression_token1] = ACTIONS(1488), + [aux_sym_include_expression_token1] = ACTIONS(1488), + [aux_sym_include_once_expression_token1] = ACTIONS(1488), + [aux_sym_require_expression_token1] = ACTIONS(1488), + [aux_sym_require_once_expression_token1] = ACTIONS(1488), [sym_comment] = ACTIONS(3), }, [559] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_name] = ACTIONS(1537), - [anon_sym_QMARK_GT] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [aux_sym_function_static_declaration_token1] = ACTIONS(1537), - [aux_sym_global_declaration_token1] = ACTIONS(1537), - [aux_sym_namespace_definition_token1] = ACTIONS(1537), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1537), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1537), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1537), - [anon_sym_BSLASH] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [aux_sym_trait_declaration_token1] = ACTIONS(1537), - [aux_sym_interface_declaration_token1] = ACTIONS(1537), - [aux_sym_enum_declaration_token1] = ACTIONS(1537), - [aux_sym_enum_case_token1] = ACTIONS(1537), - [aux_sym_class_declaration_token1] = ACTIONS(1537), - [aux_sym_final_modifier_token1] = ACTIONS(1537), - [aux_sym_abstract_modifier_token1] = ACTIONS(1537), - [aux_sym_readonly_modifier_token1] = ACTIONS(1537), - [aux_sym_visibility_modifier_token1] = ACTIONS(1537), - [aux_sym_visibility_modifier_token2] = ACTIONS(1537), - [aux_sym_visibility_modifier_token3] = ACTIONS(1537), - [aux_sym__arrow_function_header_token1] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1535), - [aux_sym_cast_type_token1] = ACTIONS(1537), - [aux_sym_echo_statement_token1] = ACTIONS(1537), - [aux_sym_exit_statement_token1] = ACTIONS(1537), - [anon_sym_unset] = ACTIONS(1537), - [aux_sym_declare_statement_token1] = ACTIONS(1537), - [aux_sym_declare_statement_token2] = ACTIONS(1537), - [sym_float] = ACTIONS(1537), - [aux_sym_try_statement_token1] = ACTIONS(1537), - [aux_sym_goto_statement_token1] = ACTIONS(1537), - [aux_sym_continue_statement_token1] = ACTIONS(1537), - [aux_sym_break_statement_token1] = ACTIONS(1537), - [sym_integer] = ACTIONS(1537), - [aux_sym_return_statement_token1] = ACTIONS(1537), - [aux_sym_throw_expression_token1] = ACTIONS(1537), - [aux_sym_while_statement_token1] = ACTIONS(1537), - [aux_sym_while_statement_token2] = ACTIONS(1537), - [aux_sym_do_statement_token1] = ACTIONS(1537), - [aux_sym_for_statement_token1] = ACTIONS(1537), - [aux_sym_for_statement_token2] = ACTIONS(1537), - [aux_sym_foreach_statement_token1] = ACTIONS(1537), - [aux_sym_foreach_statement_token2] = ACTIONS(1537), - [aux_sym_if_statement_token1] = ACTIONS(1537), - [aux_sym_if_statement_token2] = ACTIONS(1537), - [aux_sym_else_if_clause_token1] = ACTIONS(1537), - [aux_sym_else_clause_token1] = ACTIONS(1537), - [aux_sym_match_expression_token1] = ACTIONS(1537), - [aux_sym_match_default_expression_token1] = ACTIONS(1537), - [aux_sym_switch_statement_token1] = ACTIONS(1537), - [aux_sym_switch_block_token1] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(1535), - [aux_sym_clone_expression_token1] = ACTIONS(1537), - [aux_sym_print_intrinsic_token1] = ACTIONS(1537), - [aux_sym_object_creation_expression_token1] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [aux_sym__list_destructing_token1] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1535), - [anon_sym_self] = ACTIONS(1537), - [anon_sym_parent] = ACTIONS(1537), - [aux_sym__argument_name_token1] = ACTIONS(1537), - [aux_sym__argument_name_token2] = ACTIONS(1537), - [anon_sym_POUND_LBRACK] = ACTIONS(1535), - [aux_sym_encapsed_string_token1] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [aux_sym_string_token1] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_LT_LT_LT] = ACTIONS(1535), - [anon_sym_BQUOTE] = ACTIONS(1535), - [anon_sym_DOLLAR] = ACTIONS(1535), - [aux_sym_yield_expression_token1] = ACTIONS(1537), - [aux_sym_include_expression_token1] = ACTIONS(1537), - [aux_sym_include_once_expression_token1] = ACTIONS(1537), - [aux_sym_require_expression_token1] = ACTIONS(1537), - [aux_sym_require_once_expression_token1] = ACTIONS(1537), + [ts_builtin_sym_end] = ACTIONS(1506), + [sym_name] = ACTIONS(1508), + [anon_sym_QMARK_GT] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [aux_sym_function_static_declaration_token1] = ACTIONS(1508), + [aux_sym_global_declaration_token1] = ACTIONS(1508), + [aux_sym_namespace_definition_token1] = ACTIONS(1508), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1508), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1508), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1508), + [anon_sym_BSLASH] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [aux_sym_trait_declaration_token1] = ACTIONS(1508), + [aux_sym_interface_declaration_token1] = ACTIONS(1508), + [aux_sym_enum_declaration_token1] = ACTIONS(1508), + [aux_sym_enum_case_token1] = ACTIONS(1508), + [aux_sym_class_declaration_token1] = ACTIONS(1508), + [aux_sym_final_modifier_token1] = ACTIONS(1508), + [aux_sym_abstract_modifier_token1] = ACTIONS(1508), + [aux_sym_readonly_modifier_token1] = ACTIONS(1508), + [sym_var_modifier] = ACTIONS(1508), + [aux_sym_visibility_modifier_token1] = ACTIONS(1508), + [aux_sym_visibility_modifier_token2] = ACTIONS(1508), + [aux_sym_visibility_modifier_token3] = ACTIONS(1508), + [aux_sym__arrow_function_header_token1] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1506), + [aux_sym_cast_type_token1] = ACTIONS(1508), + [aux_sym_echo_statement_token1] = ACTIONS(1508), + [aux_sym_exit_statement_token1] = ACTIONS(1508), + [anon_sym_unset] = ACTIONS(1508), + [aux_sym_declare_statement_token1] = ACTIONS(1508), + [aux_sym_declare_statement_token2] = ACTIONS(1508), + [sym_float] = ACTIONS(1508), + [aux_sym_try_statement_token1] = ACTIONS(1508), + [aux_sym_goto_statement_token1] = ACTIONS(1508), + [aux_sym_continue_statement_token1] = ACTIONS(1508), + [aux_sym_break_statement_token1] = ACTIONS(1508), + [sym_integer] = ACTIONS(1508), + [aux_sym_return_statement_token1] = ACTIONS(1508), + [aux_sym_throw_expression_token1] = ACTIONS(1508), + [aux_sym_while_statement_token1] = ACTIONS(1508), + [aux_sym_while_statement_token2] = ACTIONS(1508), + [aux_sym_do_statement_token1] = ACTIONS(1508), + [aux_sym_for_statement_token1] = ACTIONS(1508), + [aux_sym_for_statement_token2] = ACTIONS(1508), + [aux_sym_foreach_statement_token1] = ACTIONS(1508), + [aux_sym_foreach_statement_token2] = ACTIONS(1508), + [aux_sym_if_statement_token1] = ACTIONS(1508), + [aux_sym_if_statement_token2] = ACTIONS(1508), + [aux_sym_else_if_clause_token1] = ACTIONS(1508), + [aux_sym_else_clause_token1] = ACTIONS(1508), + [aux_sym_match_expression_token1] = ACTIONS(1508), + [aux_sym_match_default_expression_token1] = ACTIONS(1508), + [aux_sym_switch_statement_token1] = ACTIONS(1508), + [aux_sym_switch_block_token1] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_AT] = ACTIONS(1506), + [aux_sym_clone_expression_token1] = ACTIONS(1508), + [aux_sym_print_intrinsic_token1] = ACTIONS(1508), + [aux_sym_object_creation_expression_token1] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [aux_sym__list_destructing_token1] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_self] = ACTIONS(1508), + [anon_sym_parent] = ACTIONS(1508), + [aux_sym__argument_name_token1] = ACTIONS(1508), + [aux_sym__argument_name_token2] = ACTIONS(1508), + [anon_sym_POUND_LBRACK] = ACTIONS(1506), + [aux_sym_encapsed_string_token1] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [aux_sym_string_token1] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1506), + [anon_sym_LT_LT_LT] = ACTIONS(1506), + [anon_sym_BQUOTE] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1506), + [aux_sym_yield_expression_token1] = ACTIONS(1508), + [aux_sym_include_expression_token1] = ACTIONS(1508), + [aux_sym_include_once_expression_token1] = ACTIONS(1508), + [aux_sym_require_expression_token1] = ACTIONS(1508), + [aux_sym_require_once_expression_token1] = ACTIONS(1508), [sym_comment] = ACTIONS(3), }, [560] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_name] = ACTIONS(1537), - [anon_sym_QMARK_GT] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [aux_sym_function_static_declaration_token1] = ACTIONS(1537), - [aux_sym_global_declaration_token1] = ACTIONS(1537), - [aux_sym_namespace_definition_token1] = ACTIONS(1537), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1537), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1537), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1537), - [anon_sym_BSLASH] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [aux_sym_trait_declaration_token1] = ACTIONS(1537), - [aux_sym_interface_declaration_token1] = ACTIONS(1537), - [aux_sym_enum_declaration_token1] = ACTIONS(1537), - [aux_sym_enum_case_token1] = ACTIONS(1537), - [aux_sym_class_declaration_token1] = ACTIONS(1537), - [aux_sym_final_modifier_token1] = ACTIONS(1537), - [aux_sym_abstract_modifier_token1] = ACTIONS(1537), - [aux_sym_readonly_modifier_token1] = ACTIONS(1537), - [aux_sym_visibility_modifier_token1] = ACTIONS(1537), - [aux_sym_visibility_modifier_token2] = ACTIONS(1537), - [aux_sym_visibility_modifier_token3] = ACTIONS(1537), - [aux_sym__arrow_function_header_token1] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1535), - [aux_sym_cast_type_token1] = ACTIONS(1537), - [aux_sym_echo_statement_token1] = ACTIONS(1537), - [aux_sym_exit_statement_token1] = ACTIONS(1537), - [anon_sym_unset] = ACTIONS(1537), - [aux_sym_declare_statement_token1] = ACTIONS(1537), - [aux_sym_declare_statement_token2] = ACTIONS(1537), - [sym_float] = ACTIONS(1537), - [aux_sym_try_statement_token1] = ACTIONS(1537), - [aux_sym_goto_statement_token1] = ACTIONS(1537), - [aux_sym_continue_statement_token1] = ACTIONS(1537), - [aux_sym_break_statement_token1] = ACTIONS(1537), - [sym_integer] = ACTIONS(1537), - [aux_sym_return_statement_token1] = ACTIONS(1537), - [aux_sym_throw_expression_token1] = ACTIONS(1537), - [aux_sym_while_statement_token1] = ACTIONS(1537), - [aux_sym_while_statement_token2] = ACTIONS(1537), - [aux_sym_do_statement_token1] = ACTIONS(1537), - [aux_sym_for_statement_token1] = ACTIONS(1537), - [aux_sym_for_statement_token2] = ACTIONS(1537), - [aux_sym_foreach_statement_token1] = ACTIONS(1537), - [aux_sym_foreach_statement_token2] = ACTIONS(1537), - [aux_sym_if_statement_token1] = ACTIONS(1537), - [aux_sym_if_statement_token2] = ACTIONS(1537), - [aux_sym_else_if_clause_token1] = ACTIONS(1537), - [aux_sym_else_clause_token1] = ACTIONS(1537), - [aux_sym_match_expression_token1] = ACTIONS(1537), - [aux_sym_match_default_expression_token1] = ACTIONS(1537), - [aux_sym_switch_statement_token1] = ACTIONS(1537), - [aux_sym_switch_block_token1] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(1535), - [aux_sym_clone_expression_token1] = ACTIONS(1537), - [aux_sym_print_intrinsic_token1] = ACTIONS(1537), - [aux_sym_object_creation_expression_token1] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [aux_sym__list_destructing_token1] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1535), - [anon_sym_self] = ACTIONS(1537), - [anon_sym_parent] = ACTIONS(1537), - [aux_sym__argument_name_token1] = ACTIONS(1537), - [aux_sym__argument_name_token2] = ACTIONS(1537), - [anon_sym_POUND_LBRACK] = ACTIONS(1535), - [aux_sym_encapsed_string_token1] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [aux_sym_string_token1] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_LT_LT_LT] = ACTIONS(1535), - [anon_sym_BQUOTE] = ACTIONS(1535), - [anon_sym_DOLLAR] = ACTIONS(1535), - [aux_sym_yield_expression_token1] = ACTIONS(1537), - [aux_sym_include_expression_token1] = ACTIONS(1537), - [aux_sym_include_once_expression_token1] = ACTIONS(1537), - [aux_sym_require_expression_token1] = ACTIONS(1537), - [aux_sym_require_once_expression_token1] = ACTIONS(1537), + [sym_name] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1512), + [aux_sym_function_static_declaration_token1] = ACTIONS(1510), + [aux_sym_global_declaration_token1] = ACTIONS(1510), + [aux_sym_namespace_definition_token1] = ACTIONS(1510), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1510), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1510), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1510), + [anon_sym_BSLASH] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [aux_sym_trait_declaration_token1] = ACTIONS(1510), + [aux_sym_interface_declaration_token1] = ACTIONS(1510), + [aux_sym_enum_declaration_token1] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(1512), + [aux_sym_class_declaration_token1] = ACTIONS(1510), + [aux_sym_final_modifier_token1] = ACTIONS(1510), + [aux_sym_abstract_modifier_token1] = ACTIONS(1510), + [aux_sym_readonly_modifier_token1] = ACTIONS(1510), + [sym_var_modifier] = ACTIONS(1510), + [aux_sym_visibility_modifier_token1] = ACTIONS(1510), + [aux_sym_visibility_modifier_token2] = ACTIONS(1510), + [aux_sym_visibility_modifier_token3] = ACTIONS(1510), + [aux_sym__arrow_function_header_token1] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [aux_sym_cast_type_token1] = ACTIONS(1510), + [aux_sym_echo_statement_token1] = ACTIONS(1510), + [aux_sym_exit_statement_token1] = ACTIONS(1510), + [anon_sym_unset] = ACTIONS(1510), + [aux_sym_declare_statement_token1] = ACTIONS(1510), + [sym_float] = ACTIONS(1510), + [aux_sym_try_statement_token1] = ACTIONS(1510), + [aux_sym_goto_statement_token1] = ACTIONS(1510), + [aux_sym_continue_statement_token1] = ACTIONS(1510), + [aux_sym_break_statement_token1] = ACTIONS(1510), + [sym_integer] = ACTIONS(1510), + [aux_sym_return_statement_token1] = ACTIONS(1510), + [aux_sym_throw_expression_token1] = ACTIONS(1510), + [aux_sym_while_statement_token1] = ACTIONS(1510), + [aux_sym_do_statement_token1] = ACTIONS(1510), + [aux_sym_for_statement_token1] = ACTIONS(1510), + [aux_sym_foreach_statement_token1] = ACTIONS(1510), + [aux_sym_if_statement_token1] = ACTIONS(1510), + [aux_sym_match_expression_token1] = ACTIONS(1510), + [aux_sym_switch_statement_token1] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [aux_sym_clone_expression_token1] = ACTIONS(1510), + [aux_sym_print_intrinsic_token1] = ACTIONS(1510), + [aux_sym_object_creation_expression_token1] = ACTIONS(1510), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_PLUS_PLUS] = ACTIONS(1512), + [aux_sym__list_destructing_token1] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_self] = ACTIONS(1510), + [anon_sym_parent] = ACTIONS(1510), + [aux_sym__argument_name_token1] = ACTIONS(1510), + [aux_sym__argument_name_token2] = ACTIONS(1510), + [anon_sym_POUND_LBRACK] = ACTIONS(1512), + [aux_sym_encapsed_string_token1] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [aux_sym_string_token1] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_LT_LT_LT] = ACTIONS(1512), + [anon_sym_BQUOTE] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1512), + [aux_sym_yield_expression_token1] = ACTIONS(1510), + [aux_sym_include_expression_token1] = ACTIONS(1510), + [aux_sym_include_once_expression_token1] = ACTIONS(1510), + [aux_sym_require_expression_token1] = ACTIONS(1510), + [aux_sym_require_once_expression_token1] = ACTIONS(1510), [sym_comment] = ACTIONS(3), }, [561] = { - [ts_builtin_sym_end] = ACTIONS(1539), - [sym_name] = ACTIONS(1541), - [anon_sym_QMARK_GT] = ACTIONS(1539), - [anon_sym_SEMI] = ACTIONS(1539), - [aux_sym_function_static_declaration_token1] = ACTIONS(1541), - [aux_sym_global_declaration_token1] = ACTIONS(1541), - [aux_sym_namespace_definition_token1] = ACTIONS(1541), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1541), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1541), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1541), - [anon_sym_BSLASH] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [aux_sym_trait_declaration_token1] = ACTIONS(1541), - [aux_sym_interface_declaration_token1] = ACTIONS(1541), - [aux_sym_enum_declaration_token1] = ACTIONS(1541), - [aux_sym_enum_case_token1] = ACTIONS(1541), - [aux_sym_class_declaration_token1] = ACTIONS(1541), - [aux_sym_final_modifier_token1] = ACTIONS(1541), - [aux_sym_abstract_modifier_token1] = ACTIONS(1541), - [aux_sym_readonly_modifier_token1] = ACTIONS(1541), - [aux_sym_visibility_modifier_token1] = ACTIONS(1541), - [aux_sym_visibility_modifier_token2] = ACTIONS(1541), - [aux_sym_visibility_modifier_token3] = ACTIONS(1541), - [aux_sym__arrow_function_header_token1] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1539), - [aux_sym_cast_type_token1] = ACTIONS(1541), - [aux_sym_echo_statement_token1] = ACTIONS(1541), - [aux_sym_exit_statement_token1] = ACTIONS(1541), - [anon_sym_unset] = ACTIONS(1541), - [aux_sym_declare_statement_token1] = ACTIONS(1541), - [aux_sym_declare_statement_token2] = ACTIONS(1541), - [sym_float] = ACTIONS(1541), - [aux_sym_try_statement_token1] = ACTIONS(1541), - [aux_sym_goto_statement_token1] = ACTIONS(1541), - [aux_sym_continue_statement_token1] = ACTIONS(1541), - [aux_sym_break_statement_token1] = ACTIONS(1541), - [sym_integer] = ACTIONS(1541), - [aux_sym_return_statement_token1] = ACTIONS(1541), - [aux_sym_throw_expression_token1] = ACTIONS(1541), - [aux_sym_while_statement_token1] = ACTIONS(1541), - [aux_sym_while_statement_token2] = ACTIONS(1541), - [aux_sym_do_statement_token1] = ACTIONS(1541), - [aux_sym_for_statement_token1] = ACTIONS(1541), - [aux_sym_for_statement_token2] = ACTIONS(1541), - [aux_sym_foreach_statement_token1] = ACTIONS(1541), - [aux_sym_foreach_statement_token2] = ACTIONS(1541), - [aux_sym_if_statement_token1] = ACTIONS(1541), - [aux_sym_if_statement_token2] = ACTIONS(1541), - [aux_sym_else_if_clause_token1] = ACTIONS(1541), - [aux_sym_else_clause_token1] = ACTIONS(1541), - [aux_sym_match_expression_token1] = ACTIONS(1541), - [aux_sym_match_default_expression_token1] = ACTIONS(1541), - [aux_sym_switch_statement_token1] = ACTIONS(1541), - [aux_sym_switch_block_token1] = ACTIONS(1541), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_TILDE] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_AT] = ACTIONS(1539), - [aux_sym_clone_expression_token1] = ACTIONS(1541), - [aux_sym_print_intrinsic_token1] = ACTIONS(1541), - [aux_sym_object_creation_expression_token1] = ACTIONS(1541), - [anon_sym_DASH_DASH] = ACTIONS(1539), - [anon_sym_PLUS_PLUS] = ACTIONS(1539), - [aux_sym__list_destructing_token1] = ACTIONS(1541), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_self] = ACTIONS(1541), - [anon_sym_parent] = ACTIONS(1541), - [aux_sym__argument_name_token1] = ACTIONS(1541), - [aux_sym__argument_name_token2] = ACTIONS(1541), - [anon_sym_POUND_LBRACK] = ACTIONS(1539), - [aux_sym_encapsed_string_token1] = ACTIONS(1539), - [anon_sym_DQUOTE] = ACTIONS(1539), - [aux_sym_string_token1] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1539), - [anon_sym_LT_LT_LT] = ACTIONS(1539), - [anon_sym_BQUOTE] = ACTIONS(1539), - [anon_sym_DOLLAR] = ACTIONS(1539), - [aux_sym_yield_expression_token1] = ACTIONS(1541), - [aux_sym_include_expression_token1] = ACTIONS(1541), - [aux_sym_include_once_expression_token1] = ACTIONS(1541), - [aux_sym_require_expression_token1] = ACTIONS(1541), - [aux_sym_require_once_expression_token1] = ACTIONS(1541), + [sym_qualified_name] = STATE(678), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2509), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_primary_expression] = STATE(959), + [sym_parenthesized_expression] = STATE(686), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_variable] = STATE(699), + [sym_member_access_expression] = STATE(699), + [sym_nullsafe_member_access_expression] = STATE(699), + [sym_scoped_property_access_expression] = STATE(699), + [sym_function_call_expression] = STATE(637), + [sym_scoped_call_expression] = STATE(637), + [sym__scope_resolution_qualifier] = STATE(2575), + [sym_relative_scope] = STATE(2575), + [sym_member_call_expression] = STATE(637), + [sym_nullsafe_member_call_expression] = STATE(637), + [sym_subscript_expression] = STATE(637), + [sym__dereferencable_expression] = STATE(1687), + [sym_array_creation_expression] = STATE(686), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(688), + [sym_string] = STATE(688), + [sym_heredoc] = STATE(688), + [sym_nowdoc] = STATE(688), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(688), + [sym_dynamic_variable_name] = STATE(637), + [sym_variable_name] = STATE(637), + [sym__reserved_identifier] = STATE(1520), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(1514), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(1516), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(587), + [aux_sym_print_intrinsic_token1] = ACTIONS(599), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(1518), [sym_comment] = ACTIONS(3), }, [562] = { - [ts_builtin_sym_end] = ACTIONS(1543), - [sym_name] = ACTIONS(1545), - [anon_sym_QMARK_GT] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1543), - [aux_sym_function_static_declaration_token1] = ACTIONS(1545), - [aux_sym_global_declaration_token1] = ACTIONS(1545), - [aux_sym_namespace_definition_token1] = ACTIONS(1545), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1545), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1545), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1545), - [anon_sym_BSLASH] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1543), - [aux_sym_trait_declaration_token1] = ACTIONS(1545), - [aux_sym_interface_declaration_token1] = ACTIONS(1545), - [aux_sym_enum_declaration_token1] = ACTIONS(1545), - [aux_sym_enum_case_token1] = ACTIONS(1545), - [aux_sym_class_declaration_token1] = ACTIONS(1545), - [aux_sym_final_modifier_token1] = ACTIONS(1545), - [aux_sym_abstract_modifier_token1] = ACTIONS(1545), - [aux_sym_readonly_modifier_token1] = ACTIONS(1545), - [aux_sym_visibility_modifier_token1] = ACTIONS(1545), - [aux_sym_visibility_modifier_token2] = ACTIONS(1545), - [aux_sym_visibility_modifier_token3] = ACTIONS(1545), - [aux_sym__arrow_function_header_token1] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1543), - [aux_sym_cast_type_token1] = ACTIONS(1545), - [aux_sym_echo_statement_token1] = ACTIONS(1545), - [aux_sym_exit_statement_token1] = ACTIONS(1545), - [anon_sym_unset] = ACTIONS(1545), - [aux_sym_declare_statement_token1] = ACTIONS(1545), - [aux_sym_declare_statement_token2] = ACTIONS(1545), - [sym_float] = ACTIONS(1545), - [aux_sym_try_statement_token1] = ACTIONS(1545), - [aux_sym_goto_statement_token1] = ACTIONS(1545), - [aux_sym_continue_statement_token1] = ACTIONS(1545), - [aux_sym_break_statement_token1] = ACTIONS(1545), - [sym_integer] = ACTIONS(1545), - [aux_sym_return_statement_token1] = ACTIONS(1545), - [aux_sym_throw_expression_token1] = ACTIONS(1545), - [aux_sym_while_statement_token1] = ACTIONS(1545), - [aux_sym_while_statement_token2] = ACTIONS(1545), - [aux_sym_do_statement_token1] = ACTIONS(1545), - [aux_sym_for_statement_token1] = ACTIONS(1545), - [aux_sym_for_statement_token2] = ACTIONS(1545), - [aux_sym_foreach_statement_token1] = ACTIONS(1545), - [aux_sym_foreach_statement_token2] = ACTIONS(1545), - [aux_sym_if_statement_token1] = ACTIONS(1545), - [aux_sym_if_statement_token2] = ACTIONS(1545), - [aux_sym_else_if_clause_token1] = ACTIONS(1545), - [aux_sym_else_clause_token1] = ACTIONS(1545), - [aux_sym_match_expression_token1] = ACTIONS(1545), - [aux_sym_match_default_expression_token1] = ACTIONS(1545), - [aux_sym_switch_statement_token1] = ACTIONS(1545), - [aux_sym_switch_block_token1] = ACTIONS(1545), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_AT] = ACTIONS(1543), - [aux_sym_clone_expression_token1] = ACTIONS(1545), - [aux_sym_print_intrinsic_token1] = ACTIONS(1545), - [aux_sym_object_creation_expression_token1] = ACTIONS(1545), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [aux_sym__list_destructing_token1] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_self] = ACTIONS(1545), - [anon_sym_parent] = ACTIONS(1545), - [aux_sym__argument_name_token1] = ACTIONS(1545), - [aux_sym__argument_name_token2] = ACTIONS(1545), - [anon_sym_POUND_LBRACK] = ACTIONS(1543), - [aux_sym_encapsed_string_token1] = ACTIONS(1543), - [anon_sym_DQUOTE] = ACTIONS(1543), - [aux_sym_string_token1] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_LT_LT_LT] = ACTIONS(1543), - [anon_sym_BQUOTE] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1543), - [aux_sym_yield_expression_token1] = ACTIONS(1545), - [aux_sym_include_expression_token1] = ACTIONS(1545), - [aux_sym_include_once_expression_token1] = ACTIONS(1545), - [aux_sym_require_expression_token1] = ACTIONS(1545), - [aux_sym_require_once_expression_token1] = ACTIONS(1545), - [sym_comment] = ACTIONS(3), - }, - [563] = { - [ts_builtin_sym_end] = ACTIONS(1547), - [sym_name] = ACTIONS(1549), - [anon_sym_QMARK_GT] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(1547), - [aux_sym_function_static_declaration_token1] = ACTIONS(1549), - [aux_sym_global_declaration_token1] = ACTIONS(1549), - [aux_sym_namespace_definition_token1] = ACTIONS(1549), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1549), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1549), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1549), - [anon_sym_BSLASH] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1547), - [anon_sym_RBRACE] = ACTIONS(1547), - [aux_sym_trait_declaration_token1] = ACTIONS(1549), - [aux_sym_interface_declaration_token1] = ACTIONS(1549), - [aux_sym_enum_declaration_token1] = ACTIONS(1549), - [aux_sym_enum_case_token1] = ACTIONS(1549), - [aux_sym_class_declaration_token1] = ACTIONS(1549), - [aux_sym_final_modifier_token1] = ACTIONS(1549), - [aux_sym_abstract_modifier_token1] = ACTIONS(1549), - [aux_sym_readonly_modifier_token1] = ACTIONS(1549), - [aux_sym_visibility_modifier_token1] = ACTIONS(1549), - [aux_sym_visibility_modifier_token2] = ACTIONS(1549), - [aux_sym_visibility_modifier_token3] = ACTIONS(1549), - [aux_sym__arrow_function_header_token1] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1547), - [aux_sym_cast_type_token1] = ACTIONS(1549), - [aux_sym_echo_statement_token1] = ACTIONS(1549), - [aux_sym_exit_statement_token1] = ACTIONS(1549), - [anon_sym_unset] = ACTIONS(1549), - [aux_sym_declare_statement_token1] = ACTIONS(1549), - [aux_sym_declare_statement_token2] = ACTIONS(1549), - [sym_float] = ACTIONS(1549), - [aux_sym_try_statement_token1] = ACTIONS(1549), - [aux_sym_goto_statement_token1] = ACTIONS(1549), - [aux_sym_continue_statement_token1] = ACTIONS(1549), - [aux_sym_break_statement_token1] = ACTIONS(1549), - [sym_integer] = ACTIONS(1549), - [aux_sym_return_statement_token1] = ACTIONS(1549), - [aux_sym_throw_expression_token1] = ACTIONS(1549), - [aux_sym_while_statement_token1] = ACTIONS(1549), - [aux_sym_while_statement_token2] = ACTIONS(1549), - [aux_sym_do_statement_token1] = ACTIONS(1549), - [aux_sym_for_statement_token1] = ACTIONS(1549), - [aux_sym_for_statement_token2] = ACTIONS(1549), - [aux_sym_foreach_statement_token1] = ACTIONS(1549), - [aux_sym_foreach_statement_token2] = ACTIONS(1549), - [aux_sym_if_statement_token1] = ACTIONS(1549), - [aux_sym_if_statement_token2] = ACTIONS(1549), - [aux_sym_else_if_clause_token1] = ACTIONS(1549), - [aux_sym_else_clause_token1] = ACTIONS(1549), - [aux_sym_match_expression_token1] = ACTIONS(1549), - [aux_sym_match_default_expression_token1] = ACTIONS(1549), - [aux_sym_switch_statement_token1] = ACTIONS(1549), - [aux_sym_switch_block_token1] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1547), - [anon_sym_AT] = ACTIONS(1547), - [aux_sym_clone_expression_token1] = ACTIONS(1549), - [aux_sym_print_intrinsic_token1] = ACTIONS(1549), - [aux_sym_object_creation_expression_token1] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1547), - [anon_sym_PLUS_PLUS] = ACTIONS(1547), - [aux_sym__list_destructing_token1] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1547), - [anon_sym_self] = ACTIONS(1549), - [anon_sym_parent] = ACTIONS(1549), - [aux_sym__argument_name_token1] = ACTIONS(1549), - [aux_sym__argument_name_token2] = ACTIONS(1549), - [anon_sym_POUND_LBRACK] = ACTIONS(1547), - [aux_sym_encapsed_string_token1] = ACTIONS(1547), - [anon_sym_DQUOTE] = ACTIONS(1547), - [aux_sym_string_token1] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1547), - [anon_sym_LT_LT_LT] = ACTIONS(1547), - [anon_sym_BQUOTE] = ACTIONS(1547), - [anon_sym_DOLLAR] = ACTIONS(1547), - [aux_sym_yield_expression_token1] = ACTIONS(1549), - [aux_sym_include_expression_token1] = ACTIONS(1549), - [aux_sym_include_once_expression_token1] = ACTIONS(1549), - [aux_sym_require_expression_token1] = ACTIONS(1549), - [aux_sym_require_once_expression_token1] = ACTIONS(1549), - [sym_comment] = ACTIONS(3), - }, - [564] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__unary_expression] = STATE(964), - [sym_unary_op_expression] = STATE(964), - [sym_clone_expression] = STATE(964), - [sym__primary_expression] = STATE(964), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(964), - [sym_cast_variable] = STATE(636), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_include_expression] = STATE(964), - [sym_include_once_expression] = STATE(964), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), - [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(850), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [sym_comment] = ACTIONS(3), - }, - [565] = { - [sym_qualified_name] = STATE(839), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym__unary_expression] = STATE(1058), - [sym_unary_op_expression] = STATE(1058), - [sym_clone_expression] = STATE(1058), - [sym__primary_expression] = STATE(1058), - [sym_parenthesized_expression] = STATE(852), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_cast_expression] = STATE(1058), - [sym_cast_variable] = STATE(634), - [sym_member_access_expression] = STATE(634), - [sym_nullsafe_member_access_expression] = STATE(634), - [sym_scoped_property_access_expression] = STATE(634), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2588), - [sym_relative_scope] = STATE(2588), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1696), - [sym_array_creation_expression] = STATE(852), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(852), - [sym_string] = STATE(852), - [sym_heredoc] = STATE(852), - [sym_nowdoc] = STATE(852), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(852), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_include_expression] = STATE(1058), - [sym_include_once_expression] = STATE(1058), - [sym__reserved_identifier] = STATE(1556), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(656), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), - [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(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [aux_sym_clone_expression_token1] = ACTIONS(95), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [aux_sym_include_expression_token1] = ACTIONS(127), - [aux_sym_include_once_expression_token1] = ACTIONS(129), - [sym_comment] = ACTIONS(3), - }, - [566] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__unary_expression] = STATE(964), - [sym_unary_op_expression] = STATE(964), - [sym_clone_expression] = STATE(964), - [sym__primary_expression] = STATE(964), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(964), - [sym_cast_variable] = STATE(598), - [sym_member_access_expression] = STATE(598), - [sym_nullsafe_member_access_expression] = STATE(598), - [sym_scoped_property_access_expression] = STATE(598), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_include_expression] = STATE(964), - [sym_include_once_expression] = STATE(964), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), - [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(634), - [aux_sym_clone_expression_token1] = ACTIONS(638), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_include_expression_token1] = ACTIONS(648), - [aux_sym_include_once_expression_token1] = ACTIONS(650), - [sym_comment] = ACTIONS(3), - }, - [567] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__unary_expression] = STATE(964), - [sym_unary_op_expression] = STATE(964), - [sym_clone_expression] = STATE(964), - [sym__primary_expression] = STATE(964), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(964), - [sym_cast_variable] = STATE(598), - [sym_member_access_expression] = STATE(598), - [sym_nullsafe_member_access_expression] = STATE(598), - [sym_scoped_property_access_expression] = STATE(598), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_include_expression] = STATE(964), - [sym_include_once_expression] = STATE(964), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), - [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(572), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [aux_sym_clone_expression_token1] = ACTIONS(590), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [sym_comment] = ACTIONS(3), - }, - [568] = { - [sym_qualified_name] = STATE(719), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__unary_expression] = STATE(964), - [sym_unary_op_expression] = STATE(964), - [sym_clone_expression] = STATE(964), - [sym__primary_expression] = STATE(964), - [sym_parenthesized_expression] = STATE(712), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_expression] = STATE(964), - [sym_cast_variable] = STATE(598), - [sym_member_access_expression] = STATE(598), - [sym_nullsafe_member_access_expression] = STATE(598), - [sym_scoped_property_access_expression] = STATE(598), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2484), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1681), - [sym_array_creation_expression] = STATE(712), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(712), - [sym_string] = STATE(712), - [sym_heredoc] = STATE(712), - [sym_nowdoc] = STATE(712), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(712), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_include_expression] = STATE(964), - [sym_include_once_expression] = STATE(964), - [sym__reserved_identifier] = STATE(1543), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(558), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), - [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(666), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(674), - [aux_sym_clone_expression_token1] = ACTIONS(678), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(612), - [aux_sym_include_expression_token1] = ACTIONS(688), - [aux_sym_include_once_expression_token1] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - }, - [569] = { - [sym_name] = ACTIONS(1555), - [anon_sym_SEMI] = ACTIONS(1557), - [aux_sym_function_static_declaration_token1] = ACTIONS(1555), - [aux_sym_global_declaration_token1] = ACTIONS(1555), - [aux_sym_namespace_definition_token1] = ACTIONS(1555), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1555), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1555), - [anon_sym_BSLASH] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1557), - [aux_sym_trait_declaration_token1] = ACTIONS(1555), - [aux_sym_interface_declaration_token1] = ACTIONS(1555), - [aux_sym_enum_declaration_token1] = ACTIONS(1555), - [anon_sym_COLON] = ACTIONS(1557), - [aux_sym_class_declaration_token1] = ACTIONS(1555), - [aux_sym_final_modifier_token1] = ACTIONS(1555), - [aux_sym_abstract_modifier_token1] = ACTIONS(1555), - [aux_sym_readonly_modifier_token1] = ACTIONS(1555), - [aux_sym_visibility_modifier_token1] = ACTIONS(1555), - [aux_sym_visibility_modifier_token2] = ACTIONS(1555), - [aux_sym_visibility_modifier_token3] = ACTIONS(1555), - [aux_sym__arrow_function_header_token1] = ACTIONS(1555), - [anon_sym_LPAREN] = ACTIONS(1557), - [aux_sym_cast_type_token1] = ACTIONS(1555), - [aux_sym_echo_statement_token1] = ACTIONS(1555), - [aux_sym_exit_statement_token1] = ACTIONS(1555), - [anon_sym_unset] = ACTIONS(1555), - [aux_sym_declare_statement_token1] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [aux_sym_try_statement_token1] = ACTIONS(1555), - [aux_sym_goto_statement_token1] = ACTIONS(1555), - [aux_sym_continue_statement_token1] = ACTIONS(1555), - [aux_sym_break_statement_token1] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [aux_sym_return_statement_token1] = ACTIONS(1555), - [aux_sym_throw_expression_token1] = ACTIONS(1555), - [aux_sym_while_statement_token1] = ACTIONS(1555), - [aux_sym_do_statement_token1] = ACTIONS(1555), - [aux_sym_for_statement_token1] = ACTIONS(1555), - [aux_sym_foreach_statement_token1] = ACTIONS(1555), - [aux_sym_if_statement_token1] = ACTIONS(1555), - [aux_sym_match_expression_token1] = ACTIONS(1555), - [aux_sym_switch_statement_token1] = ACTIONS(1555), - [anon_sym_PLUS] = ACTIONS(1555), - [anon_sym_DASH] = ACTIONS(1555), - [anon_sym_TILDE] = ACTIONS(1557), - [anon_sym_BANG] = ACTIONS(1557), - [anon_sym_AT] = ACTIONS(1557), - [aux_sym_clone_expression_token1] = ACTIONS(1555), - [aux_sym_print_intrinsic_token1] = ACTIONS(1555), - [aux_sym_object_creation_expression_token1] = ACTIONS(1555), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [aux_sym__list_destructing_token1] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_self] = ACTIONS(1555), - [anon_sym_parent] = ACTIONS(1555), - [aux_sym__argument_name_token1] = ACTIONS(1555), - [aux_sym__argument_name_token2] = ACTIONS(1555), - [anon_sym_POUND_LBRACK] = ACTIONS(1557), - [aux_sym_encapsed_string_token1] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1557), - [aux_sym_string_token1] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1557), - [anon_sym_LT_LT_LT] = ACTIONS(1557), - [anon_sym_BQUOTE] = ACTIONS(1557), - [anon_sym_DOLLAR] = ACTIONS(1557), - [aux_sym_yield_expression_token1] = ACTIONS(1555), - [aux_sym_include_expression_token1] = ACTIONS(1555), - [aux_sym_include_once_expression_token1] = ACTIONS(1555), - [aux_sym_require_expression_token1] = ACTIONS(1555), - [aux_sym_require_once_expression_token1] = ACTIONS(1555), - [sym_comment] = ACTIONS(3), - }, - [570] = { - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2600), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2191), - [sym__arrow_function_header] = STATE(2592), - [sym_arrow_function] = STATE(1099), - [sym_throw_expression] = STATE(1099), - [sym__primary_expression] = STATE(1128), - [sym_parenthesized_expression] = STATE(811), - [sym_class_constant_access_expression] = STATE(901), - [sym_print_intrinsic] = STATE(1099), - [sym_anonymous_function_creation_expression] = STATE(1099), - [sym_object_creation_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), + [sym_qualified_name] = STATE(844), + [sym_namespace_name_as_prefix] = STATE(2557), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2218), + [sym__arrow_function_header] = STATE(2553), + [sym_arrow_function] = STATE(1068), + [sym_literal] = STATE(1068), + [sym_throw_expression] = STATE(1068), + [sym_primary_expression] = STATE(1092), + [sym_parenthesized_expression] = STATE(848), + [sym_class_constant_access_expression] = STATE(898), + [sym_print_intrinsic] = STATE(1068), + [sym_anonymous_function_creation_expression] = STATE(1068), + [sym_object_creation_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), [sym_cast_variable] = STATE(825), [sym_member_access_expression] = STATE(825), [sym_nullsafe_member_access_expression] = STATE(825), [sym_scoped_property_access_expression] = STATE(825), - [sym_function_call_expression] = STATE(777), - [sym_scoped_call_expression] = STATE(777), - [sym__scope_resolution_qualifier] = STATE(2534), - [sym_relative_scope] = STATE(2534), - [sym_member_call_expression] = STATE(777), - [sym_nullsafe_member_call_expression] = STATE(777), - [sym_subscript_expression] = STATE(777), - [sym__dereferencable_expression] = STATE(1638), - [sym_array_creation_expression] = STATE(811), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1764), - [sym_encapsed_string] = STATE(811), - [sym_string] = STATE(811), - [sym_heredoc] = STATE(811), - [sym_nowdoc] = STATE(811), - [sym_shell_command_expression] = STATE(1099), - [sym_boolean] = STATE(1099), - [sym_null] = STATE(1099), - [sym__string] = STATE(811), - [sym_dynamic_variable_name] = STATE(777), - [sym_variable_name] = STATE(777), - [sym__reserved_identifier] = STATE(1521), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(1559), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(660), - [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(1561), - [aux_sym_cast_type_token1] = ACTIONS(51), - [sym_float] = ACTIONS(61), - [sym_integer] = ACTIONS(61), - [aux_sym_throw_expression_token1] = ACTIONS(73), - [aux_sym_print_intrinsic_token1] = ACTIONS(97), - [aux_sym_object_creation_expression_token1] = ACTIONS(99), - [anon_sym_DASH_DASH] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(101), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(109), - [aux_sym__argument_name_token2] = ACTIONS(111), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(115), - [aux_sym_string_token1] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_LT_LT_LT] = ACTIONS(119), - [anon_sym_BQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(1563), - [sym_comment] = ACTIONS(3), - }, - [571] = { - [sym_qualified_name] = STATE(680), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2435), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__primary_expression] = STATE(963), - [sym_parenthesized_expression] = STATE(686), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_variable] = STATE(691), - [sym_member_access_expression] = STATE(691), - [sym_nullsafe_member_access_expression] = STATE(691), - [sym_scoped_property_access_expression] = STATE(691), - [sym_function_call_expression] = STATE(648), - [sym_scoped_call_expression] = STATE(648), - [sym__scope_resolution_qualifier] = STATE(2610), - [sym_relative_scope] = STATE(2610), - [sym_member_call_expression] = STATE(648), - [sym_nullsafe_member_call_expression] = STATE(648), - [sym_subscript_expression] = STATE(648), - [sym__dereferencable_expression] = STATE(1658), - [sym_array_creation_expression] = STATE(686), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(686), - [sym_string] = STATE(686), - [sym_heredoc] = STATE(686), - [sym_nowdoc] = STATE(686), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(686), - [sym_dynamic_variable_name] = STATE(648), - [sym_variable_name] = STATE(648), - [sym__reserved_identifier] = STATE(1537), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(1565), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_function_call_expression] = STATE(756), + [sym_scoped_call_expression] = STATE(756), + [sym__scope_resolution_qualifier] = STATE(2517), + [sym_relative_scope] = STATE(2517), + [sym_member_call_expression] = STATE(756), + [sym_nullsafe_member_call_expression] = STATE(756), + [sym_subscript_expression] = STATE(756), + [sym__dereferencable_expression] = STATE(1684), + [sym_array_creation_expression] = STATE(848), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1787), + [sym_encapsed_string] = STATE(840), + [sym_string] = STATE(840), + [sym_heredoc] = STATE(840), + [sym_nowdoc] = STATE(840), + [sym_shell_command_expression] = STATE(1068), + [sym_boolean] = STATE(1047), + [sym_null] = STATE(1047), + [sym__string] = STATE(840), + [sym_dynamic_variable_name] = STATE(756), + [sym_variable_name] = STATE(756), + [sym__reserved_identifier] = STATE(1545), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(1520), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(667), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(1567), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(630), - [aux_sym_print_intrinsic_token1] = ACTIONS(640), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(1569), - [sym_comment] = ACTIONS(3), - }, - [572] = { - [sym_qualified_name] = STATE(680), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2493), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__primary_expression] = STATE(963), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(1522), + [aux_sym_cast_type_token1] = ACTIONS(53), + [sym_float] = ACTIONS(63), + [sym_integer] = ACTIONS(63), + [aux_sym_throw_expression_token1] = ACTIONS(75), + [aux_sym_print_intrinsic_token1] = ACTIONS(99), + [aux_sym_object_creation_expression_token1] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(111), + [aux_sym__argument_name_token2] = ACTIONS(113), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(117), + [aux_sym_string_token1] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(119), + [anon_sym_LT_LT_LT] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(1524), + [sym_comment] = ACTIONS(3), + }, + [563] = { + [sym_qualified_name] = STATE(678), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2420), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_primary_expression] = STATE(959), [sym_parenthesized_expression] = STATE(686), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_variable] = STATE(691), - [sym_member_access_expression] = STATE(691), - [sym_nullsafe_member_access_expression] = STATE(691), - [sym_scoped_property_access_expression] = STATE(691), - [sym_function_call_expression] = STATE(648), - [sym_scoped_call_expression] = STATE(648), - [sym__scope_resolution_qualifier] = STATE(2610), - [sym_relative_scope] = STATE(2610), - [sym_member_call_expression] = STATE(648), - [sym_nullsafe_member_call_expression] = STATE(648), - [sym_subscript_expression] = STATE(648), - [sym__dereferencable_expression] = STATE(1658), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_variable] = STATE(699), + [sym_member_access_expression] = STATE(699), + [sym_nullsafe_member_access_expression] = STATE(699), + [sym_scoped_property_access_expression] = STATE(699), + [sym_function_call_expression] = STATE(637), + [sym_scoped_call_expression] = STATE(637), + [sym__scope_resolution_qualifier] = STATE(2575), + [sym_relative_scope] = STATE(2575), + [sym_member_call_expression] = STATE(637), + [sym_nullsafe_member_call_expression] = STATE(637), + [sym_subscript_expression] = STATE(637), + [sym__dereferencable_expression] = STATE(1687), [sym_array_creation_expression] = STATE(686), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(686), - [sym_string] = STATE(686), - [sym_heredoc] = STATE(686), - [sym_nowdoc] = STATE(686), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(686), - [sym_dynamic_variable_name] = STATE(648), - [sym_variable_name] = STATE(648), - [sym__reserved_identifier] = STATE(1537), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(1565), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(688), + [sym_string] = STATE(688), + [sym_heredoc] = STATE(688), + [sym_nowdoc] = STATE(688), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(688), + [sym_dynamic_variable_name] = STATE(637), + [sym_variable_name] = STATE(637), + [sym__reserved_identifier] = STATE(1520), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(1514), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(1567), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(670), - [aux_sym_print_intrinsic_token1] = ACTIONS(680), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(1569), - [sym_comment] = ACTIONS(3), - }, - [573] = { - [sym_qualified_name] = STATE(680), - [sym_namespace_name_as_prefix] = STATE(2531), - [sym_namespace_name] = STATE(2599), - [sym_static_modifier] = STATE(2236), - [sym__arrow_function_header] = STATE(2467), - [sym_arrow_function] = STATE(944), - [sym_throw_expression] = STATE(944), - [sym__primary_expression] = STATE(963), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(1516), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(637), + [aux_sym_print_intrinsic_token1] = ACTIONS(647), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(1518), + [sym_comment] = ACTIONS(3), + }, + [564] = { + [sym_qualified_name] = STATE(678), + [sym_namespace_name_as_prefix] = STATE(2516), + [sym_namespace_name] = STATE(2556), + [sym_static_modifier] = STATE(2228), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(949), + [sym_literal] = STATE(949), + [sym_throw_expression] = STATE(949), + [sym_primary_expression] = STATE(959), [sym_parenthesized_expression] = STATE(686), - [sym_class_constant_access_expression] = STATE(772), - [sym_print_intrinsic] = STATE(944), - [sym_anonymous_function_creation_expression] = STATE(944), - [sym_object_creation_expression] = STATE(944), - [sym_update_expression] = STATE(944), - [sym_cast_variable] = STATE(691), - [sym_member_access_expression] = STATE(691), - [sym_nullsafe_member_access_expression] = STATE(691), - [sym_scoped_property_access_expression] = STATE(691), - [sym_function_call_expression] = STATE(648), - [sym_scoped_call_expression] = STATE(648), - [sym__scope_resolution_qualifier] = STATE(2610), - [sym_relative_scope] = STATE(2610), - [sym_member_call_expression] = STATE(648), - [sym_nullsafe_member_call_expression] = STATE(648), - [sym_subscript_expression] = STATE(648), - [sym__dereferencable_expression] = STATE(1658), + [sym_class_constant_access_expression] = STATE(758), + [sym_print_intrinsic] = STATE(949), + [sym_anonymous_function_creation_expression] = STATE(949), + [sym_object_creation_expression] = STATE(949), + [sym_update_expression] = STATE(949), + [sym_cast_variable] = STATE(699), + [sym_member_access_expression] = STATE(699), + [sym_nullsafe_member_access_expression] = STATE(699), + [sym_scoped_property_access_expression] = STATE(699), + [sym_function_call_expression] = STATE(637), + [sym_scoped_call_expression] = STATE(637), + [sym__scope_resolution_qualifier] = STATE(2575), + [sym_relative_scope] = STATE(2575), + [sym_member_call_expression] = STATE(637), + [sym_nullsafe_member_call_expression] = STATE(637), + [sym_subscript_expression] = STATE(637), + [sym__dereferencable_expression] = STATE(1687), [sym_array_creation_expression] = STATE(686), - [sym_attribute_group] = STATE(972), - [sym_attribute_list] = STATE(1743), - [sym_encapsed_string] = STATE(686), - [sym_string] = STATE(686), - [sym_heredoc] = STATE(686), - [sym_nowdoc] = STATE(686), - [sym_shell_command_expression] = STATE(944), - [sym_boolean] = STATE(944), - [sym_null] = STATE(944), - [sym__string] = STATE(686), - [sym_dynamic_variable_name] = STATE(648), - [sym_variable_name] = STATE(648), - [sym__reserved_identifier] = STATE(1537), - [aux_sym_attribute_list_repeat1] = STATE(972), - [sym_name] = ACTIONS(1565), - [aux_sym_function_static_declaration_token1] = ACTIONS(564), - [aux_sym_namespace_definition_token1] = ACTIONS(566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(568), + [sym_attribute_group] = STATE(970), + [sym_attribute_list] = STATE(1795), + [sym_encapsed_string] = STATE(688), + [sym_string] = STATE(688), + [sym_heredoc] = STATE(688), + [sym_nowdoc] = STATE(688), + [sym_shell_command_expression] = STATE(949), + [sym_boolean] = STATE(916), + [sym_null] = STATE(916), + [sym__string] = STATE(688), + [sym_dynamic_variable_name] = STATE(637), + [sym_variable_name] = STATE(637), + [sym__reserved_identifier] = STATE(1520), + [aux_sym_attribute_list_repeat1] = STATE(970), + [sym_name] = ACTIONS(1514), + [aux_sym_function_static_declaration_token1] = ACTIONS(571), + [aux_sym_namespace_definition_token1] = ACTIONS(573), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(575), [anon_sym_BSLASH] = ACTIONS(27), - [aux_sym__arrow_function_header_token1] = ACTIONS(47), - [anon_sym_LPAREN] = ACTIONS(1567), - [aux_sym_cast_type_token1] = ACTIONS(576), - [sym_float] = ACTIONS(578), - [sym_integer] = ACTIONS(578), - [aux_sym_throw_expression_token1] = ACTIONS(580), - [aux_sym_print_intrinsic_token1] = ACTIONS(592), - [aux_sym_object_creation_expression_token1] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(596), - [anon_sym_PLUS_PLUS] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_self] = ACTIONS(107), - [anon_sym_parent] = ACTIONS(107), - [aux_sym__argument_name_token1] = ACTIONS(600), - [aux_sym__argument_name_token2] = ACTIONS(602), - [anon_sym_POUND_LBRACK] = ACTIONS(113), - [aux_sym_encapsed_string_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(604), - [aux_sym_string_token1] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(1569), + [aux_sym__arrow_function_header_token1] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(1516), + [aux_sym_cast_type_token1] = ACTIONS(583), + [sym_float] = ACTIONS(585), + [sym_integer] = ACTIONS(585), + [aux_sym_throw_expression_token1] = ACTIONS(677), + [aux_sym_print_intrinsic_token1] = ACTIONS(687), + [aux_sym_object_creation_expression_token1] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_self] = ACTIONS(109), + [anon_sym_parent] = ACTIONS(109), + [aux_sym__argument_name_token1] = ACTIONS(607), + [aux_sym__argument_name_token2] = ACTIONS(609), + [anon_sym_POUND_LBRACK] = ACTIONS(115), + [aux_sym_encapsed_string_token1] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(615), + [anon_sym_BQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(1518), [sym_comment] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 3, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1573), 21, + ACTIONS(1528), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -76716,7 +76697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1571), 41, + ACTIONS(1526), 41, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -76759,9 +76740,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [70] = 3, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1579), 21, + ACTIONS(1534), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -76783,7 +76764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1577), 41, + ACTIONS(1532), 41, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -76826,9 +76807,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [140] = 3, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1583), 21, + ACTIONS(1538), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -76850,7 +76831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1581), 41, + ACTIONS(1536), 41, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -76893,9 +76874,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [210] = 3, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1587), 21, + ACTIONS(1542), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -76917,7 +76898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1585), 41, + ACTIONS(1540), 41, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -76960,13 +76941,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [280] = 5, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(589), 1, + STATE(576), 1, sym_arguments, - ACTIONS(1591), 21, + ACTIONS(1546), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -76988,7 +76969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1589), 38, + ACTIONS(1544), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77028,13 +77009,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [353] = 5, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(591), 1, + STATE(582), 1, sym_arguments, - ACTIONS(1597), 21, + ACTIONS(1552), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77056,7 +77037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1595), 38, + ACTIONS(1550), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77095,93 +77076,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [426] = 5, - ACTIONS(1575), 1, + [426] = 9, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(595), 1, - sym_arguments, - ACTIONS(1601), 21, - anon_sym_AMP, + ACTIONS(1558), 1, anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - 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(1599), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_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(1575), 1, - sym_comment, - ACTIONS(1593), 1, - anon_sym_LPAREN, - ACTIONS(1607), 1, - anon_sym_EQ, - STATE(584), 1, + STATE(587), 1, sym_arguments, - ACTIONS(1611), 2, + ACTIONS(1562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1613), 13, + ACTIONS(1564), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -77195,7 +77108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1603), 18, + ACTIONS(1554), 18, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77214,7 +77127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1605), 20, + ACTIONS(1556), 20, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -77235,14 +77148,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [580] = 5, - ACTIONS(1575), 1, + [507] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(586), 1, + STATE(578), 1, sym_arguments, - ACTIONS(1617), 21, + ACTIONS(1568), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77264,7 +77177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1615), 38, + ACTIONS(1566), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77303,14 +77216,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [653] = 5, - ACTIONS(1575), 1, + [580] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(588), 1, + STATE(581), 1, sym_arguments, - ACTIONS(1621), 21, + ACTIONS(1572), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77332,7 +77245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1619), 38, + ACTIONS(1570), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77371,75 +77284,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [726] = 3, - ACTIONS(1575), 1, + [653] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1625), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - 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(1623), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(1548), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_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(1575), 1, - sym_comment, - ACTIONS(1629), 21, + STATE(584), 1, + sym_arguments, + ACTIONS(1576), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77461,14 +77313,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1627), 39, + ACTIONS(1574), 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_LPAREN, anon_sym_RPAREN, anon_sym_COLON_COLON, anon_sym_DASH_DASH, @@ -77501,10 +77352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [862] = 3, - ACTIONS(1575), 1, + [726] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1633), 21, + ACTIONS(1580), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77526,7 +77377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1631), 39, + ACTIONS(1578), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77566,10 +77417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [930] = 3, - ACTIONS(1575), 1, + [794] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1637), 21, + ACTIONS(1584), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77591,7 +77442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1635), 39, + ACTIONS(1582), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77631,10 +77482,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [998] = 3, - ACTIONS(1575), 1, + [862] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1641), 21, + ACTIONS(1588), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77656,7 +77507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1639), 39, + ACTIONS(1586), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77696,10 +77547,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1066] = 3, - ACTIONS(1575), 1, + [930] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1645), 21, + ACTIONS(1592), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77721,7 +77572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1643), 39, + ACTIONS(1590), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77761,10 +77612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1134] = 3, - ACTIONS(1575), 1, + [998] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1649), 21, + ACTIONS(1596), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77786,7 +77637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1647), 39, + ACTIONS(1594), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77826,10 +77677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1202] = 3, - ACTIONS(1575), 1, + [1066] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1653), 21, + ACTIONS(1600), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77851,7 +77702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1651), 39, + ACTIONS(1598), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77891,10 +77742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1270] = 3, - ACTIONS(1575), 1, + [1134] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1657), 21, + ACTIONS(1604), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77916,7 +77767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1655), 39, + ACTIONS(1602), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77956,10 +77807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1338] = 3, - ACTIONS(1575), 1, + [1202] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1661), 21, + ACTIONS(1608), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77981,7 +77832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1659), 39, + ACTIONS(1606), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78021,10 +77872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1406] = 3, - ACTIONS(1575), 1, + [1270] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1665), 21, + ACTIONS(1612), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78046,7 +77897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1663), 39, + ACTIONS(1610), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78086,10 +77937,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1474] = 3, - ACTIONS(1575), 1, + [1338] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1669), 21, + ACTIONS(1616), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78111,7 +77962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1667), 39, + ACTIONS(1614), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78151,10 +78002,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1542] = 3, - ACTIONS(1575), 1, + [1406] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1673), 21, + ACTIONS(1620), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78176,7 +78027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1671), 39, + ACTIONS(1618), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78216,25 +78067,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1610] = 9, - ACTIONS(1575), 1, + [1474] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, - anon_sym_LPAREN, - ACTIONS(1675), 1, + ACTIONS(1624), 21, + anon_sym_AMP, anon_sym_EQ, - STATE(584), 1, - sym_arguments, - ACTIONS(1611), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1609), 5, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + 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(1622), 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_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1677), 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78248,12 +78117,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1603), 16, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -78265,8 +78132,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1605), 20, + [1542] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1628), 21, anon_sym_AMP, + anon_sym_EQ, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, @@ -78286,21 +78157,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [1689] = 7, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1607), 1, - anon_sym_EQ, - ACTIONS(1611), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1609), 5, + ACTIONS(1626), 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_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1613), 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78314,13 +78182,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1603), 18, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -78333,46 +78197,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1605), 20, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - 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(1575), 1, + [1610] = 9, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(1630), 1, anon_sym_EQ, - STATE(584), 1, + STATE(587), 1, sym_arguments, - ACTIONS(1611), 2, + ACTIONS(1562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1681), 13, + ACTIONS(1632), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78386,12 +78229,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1603), 16, + ACTIONS(1554), 16, anon_sym_SEMI, - anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_RPAREN, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -78403,8 +78246,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1605), 19, + ACTIONS(1556), 20, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -78423,44 +78267,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [1842] = 12, - ACTIONS(856), 1, - anon_sym_COMMA, - ACTIONS(1575), 1, + [1689] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, - anon_sym_LPAREN, - ACTIONS(1675), 1, + ACTIONS(1558), 1, anon_sym_EQ, - ACTIONS(1683), 1, - anon_sym_RPAREN, - STATE(584), 1, - sym_arguments, - STATE(1979), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1611), 2, + ACTIONS(1562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1603), 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(1677), 13, + ACTIONS(1564), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78474,46 +78295,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1605), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [1925] = 9, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1593), 1, - anon_sym_LPAREN, - ACTIONS(1607), 1, - anon_sym_EQ, - STATE(584), 1, - sym_arguments, - ACTIONS(1611), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1603), 12, + ACTIONS(1554), 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, @@ -78525,25 +78314,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1613), 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(1605), 19, + ACTIONS(1556), 20, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -78562,25 +78335,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2002] = 9, - ACTIONS(1575), 1, + [1764] = 9, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1607), 1, - anon_sym_EQ, - ACTIONS(1685), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(617), 1, + ACTIONS(1634), 1, + anon_sym_EQ, + STATE(587), 1, sym_arguments, - ACTIONS(1687), 2, + ACTIONS(1562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1613), 13, + ACTIONS(1636), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78594,11 +78367,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1603), 15, - sym__automatic_semicolon, + ACTIONS(1554), 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, @@ -78610,7 +78384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1605), 19, + ACTIONS(1556), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -78630,14 +78404,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2079] = 5, - ACTIONS(1575), 1, + [1842] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1685), 1, + ACTIONS(1638), 1, anon_sym_LPAREN, - STATE(616), 1, + STATE(618), 1, sym_arguments, - ACTIONS(1591), 20, + ACTIONS(1572), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -78658,7 +78432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1589), 35, + ACTIONS(1570), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -78694,25 +78468,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2148] = 9, - ACTIONS(1575), 1, + [1911] = 9, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1685), 1, + ACTIONS(1638), 1, anon_sym_LPAREN, - ACTIONS(1689), 1, + ACTIONS(1640), 1, anon_sym_EQ, - STATE(617), 1, + STATE(615), 1, sym_arguments, - ACTIONS(1687), 2, + ACTIONS(1642), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1691), 13, + ACTIONS(1644), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78726,7 +78500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1603), 15, + ACTIONS(1554), 15, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -78742,74 +78516,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1605), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [2225] = 7, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1675), 1, - anon_sym_EQ, - ACTIONS(1611), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1677), 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(1603), 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(1605), 20, + ACTIONS(1556), 19, anon_sym_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -78828,14 +78536,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2298] = 5, - ACTIONS(1575), 1, + [1988] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1685), 1, + ACTIONS(1638), 1, anon_sym_LPAREN, STATE(610), 1, sym_arguments, - ACTIONS(1601), 20, + ACTIONS(1568), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -78856,7 +78564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1599), 35, + ACTIONS(1566), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -78892,14 +78600,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2367] = 5, - ACTIONS(1575), 1, + [2057] = 12, + ACTIONS(870), 1, + anon_sym_COMMA, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1548), 1, + anon_sym_LPAREN, + ACTIONS(1630), 1, + anon_sym_EQ, + ACTIONS(1646), 1, + anon_sym_RPAREN, + STATE(587), 1, + sym_arguments, + STATE(2049), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1554), 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(1632), 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(1556), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [2140] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1685), 1, + ACTIONS(1638), 1, anon_sym_LPAREN, - STATE(623), 1, + STATE(616), 1, sym_arguments, - ACTIONS(1621), 20, + ACTIONS(1552), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -78920,7 +78699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1619), 35, + ACTIONS(1550), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -78956,16 +78735,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2436] = 5, - ACTIONS(1575), 1, + [2209] = 9, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1685), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(620), 1, + ACTIONS(1558), 1, + anon_sym_EQ, + STATE(587), 1, sym_arguments, - ACTIONS(1597), 20, + ACTIONS(1562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1554), 12, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1564), 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(1556), 19, anon_sym_AMP, - anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -78984,15 +78803,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1595), 35, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, + [2286] = 9, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_EQ, + ACTIONS(1638), 1, + anon_sym_LPAREN, + STATE(615), 1, + sym_arguments, + ACTIONS(1642), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1564), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79006,9 +78835,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + ACTIONS(1554), 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, @@ -79020,14 +78851,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2505] = 5, - ACTIONS(1575), 1, + ACTIONS(1556), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [2363] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1685), 1, + ACTIONS(1638), 1, anon_sym_LPAREN, STATE(622), 1, sym_arguments, - ACTIONS(1617), 20, + ACTIONS(1576), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79048,7 +78899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1615), 35, + ACTIONS(1574), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79084,10 +78935,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2574] = 3, - ACTIONS(1575), 1, + [2432] = 7, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1630), 1, + anon_sym_EQ, + ACTIONS(1562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1632), 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(1554), 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(1556), 20, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [2505] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1669), 20, + ACTIONS(1638), 1, + anon_sym_LPAREN, + STATE(613), 1, + sym_arguments, + ACTIONS(1546), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79108,13 +79029,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1667), 36, + ACTIONS(1544), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_COLON_COLON, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, @@ -79145,10 +79065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2638] = 3, - ACTIONS(1575), 1, + [2574] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1661), 20, + ACTIONS(1588), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79169,7 +79089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1659), 36, + ACTIONS(1586), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79206,10 +79126,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2702] = 3, - ACTIONS(1575), 1, + [2638] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1649), 20, + ACTIONS(1596), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79230,7 +79150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1647), 36, + ACTIONS(1594), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79267,77 +79187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2766] = 9, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1593), 1, - anon_sym_LPAREN, - ACTIONS(1693), 1, - anon_sym_EQ, - STATE(584), 1, - sym_arguments, - ACTIONS(1611), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1695), 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(1603), 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(1605), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [2842] = 3, - ACTIONS(1575), 1, + [2702] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1629), 20, + ACTIONS(1534), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79358,7 +79211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1627), 36, + ACTIONS(1532), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79395,10 +79248,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2906] = 3, - ACTIONS(1575), 1, + [2766] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1587), 20, + ACTIONS(1612), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79419,7 +79272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1585), 36, + ACTIONS(1610), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79456,10 +79309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2970] = 3, - ACTIONS(1575), 1, + [2830] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1645), 20, + ACTIONS(1624), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79480,7 +79333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1643), 36, + ACTIONS(1622), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79517,40 +79370,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3034] = 3, - ACTIONS(1575), 1, + [2894] = 9, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1625), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - 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(1623), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, + ACTIONS(1548), 1, anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(1648), 1, + anon_sym_EQ, + STATE(587), 1, + sym_arguments, + ACTIONS(1562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1650), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79564,9 +79402,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + ACTIONS(1554), 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, @@ -79578,12 +79417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3098] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1657), 20, + ACTIONS(1556), 19, anon_sym_AMP, - anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -79602,32 +79437,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1655), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, + [2970] = 10, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1548), 1, anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(1630), 1, + anon_sym_EQ, + STATE(587), 1, + sym_arguments, + ACTIONS(1562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_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(1652), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + ACTIONS(1554), 12, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -79639,12 +79471,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3162] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1665), 20, + ACTIONS(1632), 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(1556), 19, anon_sym_AMP, - anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -79663,32 +79505,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1663), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, + [3048] = 10, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1548), 1, anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(1630), 1, + anon_sym_EQ, + STATE(587), 1, + sym_arguments, + ACTIONS(1562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_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(1654), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + ACTIONS(1554), 12, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -79700,12 +79539,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3226] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1653), 20, + ACTIONS(1632), 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(1556), 19, anon_sym_AMP, - anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -79724,65 +79573,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1651), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_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, - [3290] = 10, - ACTIONS(1575), 1, + [3126] = 10, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - ACTIONS(1675), 1, + ACTIONS(1634), 1, anon_sym_EQ, - STATE(584), 1, + STATE(587), 1, sym_arguments, - ACTIONS(1611), 2, + ACTIONS(1562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1697), 2, + ACTIONS(1656), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1609), 5, + anon_sym_RBRACK, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1603), 12, + ACTIONS(1554), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -79795,7 +79607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1677), 13, + ACTIONS(1636), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79809,7 +79621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1605), 19, + ACTIONS(1556), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -79829,10 +79641,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [3368] = 3, - ACTIONS(1575), 1, + [3204] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1633), 20, + ACTIONS(1592), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79853,7 +79665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1631), 36, + ACTIONS(1590), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79890,10 +79702,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3432] = 3, - ACTIONS(1575), 1, + [3268] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1641), 20, + ACTIONS(1620), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79914,7 +79726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1639), 36, + ACTIONS(1618), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79951,10 +79763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3496] = 3, - ACTIONS(1575), 1, + [3332] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1573), 20, + ACTIONS(1542), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79975,7 +79787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1571), 36, + ACTIONS(1540), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80012,10 +79824,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3560] = 3, - ACTIONS(1575), 1, + [3396] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1637), 20, + ACTIONS(1584), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80036,7 +79848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1635), 36, + ACTIONS(1582), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80073,10 +79885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3624] = 3, - ACTIONS(1575), 1, + [3460] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1583), 20, + ACTIONS(1528), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80097,7 +79909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1581), 36, + ACTIONS(1526), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80134,21 +79946,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3688] = 7, - ACTIONS(1575), 1, + [3524] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1679), 1, + ACTIONS(1628), 20, + anon_sym_AMP, anon_sym_EQ, - ACTIONS(1611), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1609), 5, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + 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(1626), 36, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1681), 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80162,12 +79993,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1603), 16, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, + 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, @@ -80179,30 +80007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1605), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [3760] = 3, - ACTIONS(1575), 1, + [3588] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1579), 20, + ACTIONS(1608), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80223,7 +80031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1577), 36, + ACTIONS(1606), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80260,41 +80068,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3824] = 10, - ACTIONS(1575), 1, + [3652] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, - anon_sym_LPAREN, - ACTIONS(1675), 1, + ACTIONS(1634), 1, anon_sym_EQ, - STATE(584), 1, - sym_arguments, - ACTIONS(1611), 2, + ACTIONS(1562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1699), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1603), 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(1677), 13, + ACTIONS(1636), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80308,49 +80096,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1605), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [3902] = 10, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1593), 1, - anon_sym_LPAREN, - ACTIONS(1679), 1, - anon_sym_EQ, - STATE(584), 1, - sym_arguments, - ACTIONS(1611), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1701), 2, + ACTIONS(1554), 16, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1603), 12, + 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, @@ -80362,21 +80113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1681), 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(1605), 19, + ACTIONS(1556), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80396,10 +80133,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [3980] = 3, - ACTIONS(1575), 1, + [3724] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1673), 20, + ACTIONS(1604), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80420,7 +80157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1671), 36, + ACTIONS(1602), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80457,28 +80194,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [4044] = 10, - ACTIONS(1575), 1, + [3788] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, - anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(1600), 20, + anon_sym_AMP, anon_sym_EQ, - STATE(584), 1, - sym_arguments, - ACTIONS(1611), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1704), 2, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + 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_RBRACK, - ACTIONS(1609), 5, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1603), 11, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -80490,22 +80255,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1681), 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(1605), 19, + [3852] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1580), 20, anon_sym_AMP, + anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -80524,28 +80279,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4121] = 10, - ACTIONS(856), 1, + ACTIONS(1578), 36, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1675), 1, - anon_sym_EQ, - ACTIONS(1683), 1, - anon_sym_RPAREN, - STATE(1979), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1611), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1609), 5, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1603), 12, - anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -80557,22 +80316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1677), 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(1605), 19, + [3916] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1538), 20, anon_sym_AMP, + anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -80591,21 +80340,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4198] = 7, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1607), 1, - anon_sym_EQ, - ACTIONS(1687), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1609), 5, + ACTIONS(1536), 36, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1613), 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80619,11 +80363,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1603), 15, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -80635,8 +80377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1605), 19, + [3980] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1616), 20, anon_sym_AMP, + anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -80655,21 +80401,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4269] = 7, - ACTIONS(1575), 1, + ACTIONS(1614), 36, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_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, + [4044] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1689), 1, + ACTIONS(1640), 1, anon_sym_EQ, - ACTIONS(1687), 2, + ACTIONS(1642), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1691), 13, + ACTIONS(1644), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80683,7 +80466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1603), 15, + ACTIONS(1554), 15, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80699,7 +80482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1605), 19, + ACTIONS(1556), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80719,21 +80502,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4340] = 7, - ACTIONS(1575), 1, + [4115] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1607), 1, + ACTIONS(1558), 1, anon_sym_EQ, - ACTIONS(1611), 2, + ACTIONS(1562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1603), 12, + ACTIONS(1554), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -80746,7 +80529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1613), 16, + ACTIONS(1564), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_STAR_STAR_EQ, @@ -80763,7 +80546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_RBRACK, - ACTIONS(1605), 19, + ACTIONS(1556), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80783,37 +80566,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4411] = 8, - ACTIONS(1575), 1, + [4186] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1675), 1, + ACTIONS(1558), 1, anon_sym_EQ, - ACTIONS(1611), 2, + ACTIONS(1642), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1697), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1603), 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(1677), 13, + ACTIONS(1564), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80827,7 +80594,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1605), 19, + ACTIONS(1554), 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(1556), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80847,25 +80630,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4483] = 8, - ACTIONS(1575), 1, + [4257] = 10, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1679), 1, + ACTIONS(1548), 1, + anon_sym_LPAREN, + ACTIONS(1634), 1, anon_sym_EQ, - ACTIONS(1611), 2, + STATE(587), 1, + sym_arguments, + ACTIONS(1562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1701), 2, + ACTIONS(1659), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1603), 12, - anon_sym_EQ_GT, + ACTIONS(1554), 11, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -80877,7 +80663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1681), 13, + ACTIONS(1636), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80891,7 +80677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1605), 19, + ACTIONS(1556), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80911,24 +80697,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4555] = 8, - ACTIONS(1575), 1, + [4334] = 10, + ACTIONS(870), 1, + anon_sym_COMMA, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1675), 1, + ACTIONS(1630), 1, anon_sym_EQ, - ACTIONS(1611), 2, + ACTIONS(1646), 1, + anon_sym_RPAREN, + STATE(2049), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1699), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1603), 12, + ACTIONS(1554), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -80941,7 +80730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1677), 13, + ACTIONS(1632), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80955,7 +80744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1605), 19, + ACTIONS(1556), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80975,21 +80764,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4627] = 7, - ACTIONS(1575), 1, + [4411] = 8, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1693), 1, + ACTIONS(1634), 1, anon_sym_EQ, - ACTIONS(1611), 2, + ACTIONS(1562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1609), 5, + ACTIONS(1656), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1695), 13, + ACTIONS(1554), 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(1636), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81003,10 +80808,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1603), 14, + ACTIONS(1556), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [4483] = 8, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1630), 1, + anon_sym_EQ, + ACTIONS(1562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1654), 2, anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1554), 12, anon_sym_EQ_GT, - anon_sym_RPAREN, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -81018,7 +80858,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1605), 19, + ACTIONS(1632), 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(1556), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81038,24 +80892,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4697] = 8, - ACTIONS(1575), 1, + [4555] = 8, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1679), 1, + ACTIONS(1630), 1, anon_sym_EQ, - ACTIONS(1611), 2, + ACTIONS(1562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1704), 2, + ACTIONS(1652), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1609), 5, + anon_sym_RPAREN, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1603), 11, + ACTIONS(1554), 12, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -81067,7 +80922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1681), 13, + ACTIONS(1632), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81081,7 +80936,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1605), 19, + ACTIONS(1556), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [4627] = 7, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_EQ, + ACTIONS(1562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1650), 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(1554), 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(1556), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [4697] = 8, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1634), 1, + anon_sym_EQ, + ACTIONS(1562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1659), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1554), 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(1636), 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(1556), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81102,9 +81083,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4768] = 3, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1707), 22, + ACTIONS(1662), 22, anon_sym_AMP, aux_sym_function_static_declaration_token1, aux_sym_namespace_aliasing_clause_token1, @@ -81127,7 +81108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, sym_name, - ACTIONS(1709), 28, + ACTIONS(1664), 28, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -81156,7 +81137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [4826] = 25, + [4826] = 26, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(39), 1, @@ -81165,60 +81146,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_abstract_modifier_token1, ACTIONS(43), 1, aux_sym_readonly_modifier_token1, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1711), 1, + ACTIONS(1666), 1, sym_name, - ACTIONS(1713), 1, + ACTIONS(1668), 1, aux_sym_function_static_declaration_token1, - ACTIONS(1715), 1, + ACTIONS(1670), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(1719), 1, + ACTIONS(1672), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(1676), 1, sym_var_modifier, - ACTIONS(1721), 1, + ACTIONS(1678), 1, anon_sym_LPAREN, - ACTIONS(1723), 1, + ACTIONS(1680), 1, anon_sym_QMARK, - ACTIONS(1725), 1, + ACTIONS(1682), 1, anon_sym_DOLLAR, - STATE(1415), 1, + STATE(1418), 1, sym_qualified_name, - STATE(1688), 1, + STATE(1669), 1, sym_variable_name, - STATE(1861), 1, - sym__function_definition_header, - STATE(1867), 1, + STATE(1738), 1, sym_property_element, - STATE(2123), 1, - sym__type, - STATE(2531), 1, + STATE(1739), 1, + sym__function_definition_header, + STATE(2091), 1, + sym_type, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - ACTIONS(45), 3, + ACTIONS(47), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1453), 3, + STATE(1454), 3, sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - STATE(1402), 4, + STATE(1409), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - STATE(1087), 7, + STATE(975), 7, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, sym__modifier, sym_static_modifier, sym_visibility_modifier, - aux_sym_property_declaration_repeat1, - ACTIONS(1717), 12, + aux_sym_class_declaration_repeat1, + ACTIONS(1674), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -81231,7 +81214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [4926] = 25, + [4929] = 26, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(39), 1, @@ -81240,60 +81223,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_abstract_modifier_token1, ACTIONS(43), 1, aux_sym_readonly_modifier_token1, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1711), 1, + ACTIONS(1666), 1, sym_name, - ACTIONS(1713), 1, + ACTIONS(1668), 1, aux_sym_function_static_declaration_token1, - ACTIONS(1715), 1, + ACTIONS(1670), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(1719), 1, + ACTIONS(1672), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(1676), 1, sym_var_modifier, - ACTIONS(1721), 1, + ACTIONS(1678), 1, anon_sym_LPAREN, - ACTIONS(1723), 1, + ACTIONS(1680), 1, anon_sym_QMARK, - ACTIONS(1725), 1, + ACTIONS(1682), 1, anon_sym_DOLLAR, - STATE(1415), 1, + STATE(1418), 1, sym_qualified_name, - STATE(1688), 1, + STATE(1669), 1, sym_variable_name, - STATE(1773), 1, + STATE(1822), 1, sym_property_element, - STATE(1787), 1, + STATE(1831), 1, sym__function_definition_header, - STATE(2021), 1, - sym__type, - STATE(2531), 1, + STATE(1928), 1, + sym_type, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - ACTIONS(45), 3, + ACTIONS(47), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1453), 3, + STATE(1454), 3, sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - STATE(1402), 4, + STATE(1409), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - STATE(1087), 7, + STATE(975), 7, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, sym__modifier, sym_static_modifier, sym_visibility_modifier, - aux_sym_property_declaration_repeat1, - ACTIONS(1717), 12, + aux_sym_class_declaration_repeat1, + ACTIONS(1674), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -81306,24 +81291,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [5026] = 8, - ACTIONS(1575), 1, + [5032] = 8, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1727), 1, - anon_sym_BSLASH, - ACTIONS(1730), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(672), 1, + ACTIONS(1688), 1, + anon_sym_BSLASH, + STATE(587), 1, sym_arguments, - STATE(2243), 1, + STATE(2288), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1605), 12, + ACTIONS(1686), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81336,7 +81321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 26, + ACTIONS(1684), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -81363,14 +81348,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5091] = 5, - ACTIONS(1575), 1, + [5097] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1730), 1, + ACTIONS(1691), 1, anon_sym_LPAREN, - STATE(662), 1, + STATE(670), 1, sym_arguments, - ACTIONS(1601), 13, + ACTIONS(1562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1556), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81384,20 +81378,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1599), 32, + ACTIONS(1554), 25, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -81417,24 +81404,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5150] = 8, - ACTIONS(1575), 1, + [5160] = 8, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - ACTIONS(1727), 1, + ACTIONS(1688), 1, anon_sym_BSLASH, - STATE(584), 1, + STATE(587), 1, sym_arguments, - STATE(2243), 1, + STATE(2288), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1605), 12, + ACTIONS(1556), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81447,7 +81434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 26, + ACTIONS(1554), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -81474,28 +81461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5215] = 7, - ACTIONS(1575), 1, + [5225] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1730), 1, - anon_sym_LPAREN, - STATE(672), 1, - sym_arguments, - ACTIONS(1611), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1605), 13, + ACTIONS(1588), 13, anon_sym_AMP, + anon_sym_EQ, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -81504,13 +81478,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 25, + ACTIONS(1586), 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_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, @@ -81530,20 +81513,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5278] = 6, - ACTIONS(1575), 1, + [5280] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1730), 1, + ACTIONS(1691), 1, anon_sym_LPAREN, - STATE(672), 1, + STATE(653), 1, sym_arguments, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1607), 13, + ACTIONS(1546), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81557,15 +81534,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 27, + ACTIONS(1544), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, + anon_sym_COLON_COLON, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -81585,14 +81567,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5339] = 5, - ACTIONS(1575), 1, + [5339] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1730), 1, + ACTIONS(1691), 1, anon_sym_LPAREN, - STATE(659), 1, + STATE(670), 1, sym_arguments, - ACTIONS(1621), 13, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1558), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81606,20 +81594,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1619), 32, + ACTIONS(1564), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, - anon_sym_COLON_COLON, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -81639,14 +81622,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5398] = 5, - ACTIONS(1575), 1, + [5400] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1730), 1, + ACTIONS(1691), 1, anon_sym_LPAREN, - STATE(663), 1, + STATE(669), 1, sym_arguments, - ACTIONS(1597), 13, + ACTIONS(1568), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81660,7 +81643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1595), 32, + ACTIONS(1566), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -81693,24 +81676,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5457] = 8, - ACTIONS(1575), 1, + [5459] = 8, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1727), 1, + ACTIONS(1688), 1, anon_sym_BSLASH, - ACTIONS(1736), 1, + ACTIONS(1691), 1, anon_sym_LPAREN, - STATE(751), 1, + STATE(670), 1, sym_arguments, - STATE(2243), 1, + STATE(2288), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1734), 12, + ACTIONS(1556), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81723,7 +81706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1732), 26, + ACTIONS(1554), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -81750,14 +81733,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5522] = 5, - ACTIONS(1575), 1, + [5524] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1730), 1, + ACTIONS(1691), 1, anon_sym_LPAREN, - STATE(664), 1, + STATE(655), 1, sym_arguments, - ACTIONS(1617), 13, + ACTIONS(1552), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81771,7 +81754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1615), 32, + ACTIONS(1550), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -81804,15 +81787,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5581] = 3, - ACTIONS(1575), 1, + [5583] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1649), 13, + ACTIONS(1691), 1, + anon_sym_LPAREN, + STATE(648), 1, + sym_arguments, + ACTIONS(1572), 13, anon_sym_AMP, - anon_sym_EQ, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -81821,19 +81808,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1647), 34, + ACTIONS(1570), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym_class_interface_clause_token1, - aux_sym_use_instead_of_clause_token1, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [5642] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1691), 1, + anon_sym_LPAREN, + STATE(661), 1, + sym_arguments, + 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), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -81856,24 +81895,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5636] = 8, - ACTIONS(1575), 1, + [5701] = 8, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, - anon_sym_LPAREN, - ACTIONS(1727), 1, + ACTIONS(1688), 1, anon_sym_BSLASH, - STATE(584), 1, + ACTIONS(1697), 1, + anon_sym_LPAREN, + STATE(748), 1, sym_arguments, - STATE(2243), 1, + STATE(2288), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1740), 12, + ACTIONS(1695), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81886,7 +81925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 26, + ACTIONS(1693), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -81913,14 +81952,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5701] = 5, - ACTIONS(1575), 1, + [5766] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1730), 1, - anon_sym_LPAREN, - STATE(670), 1, - sym_arguments, - ACTIONS(1591), 13, + ACTIONS(1604), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81934,13 +81969,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1589), 32, + 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_COLON_COLON, anon_sym_DASH_DASH, @@ -81967,84 +82003,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5760] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(113), 1, - anon_sym_POUND_LBRACK, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1711), 1, - sym_name, - ACTIONS(1742), 1, - anon_sym_AMP, - ACTIONS(1744), 1, - anon_sym_COMMA, - ACTIONS(1746), 1, - anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_RPAREN, - ACTIONS(1750), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1752), 1, - anon_sym_QMARK, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - STATE(971), 1, - sym_attribute_list, - STATE(1187), 1, - sym_visibility_modifier, - STATE(1415), 1, - sym_qualified_name, - STATE(1659), 1, - sym__type, - STATE(1909), 1, - sym_reference_modifier, - STATE(1911), 1, - sym_variable_name, - STATE(2515), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - STATE(972), 2, - sym_attribute_group, - aux_sym_attribute_list_repeat1, - ACTIONS(45), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1453), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - STATE(1910), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - STATE(1527), 4, - sym__types, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1717), 12, - 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_false, - anon_sym_null, - anon_sym_true, - [5860] = 3, - ACTIONS(1575), 1, + [5820] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1673), 13, + ACTIONS(1620), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82058,7 +82020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1671), 33, + ACTIONS(1618), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82092,10 +82054,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5914] = 3, - ACTIONS(1575), 1, + [5874] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1641), 13, + ACTIONS(1588), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82109,7 +82071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1639), 33, + ACTIONS(1586), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82143,61 +82105,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5968] = 3, - ACTIONS(1575), 1, + [5928] = 26, + ACTIONS(3), 1, sym_comment, - ACTIONS(1637), 13, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(115), 1, + anon_sym_POUND_LBRACK, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1666), 1, + sym_name, + ACTIONS(1699), 1, 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(1635), 33, - anon_sym_SEMI, + ACTIONS(1701), 1, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(1703), 1, anon_sym_LPAREN, + ACTIONS(1705), 1, anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, + ACTIONS(1707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1709), 1, + anon_sym_QMARK, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + STATE(969), 1, + sym_attribute_list, + STATE(1184), 1, + sym_visibility_modifier, + STATE(1418), 1, + sym_qualified_name, + STATE(1686), 1, + sym_type, + STATE(1902), 1, + sym_variable_name, + STATE(1914), 1, + sym_reference_modifier, + STATE(2492), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + STATE(970), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(47), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1454), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(1922), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + STATE(1538), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1674), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [6028] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(115), 1, + anon_sym_POUND_LBRACK, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(583), 1, + aux_sym_cast_type_token1, + ACTIONS(615), 1, + anon_sym_LT_LT_LT, + ACTIONS(1272), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6022] = 3, - ACTIONS(1575), 1, + ACTIONS(1713), 1, + sym_name, + ACTIONS(1715), 1, + aux_sym_class_declaration_token1, + ACTIONS(1717), 1, + anon_sym_LPAREN, + ACTIONS(1719), 1, + anon_sym_DOLLAR, + STATE(2504), 1, + sym_attribute_list, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + ACTIONS(611), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(613), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(702), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(970), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(2601), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(109), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(704), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1690), 3, + sym_class_constant_access_expression, + sym_cast_variable, + sym__dereferencable_expression, + STATE(703), 4, + sym_parenthesized_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1562), 10, + 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, + [6124] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1583), 13, + ACTIONS(1584), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82211,7 +82268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1581), 33, + ACTIONS(1582), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82245,10 +82302,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6076] = 3, - ACTIONS(1575), 1, + [6178] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1669), 13, + ACTIONS(1534), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82262,7 +82319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1667), 33, + ACTIONS(1532), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82296,10 +82353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6130] = 3, - ACTIONS(1575), 1, + [6232] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1653), 13, + ACTIONS(1608), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82313,7 +82370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1651), 33, + ACTIONS(1606), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82347,10 +82404,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6184] = 3, - ACTIONS(1575), 1, + [6286] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1633), 13, + ACTIONS(1624), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82364,7 +82421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1631), 33, + ACTIONS(1622), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82398,10 +82455,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6238] = 3, - ACTIONS(1575), 1, + [6340] = 26, + ACTIONS(3), 1, sym_comment, - ACTIONS(1649), 13, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(115), 1, + anon_sym_POUND_LBRACK, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1666), 1, + sym_name, + ACTIONS(1699), 1, + anon_sym_AMP, + ACTIONS(1703), 1, + anon_sym_LPAREN, + ACTIONS(1707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1709), 1, + anon_sym_QMARK, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + ACTIONS(1721), 1, + anon_sym_COMMA, + ACTIONS(1723), 1, + anon_sym_RPAREN, + STATE(969), 1, + sym_attribute_list, + STATE(1184), 1, + sym_visibility_modifier, + STATE(1418), 1, + sym_qualified_name, + STATE(1686), 1, + sym_type, + STATE(1902), 1, + sym_variable_name, + STATE(1914), 1, + sym_reference_modifier, + STATE(2492), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + STATE(970), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(47), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1454), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(1913), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + STATE(1538), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1674), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [6440] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1528), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82415,7 +82546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1647), 33, + ACTIONS(1526), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82449,10 +82580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6292] = 3, - ACTIONS(1575), 1, + [6494] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1573), 13, + ACTIONS(1612), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82466,7 +82597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1571), 33, + ACTIONS(1610), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82500,10 +82631,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6346] = 3, - ACTIONS(1575), 1, + [6548] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1661), 13, + ACTIONS(1542), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82517,7 +82648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1659), 33, + ACTIONS(1540), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82551,18 +82682,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6400] = 5, - ACTIONS(1575), 1, + [6602] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, - anon_sym_LPAREN, - STATE(586), 1, - sym_arguments, - ACTIONS(1758), 12, + ACTIONS(1616), 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, @@ -82571,17 +82699,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1756), 32, + ACTIONS(1614), 33, 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_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -82604,10 +82733,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6458] = 3, - ACTIONS(1575), 1, + [6656] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1629), 13, + ACTIONS(1596), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82621,7 +82750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1627), 33, + ACTIONS(1594), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82655,15 +82784,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6512] = 3, - ACTIONS(1575), 1, + [6710] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1645), 13, + ACTIONS(1548), 1, + anon_sym_LPAREN, + STATE(583), 1, + sym_arguments, + ACTIONS(1727), 12, 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, @@ -82672,18 +82804,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1643), 33, + ACTIONS(1725), 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_LPAREN, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -82706,68 +82837,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6566] = 24, + [6768] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(113), 1, + ACTIONS(115), 1, anon_sym_POUND_LBRACK, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(576), 1, + ACTIONS(583), 1, aux_sym_cast_type_token1, - ACTIONS(608), 1, + ACTIONS(615), 1, anon_sym_LT_LT_LT, - ACTIONS(1551), 1, + ACTIONS(1272), 1, anon_sym_LBRACK, - ACTIONS(1760), 1, + ACTIONS(1729), 1, sym_name, - ACTIONS(1762), 1, + ACTIONS(1733), 1, aux_sym_class_declaration_token1, - ACTIONS(1764), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, - ACTIONS(1766), 1, + ACTIONS(1737), 1, anon_sym_DOLLAR, - STATE(2524), 1, + STATE(2483), 1, sym_attribute_list, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - ACTIONS(604), 2, + STATE(2557), 1, + sym_namespace_name_as_prefix, + ACTIONS(611), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(606), 2, + ACTIONS(613), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(687), 2, + STATE(827), 2, sym_qualified_name, sym__reserved_identifier, - STATE(972), 2, + STATE(970), 2, sym_attribute_group, aux_sym_attribute_list_repeat1, - STATE(2635), 2, + STATE(2493), 2, sym__scope_resolution_qualifier, sym_relative_scope, - ACTIONS(107), 3, + ACTIONS(1731), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(682), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(684), 3, + STATE(830), 3, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(1665), 3, + STATE(1634), 3, sym_class_constant_access_expression, sym_cast_variable, sym__dereferencable_expression, - STATE(1541), 11, + STATE(829), 4, sym_parenthesized_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1562), 10, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -82778,10 +82909,10 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc, sym_nowdoc, sym__string, - [6662] = 3, - ACTIONS(1575), 1, + [6864] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1625), 13, + ACTIONS(1600), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82795,7 +82926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1623), 33, + ACTIONS(1598), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82829,15 +82960,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6716] = 3, - ACTIONS(1575), 1, + [6918] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1579), 13, + ACTIONS(1548), 1, + anon_sym_LPAREN, + STATE(582), 1, + sym_arguments, + ACTIONS(1741), 12, 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, @@ -82846,18 +82980,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1577), 33, + ACTIONS(1739), 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_LPAREN, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -82880,82 +83013,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6770] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(113), 1, - anon_sym_POUND_LBRACK, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(576), 1, - aux_sym_cast_type_token1, - ACTIONS(608), 1, - anon_sym_LT_LT_LT, - ACTIONS(1551), 1, - anon_sym_LBRACK, - ACTIONS(1764), 1, - anon_sym_LPAREN, - ACTIONS(1768), 1, - sym_name, - ACTIONS(1772), 1, - aux_sym_class_declaration_token1, - ACTIONS(1774), 1, - anon_sym_DOLLAR, - STATE(2557), 1, - sym_attribute_list, - STATE(2599), 1, - sym_namespace_name, - STATE(2600), 1, - sym_namespace_name_as_prefix, - ACTIONS(604), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(606), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(828), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(972), 2, - sym_attribute_group, - aux_sym_attribute_list_repeat1, - STATE(2521), 2, - sym__scope_resolution_qualifier, - sym_relative_scope, - ACTIONS(1770), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(835), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(836), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(1674), 3, - sym_class_constant_access_expression, - sym_cast_variable, - sym__dereferencable_expression, - STATE(1541), 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, - [6866] = 3, - ACTIONS(1575), 1, + [6976] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1657), 13, + ACTIONS(1538), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82969,7 +83030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1655), 33, + ACTIONS(1536), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83003,10 +83064,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6920] = 3, - ACTIONS(1575), 1, + [7030] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1587), 13, + ACTIONS(1580), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83020,7 +83081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1585), 33, + ACTIONS(1578), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83054,84 +83115,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6974] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(113), 1, - anon_sym_POUND_LBRACK, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1711), 1, - sym_name, - ACTIONS(1742), 1, - anon_sym_AMP, - ACTIONS(1746), 1, - anon_sym_LPAREN, - ACTIONS(1750), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1752), 1, - anon_sym_QMARK, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - ACTIONS(1776), 1, - anon_sym_COMMA, - ACTIONS(1778), 1, - anon_sym_RPAREN, - STATE(971), 1, - sym_attribute_list, - STATE(1187), 1, - sym_visibility_modifier, - STATE(1415), 1, - sym_qualified_name, - STATE(1659), 1, - sym__type, - STATE(1909), 1, - sym_reference_modifier, - STATE(1911), 1, - sym_variable_name, - STATE(2515), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - STATE(972), 2, - sym_attribute_group, - aux_sym_attribute_list_repeat1, - ACTIONS(45), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1453), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - STATE(1894), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - STATE(1527), 4, - sym__types, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1717), 12, - 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_false, - anon_sym_null, - anon_sym_true, - [7074] = 3, - ACTIONS(1575), 1, + [7084] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1665), 13, + ACTIONS(1592), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83145,7 +83132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1663), 33, + ACTIONS(1590), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83179,18 +83166,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7128] = 5, - ACTIONS(1575), 1, + [7138] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, - anon_sym_LPAREN, - STATE(596), 1, - sym_arguments, - ACTIONS(1782), 12, + ACTIONS(1628), 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, @@ -83199,17 +83183,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1780), 32, + ACTIONS(1626), 33, 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_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -83232,20 +83217,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7186] = 6, - ACTIONS(1575), 1, + [7192] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1730), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - STATE(672), 1, + STATE(727), 1, sym_arguments, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1605), 12, + ACTIONS(1568), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83258,14 +83237,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 26, + ACTIONS(1566), 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_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, @@ -83285,91 +83269,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7245] = 24, + [7249] = 25, + ACTIONS(3), 1, + sym_comment, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(103), 1, - aux_sym__list_destructing_token1, - ACTIONS(566), 1, + ACTIONS(115), 1, + anon_sym_POUND_LBRACK, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(576), 1, - aux_sym_cast_type_token1, - ACTIONS(608), 1, - anon_sym_LT_LT_LT, - ACTIONS(612), 1, - anon_sym_DOLLAR, - ACTIONS(728), 1, + ACTIONS(1666), 1, + sym_name, + ACTIONS(1699), 1, anon_sym_AMP, - ACTIONS(1551), 1, - anon_sym_LBRACK, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1764), 1, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(1784), 1, - sym_name, - STATE(2036), 1, - sym__list_destructing, - STATE(2037), 1, - sym_by_ref, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - ACTIONS(604), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(606), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(1543), 2, + ACTIONS(1707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1709), 1, + anon_sym_QMARK, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + ACTIONS(1743), 1, + anon_sym_RPAREN, + STATE(969), 1, + sym_attribute_list, + STATE(1184), 1, + sym_visibility_modifier, + STATE(1418), 1, sym_qualified_name, - sym__reserved_identifier, - STATE(1672), 2, - sym_class_constant_access_expression, - sym__dereferencable_expression, - STATE(2484), 2, - sym__scope_resolution_qualifier, - sym_relative_scope, - ACTIONS(107), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1509), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_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, + STATE(1686), 1, + sym_type, + STATE(1902), 1, sym_variable_name, - STATE(1541), 7, - sym_parenthesized_expression, - sym_array_creation_expression, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - sym__string, - [7340] = 6, - ACTIONS(1575), 1, + STATE(1914), 1, + sym_reference_modifier, + STATE(2492), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + STATE(970), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(47), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1454), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(2144), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + STATE(1538), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1674), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [7346] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1736), 1, - anon_sym_LPAREN, - STATE(751), 1, + STATE(576), 1, sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1546), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1544), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1734), 12, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [7401] = 4, + ACTIONS(1530), 1, + sym_comment, + STATE(578), 1, + sym_arguments, + ACTIONS(1568), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83382,14 +83410,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1732), 26, + 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_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, @@ -83409,12 +83443,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7399] = 4, - ACTIONS(1575), 1, + [7456] = 4, + ACTIONS(1530), 1, sym_comment, - STATE(589), 1, + STATE(582), 1, sym_arguments, - ACTIONS(1591), 12, + ACTIONS(1552), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83427,7 +83461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1589), 32, + ACTIONS(1550), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83460,142 +83494,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7454] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN, - STATE(945), 1, - sym_arguments, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1734), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1732), 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_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7513] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1788), 1, - sym_name, - ACTIONS(1794), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1797), 1, + [7511] = 24, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(1800), 1, - anon_sym_RBRACE, - ACTIONS(1802), 1, - anon_sym_LPAREN, - ACTIONS(1805), 1, + ACTIONS(105), 1, + aux_sym__list_destructing_token1, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(583), 1, aux_sym_cast_type_token1, - ACTIONS(1808), 1, - anon_sym_LBRACK, - ACTIONS(1817), 1, + ACTIONS(615), 1, anon_sym_LT_LT_LT, - ACTIONS(1820), 1, + ACTIONS(619), 1, anon_sym_DOLLAR, - STATE(685), 1, - aux_sym_use_list_repeat1, - STATE(1542), 1, - sym_class_constant_access_expression, - STATE(2531), 1, + ACTIONS(751), 1, + anon_sym_AMP, + ACTIONS(1272), 1, + anon_sym_LBRACK, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1717), 1, + anon_sym_LPAREN, + ACTIONS(1745), 1, + sym_name, + STATE(2182), 1, + sym__list_destructing, + STATE(2292), 1, + sym_by_ref, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - ACTIONS(1811), 2, + ACTIONS(611), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(1814), 2, + ACTIONS(613), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(1543), 2, + STATE(1544), 2, sym_qualified_name, sym__reserved_identifier, - STATE(2396), 2, - sym_use_instead_of_clause, - sym_use_as_clause, - STATE(2484), 2, + STATE(1693), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2539), 2, sym__scope_resolution_qualifier, sym_relative_scope, - ACTIONS(1791), 3, + ACTIONS(109), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1672), 5, + STATE(1552), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - sym__dereferencable_expression, - STATE(1541), 14, - sym_parenthesized_expression, + STATE(1480), 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(1562), 7, + sym_parenthesized_expression, sym_array_creation_expression, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, sym__string, - sym_dynamic_variable_name, + [7606] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(115), 1, + anon_sym_POUND_LBRACK, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1666), 1, + sym_name, + ACTIONS(1699), 1, + anon_sym_AMP, + ACTIONS(1703), 1, + anon_sym_LPAREN, + ACTIONS(1707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1709), 1, + anon_sym_QMARK, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + ACTIONS(1747), 1, + anon_sym_RPAREN, + STATE(969), 1, + sym_attribute_list, + STATE(1184), 1, + sym_visibility_modifier, + STATE(1418), 1, + sym_qualified_name, + STATE(1686), 1, + sym_type, + STATE(1902), 1, sym_variable_name, - [7604] = 6, - ACTIONS(1575), 1, + STATE(1914), 1, + sym_reference_modifier, + STATE(2492), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + STATE(970), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(47), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1454), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(2144), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + STATE(1538), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1674), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [7703] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1730), 1, + ACTIONS(1691), 1, anon_sym_LPAREN, - STATE(672), 1, + STATE(670), 1, sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1605), 12, + ACTIONS(1556), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83608,7 +83663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 26, + ACTIONS(1554), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83635,20 +83690,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7663] = 6, - ACTIONS(1575), 1, + [7762] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(751), 1, + STATE(587), 1, sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1734), 12, + ACTIONS(1556), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83661,7 +83716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1732), 26, + ACTIONS(1554), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83688,12 +83743,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7722] = 4, - ACTIONS(1575), 1, + [7821] = 4, + ACTIONS(1530), 1, sym_comment, - STATE(591), 1, + STATE(584), 1, sym_arguments, - ACTIONS(1597), 12, + ACTIONS(1576), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83706,7 +83761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1595), 32, + ACTIONS(1574), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83739,12 +83794,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7777] = 4, - ACTIONS(1575), 1, + [7876] = 6, + ACTIONS(1530), 1, sym_comment, - STATE(588), 1, + ACTIONS(1548), 1, + anon_sym_LPAREN, + STATE(587), 1, sym_arguments, - ACTIONS(1621), 12, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1556), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83757,20 +83820,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1619), 32, + ACTIONS(1554), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_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, @@ -83790,12 +83847,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7832] = 4, - ACTIONS(1575), 1, + [7935] = 4, + ACTIONS(1530), 1, sym_comment, - STATE(586), 1, + STATE(581), 1, sym_arguments, - ACTIONS(1617), 12, + ACTIONS(1572), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83808,7 +83865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1615), 32, + ACTIONS(1570), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83841,24 +83898,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7887] = 5, - ACTIONS(1575), 1, + [7990] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1611), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1609), 5, + ACTIONS(1548), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1605), 13, + ACTIONS(1751), 12, 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, @@ -83867,13 +83924,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 25, + ACTIONS(1749), 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_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -83893,21 +83951,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7944] = 4, - ACTIONS(1575), 1, + [8049] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1609), 5, + ACTIONS(1548), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1607), 13, + ACTIONS(1686), 12, 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, @@ -83916,15 +83977,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 27, + ACTIONS(1684), 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_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_PLUS, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -83944,20 +84004,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7999] = 6, - ACTIONS(1575), 1, + [8108] = 25, + ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(115), 1, + anon_sym_POUND_LBRACK, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1666), 1, + sym_name, + ACTIONS(1699), 1, + anon_sym_AMP, + ACTIONS(1703), 1, anon_sym_LPAREN, - STATE(584), 1, + ACTIONS(1707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1709), 1, + anon_sym_QMARK, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + ACTIONS(1753), 1, + anon_sym_RPAREN, + STATE(969), 1, + sym_attribute_list, + STATE(1184), 1, + sym_visibility_modifier, + STATE(1418), 1, + sym_qualified_name, + STATE(1686), 1, + sym_type, + STATE(1902), 1, + sym_variable_name, + STATE(1914), 1, + sym_reference_modifier, + STATE(2492), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + STATE(970), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(47), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1454), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(2144), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + STATE(1538), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1674), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [8205] = 6, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1691), 1, + anon_sym_LPAREN, + STATE(670), 1, sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1740), 12, + ACTIONS(1556), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83970,7 +84102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 26, + ACTIONS(1554), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83997,12 +84129,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8058] = 4, - ACTIONS(1575), 1, + [8264] = 22, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(583), 1, + aux_sym_cast_type_token1, + ACTIONS(615), 1, + anon_sym_LT_LT_LT, + ACTIONS(619), 1, + anon_sym_DOLLAR, + ACTIONS(1272), 1, + anon_sym_LBRACK, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1717), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + sym_name, + ACTIONS(1757), 1, + anon_sym_RBRACE, + STATE(713), 1, + aux_sym_use_list_repeat1, + STATE(1542), 1, + sym_class_constant_access_expression, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + ACTIONS(611), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(613), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1544), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2212), 2, + sym_use_instead_of_clause, + sym_use_as_clause, + STATE(2539), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(109), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1693), 5, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + sym__dereferencable_expression, + STATE(1562), 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, + [8355] = 6, + ACTIONS(1530), 1, sym_comment, - STATE(595), 1, + ACTIONS(1691), 1, + anon_sym_LPAREN, + STATE(670), 1, sym_arguments, - ACTIONS(1601), 12, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1751), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84015,20 +84224,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1599), 32, + ACTIONS(1749), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_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, @@ -84048,20 +84251,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8113] = 6, - ACTIONS(1575), 1, + [8414] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - STATE(584), 1, + STATE(735), 1, sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1740), 12, + ACTIONS(1761), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84074,7 +84277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 26, + ACTIONS(1759), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84101,14 +84304,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8172] = 5, - ACTIONS(1575), 1, + [8473] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - STATE(595), 1, + STATE(735), 1, sym_arguments, - ACTIONS(1601), 12, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1558), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84121,19 +84330,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1599), 31, + ACTIONS(1564), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_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, @@ -84153,86 +84357,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8229] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(113), 1, - anon_sym_POUND_LBRACK, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1711), 1, - sym_name, - ACTIONS(1742), 1, - anon_sym_AMP, - ACTIONS(1746), 1, - anon_sym_LPAREN, - ACTIONS(1750), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1752), 1, - anon_sym_QMARK, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - ACTIONS(1823), 1, - anon_sym_RPAREN, - STATE(971), 1, - sym_attribute_list, - STATE(1187), 1, - sym_visibility_modifier, - STATE(1415), 1, - sym_qualified_name, - STATE(1659), 1, - sym__type, - STATE(1909), 1, - sym_reference_modifier, - STATE(1911), 1, - sym_variable_name, - STATE(2515), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - STATE(972), 2, - sym_attribute_group, - aux_sym_attribute_list_repeat1, - ACTIONS(45), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1453), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - STATE(2338), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - STATE(1527), 4, - sym__types, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1717), 12, - 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_false, - anon_sym_null, - anon_sym_true, - [8326] = 5, - ACTIONS(1575), 1, + [8532] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1730), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(658), 1, + STATE(582), 1, sym_arguments, - ACTIONS(1782), 12, + ACTIONS(1552), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84245,7 +84377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1780), 31, + ACTIONS(1550), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84277,92 +84409,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8383] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(113), 1, - anon_sym_POUND_LBRACK, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1711), 1, - sym_name, - ACTIONS(1742), 1, - anon_sym_AMP, - ACTIONS(1746), 1, - anon_sym_LPAREN, - ACTIONS(1750), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1752), 1, - anon_sym_QMARK, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - ACTIONS(1825), 1, - anon_sym_RPAREN, - STATE(971), 1, - sym_attribute_list, - STATE(1187), 1, - sym_visibility_modifier, - STATE(1415), 1, - sym_qualified_name, - STATE(1659), 1, - sym__type, - STATE(1909), 1, - sym_reference_modifier, - STATE(1911), 1, - sym_variable_name, - STATE(2515), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - STATE(972), 2, - sym_attribute_group, - aux_sym_attribute_list_repeat1, - ACTIONS(45), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1453), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - STATE(2338), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - STATE(1527), 4, - sym__types, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1717), 12, - 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_false, - anon_sym_null, - anon_sym_true, - [8480] = 6, - ACTIONS(1575), 1, + [8589] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(730), 1, + STATE(587), 1, sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1607), 12, + ACTIONS(1686), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84375,7 +84435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 26, + ACTIONS(1684), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84402,14 +84462,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8539] = 5, - ACTIONS(1575), 1, + [8648] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(762), 1, + STATE(578), 1, sym_arguments, - ACTIONS(1617), 12, + ACTIONS(1568), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84422,7 +84482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1615), 31, + ACTIONS(1566), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84454,67 +84514,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8596] = 6, - ACTIONS(1575), 1, + [8705] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1736), 1, - anon_sym_LPAREN, - STATE(730), 1, - sym_arguments, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1829), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1827), 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_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8655] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1736), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - STATE(757), 1, + STATE(731), 1, sym_arguments, - ACTIONS(1621), 12, + ACTIONS(1552), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84527,7 +84534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1619), 31, + ACTIONS(1550), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84559,61 +84566,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8712] = 22, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, + [8762] = 22, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1763), 1, + sym_name, + ACTIONS(1769), 1, aux_sym_namespace_definition_token1, - ACTIONS(576), 1, + ACTIONS(1772), 1, + anon_sym_BSLASH, + ACTIONS(1775), 1, + anon_sym_RBRACE, + ACTIONS(1777), 1, + anon_sym_LPAREN, + ACTIONS(1780), 1, aux_sym_cast_type_token1, - ACTIONS(608), 1, + ACTIONS(1783), 1, + anon_sym_LBRACK, + ACTIONS(1792), 1, anon_sym_LT_LT_LT, - ACTIONS(612), 1, + ACTIONS(1795), 1, anon_sym_DOLLAR, - ACTIONS(1551), 1, - anon_sym_LBRACK, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1764), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - sym_name, - ACTIONS(1833), 1, - anon_sym_RBRACE, - STATE(718), 1, + STATE(695), 1, aux_sym_use_list_repeat1, STATE(1542), 1, sym_class_constant_access_expression, - STATE(2531), 1, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - ACTIONS(604), 2, + ACTIONS(1786), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(606), 2, + ACTIONS(1789), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(1543), 2, + STATE(1544), 2, sym_qualified_name, sym__reserved_identifier, - STATE(2396), 2, + STATE(2212), 2, sym_use_instead_of_clause, sym_use_as_clause, - STATE(2484), 2, + STATE(2539), 2, sym__scope_resolution_qualifier, sym_relative_scope, - ACTIONS(107), 3, + ACTIONS(1766), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1672), 5, + STATE(1693), 5, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, sym__dereferencable_expression, - STATE(1541), 14, + STATE(1562), 14, sym_parenthesized_expression, sym_function_call_expression, sym_scoped_call_expression, @@ -84628,14 +84635,85 @@ static const uint16_t ts_small_parse_table[] = { sym__string, sym_dynamic_variable_name, sym_variable_name, - [8803] = 5, - ACTIONS(1575), 1, + [8853] = 24, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(105), 1, + aux_sym__list_destructing_token1, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(583), 1, + aux_sym_cast_type_token1, + ACTIONS(615), 1, + anon_sym_LT_LT_LT, + ACTIONS(619), 1, + anon_sym_DOLLAR, + ACTIONS(751), 1, + anon_sym_AMP, + ACTIONS(1272), 1, + anon_sym_LBRACK, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(1717), 1, anon_sym_LPAREN, - STATE(752), 1, + ACTIONS(1745), 1, + sym_name, + STATE(2057), 1, + sym_by_ref, + STATE(2058), 1, + sym__list_destructing, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + ACTIONS(611), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(613), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1544), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1693), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2539), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(109), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1512), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1442), 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(1562), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [8948] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1697), 1, + anon_sym_LPAREN, + STATE(724), 1, sym_arguments, - ACTIONS(1591), 12, + ACTIONS(1546), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84648,7 +84726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1589), 31, + ACTIONS(1544), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84680,14 +84758,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8860] = 5, - ACTIONS(1575), 1, + [9005] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(586), 1, + STATE(576), 1, sym_arguments, - ACTIONS(1617), 12, + ACTIONS(1546), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84700,7 +84778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1615), 31, + ACTIONS(1544), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84732,18 +84810,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8917] = 5, - ACTIONS(1575), 1, + [9062] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, - anon_sym_LPAREN, - STATE(591), 1, - sym_arguments, - ACTIONS(1597), 12, + ACTIONS(1562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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, @@ -84752,19 +84836,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1595), 31, + ACTIONS(1554), 25, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_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, @@ -84784,15 +84862,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8974] = 5, - ACTIONS(1575), 1, + [9119] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1842), 1, - anon_sym_EQ, - ACTIONS(1839), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1837), 12, + ACTIONS(1548), 1, + anon_sym_LPAREN, + STATE(584), 1, + sym_arguments, + ACTIONS(1576), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84805,19 +84882,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1835), 30, + ACTIONS(1574), 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_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, anon_sym_STAR_STAR, @@ -84836,20 +84914,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9031] = 6, - ACTIONS(1575), 1, + [9176] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - STATE(730), 1, + STATE(719), 1, sym_arguments, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1846), 12, + ACTIONS(1576), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84862,14 +84934,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1844), 26, + ACTIONS(1574), 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_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, @@ -84889,14 +84966,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9090] = 5, - ACTIONS(1575), 1, + [9233] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1730), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - STATE(664), 1, + STATE(748), 1, sym_arguments, - ACTIONS(1758), 12, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1695), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84909,19 +84992,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1756), 31, + ACTIONS(1693), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_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, @@ -84941,14 +85019,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9147] = 5, - ACTIONS(1575), 1, + [9292] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - STATE(749), 1, + STATE(748), 1, sym_arguments, - ACTIONS(1601), 12, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1695), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84961,19 +85045,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1599), 31, + ACTIONS(1693), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_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, @@ -84993,20 +85072,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9204] = 6, - ACTIONS(1575), 1, + [9351] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - STATE(584), 1, + STATE(964), 1, sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1605), 12, + ACTIONS(1695), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85019,7 +85098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 26, + ACTIONS(1693), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85046,14 +85125,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9263] = 5, - ACTIONS(1575), 1, + [9410] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - STATE(588), 1, + STATE(717), 1, sym_arguments, - ACTIONS(1621), 12, + ACTIONS(1572), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85066,7 +85145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1619), 31, + ACTIONS(1570), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85098,86 +85177,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9320] = 25, - ACTIONS(3), 1, + [9467] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(113), 1, - anon_sym_POUND_LBRACK, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1711), 1, - sym_name, - ACTIONS(1742), 1, - anon_sym_AMP, - ACTIONS(1746), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - ACTIONS(1750), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1752), 1, + STATE(581), 1, + sym_arguments, + ACTIONS(1572), 12, + anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - ACTIONS(1848), 1, + anon_sym_PIPE, + anon_sym_DASH, + anon_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), 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, - STATE(971), 1, - sym_attribute_list, - STATE(1187), 1, - sym_visibility_modifier, - STATE(1415), 1, - sym_qualified_name, - STATE(1659), 1, - sym__type, - STATE(1909), 1, - sym_reference_modifier, - STATE(1911), 1, - sym_variable_name, - STATE(2515), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - STATE(972), 2, - sym_attribute_group, - aux_sym_attribute_list_repeat1, - ACTIONS(45), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1453), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - STATE(2338), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - STATE(1527), 4, - sym__types, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1717), 12, - 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_false, - anon_sym_null, - anon_sym_true, - [9417] = 5, - ACTIONS(1575), 1, + anon_sym_PLUS, + 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, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [9524] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - STATE(589), 1, + STATE(735), 1, sym_arguments, - ACTIONS(1591), 12, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1802), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85190,20 +85255,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1589), 31, + ACTIONS(1800), 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [9583] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(1808), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1806), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1804), 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_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, anon_sym_STAR_STAR, @@ -85222,66 +85334,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9474] = 25, + [9640] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(113), 1, + ACTIONS(115), 1, anon_sym_POUND_LBRACK, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1711), 1, + ACTIONS(1666), 1, sym_name, - ACTIONS(1742), 1, + ACTIONS(1699), 1, anon_sym_AMP, - ACTIONS(1746), 1, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(1750), 1, + ACTIONS(1707), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1752), 1, + ACTIONS(1709), 1, anon_sym_QMARK, - ACTIONS(1754), 1, + ACTIONS(1711), 1, anon_sym_DOLLAR, - ACTIONS(1850), 1, + ACTIONS(1813), 1, anon_sym_RPAREN, - STATE(971), 1, + STATE(969), 1, sym_attribute_list, - STATE(1187), 1, + STATE(1184), 1, sym_visibility_modifier, - STATE(1415), 1, + STATE(1418), 1, sym_qualified_name, - STATE(1659), 1, - sym__type, - STATE(1909), 1, - sym_reference_modifier, - STATE(1911), 1, + STATE(1686), 1, + sym_type, + STATE(1902), 1, sym_variable_name, - STATE(2515), 1, + STATE(1914), 1, + sym_reference_modifier, + STATE(2492), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - STATE(972), 2, + STATE(970), 2, sym_attribute_group, aux_sym_attribute_list_repeat1, - ACTIONS(45), 3, + ACTIONS(47), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1453), 3, + STATE(1454), 3, sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - STATE(2338), 3, + STATE(2144), 3, sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - STATE(1527), 4, + STATE(1538), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1717), 12, + ACTIONS(1674), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -85294,14 +85406,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [9571] = 5, - ACTIONS(1575), 1, + [9737] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(1691), 1, anon_sym_LPAREN, - STATE(756), 1, + STATE(659), 1, sym_arguments, - ACTIONS(1597), 12, + ACTIONS(1727), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85314,7 +85426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1595), 31, + ACTIONS(1725), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85346,89 +85458,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9628] = 22, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(576), 1, - aux_sym_cast_type_token1, - ACTIONS(608), 1, - anon_sym_LT_LT_LT, - ACTIONS(612), 1, - anon_sym_DOLLAR, - ACTIONS(1551), 1, - anon_sym_LBRACK, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1764), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - sym_name, - ACTIONS(1852), 1, - anon_sym_RBRACE, - STATE(685), 1, - aux_sym_use_list_repeat1, - STATE(1542), 1, - sym_class_constant_access_expression, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - ACTIONS(604), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(606), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(1543), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(2396), 2, - sym_use_instead_of_clause, - sym_use_as_clause, - STATE(2484), 2, - sym__scope_resolution_qualifier, - sym_relative_scope, - ACTIONS(107), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1672), 5, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - sym__dereferencable_expression, - STATE(1541), 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, - [9719] = 6, - ACTIONS(1575), 1, + [9794] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, - anon_sym_LPAREN, - STATE(584), 1, - sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1605), 12, + ACTIONS(1558), 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(1564), 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [9849] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1691), 1, + anon_sym_LPAREN, + STATE(655), 1, + sym_arguments, + ACTIONS(1741), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85441,14 +85529,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 26, + ACTIONS(1739), 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_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, @@ -85468,81 +85561,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9778] = 24, + [9906] = 22, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(103), 1, - aux_sym__list_destructing_token1, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(576), 1, + ACTIONS(583), 1, aux_sym_cast_type_token1, - ACTIONS(608), 1, + ACTIONS(615), 1, anon_sym_LT_LT_LT, - ACTIONS(612), 1, + ACTIONS(619), 1, anon_sym_DOLLAR, - ACTIONS(728), 1, - anon_sym_AMP, - ACTIONS(1551), 1, + ACTIONS(1272), 1, anon_sym_LBRACK, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1717), 1, anon_sym_LPAREN, - ACTIONS(1784), 1, + ACTIONS(1755), 1, sym_name, - STATE(2183), 1, - sym_by_ref, - STATE(2184), 1, - sym__list_destructing, - STATE(2531), 1, + ACTIONS(1815), 1, + anon_sym_RBRACE, + STATE(695), 1, + aux_sym_use_list_repeat1, + STATE(1542), 1, + sym_class_constant_access_expression, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - ACTIONS(604), 2, + ACTIONS(611), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(606), 2, + ACTIONS(613), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(1543), 2, + STATE(1544), 2, sym_qualified_name, sym__reserved_identifier, - STATE(1672), 2, - sym_class_constant_access_expression, - sym__dereferencable_expression, - STATE(2484), 2, + STATE(2212), 2, + sym_use_instead_of_clause, + sym_use_as_clause, + STATE(2539), 2, sym__scope_resolution_qualifier, sym_relative_scope, - ACTIONS(107), 3, + ACTIONS(109), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1546), 4, + STATE(1693), 5, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(1445), 7, + sym__dereferencable_expression, + STATE(1562), 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_dynamic_variable_name, - sym_variable_name, - STATE(1541), 7, - sym_parenthesized_expression, sym_array_creation_expression, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, sym__string, - [9873] = 3, - ACTIONS(1575), 1, + sym_dynamic_variable_name, + sym_variable_name, + [9997] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1673), 12, + ACTIONS(1819), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85555,7 +85646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1671), 32, + ACTIONS(1817), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85588,10 +85679,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9925] = 3, - ACTIONS(1575), 1, + [10049] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1573), 12, + ACTIONS(1823), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85604,7 +85695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1571), 32, + ACTIONS(1821), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85637,10 +85728,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9977] = 3, - ACTIONS(1575), 1, + [10101] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1579), 12, + ACTIONS(1827), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85653,7 +85744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1577), 32, + ACTIONS(1825), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85686,10 +85777,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10029] = 3, - ACTIONS(1575), 1, + [10153] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1856), 12, + ACTIONS(1604), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85702,7 +85793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1854), 32, + ACTIONS(1602), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85735,10 +85826,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10081] = 3, - ACTIONS(1575), 1, + [10205] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1860), 12, + ACTIONS(1831), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85751,7 +85842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1858), 32, + ACTIONS(1829), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85784,10 +85875,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10133] = 3, - ACTIONS(1575), 1, + [10257] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1555), 12, + ACTIONS(1616), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85800,7 +85891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1557), 32, + ACTIONS(1614), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85833,10 +85924,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10185] = 3, - ACTIONS(1575), 1, + [10309] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1587), 12, + ACTIONS(1612), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85849,7 +85940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1585), 32, + ACTIONS(1610), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85882,10 +85973,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10237] = 3, - ACTIONS(1575), 1, + [10361] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1864), 12, + ACTIONS(1620), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85898,7 +85989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1862), 32, + ACTIONS(1618), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85931,10 +86022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10289] = 3, - ACTIONS(1575), 1, + [10413] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1868), 12, + ACTIONS(1835), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85947,7 +86038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1866), 32, + ACTIONS(1833), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85980,10 +86071,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10341] = 3, - ACTIONS(1575), 1, + [10465] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1625), 12, + ACTIONS(1580), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85996,7 +86087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1623), 32, + ACTIONS(1578), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86029,10 +86120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10393] = 3, - ACTIONS(1575), 1, + [10517] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1872), 12, + ACTIONS(1584), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86045,7 +86136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1870), 32, + ACTIONS(1582), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86078,10 +86169,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10445] = 3, - ACTIONS(1575), 1, + [10569] = 23, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(583), 1, + aux_sym_cast_type_token1, + ACTIONS(615), 1, + anon_sym_LT_LT_LT, + ACTIONS(619), 1, + anon_sym_DOLLAR, + ACTIONS(751), 1, + anon_sym_AMP, + ACTIONS(861), 1, + anon_sym_LBRACK, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1876), 12, + ACTIONS(1717), 1, + anon_sym_LPAREN, + ACTIONS(1745), 1, + sym_name, + STATE(2207), 1, + sym__array_destructing, + STATE(2210), 1, + sym_by_ref, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + ACTIONS(611), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(613), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1544), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1693), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2539), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(109), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1523), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1453), 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(1562), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [10661] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1839), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86094,7 +86254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1874), 32, + ACTIONS(1837), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86127,10 +86287,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10497] = 3, - ACTIONS(1575), 1, + [10713] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1880), 12, + ACTIONS(1592), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86143,7 +86303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1878), 32, + ACTIONS(1590), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86176,10 +86336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10549] = 3, - ACTIONS(1575), 1, + [10765] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1884), 12, + ACTIONS(1843), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86192,7 +86352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1882), 32, + ACTIONS(1841), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86225,10 +86385,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10601] = 3, - ACTIONS(1575), 1, + [10817] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1888), 12, + ACTIONS(1847), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86241,7 +86401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1886), 32, + ACTIONS(1845), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86274,10 +86434,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10653] = 3, - ACTIONS(1575), 1, + [10869] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1892), 12, + ACTIONS(1596), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86290,7 +86450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1890), 32, + ACTIONS(1594), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86323,10 +86483,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10705] = 3, - ACTIONS(1575), 1, + [10921] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1896), 12, + ACTIONS(1608), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86339,7 +86499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1894), 32, + ACTIONS(1606), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86372,10 +86532,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10757] = 3, - ACTIONS(1575), 1, + [10973] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1900), 12, + ACTIONS(1851), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86388,7 +86548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 32, + ACTIONS(1849), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86421,10 +86581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10809] = 3, - ACTIONS(1575), 1, + [11025] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1904), 12, + ACTIONS(1624), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86437,7 +86597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1902), 32, + ACTIONS(1622), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86470,10 +86630,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10861] = 3, - ACTIONS(1575), 1, + [11077] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1908), 12, + ACTIONS(1855), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86486,7 +86646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1906), 32, + ACTIONS(1853), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86519,10 +86679,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10913] = 3, - ACTIONS(1575), 1, + [11129] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1912), 12, + ACTIONS(1628), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86535,7 +86695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1910), 32, + ACTIONS(1626), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86568,10 +86728,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10965] = 3, - ACTIONS(1575), 1, + [11181] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1916), 12, + ACTIONS(1859), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86584,7 +86744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1914), 32, + ACTIONS(1857), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86617,79 +86777,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11017] = 23, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(576), 1, - aux_sym_cast_type_token1, - ACTIONS(608), 1, - anon_sym_LT_LT_LT, - ACTIONS(612), 1, - anon_sym_DOLLAR, - ACTIONS(728), 1, + [11233] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1863), 12, anon_sym_AMP, - ACTIONS(852), 1, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1861), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1575), 1, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [11285] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1867), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1865), 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, - ACTIONS(1784), 1, + anon_sym_RPAREN, + anon_sym_PLUS, + 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, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [11337] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(115), 1, + anon_sym_POUND_LBRACK, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1666), 1, sym_name, - STATE(2264), 1, - sym_by_ref, - STATE(2266), 1, - sym__array_destructing, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - ACTIONS(604), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(606), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(1543), 2, + ACTIONS(1699), 1, + anon_sym_AMP, + ACTIONS(1703), 1, + anon_sym_LPAREN, + ACTIONS(1707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1709), 1, + anon_sym_QMARK, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + STATE(969), 1, + sym_attribute_list, + STATE(1184), 1, + sym_visibility_modifier, + STATE(1418), 1, sym_qualified_name, - sym__reserved_identifier, - STATE(1672), 2, - sym_class_constant_access_expression, - sym__dereferencable_expression, - STATE(2484), 2, - sym__scope_resolution_qualifier, - sym_relative_scope, - ACTIONS(107), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1544), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1489), 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, + STATE(1686), 1, + sym_type, + STATE(1902), 1, sym_variable_name, - STATE(1541), 7, - sym_parenthesized_expression, - sym_array_creation_expression, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - sym__string, - [11109] = 3, - ACTIONS(1575), 1, + STATE(1914), 1, + sym_reference_modifier, + STATE(2492), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + STATE(970), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(47), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1454), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(2144), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + STATE(1538), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1674), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [11431] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1583), 12, + ACTIONS(1510), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86702,7 +86961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1581), 32, + ACTIONS(1512), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86735,10 +86994,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11161] = 3, - ACTIONS(1575), 1, + [11483] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1837), 12, + ACTIONS(1871), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86751,7 +87010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1835), 32, + ACTIONS(1869), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86784,10 +87043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11213] = 3, - ACTIONS(1575), 1, + [11535] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1665), 12, + ACTIONS(1600), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86800,7 +87059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1663), 32, + ACTIONS(1598), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86833,10 +87092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11265] = 3, - ACTIONS(1575), 1, + [11587] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1920), 12, + ACTIONS(1542), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86849,7 +87108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1918), 32, + ACTIONS(1540), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86882,10 +87141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11317] = 3, - ACTIONS(1575), 1, + [11639] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1924), 12, + ACTIONS(1534), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86898,7 +87157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1922), 32, + ACTIONS(1532), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86931,10 +87190,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11369] = 3, - ACTIONS(1575), 1, + [11691] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1669), 12, + ACTIONS(1538), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86947,7 +87206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1667), 32, + ACTIONS(1536), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86980,10 +87239,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11421] = 3, - ACTIONS(1575), 1, + [11743] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1928), 12, + ACTIONS(1806), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86996,7 +87255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1926), 32, + ACTIONS(1804), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87029,17 +87288,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11473] = 4, - ACTIONS(1575), 1, + [11795] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1873), 1, + anon_sym_COLON_COLON, + 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), 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_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [11849] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1623), 6, + ACTIONS(1626), 6, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1932), 12, + ACTIONS(1877), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87052,7 +87361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1930), 26, + ACTIONS(1875), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87079,10 +87388,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11527] = 3, - ACTIONS(1575), 1, + [11903] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1645), 12, + ACTIONS(1881), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87095,7 +87404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1643), 32, + ACTIONS(1879), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87128,80 +87437,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11579] = 24, - ACTIONS(3), 1, + [11955] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(113), 1, - anon_sym_POUND_LBRACK, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1711), 1, - sym_name, - ACTIONS(1742), 1, - anon_sym_AMP, - ACTIONS(1746), 1, - anon_sym_LPAREN, - ACTIONS(1750), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1752), 1, - anon_sym_QMARK, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - STATE(971), 1, - sym_attribute_list, - STATE(1187), 1, - sym_visibility_modifier, - STATE(1415), 1, - sym_qualified_name, - STATE(1659), 1, - sym__type, - STATE(1909), 1, - sym_reference_modifier, - STATE(1911), 1, - sym_variable_name, - STATE(2515), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - STATE(972), 2, - sym_attribute_group, - aux_sym_attribute_list_repeat1, - ACTIONS(45), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1453), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - STATE(2338), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - STATE(1527), 4, - sym__types, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1717), 12, - 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_false, - anon_sym_null, - anon_sym_true, - [11673] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1661), 12, + ACTIONS(1528), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87214,7 +87453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1659), 32, + ACTIONS(1526), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87247,10 +87486,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11725] = 3, - ACTIONS(1575), 1, + [12007] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1629), 12, + ACTIONS(1885), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87263,7 +87502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1627), 32, + ACTIONS(1883), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87296,10 +87535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11777] = 3, - ACTIONS(1575), 1, + [12059] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1653), 12, + ACTIONS(1889), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87312,7 +87551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1651), 32, + ACTIONS(1887), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87345,10 +87584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11829] = 3, - ACTIONS(1575), 1, + [12111] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1641), 12, + ACTIONS(1893), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87361,7 +87600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1639), 32, + ACTIONS(1891), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87394,10 +87633,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11881] = 3, - ACTIONS(1575), 1, + [12163] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1936), 12, + ACTIONS(1897), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87410,7 +87649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1934), 32, + ACTIONS(1895), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87443,12 +87682,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11933] = 4, - ACTIONS(1575), 1, + [12215] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1938), 1, - anon_sym_COLON_COLON, - ACTIONS(1649), 12, + ACTIONS(1901), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87461,7 +87698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1647), 31, + ACTIONS(1899), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87471,6 +87708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -87493,14 +87731,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11987] = 3, - ACTIONS(1575), 1, + [12267] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1657), 12, + ACTIONS(1903), 1, + anon_sym_LPAREN, + STATE(794), 1, + sym_arguments, + ACTIONS(1642), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1556), 12, 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, @@ -87509,21 +87760,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1655), 32, + ACTIONS(1554), 22, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [12326] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1903), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + STATE(786), 1, + sym_arguments, + ACTIONS(1546), 12, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1544), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -87542,10 +87833,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12039] = 3, - ACTIONS(1575), 1, + [12381] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1637), 12, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1556), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87558,21 +87855,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1635), 32, + ACTIONS(1554), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [12434] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1903), 1, + anon_sym_LPAREN, + STATE(782), 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_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -87591,10 +87932,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12091] = 3, - ACTIONS(1575), 1, + [12489] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1633), 12, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1802), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87607,20 +87954,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1631), 32, + ACTIONS(1800), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_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, @@ -87640,25 +87981,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12143] = 8, - ACTIONS(1575), 1, + [12542] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, - anon_sym_LPAREN, - ACTIONS(1727), 1, - anon_sym_BSLASH, - STATE(584), 1, - sym_arguments, - STATE(2243), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1740), 11, + ACTIONS(1686), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_DASH, @@ -87669,12 +88003,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 23, - sym__automatic_semicolon, + ACTIONS(1684), 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_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -87693,10 +88030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12204] = 3, + [12595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1942), 18, + ACTIONS(1907), 18, anon_sym_AMP, anon_sym_BSLASH, anon_sym_LPAREN, @@ -87715,7 +88052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_DOLLAR, - ACTIONS(1940), 25, + ACTIONS(1905), 25, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -87741,19 +88078,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_require_expression_token1, aux_sym_require_once_expression_token1, sym_name, - [12255] = 5, - ACTIONS(1575), 1, + [12646] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1944), 1, - anon_sym_LPAREN, - STATE(784), 1, - sym_arguments, - ACTIONS(1597), 12, + ACTIONS(1025), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + aux_sym_else_clause_token1, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -87761,18 +88093,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1595), 29, - sym__automatic_semicolon, + ACTIONS(1023), 32, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_EQ_GT, - anon_sym_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + 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_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -87791,24 +88126,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12310] = 8, - ACTIONS(1575), 1, + [12697] = 8, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1727), 1, - anon_sym_BSLASH, - ACTIONS(1946), 1, + ACTIONS(1638), 1, anon_sym_LPAREN, - STATE(862), 1, + ACTIONS(1688), 1, + anon_sym_BSLASH, + STATE(615), 1, sym_arguments, - STATE(2243), 1, + STATE(2288), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1734), 11, + ACTIONS(1556), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -87820,7 +88155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1732), 23, + ACTIONS(1554), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -87844,18 +88179,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12371] = 4, - ACTIONS(1575), 1, + [12758] = 8, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1609), 5, + ACTIONS(1548), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_BSLASH, + STATE(587), 1, + sym_arguments, + STATE(2288), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1829), 12, + ACTIONS(1686), 11, anon_sym_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_DASH, @@ -87866,15 +88208,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1827), 26, + ACTIONS(1684), 23, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -87893,27 +88232,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12424] = 8, - ACTIONS(1575), 1, + [12819] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1685), 1, + ACTIONS(1903), 1, anon_sym_LPAREN, - ACTIONS(1727), 1, - anon_sym_BSLASH, - STATE(617), 1, + STATE(800), 1, sym_arguments, - STATE(2243), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1609), 5, + 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), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1605), 11, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [12874] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1903), 1, + anon_sym_LPAREN, + STATE(785), 1, + sym_arguments, + 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, @@ -87922,12 +88302,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 23, + ACTIONS(1566), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_PLUS, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -87946,10 +88332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12485] = 3, - ACTIONS(1575), 1, + [12929] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1041), 11, + ACTIONS(1037), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -87961,7 +88347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1039), 32, + ACTIONS(1035), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87994,18 +88380,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12536] = 5, - ACTIONS(1575), 1, + [12980] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1944), 1, - anon_sym_LPAREN, - STATE(789), 1, - sym_arguments, - ACTIONS(1601), 12, + ACTIONS(1808), 1, + anon_sym_RPAREN, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(1806), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -88014,18 +88399,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1599), 29, - sym__automatic_semicolon, + ACTIONS(1804), 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_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -88044,20 +88430,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12591] = 4, - ACTIONS(1575), 1, + [13035] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1740), 12, + ACTIONS(1903), 1, + anon_sym_LPAREN, + STATE(799), 1, + sym_arguments, + ACTIONS(1576), 12, 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, @@ -88066,15 +88450,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 26, + ACTIONS(1574), 29, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_RBRACK, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -88093,16 +88480,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12644] = 4, - ACTIONS(1575), 1, + [13090] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1605), 12, + ACTIONS(1761), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88115,7 +88502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 26, + ACTIONS(1759), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88142,27 +88529,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12697] = 8, - ACTIONS(1575), 1, + [13143] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1727), 1, - anon_sym_BSLASH, - ACTIONS(1944), 1, + ACTIONS(1903), 1, anon_sym_LPAREN, - STATE(787), 1, + STATE(794), 1, sym_arguments, - STATE(2243), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1605), 11, + ACTIONS(1558), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -88171,12 +88555,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 23, + ACTIONS(1564), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -88195,14 +88580,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12758] = 5, - ACTIONS(1575), 1, + [13200] = 8, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1839), 1, - anon_sym_RPAREN, - ACTIONS(1842), 1, - anon_sym_EQ, - ACTIONS(1837), 11, + ACTIONS(1688), 1, + anon_sym_BSLASH, + ACTIONS(1903), 1, + anon_sym_LPAREN, + STATE(794), 1, + sym_arguments, + STATE(2288), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1556), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88214,19 +88609,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1835), 30, + ACTIONS(1554), 23, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, - 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, anon_sym_STAR_STAR, @@ -88245,16 +88633,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12813] = 4, - ACTIONS(1575), 1, + [13261] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1607), 12, + ACTIONS(1558), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88267,7 +88655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 26, + ACTIONS(1564), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88294,14 +88682,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12866] = 3, - ACTIONS(1575), 1, + [13314] = 8, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1033), 11, + ACTIONS(1688), 1, + anon_sym_BSLASH, + ACTIONS(1909), 1, + anon_sym_LPAREN, + STATE(856), 1, + sym_arguments, + STATE(2288), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1695), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - aux_sym_else_clause_token1, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -88309,21 +88711,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1031), 32, + ACTIONS(1693), 23, + sym__automatic_semicolon, anon_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_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -88342,27 +88735,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12917] = 7, - ACTIONS(1575), 1, + [13375] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1944), 1, + ACTIONS(1913), 17, + anon_sym_BSLASH, anon_sym_LPAREN, - STATE(787), 1, - sym_arguments, - ACTIONS(1687), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_BANG, + anon_sym_AT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1609), 5, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + aux_sym_string_token1, + anon_sym_SQUOTE, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + ACTIONS(1911), 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, + aux_sym__argument_name_token1, + aux_sym__argument_name_token2, + 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, + [13425] = 21, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(583), 1, + aux_sym_cast_type_token1, + ACTIONS(615), 1, + anon_sym_LT_LT_LT, + ACTIONS(619), 1, + anon_sym_DOLLAR, + ACTIONS(1272), 1, + anon_sym_LBRACK, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1717), 1, + anon_sym_LPAREN, + ACTIONS(1745), 1, + sym_name, + ACTIONS(1915), 1, + anon_sym_RPAREN, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + ACTIONS(611), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(613), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1544), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1693), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2539), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(109), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1549), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1449), 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(1562), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [13511] = 9, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1548), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_BSLASH, + ACTIONS(1917), 1, + anon_sym_COLON, + STATE(587), 1, + sym_arguments, + STATE(2288), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1605), 12, + ACTIONS(1556), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -88371,11 +88878,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 22, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1554), 21, anon_sym_COMMA, - anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -88394,18 +88900,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12976] = 5, - ACTIONS(1575), 1, + [13573] = 21, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(583), 1, + aux_sym_cast_type_token1, + ACTIONS(615), 1, + anon_sym_LT_LT_LT, + ACTIONS(619), 1, + anon_sym_DOLLAR, + ACTIONS(1272), 1, + anon_sym_LBRACK, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1717), 1, + anon_sym_LPAREN, + ACTIONS(1745), 1, + sym_name, + ACTIONS(1919), 1, + anon_sym_RPAREN, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + ACTIONS(611), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(613), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1544), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1693), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2539), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(109), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1549), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1449), 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(1562), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [13659] = 9, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1944), 1, + ACTIONS(1638), 1, anon_sym_LPAREN, - STATE(788), 1, + ACTIONS(1688), 1, + anon_sym_BSLASH, + ACTIONS(1921), 1, + anon_sym_COLON, + STATE(615), 1, sym_arguments, - ACTIONS(1621), 12, + STATE(2288), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1556), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -88414,18 +88996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1619), 29, + ACTIONS(1554), 21, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + anon_sym_PLUS, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -88444,14 +89018,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13031] = 5, - ACTIONS(1575), 1, + [13721] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1944), 1, - anon_sym_LPAREN, - STATE(797), 1, - sym_arguments, - ACTIONS(1617), 12, + ACTIONS(1624), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88464,12 +89034,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1615), 29, + ACTIONS(1622), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_COLON_COLON, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, @@ -88494,20 +89065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13086] = 6, - ACTIONS(1575), 1, + [13771] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1944), 1, - anon_sym_LPAREN, - STATE(787), 1, - sym_arguments, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1607), 12, + ACTIONS(1608), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88520,13 +89081,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 24, + ACTIONS(1606), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_COLON_COLON, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -88545,14 +89112,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13143] = 5, - ACTIONS(1575), 1, + [13821] = 21, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(583), 1, + aux_sym_cast_type_token1, + ACTIONS(615), 1, + anon_sym_LT_LT_LT, + ACTIONS(619), 1, + anon_sym_DOLLAR, + ACTIONS(1272), 1, + anon_sym_LBRACK, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1944), 1, + ACTIONS(1717), 1, anon_sym_LPAREN, - STATE(793), 1, - sym_arguments, - ACTIONS(1591), 12, + ACTIONS(1745), 1, + sym_name, + ACTIONS(1923), 1, + anon_sym_RPAREN, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + ACTIONS(611), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(613), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1544), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1693), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2539), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(109), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1549), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1449), 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(1562), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [13907] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1596), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88565,12 +89193,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1589), 29, + ACTIONS(1594), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_COLON_COLON, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, @@ -88595,20 +89224,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13198] = 4, - ACTIONS(1575), 1, + [13957] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1846), 12, + ACTIONS(1592), 12, 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, @@ -88617,15 +89240,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1844), 26, + ACTIONS(1590), 30, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -88644,10 +89271,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13251] = 3, - ACTIONS(1575), 1, + [14007] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1665), 12, + ACTIONS(1584), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88660,7 +89287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1663), 30, + ACTIONS(1582), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88691,10 +89318,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13301] = 3, - ACTIONS(1575), 1, + [14057] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1653), 12, + ACTIONS(1538), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88707,7 +89334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1651), 30, + ACTIONS(1536), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88738,10 +89365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13351] = 3, - ACTIONS(1575), 1, + [14107] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1573), 12, + ACTIONS(1620), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88754,7 +89381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1571), 30, + ACTIONS(1618), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88785,10 +89412,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13401] = 3, - ACTIONS(1575), 1, + [14157] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1629), 12, + ACTIONS(1542), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88801,7 +89428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1627), 30, + ACTIONS(1540), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88832,10 +89459,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13451] = 3, - ACTIONS(1575), 1, + [14207] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1625), 12, + ACTIONS(1534), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88848,7 +89475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1623), 30, + ACTIONS(1532), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88879,10 +89506,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13501] = 3, - ACTIONS(1575), 1, + [14257] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1641), 12, + ACTIONS(1612), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88895,7 +89522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1639), 30, + ACTIONS(1610), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88926,10 +89553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13551] = 3, - ACTIONS(1575), 1, + [14307] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1669), 12, + ACTIONS(1600), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88942,7 +89569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1667), 30, + ACTIONS(1598), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88973,14 +89600,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13601] = 3, - ACTIONS(1575), 1, + [14357] = 9, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1587), 12, + ACTIONS(1638), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_BSLASH, + ACTIONS(1925), 1, + anon_sym_COLON, + STATE(615), 1, + sym_arguments, + STATE(2288), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1556), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -88989,19 +89631,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1585), 30, + ACTIONS(1554), 21, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + anon_sym_PLUS, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -89020,76 +89653,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13651] = 3, - ACTIONS(3), 1, + [14419] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1950), 17, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_BANG, - anon_sym_AT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_LBRACK, - anon_sym_POUND_LBRACK, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - aux_sym_string_token1, - anon_sym_SQUOTE, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - ACTIONS(1948), 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, - aux_sym__argument_name_token1, - aux_sym__argument_name_token2, - 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, - [13701] = 9, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1685), 1, - anon_sym_LPAREN, - ACTIONS(1727), 1, - anon_sym_BSLASH, - ACTIONS(1952), 1, - anon_sym_COLON, - STATE(617), 1, - sym_arguments, - STATE(2243), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1605), 11, + ACTIONS(1628), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -89098,10 +89669,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 21, + ACTIONS(1626), 30, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -89120,10 +89700,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13763] = 3, - ACTIONS(1575), 1, + [14469] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1645), 12, + ACTIONS(1528), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89136,7 +89716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1643), 30, + ACTIONS(1526), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89167,10 +89747,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13813] = 3, - ACTIONS(1575), 1, + [14519] = 21, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(583), 1, + aux_sym_cast_type_token1, + ACTIONS(615), 1, + anon_sym_LT_LT_LT, + ACTIONS(619), 1, + anon_sym_DOLLAR, + ACTIONS(1272), 1, + anon_sym_LBRACK, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1673), 12, + ACTIONS(1717), 1, + anon_sym_LPAREN, + ACTIONS(1745), 1, + sym_name, + ACTIONS(1927), 1, + anon_sym_RPAREN, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + ACTIONS(611), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(613), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1544), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1693), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2539), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(109), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1549), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1449), 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(1562), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [14605] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1580), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89183,7 +89828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1671), 30, + ACTIONS(1578), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89214,10 +89859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13863] = 3, - ACTIONS(1575), 1, + [14655] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1579), 12, + ACTIONS(1588), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89230,7 +89875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1577), 30, + ACTIONS(1586), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89261,10 +89906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13913] = 3, - ACTIONS(1575), 1, + [14705] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1661), 12, + ACTIONS(1616), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89277,7 +89922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1659), 30, + ACTIONS(1614), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89308,10 +89953,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13963] = 3, - ACTIONS(1575), 1, + [14755] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1633), 12, + ACTIONS(1604), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89324,7 +89969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1631), 30, + ACTIONS(1602), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89355,14 +90000,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14013] = 3, - ACTIONS(1575), 1, + [14805] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1637), 12, + ACTIONS(1662), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -89371,16 +90015,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1635), 30, + ACTIONS(1664), 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_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -89402,14 +90046,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14063] = 3, - ACTIONS(1575), 1, + [14854] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1583), 12, + STATE(582), 1, + sym_arguments, + ACTIONS(1552), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -89418,16 +90063,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1581), 30, + 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_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -89449,26 +90093,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14113] = 9, - ACTIONS(1575), 1, + [14905] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(583), 1, + aux_sym_cast_type_token1, + ACTIONS(615), 1, + anon_sym_LT_LT_LT, + ACTIONS(619), 1, + anon_sym_DOLLAR, + ACTIONS(1272), 1, + anon_sym_LBRACK, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1717), 1, anon_sym_LPAREN, - ACTIONS(1727), 1, + ACTIONS(1745), 1, + sym_name, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + ACTIONS(611), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(613), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1544), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1693), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2539), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(109), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1514), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1432), 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(1562), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [14988] = 20, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(1954), 1, - anon_sym_COLON, - STATE(584), 1, - sym_arguments, - STATE(2243), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(583), 1, + aux_sym_cast_type_token1, + ACTIONS(615), 1, + anon_sym_LT_LT_LT, + ACTIONS(1272), 1, anon_sym_LBRACK, - ACTIONS(1605), 11, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_DOLLAR, + ACTIONS(1929), 1, + sym_name, + ACTIONS(1931), 1, + anon_sym_LPAREN, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + ACTIONS(611), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(613), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1532), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1691), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2583), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(109), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(760), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(707), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1533), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [15071] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1638), 1, + anon_sym_LPAREN, + STATE(604), 1, + sym_arguments, + ACTIONS(1727), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89480,10 +90238,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 21, + ACTIONS(1725), 28, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_PLUS, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -89502,14 +90267,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14175] = 3, - ACTIONS(1575), 1, + [15124] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1657), 12, + ACTIONS(1638), 1, + anon_sym_LPAREN, + STATE(616), 1, + sym_arguments, + ACTIONS(1741), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -89518,16 +90286,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1655), 30, + ACTIONS(1739), 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_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -89549,26 +90315,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14225] = 9, - ACTIONS(1575), 1, + [15177] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(583), 1, + aux_sym_cast_type_token1, + ACTIONS(615), 1, + anon_sym_LT_LT_LT, + ACTIONS(619), 1, + anon_sym_DOLLAR, + ACTIONS(1272), 1, + anon_sym_LBRACK, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1685), 1, + ACTIONS(1717), 1, anon_sym_LPAREN, - ACTIONS(1727), 1, - anon_sym_BSLASH, - ACTIONS(1956), 1, - anon_sym_COLON, - STATE(617), 1, + ACTIONS(1745), 1, + sym_name, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + ACTIONS(611), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(613), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1544), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1693), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2539), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(109), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1519), 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(1562), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [15260] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1903), 1, + anon_sym_LPAREN, + STATE(782), 1, sym_arguments, - STATE(2243), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1605), 11, + ACTIONS(1741), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89580,10 +90397,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 21, + ACTIONS(1739), 28, sym__automatic_semicolon, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_PLUS, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -89602,14 +90426,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14287] = 3, - ACTIONS(1575), 1, + [15313] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1649), 12, + STATE(578), 1, + sym_arguments, + ACTIONS(1568), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -89618,16 +90443,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1647), 30, + 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_COLON_COLON, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -89649,12 +90473,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14337] = 4, - ACTIONS(1575), 1, + [15364] = 6, + ACTIONS(1530), 1, sym_comment, - STATE(589), 1, + ACTIONS(1548), 1, + anon_sym_LPAREN, + STATE(587), 1, sym_arguments, - ACTIONS(1591), 11, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1686), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89666,18 +90498,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1589), 29, + ACTIONS(1684), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -89696,209 +90522,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14388] = 20, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(576), 1, - aux_sym_cast_type_token1, - ACTIONS(608), 1, - anon_sym_LT_LT_LT, - ACTIONS(1551), 1, - anon_sym_LBRACK, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1764), 1, - anon_sym_LPAREN, - ACTIONS(1774), 1, - anon_sym_DOLLAR, - ACTIONS(1958), 1, - sym_name, - STATE(2599), 1, - sym_namespace_name, - STATE(2600), 1, - sym_namespace_name_as_prefix, - ACTIONS(604), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(606), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(827), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(2585), 2, - sym__scope_resolution_qualifier, - sym_relative_scope, - ACTIONS(1770), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(823), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(899), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1664), 3, - sym_class_constant_access_expression, - sym_cast_variable, - sym__dereferencable_expression, - STATE(1541), 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, - [14471] = 20, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(576), 1, - aux_sym_cast_type_token1, - ACTIONS(608), 1, - anon_sym_LT_LT_LT, - ACTIONS(1551), 1, - anon_sym_LBRACK, - ACTIONS(1567), 1, - anon_sym_LPAREN, - ACTIONS(1569), 1, - anon_sym_DOLLAR, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1960), 1, - sym_name, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - ACTIONS(604), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(606), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(1537), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1658), 2, - sym_class_constant_access_expression, - sym__dereferencable_expression, - STATE(2610), 2, - sym__scope_resolution_qualifier, - sym_relative_scope, - ACTIONS(107), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(692), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(649), 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(1539), 7, - sym_parenthesized_expression, - sym_array_creation_expression, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - sym__string, - [14554] = 20, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(576), 1, - aux_sym_cast_type_token1, - ACTIONS(608), 1, - anon_sym_LT_LT_LT, - ACTIONS(1551), 1, - anon_sym_LBRACK, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1774), 1, - anon_sym_DOLLAR, - ACTIONS(1962), 1, - sym_name, - ACTIONS(1964), 1, - anon_sym_LPAREN, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - ACTIONS(604), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(606), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(1538), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1711), 2, - sym_class_constant_access_expression, - sym__dereferencable_expression, - STATE(2575), 2, - sym__scope_resolution_qualifier, - sym_relative_scope, - ACTIONS(107), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(902), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(829), 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(1531), 7, - sym_parenthesized_expression, - sym_array_creation_expression, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - sym__string, - [14637] = 6, - ACTIONS(1575), 1, + [15419] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_LPAREN, - STATE(857), 1, - sym_arguments, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1829), 11, + ACTIONS(1588), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89910,12 +90537,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1827), 23, + ACTIONS(1586), 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -89934,14 +90568,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14692] = 5, - ACTIONS(1575), 1, + [15468] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1946), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(886), 1, + STATE(581), 1, sym_arguments, - ACTIONS(1601), 11, + ACTIONS(1572), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89953,7 +90587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1599), 28, + ACTIONS(1570), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89982,83 +90616,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14745] = 20, + [15521] = 20, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(576), 1, + ACTIONS(583), 1, aux_sym_cast_type_token1, - ACTIONS(608), 1, + ACTIONS(615), 1, anon_sym_LT_LT_LT, - ACTIONS(1551), 1, + ACTIONS(1272), 1, anon_sym_LBRACK, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1717), 1, anon_sym_LPAREN, - ACTIONS(1766), 1, + ACTIONS(1719), 1, anon_sym_DOLLAR, - ACTIONS(1966), 1, + ACTIONS(1929), 1, sym_name, - STATE(2531), 1, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - ACTIONS(604), 2, + ACTIONS(611), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(606), 2, + ACTIONS(613), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(693), 2, + STATE(771), 2, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + STATE(1532), 2, sym_qualified_name, sym__reserved_identifier, - STATE(2581), 2, + STATE(2462), 2, sym__scope_resolution_qualifier, sym_relative_scope, - ACTIONS(107), 3, + ACTIONS(109), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(695), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(771), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1675), 3, + STATE(1691), 4, sym_class_constant_access_expression, sym_cast_variable, + sym_scoped_property_access_expression, sym__dereferencable_expression, - STATE(1541), 11, - sym_parenthesized_expression, + STATE(689), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1533), 7, + sym_parenthesized_expression, sym_array_creation_expression, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, sym__string, - [14828] = 6, - ACTIONS(1575), 1, + [15604] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1944), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(787), 1, + STATE(584), 1, sym_arguments, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1605), 11, + ACTIONS(1576), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90070,12 +90698,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 23, + ACTIONS(1574), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -90094,14 +90727,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14883] = 3, - ACTIONS(1575), 1, + [15657] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1179), 11, + ACTIONS(1909), 1, + anon_sym_LPAREN, + STATE(890), 1, + sym_arguments, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1558), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - aux_sym_else_clause_token1, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -90109,19 +90752,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1177), 30, + ACTIONS(1564), 23, + sym__automatic_semicolon, anon_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_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -90140,77 +90776,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14932] = 20, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(576), 1, - aux_sym_cast_type_token1, - ACTIONS(608), 1, - anon_sym_LT_LT_LT, - ACTIONS(612), 1, - anon_sym_DOLLAR, - ACTIONS(1551), 1, - anon_sym_LBRACK, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1764), 1, - anon_sym_LPAREN, - ACTIONS(1784), 1, - sym_name, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - ACTIONS(604), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(606), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(1543), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1672), 2, - sym_class_constant_access_expression, - sym__dereferencable_expression, - STATE(2484), 2, - sym__scope_resolution_qualifier, - sym_relative_scope, - ACTIONS(107), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1512), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1427), 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(1541), 7, - sym_parenthesized_expression, - sym_array_creation_expression, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - sym__string, - [15015] = 5, - ACTIONS(1575), 1, + [15712] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1685), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(631), 1, + STATE(576), 1, sym_arguments, - ACTIONS(1782), 11, + ACTIONS(1546), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90222,7 +90795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1780), 28, + ACTIONS(1544), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90251,83 +90824,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15068] = 20, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(576), 1, - aux_sym_cast_type_token1, - ACTIONS(608), 1, - anon_sym_LT_LT_LT, - ACTIONS(1551), 1, - anon_sym_LBRACK, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1774), 1, - anon_sym_DOLLAR, - ACTIONS(1962), 1, - sym_name, - ACTIONS(1964), 1, - anon_sym_LPAREN, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - ACTIONS(604), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(606), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(1538), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1711), 2, - sym_class_constant_access_expression, - sym__dereferencable_expression, - STATE(2575), 2, - sym__scope_resolution_qualifier, - sym_relative_scope, - ACTIONS(107), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(903), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(816), 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(1531), 7, - sym_parenthesized_expression, - sym_array_creation_expression, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - sym__string, - [15151] = 6, - ACTIONS(1575), 1, + [15765] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1946), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(857), 1, + STATE(578), 1, sym_arguments, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1846), 11, + ACTIONS(1568), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90339,12 +90843,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1844), 23, + ACTIONS(1566), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -90363,78 +90872,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15206] = 20, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(576), 1, - aux_sym_cast_type_token1, - ACTIONS(608), 1, - anon_sym_LT_LT_LT, - ACTIONS(612), 1, - anon_sym_DOLLAR, - ACTIONS(1551), 1, - anon_sym_LBRACK, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1764), 1, - anon_sym_LPAREN, - ACTIONS(1784), 1, - sym_name, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - ACTIONS(604), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(606), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(767), 2, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - STATE(1543), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(2484), 2, - sym__scope_resolution_qualifier, - sym_relative_scope, - ACTIONS(107), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1672), 4, - sym_class_constant_access_expression, - sym_cast_variable, - sym_scoped_property_access_expression, - sym__dereferencable_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(1541), 7, - sym_parenthesized_expression, - sym_array_creation_expression, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - sym__string, - [15289] = 4, - ACTIONS(1575), 1, + [15818] = 4, + ACTIONS(1530), 1, sym_comment, - STATE(586), 1, - sym_arguments, - ACTIONS(1617), 11, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1558), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -90443,18 +90894,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1615), 29, + ACTIONS(1564), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -90473,117 +90919,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15340] = 20, + [15869] = 20, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(576), 1, + ACTIONS(583), 1, aux_sym_cast_type_token1, - ACTIONS(608), 1, + ACTIONS(615), 1, anon_sym_LT_LT_LT, - ACTIONS(1551), 1, + ACTIONS(1272), 1, anon_sym_LBRACK, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1764), 1, + ACTIONS(1516), 1, anon_sym_LPAREN, - ACTIONS(1774), 1, + ACTIONS(1518), 1, anon_sym_DOLLAR, - ACTIONS(1962), 1, - sym_name, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - ACTIONS(604), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(606), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(900), 2, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - STATE(1538), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(2433), 2, - sym__scope_resolution_qualifier, - sym_relative_scope, - ACTIONS(107), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1711), 4, - sym_class_constant_access_expression, - sym_cast_variable, - sym_scoped_property_access_expression, - sym__dereferencable_expression, - STATE(808), 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(1531), 7, - sym_parenthesized_expression, - sym_array_creation_expression, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - sym__string, - [15423] = 20, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(576), 1, - aux_sym_cast_type_token1, - ACTIONS(608), 1, - anon_sym_LT_LT_LT, - ACTIONS(1551), 1, - anon_sym_LBRACK, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1766), 1, - anon_sym_DOLLAR, - ACTIONS(1968), 1, + ACTIONS(1933), 1, sym_name, - ACTIONS(1970), 1, - anon_sym_LPAREN, - STATE(2531), 1, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - ACTIONS(604), 2, + ACTIONS(611), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(606), 2, + ACTIONS(613), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(1557), 2, + STATE(1520), 2, sym_qualified_name, sym__reserved_identifier, - STATE(1669), 2, + STATE(1687), 2, sym_class_constant_access_expression, sym__dereferencable_expression, - STATE(2604), 2, + STATE(2575), 2, sym__scope_resolution_qualifier, sym_relative_scope, - ACTIONS(107), 3, + ACTIONS(109), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(782), 4, + STATE(711), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(709), 7, + STATE(641), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -90591,7 +90974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - STATE(1551), 7, + STATE(1548), 7, sym_parenthesized_expression, sym_array_creation_expression, sym_encapsed_string, @@ -90599,14 +90982,14 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc, sym_nowdoc, sym__string, - [15506] = 5, - ACTIONS(1575), 1, + [15952] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1946), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(864), 1, + STATE(582), 1, sym_arguments, - ACTIONS(1591), 11, + ACTIONS(1552), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90618,7 +91001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1589), 28, + ACTIONS(1550), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90647,14 +91030,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15559] = 5, - ACTIONS(1575), 1, + [16005] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1685), 1, - anon_sym_LPAREN, - STATE(622), 1, + STATE(576), 1, sym_arguments, - ACTIONS(1758), 11, + ACTIONS(1546), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90666,12 +91047,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1756), 28, + ACTIONS(1544), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_COLON_COLON, anon_sym_DASH_GT, @@ -90695,24 +91077,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15612] = 6, - ACTIONS(1575), 1, + [16056] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, - anon_sym_LPAREN, - STATE(584), 1, - sym_arguments, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1740), 11, + ACTIONS(1064), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_DASH, + aux_sym_else_clause_token1, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -90720,12 +91092,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 23, - sym__automatic_semicolon, + ACTIONS(1062), 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_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -90744,10 +91123,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15667] = 3, - ACTIONS(1575), 1, + [16105] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1649), 11, + ACTIONS(1638), 1, + anon_sym_LPAREN, + STATE(615), 1, + sym_arguments, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1751), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90759,19 +91148,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1647), 30, + ACTIONS(1749), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -90790,24 +91172,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15716] = 5, - ACTIONS(1575), 1, + [16160] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1687), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1605), 12, + ACTIONS(1068), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + aux_sym_else_clause_token1, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -90815,11 +91187,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 22, - sym__automatic_semicolon, + ACTIONS(1066), 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_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -90838,86 +91218,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15769] = 20, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(576), 1, - aux_sym_cast_type_token1, - ACTIONS(608), 1, - anon_sym_LT_LT_LT, - ACTIONS(612), 1, - anon_sym_DOLLAR, - ACTIONS(1551), 1, - anon_sym_LBRACK, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1764), 1, - anon_sym_LPAREN, - ACTIONS(1784), 1, - sym_name, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - ACTIONS(604), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(606), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(1543), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1672), 2, - sym_class_constant_access_expression, - sym__dereferencable_expression, - STATE(2484), 2, - sym__scope_resolution_qualifier, - sym_relative_scope, - ACTIONS(107), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1505), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1420), 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(1541), 7, - sym_parenthesized_expression, - sym_array_creation_expression, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - sym__string, - [15852] = 6, - ACTIONS(1575), 1, + [16209] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, - anon_sym_LPAREN, - STATE(584), 1, - sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1642), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1740), 11, + 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, @@ -90926,12 +91243,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 23, + ACTIONS(1554), 22, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_PLUS, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -90950,20 +91266,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15907] = 6, - ACTIONS(1575), 1, + [16262] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1946), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(862), 1, + STATE(587), 1, sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1734), 11, + ACTIONS(1686), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90975,7 +91291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1732), 23, + ACTIONS(1684), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90999,20 +91315,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15962] = 6, - ACTIONS(1575), 1, + [16317] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1946), 1, + ACTIONS(1909), 1, anon_sym_LPAREN, - STATE(857), 1, + STATE(856), 1, sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1607), 11, + ACTIONS(1695), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91024,7 +91340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 23, + ACTIONS(1693), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91048,20 +91364,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16017] = 6, - ACTIONS(1575), 1, + [16372] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1944), 1, + ACTIONS(1638), 1, anon_sym_LPAREN, - STATE(787), 1, + STATE(615), 1, sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1605), 11, + ACTIONS(1556), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91073,7 +91389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 23, + ACTIONS(1554), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91097,184 +91413,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16072] = 20, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(576), 1, - aux_sym_cast_type_token1, - ACTIONS(608), 1, - anon_sym_LT_LT_LT, - ACTIONS(612), 1, - anon_sym_DOLLAR, - ACTIONS(1551), 1, - anon_sym_LBRACK, - ACTIONS(1575), 1, + [16427] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1909), 1, anon_sym_LPAREN, - ACTIONS(1784), 1, - sym_name, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - ACTIONS(604), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(606), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(1543), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1672), 2, - sym_class_constant_access_expression, - sym__dereferencable_expression, - STATE(2484), 2, - sym__scope_resolution_qualifier, - sym_relative_scope, - ACTIONS(107), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(692), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1436), 7, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(1541), 7, - sym_parenthesized_expression, - sym_array_creation_expression, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - sym__string, - [16155] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1707), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1709), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + STATE(856), 1, + sym_arguments, + ACTIONS(1560), 5, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [16204] = 20, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(576), 1, - aux_sym_cast_type_token1, - ACTIONS(608), 1, - anon_sym_LT_LT_LT, - ACTIONS(1551), 1, - anon_sym_LBRACK, - ACTIONS(1563), 1, - anon_sym_DOLLAR, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1972), 1, - sym_name, - ACTIONS(1974), 1, - anon_sym_LPAREN, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - ACTIONS(604), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(606), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(1521), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1638), 2, - sym_class_constant_access_expression, - sym__dereferencable_expression, - STATE(2573), 2, - sym__scope_resolution_qualifier, - sym_relative_scope, - ACTIONS(107), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(856), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(780), 7, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(1547), 7, - sym_parenthesized_expression, - sym_array_creation_expression, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - sym__string, - [16287] = 4, - ACTIONS(1575), 1, - sym_comment, - STATE(588), 1, - sym_arguments, - ACTIONS(1621), 11, + ACTIONS(1695), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91286,18 +91438,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1619), 29, + ACTIONS(1693), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -91316,20 +91462,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16338] = 6, - ACTIONS(1575), 1, + [16482] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1976), 1, + ACTIONS(1935), 1, anon_sym_LPAREN, - STATE(1119), 1, + STATE(1136), 1, sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1734), 11, + ACTIONS(1695), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91341,7 +91487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1732), 23, + ACTIONS(1693), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91365,20 +91511,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16393] = 6, - ACTIONS(1575), 1, + [16537] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_LPAREN, - STATE(862), 1, + STATE(584), 1, sym_arguments, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1734), 11, + ACTIONS(1576), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91390,12 +91528,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1732), 23, + 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -91414,14 +91558,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16448] = 5, - ACTIONS(1575), 1, + [16588] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1944), 1, - anon_sym_LPAREN, - STATE(797), 1, + STATE(581), 1, sym_arguments, - ACTIONS(1758), 11, + ACTIONS(1572), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91433,12 +91575,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1756), 28, + 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_COLON_COLON, anon_sym_DASH_GT, @@ -91462,12 +91605,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16501] = 4, - ACTIONS(1575), 1, + [16639] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(583), 1, + aux_sym_cast_type_token1, + ACTIONS(615), 1, + anon_sym_LT_LT_LT, + ACTIONS(1272), 1, + anon_sym_LBRACK, + ACTIONS(1524), 1, + anon_sym_DOLLAR, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1937), 1, + sym_name, + ACTIONS(1939), 1, + anon_sym_LPAREN, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + ACTIONS(611), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(613), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1545), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1684), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2540), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(109), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(818), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(772), 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(1555), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [16722] = 6, + ACTIONS(1530), 1, sym_comment, - STATE(591), 1, + ACTIONS(1638), 1, + anon_sym_LPAREN, + STATE(615), 1, sym_arguments, - ACTIONS(1597), 11, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1556), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91479,18 +91693,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1595), 29, + ACTIONS(1554), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -91509,20 +91717,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16552] = 6, - ACTIONS(1575), 1, + [16777] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1685), 1, + ACTIONS(1909), 1, anon_sym_LPAREN, - STATE(617), 1, + STATE(890), 1, sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1605), 11, + ACTIONS(1802), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91534,7 +91742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 23, + ACTIONS(1800), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91558,12 +91766,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16607] = 4, - ACTIONS(1575), 1, + [16832] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(583), 1, + aux_sym_cast_type_token1, + ACTIONS(615), 1, + anon_sym_LT_LT_LT, + ACTIONS(619), 1, + anon_sym_DOLLAR, + ACTIONS(1272), 1, + anon_sym_LBRACK, + ACTIONS(1530), 1, sym_comment, - STATE(595), 1, - sym_arguments, - ACTIONS(1601), 11, + ACTIONS(1717), 1, + anon_sym_LPAREN, + ACTIONS(1745), 1, + sym_name, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + ACTIONS(611), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(613), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(771), 2, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + STATE(1544), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2539), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(109), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1693), 4, + sym_class_constant_access_expression, + sym_cast_variable, + sym_scoped_property_access_expression, + sym__dereferencable_expression, + STATE(1440), 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(1562), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [16915] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(1806), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91575,7 +91846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1599), 29, + ACTIONS(1804), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91605,54 +91876,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16658] = 20, + [16966] = 20, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(576), 1, + ACTIONS(583), 1, aux_sym_cast_type_token1, - ACTIONS(608), 1, + ACTIONS(615), 1, anon_sym_LT_LT_LT, - ACTIONS(1551), 1, + ACTIONS(1272), 1, anon_sym_LBRACK, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1766), 1, + ACTIONS(1717), 1, + anon_sym_LPAREN, + ACTIONS(1737), 1, anon_sym_DOLLAR, - ACTIONS(1968), 1, + ACTIONS(1941), 1, sym_name, - ACTIONS(1970), 1, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + ACTIONS(611), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(613), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(901), 2, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + STATE(1561), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2418), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(109), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1670), 4, + sym_class_constant_access_expression, + sym_cast_variable, + sym_scoped_property_access_expression, + sym__dereferencable_expression, + STATE(841), 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(1526), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [17049] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(583), 1, + aux_sym_cast_type_token1, + ACTIONS(615), 1, + anon_sym_LT_LT_LT, + ACTIONS(1272), 1, + anon_sym_LBRACK, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_DOLLAR, + ACTIONS(1929), 1, + sym_name, + ACTIONS(1931), 1, anon_sym_LPAREN, - STATE(2531), 1, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - ACTIONS(604), 2, + ACTIONS(611), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(606), 2, + ACTIONS(613), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(1557), 2, + STATE(1532), 2, sym_qualified_name, sym__reserved_identifier, - STATE(1669), 2, + STATE(1691), 2, sym_class_constant_access_expression, sym__dereferencable_expression, - STATE(2604), 2, + STATE(2583), 2, sym__scope_resolution_qualifier, sym_relative_scope, - ACTIONS(107), 3, + ACTIONS(109), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(775), 4, + STATE(774), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(700), 7, + STATE(690), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -91660,7 +91994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - STATE(1551), 7, + STATE(1533), 7, sym_parenthesized_expression, sym_array_creation_expression, sym_encapsed_string, @@ -91668,14 +92002,20 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc, sym_nowdoc, sym__string, - [16741] = 5, - ACTIONS(1575), 1, + [17132] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1946), 1, + ACTIONS(1903), 1, anon_sym_LPAREN, - STATE(871), 1, + STATE(794), 1, sym_arguments, - ACTIONS(1617), 11, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1751), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91687,17 +92027,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1615), 28, + ACTIONS(1749), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -91716,14 +92051,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16794] = 5, - ACTIONS(1575), 1, + [17187] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1946), 1, + ACTIONS(1909), 1, anon_sym_LPAREN, - STATE(897), 1, + STATE(890), 1, sym_arguments, - ACTIONS(1621), 11, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1761), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91735,17 +92076,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1619), 28, + ACTIONS(1759), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -91764,54 +92100,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16847] = 20, + [17242] = 20, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(576), 1, + ACTIONS(583), 1, aux_sym_cast_type_token1, - ACTIONS(608), 1, + ACTIONS(615), 1, anon_sym_LT_LT_LT, - ACTIONS(1551), 1, + ACTIONS(1272), 1, anon_sym_LBRACK, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_LPAREN, - ACTIONS(1766), 1, + ACTIONS(1737), 1, anon_sym_DOLLAR, - ACTIONS(1968), 1, + ACTIONS(1941), 1, sym_name, - STATE(2531), 1, + ACTIONS(1943), 1, + anon_sym_LPAREN, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - ACTIONS(604), 2, + ACTIONS(611), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(606), 2, + ACTIONS(613), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(767), 2, + STATE(1561), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1670), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2550), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(109), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(902), 4, + sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, - STATE(1557), 2, + sym_scoped_property_access_expression, + STATE(815), 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(1526), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [17325] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(583), 1, + aux_sym_cast_type_token1, + ACTIONS(615), 1, + anon_sym_LT_LT_LT, + ACTIONS(1272), 1, + anon_sym_LBRACK, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1737), 1, + anon_sym_DOLLAR, + ACTIONS(1941), 1, + sym_name, + ACTIONS(1943), 1, + anon_sym_LPAREN, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + ACTIONS(611), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(613), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1561), 2, sym_qualified_name, sym__reserved_identifier, - STATE(2495), 2, + STATE(1670), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2550), 2, sym__scope_resolution_qualifier, sym_relative_scope, - ACTIONS(107), 3, + ACTIONS(109), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1669), 4, - sym_class_constant_access_expression, + STATE(900), 4, sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - sym__dereferencable_expression, - STATE(702), 7, + STATE(835), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -91819,7 +92218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - STATE(1551), 7, + STATE(1526), 7, sym_parenthesized_expression, sym_array_creation_expression, sym_encapsed_string, @@ -91827,14 +92226,20 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc, sym_nowdoc, sym__string, - [16930] = 5, - ACTIONS(1575), 1, + [17408] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1903), 1, anon_sym_LPAREN, - STATE(595), 1, + STATE(794), 1, sym_arguments, - ACTIONS(1601), 11, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1556), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91846,17 +92251,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1599), 28, + ACTIONS(1554), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -91875,14 +92275,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16983] = 5, - ACTIONS(1575), 1, + [17463] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(583), 1, + aux_sym_cast_type_token1, + ACTIONS(615), 1, + anon_sym_LT_LT_LT, + ACTIONS(1272), 1, + anon_sym_LBRACK, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, - STATE(589), 1, + ACTIONS(1737), 1, + anon_sym_DOLLAR, + ACTIONS(1945), 1, + sym_name, + STATE(2556), 1, + sym_namespace_name, + STATE(2557), 1, + sym_namespace_name_as_prefix, + ACTIONS(611), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(613), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(826), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2569), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(1731), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(899), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1663), 3, + sym_class_constant_access_expression, + sym_cast_variable, + sym__dereferencable_expression, + STATE(810), 4, + sym_parenthesized_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1562), 10, + 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, + [17546] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1909), 1, + anon_sym_LPAREN, + STATE(882), 1, sym_arguments, - ACTIONS(1591), 11, + ACTIONS(1552), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91894,7 +92357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1589), 28, + ACTIONS(1550), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91923,14 +92386,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17036] = 5, - ACTIONS(1575), 1, + [17599] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1903), 1, anon_sym_LPAREN, - STATE(586), 1, + STATE(791), 1, sym_arguments, - ACTIONS(1617), 11, + ACTIONS(1727), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91942,7 +92405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1615), 28, + ACTIONS(1725), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91971,12 +92434,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17089] = 4, - ACTIONS(1575), 1, + [17652] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1842), 1, - anon_sym_EQ, - ACTIONS(1837), 11, + ACTIONS(1903), 1, + anon_sym_LPAREN, + STATE(794), 1, + sym_arguments, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1556), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91988,18 +92459,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1835), 29, + ACTIONS(1554), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -92018,14 +92483,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17140] = 5, - ACTIONS(1575), 1, + [17707] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1909), 1, anon_sym_LPAREN, - STATE(588), 1, + STATE(880), 1, sym_arguments, - ACTIONS(1621), 11, + ACTIONS(1568), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92037,7 +92502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1619), 28, + ACTIONS(1566), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92066,14 +92531,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17193] = 5, - ACTIONS(1575), 1, + [17760] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1909), 1, anon_sym_LPAREN, - STATE(591), 1, + STATE(857), 1, sym_arguments, - ACTIONS(1597), 11, + ACTIONS(1546), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92085,7 +92550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1595), 28, + ACTIONS(1544), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92114,14 +92579,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17246] = 3, - ACTIONS(1575), 1, + [17813] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1139), 11, + ACTIONS(1909), 1, + anon_sym_LPAREN, + STATE(874), 1, + sym_arguments, + ACTIONS(1576), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - aux_sym_else_clause_token1, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -92129,19 +92598,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1137), 30, + ACTIONS(1574), 28, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACE, 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_RBRACK, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -92160,20 +92627,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17295] = 6, - ACTIONS(1575), 1, + [17866] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1685), 1, + ACTIONS(1909), 1, anon_sym_LPAREN, - STATE(617), 1, + STATE(873), 1, sym_arguments, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1605), 11, + ACTIONS(1572), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92185,12 +92646,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 23, + ACTIONS(1570), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -92209,54 +92675,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17350] = 20, + [17919] = 20, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(576), 1, + ACTIONS(583), 1, aux_sym_cast_type_token1, - ACTIONS(608), 1, + ACTIONS(615), 1, anon_sym_LT_LT_LT, - ACTIONS(612), 1, + ACTIONS(619), 1, anon_sym_DOLLAR, - ACTIONS(1551), 1, + ACTIONS(1272), 1, anon_sym_LBRACK, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1717), 1, anon_sym_LPAREN, - ACTIONS(1784), 1, + ACTIONS(1745), 1, sym_name, - STATE(2531), 1, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - ACTIONS(604), 2, + ACTIONS(611), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(606), 2, + ACTIONS(613), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(1543), 2, + STATE(1544), 2, sym_qualified_name, sym__reserved_identifier, - STATE(1672), 2, + STATE(1693), 2, sym_class_constant_access_expression, sym__dereferencable_expression, - STATE(2484), 2, + STATE(2539), 2, sym__scope_resolution_qualifier, sym_relative_scope, - ACTIONS(107), 3, + ACTIONS(109), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1520), 4, + STATE(711), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(1483), 7, + STATE(1426), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -92264,7 +92730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - STATE(1541), 7, + STATE(1562), 7, sym_parenthesized_expression, sym_array_creation_expression, sym_encapsed_string, @@ -92272,14 +92738,143 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc, sym_nowdoc, sym__string, - [17433] = 5, - ACTIONS(1575), 1, + [18002] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(583), 1, + aux_sym_cast_type_token1, + ACTIONS(615), 1, + anon_sym_LT_LT_LT, + ACTIONS(1272), 1, + anon_sym_LBRACK, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1944), 1, + ACTIONS(1717), 1, anon_sym_LPAREN, - STATE(794), 1, - sym_arguments, - ACTIONS(1782), 11, + ACTIONS(1719), 1, + anon_sym_DOLLAR, + ACTIONS(1947), 1, + sym_name, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + ACTIONS(611), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(613), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(692), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2545), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(109), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(761), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1695), 3, + sym_class_constant_access_expression, + sym_cast_variable, + sym__dereferencable_expression, + STATE(684), 4, + sym_parenthesized_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1562), 10, + 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, + [18085] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(583), 1, + aux_sym_cast_type_token1, + ACTIONS(615), 1, + anon_sym_LT_LT_LT, + ACTIONS(619), 1, + anon_sym_DOLLAR, + ACTIONS(1272), 1, + anon_sym_LBRACK, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1717), 1, + anon_sym_LPAREN, + ACTIONS(1745), 1, + sym_name, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + ACTIONS(611), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(613), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1544), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1693), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2539), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(109), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1549), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1449), 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(1562), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [18168] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1626), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1877), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92291,17 +92886,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1780), 28, + ACTIONS(1875), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -92320,14 +92910,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17486] = 5, - ACTIONS(1575), 1, + [18218] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_LPAREN, - STATE(889), 1, - sym_arguments, - ACTIONS(1597), 11, + ACTIONS(1584), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92339,12 +92925,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1595), 28, + 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_COLON_COLON, anon_sym_DASH_GT, @@ -92368,20 +92955,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17539] = 4, - ACTIONS(1575), 1, + [18266] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1607), 12, + ACTIONS(1863), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -92390,13 +92970,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 24, + ACTIONS(1861), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -92415,10 +93000,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17590] = 3, - ACTIONS(1575), 1, + [18314] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1625), 11, + ACTIONS(1871), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92430,7 +93015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1623), 29, + ACTIONS(1869), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92460,10 +93045,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17638] = 3, - ACTIONS(1575), 1, + [18362] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1573), 11, + ACTIONS(1510), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92475,7 +93060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1571), 29, + ACTIONS(1512), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92505,10 +93090,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17686] = 3, - ACTIONS(1575), 1, + [18410] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1837), 11, + ACTIONS(1855), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92520,7 +93105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1835), 29, + ACTIONS(1853), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92550,10 +93135,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17734] = 3, - ACTIONS(1575), 1, + [18458] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1657), 11, + ACTIONS(1806), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92565,7 +93150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1655), 29, + ACTIONS(1804), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92595,12 +93180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17782] = 4, - ACTIONS(1575), 1, + [18506] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1938), 1, - anon_sym_COLON_COLON, - ACTIONS(1649), 11, + ACTIONS(1889), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92612,7 +93195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1647), 28, + ACTIONS(1887), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92620,6 +93203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LPAREN, anon_sym_PLUS, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -92641,17 +93225,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17832] = 4, - ACTIONS(1575), 1, + [18554] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1623), 6, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1932), 11, + ACTIONS(1819), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92663,12 +93240,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1930), 23, + 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_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -92687,10 +93270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17882] = 3, - ACTIONS(1575), 1, + [18602] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1665), 11, + ACTIONS(1893), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92702,7 +93285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1663), 29, + ACTIONS(1891), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92732,10 +93315,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17930] = 3, - ACTIONS(1575), 1, + [18650] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1645), 11, + ACTIONS(1897), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92747,7 +93330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1643), 29, + ACTIONS(1895), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92777,10 +93360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17978] = 3, - ACTIONS(1575), 1, + [18698] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1587), 11, + ACTIONS(1859), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92792,7 +93375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1585), 29, + ACTIONS(1857), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92822,10 +93405,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18026] = 3, - ACTIONS(1575), 1, + [18746] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1579), 11, + ACTIONS(1901), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92837,7 +93420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1577), 29, + ACTIONS(1899), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92867,10 +93450,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18074] = 3, - ACTIONS(1575), 1, + [18794] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1661), 11, + ACTIONS(1873), 1, + anon_sym_COLON_COLON, + ACTIONS(1588), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92882,7 +93467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1659), 29, + ACTIONS(1586), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92890,7 +93475,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LPAREN, anon_sym_PLUS, - anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -92912,10 +93496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18122] = 3, - ACTIONS(1575), 1, + [18844] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1908), 11, + ACTIONS(1847), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92927,7 +93511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1906), 29, + ACTIONS(1845), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92957,10 +93541,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18170] = 3, - ACTIONS(1575), 1, + [18892] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1916), 11, + ACTIONS(1839), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92972,7 +93556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1914), 29, + ACTIONS(1837), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93002,10 +93586,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18218] = 3, - ACTIONS(1575), 1, + [18940] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1876), 11, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(1949), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1806), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93017,10 +93606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1874), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(1804), 26, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, @@ -93047,10 +93633,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18266] = 3, - ACTIONS(1575), 1, + [18992] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1633), 11, + ACTIONS(1604), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93062,7 +93648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1631), 29, + ACTIONS(1602), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93092,10 +93678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18314] = 3, - ACTIONS(1575), 1, + [19040] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1928), 11, + ACTIONS(1616), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93107,7 +93693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1926), 29, + ACTIONS(1614), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93137,10 +93723,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18362] = 3, - ACTIONS(1575), 1, + [19088] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1856), 11, + ACTIONS(1612), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93152,7 +93738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1854), 29, + ACTIONS(1610), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93182,10 +93768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18410] = 3, - ACTIONS(1575), 1, + [19136] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1673), 11, + ACTIONS(1542), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93197,7 +93783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1671), 29, + ACTIONS(1540), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93227,10 +93813,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18458] = 3, - ACTIONS(1575), 1, + [19184] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1555), 11, + ACTIONS(1827), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93242,7 +93828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1557), 29, + ACTIONS(1825), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93272,10 +93858,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18506] = 3, - ACTIONS(1575), 1, + [19232] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1904), 11, + ACTIONS(1534), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93287,7 +93873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1902), 29, + ACTIONS(1532), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93317,10 +93903,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18554] = 3, - ACTIONS(1575), 1, + [19280] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1900), 11, + ACTIONS(1851), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93332,7 +93918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 29, + ACTIONS(1849), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93362,10 +93948,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18602] = 3, - ACTIONS(1575), 1, + [19328] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1896), 11, + ACTIONS(1592), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93377,7 +93963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1894), 29, + ACTIONS(1590), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93407,10 +93993,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18650] = 3, - ACTIONS(1575), 1, + [19376] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1892), 11, + ACTIONS(1596), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93422,7 +94008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1890), 29, + ACTIONS(1594), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93452,10 +94038,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18698] = 3, - ACTIONS(1575), 1, + [19424] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1884), 11, + ACTIONS(1608), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93467,7 +94053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1882), 29, + ACTIONS(1606), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93497,10 +94083,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18746] = 3, - ACTIONS(1575), 1, + [19472] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1864), 11, + ACTIONS(1831), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93512,7 +94098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1862), 29, + ACTIONS(1829), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93542,10 +94128,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18794] = 3, - ACTIONS(1575), 1, + [19520] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1880), 11, + ACTIONS(1867), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93557,7 +94143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1878), 29, + ACTIONS(1865), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93587,15 +94173,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18842] = 5, - ACTIONS(1575), 1, + [19568] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1842), 1, - anon_sym_EQ, - ACTIONS(1978), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1837), 11, + ACTIONS(1843), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93607,7 +94188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1835), 26, + ACTIONS(1841), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, @@ -93634,10 +94218,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18894] = 3, - ACTIONS(1575), 1, + [19616] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1629), 11, + ACTIONS(1538), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93649,7 +94233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1627), 29, + ACTIONS(1536), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93679,10 +94263,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18942] = 3, - ACTIONS(1575), 1, + [19664] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1888), 11, + ACTIONS(1620), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93694,7 +94278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1886), 29, + ACTIONS(1618), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93724,10 +94308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18990] = 3, - ACTIONS(1575), 1, + [19712] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1669), 11, + ACTIONS(1624), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93739,7 +94323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1667), 29, + ACTIONS(1622), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93769,10 +94353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19038] = 3, - ACTIONS(1575), 1, + [19760] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1583), 11, + ACTIONS(1528), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93784,7 +94368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1581), 29, + ACTIONS(1526), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93814,10 +94398,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19086] = 3, - ACTIONS(1575), 1, + [19808] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1936), 11, + ACTIONS(1628), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93829,7 +94413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1934), 29, + ACTIONS(1626), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93859,10 +94443,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19134] = 3, - ACTIONS(1575), 1, + [19856] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1653), 11, + ACTIONS(1580), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93874,7 +94458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1651), 29, + ACTIONS(1578), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93904,12 +94488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19182] = 4, - ACTIONS(1575), 1, + [19904] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1842), 1, - anon_sym_EQ, - ACTIONS(1837), 11, + ACTIONS(1823), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93921,12 +94503,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1835), 28, + ACTIONS(1821), 29, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COLON_COLON, anon_sym_DASH_GT, @@ -93950,10 +94533,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19232] = 3, - ACTIONS(1575), 1, + [19952] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1860), 11, + ACTIONS(1885), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93965,7 +94548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1858), 29, + ACTIONS(1883), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93995,10 +94578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19280] = 3, - ACTIONS(1575), 1, + [20000] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1920), 11, + ACTIONS(1600), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94010,7 +94593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1918), 29, + ACTIONS(1598), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94040,10 +94623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19328] = 3, - ACTIONS(1575), 1, + [20048] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1637), 11, + ACTIONS(1881), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94055,7 +94638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1635), 29, + ACTIONS(1879), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94085,10 +94668,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19376] = 3, - ACTIONS(1575), 1, + [20096] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1868), 11, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(1806), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94100,13 +94685,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1866), 29, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1804), 28, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COLON_COLON, anon_sym_DASH_GT, @@ -94130,10 +94714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19424] = 3, - ACTIONS(1575), 1, + [20146] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1924), 11, + ACTIONS(1835), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94145,7 +94729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1922), 29, + ACTIONS(1833), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94175,10 +94759,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19472] = 3, - ACTIONS(1575), 1, + [20194] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1872), 11, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1556), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94190,18 +94780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1870), 29, + ACTIONS(1554), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -94220,10 +94804,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19520] = 3, - ACTIONS(1575), 1, + [20243] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1641), 11, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1686), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94235,18 +94825,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1639), 29, + ACTIONS(1684), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -94265,10 +94849,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19568] = 3, - ACTIONS(1575), 1, + [20292] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1912), 11, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1802), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94280,18 +94870,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1910), 29, + ACTIONS(1800), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -94310,16 +94894,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19616] = 4, - ACTIONS(1575), 1, + [20341] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1740), 11, + ACTIONS(1761), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94331,7 +94915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 23, + ACTIONS(1759), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94355,16 +94939,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19665] = 4, - ACTIONS(1575), 1, + [20390] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1829), 11, + ACTIONS(1558), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94376,7 +94960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1827), 23, + ACTIONS(1564), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94400,20 +94984,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19714] = 4, - ACTIONS(1575), 1, + [20439] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1605), 11, + ACTIONS(1953), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -94421,12 +94998,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 23, - sym__automatic_semicolon, + 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_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -94445,20 +95027,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19763] = 4, - ACTIONS(1575), 1, + [20485] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1607), 11, + 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20531] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1534), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -94466,12 +95084,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 23, - sym__automatic_semicolon, + ACTIONS(1532), 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_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -94490,20 +95113,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19812] = 4, - ACTIONS(1575), 1, + [20577] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1846), 11, + 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_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20623] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1538), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -94511,12 +95170,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1844), 23, - sym__automatic_semicolon, + ACTIONS(1536), 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_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -94535,10 +95199,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19861] = 3, - ACTIONS(1575), 1, + [20669] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1982), 10, + ACTIONS(1965), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94549,7 +95213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1980), 28, + ACTIONS(1963), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94578,10 +95242,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19907] = 3, - ACTIONS(1575), 1, + [20715] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1986), 10, + ACTIONS(1969), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94592,7 +95256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1984), 28, + ACTIONS(1967), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94621,10 +95285,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19953] = 3, - ACTIONS(1575), 1, + [20761] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1583), 10, + ACTIONS(1973), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94635,7 +95299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1581), 28, + ACTIONS(1971), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94664,10 +95328,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19999] = 3, - ACTIONS(1575), 1, + [20807] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1990), 10, + ACTIONS(1977), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94678,7 +95342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1988), 28, + ACTIONS(1975), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94707,10 +95371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20045] = 3, - ACTIONS(1575), 1, + [20853] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1994), 10, + ACTIONS(1981), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94721,7 +95385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1992), 28, + ACTIONS(1979), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94750,10 +95414,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20091] = 3, - ACTIONS(1575), 1, + [20899] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1998), 10, + ACTIONS(1528), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94764,7 +95428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1996), 28, + ACTIONS(1526), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94793,10 +95457,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20137] = 3, - ACTIONS(1575), 1, + [20945] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2002), 10, + ACTIONS(1985), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94807,7 +95471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2000), 28, + ACTIONS(1983), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94836,10 +95500,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20183] = 3, - ACTIONS(1575), 1, + [20991] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2006), 10, + ACTIONS(1989), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94850,7 +95514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2004), 28, + ACTIONS(1987), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94879,10 +95543,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20229] = 3, - ACTIONS(1575), 1, + [21037] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2010), 10, + ACTIONS(1751), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94893,7 +95557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2008), 28, + ACTIONS(1749), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94922,10 +95586,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20275] = 3, - ACTIONS(1575), 1, + [21083] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2014), 10, + ACTIONS(1993), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94936,7 +95600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2012), 28, + ACTIONS(1991), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94965,10 +95629,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20321] = 3, - ACTIONS(1575), 1, + [21129] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2018), 10, + ACTIONS(1997), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94979,7 +95643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2016), 28, + ACTIONS(1995), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95008,10 +95672,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20367] = 3, - ACTIONS(1575), 1, + [21175] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2022), 10, + ACTIONS(2001), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95022,7 +95686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2020), 28, + ACTIONS(1999), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95051,10 +95715,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20413] = 3, - ACTIONS(1575), 1, + [21221] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2026), 10, + ACTIONS(2005), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95065,7 +95729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2024), 28, + ACTIONS(2003), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95094,10 +95758,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20459] = 3, - ACTIONS(1575), 1, + [21267] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2030), 10, + ACTIONS(1542), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95108,7 +95772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2028), 28, + ACTIONS(1540), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95137,10 +95801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20505] = 3, - ACTIONS(1575), 1, + [21313] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2034), 10, + ACTIONS(2009), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95151,7 +95815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2032), 28, + ACTIONS(2007), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95180,10 +95844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20551] = 3, - ACTIONS(1575), 1, + [21359] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1579), 10, + ACTIONS(2013), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95194,7 +95858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1577), 28, + ACTIONS(2011), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95223,10 +95887,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20597] = 3, - ACTIONS(1575), 1, + [21405] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2038), 10, + ACTIONS(2017), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95237,7 +95901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2036), 28, + ACTIONS(2015), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95266,10 +95930,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20643] = 3, - ACTIONS(1575), 1, + [21451] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2042), 10, + ACTIONS(2021), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95280,7 +95944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2040), 28, + ACTIONS(2019), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95309,10 +95973,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20689] = 3, - ACTIONS(1575), 1, + [21497] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2046), 10, + ACTIONS(2025), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95323,7 +95987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2044), 28, + ACTIONS(2023), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95352,10 +96016,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20735] = 3, - ACTIONS(1575), 1, + [21543] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2050), 10, + ACTIONS(2029), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95366,7 +96030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2048), 28, + ACTIONS(2027), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95395,10 +96059,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20781] = 3, - ACTIONS(1575), 1, + [21589] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2054), 10, + ACTIONS(2033), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95409,7 +96073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2052), 28, + ACTIONS(2031), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95438,10 +96102,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20827] = 3, - ACTIONS(1575), 1, + [21635] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2058), 10, + ACTIONS(2037), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95452,7 +96116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2056), 28, + ACTIONS(2035), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95481,10 +96145,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20873] = 3, - ACTIONS(1575), 1, + [21681] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2062), 10, + ACTIONS(2041), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95495,7 +96159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2060), 28, + ACTIONS(2039), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95524,10 +96188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20919] = 3, - ACTIONS(1575), 1, + [21727] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1587), 10, + ACTIONS(2045), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95538,7 +96202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1585), 28, + ACTIONS(2043), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95567,12 +96231,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20965] = 4, - ACTIONS(1575), 1, + [21773] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2068), 1, + 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_RBRACK, aux_sym_binary_expression_token1, - ACTIONS(2066), 10, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [21819] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2053), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95583,7 +96288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2064), 27, + ACTIONS(2051), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95594,6 +96299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_RBRACK, + aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, aux_sym_binary_expression_token2, @@ -95611,10 +96317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21013] = 3, - ACTIONS(1575), 1, + [21865] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1573), 10, + ACTIONS(2057), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95625,7 +96331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1571), 28, + ACTIONS(2055), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95654,10 +96360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21059] = 3, - ACTIONS(1575), 1, + [21911] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2072), 10, + ACTIONS(2061), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95668,7 +96374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2070), 28, + ACTIONS(2059), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95697,10 +96403,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21105] = 3, - ACTIONS(1575), 1, + [21957] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2076), 10, + ACTIONS(2065), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95711,7 +96417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2074), 28, + ACTIONS(2063), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95740,10 +96446,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21151] = 3, - ACTIONS(1575), 1, + [22003] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2080), 10, + ACTIONS(2069), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95754,7 +96460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2078), 28, + ACTIONS(2067), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95783,10 +96489,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21197] = 3, - ACTIONS(1575), 1, + [22049] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2084), 10, + ACTIONS(2073), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95797,7 +96503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2082), 28, + ACTIONS(2071), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95826,10 +96532,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21243] = 3, - ACTIONS(1575), 1, + [22095] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2088), 10, + ACTIONS(2077), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95840,7 +96546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2086), 28, + ACTIONS(2075), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95869,10 +96575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21289] = 3, - ACTIONS(1575), 1, + [22141] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2092), 10, + ACTIONS(2081), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95883,7 +96589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2090), 28, + ACTIONS(2079), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95912,10 +96618,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21335] = 3, - ACTIONS(1575), 1, + [22187] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2096), 10, + ACTIONS(2085), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95926,7 +96632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2094), 28, + ACTIONS(2083), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95955,10 +96661,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21381] = 3, - ACTIONS(1575), 1, + [22233] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2100), 10, + ACTIONS(2089), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95969,7 +96675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2098), 28, + ACTIONS(2087), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95998,10 +96704,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21427] = 3, - ACTIONS(1575), 1, + [22279] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2104), 10, + ACTIONS(2093), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96012,7 +96718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2102), 28, + ACTIONS(2091), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96041,10 +96747,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21473] = 3, - ACTIONS(1575), 1, + [22325] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2108), 10, + ACTIONS(2097), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96055,7 +96761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2106), 28, + ACTIONS(2095), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96084,10 +96790,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21519] = 3, - ACTIONS(1575), 1, + [22371] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2112), 10, + ACTIONS(2101), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96098,7 +96804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2110), 28, + ACTIONS(2099), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96127,10 +96833,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21565] = 3, - ACTIONS(1575), 1, + [22417] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2116), 10, + ACTIONS(2105), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96141,7 +96847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2114), 28, + ACTIONS(2103), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96170,10 +96876,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21611] = 3, - ACTIONS(1575), 1, + [22463] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2120), 10, + ACTIONS(2109), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96184,7 +96890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2118), 28, + ACTIONS(2107), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96213,10 +96919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21657] = 3, - ACTIONS(1575), 1, + [22509] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2124), 10, + ACTIONS(2113), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96227,7 +96933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2122), 28, + ACTIONS(2111), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96256,10 +96962,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21703] = 3, - ACTIONS(1575), 1, + [22555] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1605), 10, + ACTIONS(1556), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96270,7 +96976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 28, + ACTIONS(1554), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96299,10 +97005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21749] = 3, - ACTIONS(1575), 1, + [22601] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1932), 10, + ACTIONS(2117), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96313,7 +97019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1930), 28, + ACTIONS(2115), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96342,139 +97048,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21795] = 3, - ACTIONS(1575), 1, + [22647] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2128), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2126), 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_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [21841] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2132), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2130), 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_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [21887] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2136), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2134), 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_RBRACK, + ACTIONS(2119), 1, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [21933] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2140), 10, + ACTIONS(2117), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96485,7 +97064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2138), 28, + ACTIONS(2115), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96496,7 +97075,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_RBRACK, - aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, aux_sym_binary_expression_token2, @@ -96514,10 +97092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21979] = 3, - ACTIONS(1575), 1, + [22695] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2144), 10, + ACTIONS(2123), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96528,7 +97106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2142), 28, + ACTIONS(2121), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96557,10 +97135,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22025] = 3, - ACTIONS(1575), 1, + [22741] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2148), 10, + ACTIONS(2127), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96571,7 +97149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2146), 28, + ACTIONS(2125), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96600,10 +97178,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22071] = 3, - ACTIONS(1575), 1, + [22787] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2152), 10, + ACTIONS(2131), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96614,7 +97192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2150), 28, + ACTIONS(2129), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96643,10 +97221,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22117] = 3, - ACTIONS(1575), 1, + [22833] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2156), 10, + ACTIONS(2135), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96657,7 +97235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2154), 28, + ACTIONS(2133), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96686,10 +97264,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22163] = 3, - ACTIONS(1575), 1, + [22879] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2160), 10, + ACTIONS(2139), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96700,7 +97278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2158), 28, + ACTIONS(2137), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96729,10 +97307,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22209] = 3, - ACTIONS(1575), 1, + [22925] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2164), 10, + ACTIONS(2143), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96743,7 +97321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2162), 28, + ACTIONS(2141), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96772,10 +97350,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22255] = 3, - ACTIONS(1575), 1, + [22971] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2066), 10, + ACTIONS(2147), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96786,7 +97364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2064), 28, + ACTIONS(2145), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96815,10 +97393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22301] = 3, - ACTIONS(1575), 1, + [23017] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2168), 10, + ACTIONS(2151), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96829,7 +97407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2166), 28, + ACTIONS(2149), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96858,10 +97436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22347] = 3, - ACTIONS(1575), 1, + [23063] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2172), 10, + ACTIONS(2155), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96872,7 +97450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2170), 28, + ACTIONS(2153), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96901,10 +97479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22393] = 3, - ACTIONS(1575), 1, + [23109] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2176), 10, + ACTIONS(2159), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96915,7 +97493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2174), 28, + ACTIONS(2157), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96944,10 +97522,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22439] = 3, - ACTIONS(1575), 1, + [23155] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2180), 10, + ACTIONS(2163), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96958,7 +97536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2178), 28, + ACTIONS(2161), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96987,10 +97565,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22485] = 3, - ACTIONS(1575), 1, + [23201] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2184), 10, + ACTIONS(2167), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97001,7 +97579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2182), 28, + ACTIONS(2165), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97030,10 +97608,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22531] = 3, - ACTIONS(1575), 1, + [23247] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2188), 10, + ACTIONS(1877), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97044,7 +97622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2186), 28, + ACTIONS(1875), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97073,10 +97651,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22577] = 3, - ACTIONS(1575), 1, + [23293] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2192), 10, + ACTIONS(2171), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97087,7 +97665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2190), 28, + ACTIONS(2169), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97116,10 +97694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22623] = 3, - ACTIONS(1575), 1, + [23339] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2196), 10, + ACTIONS(2175), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97130,7 +97708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2194), 28, + ACTIONS(2173), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97159,10 +97737,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22669] = 3, - ACTIONS(1575), 1, + [23385] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2200), 10, + ACTIONS(2179), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97173,7 +97751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2198), 28, + ACTIONS(2177), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97202,108 +97780,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22715] = 3, - ACTIONS(1575), 1, + [23431] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2204), 10, + ACTIONS(2185), 1, + anon_sym_POUND_LBRACK, + STATE(968), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2183), 6, anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2202), 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_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [22761] = 3, - ACTIONS(1575), 1, + anon_sym_DOLLAR, + ACTIONS(2181), 28, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + aux_sym_enum_declaration_token1, + anon_sym_string, + anon_sym_int, + 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_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [23480] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2208), 10, + ACTIONS(1666), 1, + sym_name, + ACTIONS(1699), 1, anon_sym_AMP, + ACTIONS(1703), 1, + anon_sym_LPAREN, + ACTIONS(1709), 1, anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 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_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [22807] = 5, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + ACTIONS(2188), 1, + anon_sym_DOT_DOT_DOT, + STATE(1183), 1, + sym_visibility_modifier, + STATE(1418), 1, + sym_qualified_name, + STATE(1657), 1, + sym_type, + STATE(1982), 1, + sym_reference_modifier, + STATE(1984), 1, + sym_variable_name, + STATE(2492), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + ACTIONS(47), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1454), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(1538), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1674), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [23559] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2214), 1, + ACTIONS(115), 1, anon_sym_POUND_LBRACK, STATE(968), 2, sym_attribute_group, aux_sym_attribute_list_repeat1, - ACTIONS(2212), 6, + ACTIONS(2192), 6, anon_sym_AMP, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOT_DOT_DOT, anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(2210), 28, + ACTIONS(2190), 28, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -97332,10 +97927,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [22856] = 3, - ACTIONS(1575), 1, + [23608] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1179), 11, + ACTIONS(1064), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97347,7 +97942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1177), 26, + ACTIONS(1062), 26, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97374,10 +97969,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22901] = 3, - ACTIONS(1575), 1, + [23653] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1139), 11, + ACTIONS(1068), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97389,7 +97984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1137), 26, + ACTIONS(1066), 26, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97416,98 +98011,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22946] = 20, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + [23698] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1711), 1, - sym_name, - ACTIONS(1742), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(1746), 1, - anon_sym_LPAREN, - ACTIONS(1752), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - ACTIONS(2217), 1, - anon_sym_DOT_DOT_DOT, - STATE(1178), 1, - sym_visibility_modifier, - STATE(1415), 1, - sym_qualified_name, - STATE(1642), 1, - sym__type, - STATE(1955), 1, - sym_reference_modifier, - STATE(1963), 1, - sym_variable_name, - STATE(2515), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - ACTIONS(45), 3, + ACTIONS(2200), 1, + anon_sym_PIPE, + ACTIONS(2204), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2216), 1, + anon_sym_AMP_AMP, + ACTIONS(2218), 1, + anon_sym_CARET, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2202), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2220), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2228), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2222), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2194), 7, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + [23780] = 11, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2202), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2228), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1686), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1684), 18, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_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, + [23840] = 10, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2238), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2243), 1, + aux_sym_final_modifier_token1, + ACTIONS(2246), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2249), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2252), 1, + sym_var_modifier, + ACTIONS(2255), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1453), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - STATE(1527), 4, - sym__types, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1717), 12, - 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_false, - anon_sym_null, - anon_sym_true, - [23025] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(113), 1, - anon_sym_POUND_LBRACK, - STATE(968), 2, - sym_attribute_group, - aux_sym_attribute_list_repeat1, - ACTIONS(2221), 6, - anon_sym_AMP, + ACTIONS(2241), 4, anon_sym_BSLASH, anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(2219), 28, - aux_sym_function_static_declaration_token1, + STATE(975), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_class_declaration_repeat1, + ACTIONS(2236), 17, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, - aux_sym_enum_declaration_token1, anon_sym_string, anon_sym_int, - 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_array, aux_sym_primitive_type_token1, anon_sym_iterable, @@ -97519,29 +98168,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [23074] = 7, - ACTIONS(1575), 1, + [23898] = 15, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2196), 1, + anon_sym_AMP, + ACTIONS(2206), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2218), 1, + anon_sym_CARET, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, anon_sym_PERCENT, - ACTIONS(2223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1740), 8, - anon_sym_AMP, + ACTIONS(1686), 2, anon_sym_QMARK, anon_sym_PIPE, + ACTIONS(2202), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2228), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1738), 22, + ACTIONS(2222), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1684), 13, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -97555,62 +98221,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [23126] = 19, - ACTIONS(1575), 1, + [23966] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2231), 10, + ACTIONS(2258), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -97618,56 +98281,59 @@ static const uint16_t ts_small_parse_table[] = { 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, - [23202] = 19, - ACTIONS(1575), 1, + [24048] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2259), 10, + ACTIONS(2260), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -97675,56 +98341,59 @@ static const uint16_t ts_small_parse_table[] = { 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, - [23278] = 19, - ACTIONS(1575), 1, + [24130] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2261), 10, + ACTIONS(2262), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -97732,77 +98401,103 @@ static const uint16_t ts_small_parse_table[] = { 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, - [23354] = 4, - ACTIONS(1575), 1, + [24212] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(1740), 10, + ACTIONS(2196), 1, anon_sym_AMP, + ACTIONS(2198), 1, anon_sym_QMARK, + ACTIONS(2200), 1, anon_sym_PIPE, + ACTIONS(2204), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2216), 1, + anon_sym_AMP_AMP, + ACTIONS(2218), 1, + anon_sym_CARET, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2202), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2228), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1738), 25, + ACTIONS(2222), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2264), 7, 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, - [23400] = 8, - ACTIONS(1575), 1, + [24294] = 13, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2206), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, anon_sym_PERCENT, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2255), 2, + ACTIONS(2220), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1740), 8, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1686), 3, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1738), 20, + ACTIONS(2222), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1684), 14, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -97817,96 +98512,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DOT, - [23454] = 9, - ACTIONS(1575), 1, + [24358] = 23, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2196), 1, + anon_sym_AMP, + ACTIONS(2198), 1, + anon_sym_QMARK, + ACTIONS(2200), 1, + anon_sym_PIPE, + ACTIONS(2204), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2206), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2257), 1, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2216), 1, + anon_sym_AMP_AMP, + ACTIONS(2218), 1, + anon_sym_CARET, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2266), 1, + anon_sym_EQ_GT, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1740), 8, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2228), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1738), 19, + ACTIONS(2222), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2091), 6, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, + [24442] = 22, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2196), 1, + anon_sym_AMP, + ACTIONS(2198), 1, + anon_sym_QMARK, + ACTIONS(2200), 1, + anon_sym_PIPE, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, + ACTIONS(2212), 1, aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, + ACTIONS(2216), 1, anon_sym_AMP_AMP, + ACTIONS(2218), 1, anon_sym_CARET, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2202), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2220), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2228), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [23510] = 11, - ACTIONS(1575), 1, + ACTIONS(2268), 7, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + [24524] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2196), 1, + anon_sym_AMP, + ACTIONS(2200), 1, + anon_sym_PIPE, + ACTIONS(2204), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2206), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2253), 1, + ACTIONS(2214), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2216), 1, + anon_sym_AMP_AMP, + ACTIONS(2218), 1, + anon_sym_CARET, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2272), 1, + anon_sym_QMARK, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2255), 2, + ACTIONS(2220), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1740), 5, + ACTIONS(2222), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2270), 10, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + 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, + [24600] = 6, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1686), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1738), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1684), 24, 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, @@ -97918,45 +98729,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [23570] = 14, - ACTIONS(1575), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [24650] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(1740), 2, + ACTIONS(2198), 1, anon_sym_QMARK, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2223), 2, + ACTIONS(2204), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2216), 1, + anon_sym_AMP_AMP, + ACTIONS(2218), 1, + anon_sym_CARET, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 14, + ACTIONS(1987), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -97964,54 +98794,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [23636] = 16, - ACTIONS(1575), 1, + [24732] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1740), 1, - anon_sym_QMARK, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2237), 1, + ACTIONS(2198), 1, + anon_sym_QMARK, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2245), 1, + ACTIONS(2204), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2214), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2216), 1, + anon_sym_AMP_AMP, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 13, + ACTIONS(2274), 10, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -98019,55 +98848,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [23706] = 17, - ACTIONS(1575), 1, + [24808] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1740), 1, - anon_sym_QMARK, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2237), 1, + ACTIONS(2198), 1, + anon_sym_QMARK, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2243), 1, + ACTIONS(2204), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 12, + ACTIONS(2276), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -98075,60 +98911,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - [23778] = 20, - ACTIONS(1575), 1, + [24890] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 9, + ACTIONS(2278), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -98136,59 +98971,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [23856] = 21, - ACTIONS(1575), 1, + [24972] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, - anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2282), 1, + anon_sym_QMARK, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 8, + ACTIONS(2280), 10, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -98196,54 +99025,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, - [23936] = 19, - ACTIONS(1575), 1, + aux_sym_binary_expression_token4, + [25048] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, - anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(1686), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2196), 1, + anon_sym_AMP, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 10, + ACTIONS(1684), 10, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -98254,12 +99085,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [24012] = 4, - ACTIONS(1575), 1, + [25124] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2206), 1, anon_sym_STAR_STAR, - ACTIONS(1740), 10, + ACTIONS(1686), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98270,7 +99101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 25, + ACTIONS(1684), 25, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -98296,53 +99127,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24058] = 19, - ACTIONS(1575), 1, + [25170] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1740), 1, - anon_sym_QMARK, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2237), 1, + ACTIONS(2198), 1, + anon_sym_QMARK, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 10, + ACTIONS(1684), 10, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -98353,90 +99184,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [24134] = 6, - ACTIONS(1575), 1, + [25246] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1740), 8, + ACTIONS(2196), 1, anon_sym_AMP, + ACTIONS(2198), 1, anon_sym_QMARK, + ACTIONS(2200), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1738), 24, - 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, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, + ACTIONS(2212), 1, aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, + ACTIONS(2216), 1, anon_sym_AMP_AMP, + ACTIONS(2218), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2226), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2230), 1, anon_sym_DOT, - [24184] = 15, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2234), 1, anon_sym_PERCENT, - ACTIONS(2233), 1, - anon_sym_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(1740), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 13, + ACTIONS(2284), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -98444,49 +99244,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, + [25328] = 21, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2196), 1, + anon_sym_AMP, + ACTIONS(2198), 1, + anon_sym_QMARK, + ACTIONS(2200), 1, + anon_sym_PIPE, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, + ACTIONS(2212), 1, aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - [24252] = 13, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2253), 1, + ACTIONS(2218), 1, + anon_sym_CARET, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1740), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 14, + ACTIONS(1684), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -98494,66 +99302,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [24316] = 22, - ACTIONS(1575), 1, + [25408] = 20, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2267), 7, + ACTIONS(1684), 9, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -98561,59 +99359,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - [24398] = 22, - ACTIONS(1575), 1, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [25486] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2271), 7, + ACTIONS(2286), 10, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -98621,59 +99415,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - [24480] = 22, - ACTIONS(1575), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [25562] = 17, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, - anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(1686), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2196), 1, + anon_sym_AMP, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2162), 7, + ACTIONS(1684), 12, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -98681,53 +99468,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - [24562] = 19, - ACTIONS(1575), 1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + [25634] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2237), 1, + ACTIONS(2198), 1, + anon_sym_QMARK, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2275), 1, - anon_sym_QMARK, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2273), 10, + ACTIONS(2288), 10, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -98738,59 +99530,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [24638] = 22, - ACTIONS(1575), 1, + [25710] = 16, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, - anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(1686), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2196), 1, + anon_sym_AMP, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, - anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2277), 7, + ACTIONS(1684), 13, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -98798,53 +99578,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - [24720] = 19, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, - anon_sym_AMP, - ACTIONS(2237), 1, - anon_sym_PIPE, - ACTIONS(2239), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, + [25780] = 14, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2196), 1, + anon_sym_AMP, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2281), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(1686), 2, anon_sym_QMARK, - ACTIONS(2223), 2, + anon_sym_PIPE, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2279), 10, + ACTIONS(1684), 14, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -98852,122 +99629,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [24796] = 22, - ACTIONS(1575), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [25846] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2206), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(1686), 10, anon_sym_AMP, - ACTIONS(2235), 1, anon_sym_QMARK, - ACTIONS(2237), 1, anon_sym_PIPE, - ACTIONS(2239), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, - anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2251), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2283), 7, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1684), 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, - [24878] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, - anon_sym_AMP, - ACTIONS(2235), 1, - anon_sym_QMARK, - ACTIONS(2237), 1, - anon_sym_PIPE, - ACTIONS(2239), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, anon_sym_CARET, - ACTIONS(2253), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2257), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2223), 2, + anon_sym_PERCENT, + [25892] = 8, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, + ACTIONS(2228), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2232), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(1686), 8, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2251), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2285), 7, + ACTIONS(1684), 20, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -98975,120 +99711,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - [24960] = 23, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, - anon_sym_AMP, - ACTIONS(2235), 1, - anon_sym_QMARK, - ACTIONS(2237), 1, - anon_sym_PIPE, - ACTIONS(2239), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2287), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2249), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2114), 6, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RPAREN, - aux_sym_binary_expression_token1, - [25044] = 22, - ACTIONS(1575), 1, + anon_sym_DOT, + [25946] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2206), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2234), 1, anon_sym_PERCENT, - ACTIONS(2233), 1, - anon_sym_AMP, - ACTIONS(2235), 1, - anon_sym_QMARK, - ACTIONS(2237), 1, - anon_sym_PIPE, - ACTIONS(2239), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, - anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, + ACTIONS(2232), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(1686), 8, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2251), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2289), 7, + ACTIONS(1684), 22, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -99096,59 +99754,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - [25126] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, - anon_sym_AMP, - ACTIONS(2235), 1, - anon_sym_QMARK, - ACTIONS(2237), 1, - anon_sym_PIPE, - ACTIONS(2239), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, anon_sym_CARET, - ACTIONS(2253), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2257), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2223), 2, + [25998] = 9, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, + ACTIONS(2228), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2232), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(1686), 8, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2251), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2291), 7, + ACTIONS(1684), 19, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -99156,164 +99804,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - [25208] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, - anon_sym_AMP, - ACTIONS(2235), 1, - anon_sym_QMARK, - ACTIONS(2237), 1, - anon_sym_PIPE, - ACTIONS(2239), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2249), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2293), 7, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_binary_expression_token1, - [25290] = 22, - ACTIONS(1575), 1, + [26054] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2292), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2294), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2298), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2304), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2306), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2223), 2, + ACTIONS(2322), 1, + anon_sym_PERCENT, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2320), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2295), 7, + ACTIONS(2274), 9, anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_EQ_GT, - anon_sym_RPAREN, + anon_sym_RBRACK, aux_sym_binary_expression_token1, - [25372] = 14, - ACTIONS(1575), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [26129] = 15, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2301), 1, + ACTIONS(2300), 1, anon_sym_STAR_STAR, - ACTIONS(2309), 1, + ACTIONS(2306), 1, + anon_sym_CARET, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2313), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2322), 1, anon_sym_PERCENT, - ACTIONS(1740), 2, + ACTIONS(1686), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2299), 2, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 13, + ACTIONS(1684), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -99326,107 +99924,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - [25437] = 22, - ACTIONS(1575), 1, + [26196] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2301), 1, + ACTIONS(2292), 1, + anon_sym_QMARK, + ACTIONS(2294), 1, + anon_sym_PIPE, + ACTIONS(2298), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2300), 1, anon_sym_STAR_STAR, - ACTIONS(2309), 1, + ACTIONS(2302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2304), 1, + anon_sym_AMP_AMP, + ACTIONS(2306), 1, + anon_sym_CARET, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2313), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2322), 1, anon_sym_PERCENT, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2321), 1, - anon_sym_PIPE, - ACTIONS(2323), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, + ACTIONS(2324), 1, aux_sym_binary_expression_token2, - ACTIONS(2327), 1, + ACTIONS(2326), 1, aux_sym_binary_expression_token3, - ACTIONS(2329), 1, + ACTIONS(2328), 1, aux_sym_binary_expression_token4, - ACTIONS(2331), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, - anon_sym_AMP_AMP, - ACTIONS(2335), 1, - anon_sym_CARET, - ACTIONS(2299), 2, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2267), 6, + ACTIONS(2284), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [25518] = 16, - ACTIONS(1575), 1, + [26277] = 11, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1740), 1, - anon_sym_QMARK, - ACTIONS(2297), 1, - anon_sym_AMP, - ACTIONS(2301), 1, + ACTIONS(2300), 1, anon_sym_STAR_STAR, - ACTIONS(2309), 1, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2313), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2322), 1, anon_sym_PERCENT, - ACTIONS(2321), 1, - anon_sym_PIPE, - ACTIONS(2335), 1, - anon_sym_CARET, - ACTIONS(2299), 2, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1738), 12, + ACTIONS(1686), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1684), 17, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -99439,49 +100026,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [25587] = 17, - ACTIONS(1575), 1, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [26336] = 14, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1740), 1, - anon_sym_QMARK, - ACTIONS(2297), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2301), 1, + ACTIONS(2300), 1, anon_sym_STAR_STAR, - ACTIONS(2309), 1, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2313), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2322), 1, anon_sym_PERCENT, - ACTIONS(2321), 1, + ACTIONS(1686), 2, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2333), 1, - anon_sym_AMP_AMP, - ACTIONS(2335), 1, - anon_sym_CARET, - ACTIONS(2299), 2, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 11, + ACTIONS(1684), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -99493,305 +100080,253 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - [25658] = 20, - ACTIONS(1575), 1, + anon_sym_AMP_AMP, + anon_sym_CARET, + [26401] = 16, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(1686), 1, + anon_sym_QMARK, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2301), 1, + ACTIONS(2294), 1, + anon_sym_PIPE, + ACTIONS(2300), 1, anon_sym_STAR_STAR, - ACTIONS(2309), 1, + ACTIONS(2306), 1, + anon_sym_CARET, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2313), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2322), 1, anon_sym_PERCENT, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2321), 1, - anon_sym_PIPE, - ACTIONS(2323), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, - aux_sym_binary_expression_token2, - ACTIONS(2331), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, - anon_sym_AMP_AMP, - ACTIONS(2335), 1, - anon_sym_CARET, - ACTIONS(2299), 2, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 8, + ACTIONS(1684), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [25735] = 21, - ACTIONS(1575), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [26470] = 17, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(1686), 1, + anon_sym_QMARK, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2301), 1, + ACTIONS(2294), 1, + anon_sym_PIPE, + ACTIONS(2300), 1, anon_sym_STAR_STAR, - ACTIONS(2309), 1, + ACTIONS(2304), 1, + anon_sym_AMP_AMP, + ACTIONS(2306), 1, + anon_sym_CARET, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2313), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2322), 1, anon_sym_PERCENT, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2321), 1, - anon_sym_PIPE, - ACTIONS(2323), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, - aux_sym_binary_expression_token2, - ACTIONS(2329), 1, - aux_sym_binary_expression_token4, - ACTIONS(2331), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, - anon_sym_AMP_AMP, - ACTIONS(2335), 1, - anon_sym_CARET, - ACTIONS(2299), 2, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 7, + ACTIONS(1684), 11, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, - [25814] = 19, - ACTIONS(1575), 1, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + [26541] = 20, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2301), 1, - anon_sym_STAR_STAR, - ACTIONS(2309), 1, - anon_sym_GT_EQ, - ACTIONS(2313), 1, - anon_sym_DOT, - ACTIONS(2317), 1, - anon_sym_PERCENT, - ACTIONS(2319), 1, + ACTIONS(2292), 1, anon_sym_QMARK, - ACTIONS(2321), 1, + ACTIONS(2294), 1, anon_sym_PIPE, - ACTIONS(2323), 1, + ACTIONS(2298), 1, anon_sym_QMARK_QMARK, - ACTIONS(2331), 1, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2304), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2306), 1, anon_sym_CARET, - ACTIONS(2299), 2, + ACTIONS(2314), 1, + anon_sym_GT_EQ, + ACTIONS(2318), 1, + anon_sym_DOT, + ACTIONS(2322), 1, + anon_sym_PERCENT, + ACTIONS(2324), 1, + aux_sym_binary_expression_token2, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 9, + ACTIONS(1684), 8, 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, - [25889] = 4, - ACTIONS(1575), 1, + [26618] = 21, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2301), 1, - anon_sym_STAR_STAR, - ACTIONS(1740), 10, + ACTIONS(2290), 1, anon_sym_AMP, + ACTIONS(2292), 1, anon_sym_QMARK, + ACTIONS(2294), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1738), 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, + ACTIONS(2298), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, anon_sym_PIPE_PIPE, + ACTIONS(2304), 1, anon_sym_AMP_AMP, + ACTIONS(2306), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [25934] = 19, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2281), 1, - anon_sym_QMARK, - ACTIONS(2297), 1, - anon_sym_AMP, - ACTIONS(2301), 1, - anon_sym_STAR_STAR, - ACTIONS(2309), 1, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2313), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2322), 1, anon_sym_PERCENT, - ACTIONS(2321), 1, - anon_sym_PIPE, - ACTIONS(2323), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2331), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, - anon_sym_AMP_AMP, - ACTIONS(2335), 1, - anon_sym_CARET, - ACTIONS(2299), 2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token2, + ACTIONS(2328), 1, + aux_sym_binary_expression_token4, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2279), 9, + ACTIONS(1684), 7, 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, - [26009] = 11, - ACTIONS(1575), 1, + [26697] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(2300), 1, anon_sym_STAR_STAR, - ACTIONS(2309), 1, - anon_sym_GT_EQ, - ACTIONS(2313), 1, - anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2322), 1, anon_sym_PERCENT, - ACTIONS(2299), 2, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2311), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1740), 5, + ACTIONS(1686), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1738), 17, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1684), 21, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -99808,26 +100343,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [26068] = 9, - ACTIONS(1575), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [26748] = 8, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(2300), 1, anon_sym_STAR_STAR, - ACTIONS(2313), 1, - anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2322), 1, anon_sym_PERCENT, - ACTIONS(2299), 2, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 8, + ACTIONS(1686), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99836,7 +100373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1738), 18, + ACTIONS(1684), 19, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -99855,20 +100392,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [26123] = 7, - ACTIONS(1575), 1, + anon_sym_DOT, + [26801] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(2300), 1, anon_sym_STAR_STAR, - ACTIONS(2317), 1, - anon_sym_PERCENT, - ACTIONS(2299), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2315), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1740), 8, + ACTIONS(1686), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99877,11 +100407,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1738), 21, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1684), 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, @@ -99899,98 +100433,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - [26174] = 8, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2301), 1, - anon_sym_STAR_STAR, - ACTIONS(2317), 1, anon_sym_PERCENT, - ACTIONS(2299), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2311), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2315), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1740), 8, + [26846] = 19, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2290), 1, anon_sym_AMP, + ACTIONS(2292), 1, anon_sym_QMARK, + ACTIONS(2294), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1738), 19, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, + ACTIONS(2298), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, anon_sym_PIPE_PIPE, + ACTIONS(2304), 1, anon_sym_AMP_AMP, + ACTIONS(2306), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DOT, - [26227] = 19, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1740), 1, - anon_sym_QMARK, - ACTIONS(2297), 1, - anon_sym_AMP, - ACTIONS(2301), 1, - anon_sym_STAR_STAR, - ACTIONS(2309), 1, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2313), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2322), 1, anon_sym_PERCENT, - ACTIONS(2321), 1, - anon_sym_PIPE, - ACTIONS(2323), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2331), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, - anon_sym_AMP_AMP, - ACTIONS(2335), 1, - anon_sym_CARET, - ACTIONS(2299), 2, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 9, + ACTIONS(1684), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -100000,17 +100490,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [26302] = 6, - ACTIONS(1575), 1, + [26921] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(2300), 1, anon_sym_STAR_STAR, - ACTIONS(2317), 1, - anon_sym_PERCENT, - ACTIONS(2315), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1740), 8, + ACTIONS(1686), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100019,7 +100504,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1738), 23, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1684), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -100043,289 +100530,318 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - [26351] = 15, - ACTIONS(1575), 1, + anon_sym_PERCENT, + [26966] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2301), 1, + ACTIONS(2292), 1, + anon_sym_QMARK, + ACTIONS(2294), 1, + anon_sym_PIPE, + ACTIONS(2298), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2300), 1, anon_sym_STAR_STAR, - ACTIONS(2309), 1, + ACTIONS(2302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2304), 1, + anon_sym_AMP_AMP, + ACTIONS(2306), 1, + anon_sym_CARET, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2313), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2322), 1, anon_sym_PERCENT, - ACTIONS(2335), 1, - anon_sym_CARET, - ACTIONS(1740), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2299), 2, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 12, + ACTIONS(2288), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [26418] = 13, - ACTIONS(1575), 1, + [27041] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(1686), 1, + anon_sym_QMARK, + ACTIONS(2290), 1, + anon_sym_AMP, + ACTIONS(2294), 1, + anon_sym_PIPE, + ACTIONS(2298), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2300), 1, anon_sym_STAR_STAR, - ACTIONS(2309), 1, + ACTIONS(2302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2304), 1, + anon_sym_AMP_AMP, + ACTIONS(2306), 1, + anon_sym_CARET, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2313), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2322), 1, anon_sym_PERCENT, - ACTIONS(2299), 2, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 13, + ACTIONS(1684), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [26481] = 22, - ACTIONS(1575), 1, + [27116] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, - anon_sym_AMP, - ACTIONS(2301), 1, + ACTIONS(2300), 1, anon_sym_STAR_STAR, - ACTIONS(2309), 1, - anon_sym_GT_EQ, - ACTIONS(2313), 1, - anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2322), 1, anon_sym_PERCENT, - ACTIONS(2319), 1, + ACTIONS(2320), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1686), 8, + anon_sym_AMP, anon_sym_QMARK, - ACTIONS(2321), 1, anon_sym_PIPE, - ACTIONS(2323), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1684), 23, + 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, - ACTIONS(2325), 1, aux_sym_binary_expression_token2, - ACTIONS(2327), 1, aux_sym_binary_expression_token3, - ACTIONS(2329), 1, aux_sym_binary_expression_token4, - ACTIONS(2331), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, anon_sym_CARET, - ACTIONS(2299), 2, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [27165] = 9, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2318), 1, + anon_sym_DOT, + ACTIONS(2322), 1, + anon_sym_PERCENT, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(1686), 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(2305), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2285), 6, + ACTIONS(1684), 18, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [26562] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2297), 1, - anon_sym_AMP, - ACTIONS(2301), 1, - anon_sym_STAR_STAR, - ACTIONS(2309), 1, - anon_sym_GT_EQ, - ACTIONS(2313), 1, - anon_sym_DOT, - ACTIONS(2317), 1, - anon_sym_PERCENT, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2321), 1, - anon_sym_PIPE, - ACTIONS(2323), 1, anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, aux_sym_binary_expression_token2, - ACTIONS(2327), 1, aux_sym_binary_expression_token3, - ACTIONS(2329), 1, aux_sym_binary_expression_token4, - ACTIONS(2331), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, anon_sym_CARET, - ACTIONS(2299), 2, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [27220] = 13, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2314), 1, + anon_sym_GT_EQ, + ACTIONS(2318), 1, + anon_sym_DOT, + ACTIONS(2322), 1, + anon_sym_PERCENT, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(1686), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2271), 6, + ACTIONS(1684), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [26643] = 22, - ACTIONS(1575), 1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [27283] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2301), 1, - anon_sym_STAR_STAR, - ACTIONS(2309), 1, - anon_sym_GT_EQ, - ACTIONS(2313), 1, - anon_sym_DOT, - ACTIONS(2317), 1, - anon_sym_PERCENT, - ACTIONS(2319), 1, + ACTIONS(2292), 1, anon_sym_QMARK, - ACTIONS(2321), 1, + ACTIONS(2294), 1, anon_sym_PIPE, - ACTIONS(2323), 1, + ACTIONS(2298), 1, anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, - aux_sym_binary_expression_token2, - ACTIONS(2327), 1, - aux_sym_binary_expression_token3, - ACTIONS(2329), 1, - aux_sym_binary_expression_token4, - ACTIONS(2331), 1, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2304), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2306), 1, anon_sym_CARET, - ACTIONS(2299), 2, + ACTIONS(2314), 1, + anon_sym_GT_EQ, + ACTIONS(2318), 1, + anon_sym_DOT, + ACTIONS(2322), 1, + anon_sym_PERCENT, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2162), 6, + ACTIONS(2286), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [26724] = 3, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [27358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 7, + ACTIONS(2332), 7, anon_sym_AMP, anon_sym_BSLASH, anon_sym_LPAREN, @@ -100333,7 +100849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_POUND_LBRACK, anon_sym_DOLLAR, - ACTIONS(2337), 28, + ACTIONS(2330), 28, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -100362,150 +100878,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [26767] = 4, - ACTIONS(1575), 1, + [27401] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2301), 1, - anon_sym_STAR_STAR, - ACTIONS(1740), 10, + ACTIONS(2290), 1, anon_sym_AMP, + ACTIONS(2292), 1, anon_sym_QMARK, + ACTIONS(2294), 1, anon_sym_PIPE, + ACTIONS(2298), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2304), 1, + anon_sym_AMP_AMP, + ACTIONS(2306), 1, + anon_sym_CARET, + ACTIONS(2314), 1, + anon_sym_GT_EQ, + ACTIONS(2318), 1, + anon_sym_DOT, + ACTIONS(2322), 1, + anon_sym_PERCENT, + ACTIONS(2324), 1, + aux_sym_binary_expression_token2, + ACTIONS(2326), 1, + aux_sym_binary_expression_token3, + ACTIONS(2328), 1, + aux_sym_binary_expression_token4, + ACTIONS(2296), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2316), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2320), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1738), 24, + ACTIONS(2310), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2268), 6, 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, - [26812] = 19, - ACTIONS(1575), 1, + [27482] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2301), 1, - anon_sym_STAR_STAR, - ACTIONS(2309), 1, - anon_sym_GT_EQ, - ACTIONS(2313), 1, - anon_sym_DOT, - ACTIONS(2317), 1, - anon_sym_PERCENT, - ACTIONS(2319), 1, + ACTIONS(2292), 1, anon_sym_QMARK, - ACTIONS(2321), 1, + ACTIONS(2294), 1, anon_sym_PIPE, - ACTIONS(2323), 1, + ACTIONS(2298), 1, anon_sym_QMARK_QMARK, - ACTIONS(2331), 1, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2304), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2306), 1, anon_sym_CARET, - ACTIONS(2299), 2, + ACTIONS(2314), 1, + anon_sym_GT_EQ, + ACTIONS(2318), 1, + anon_sym_DOT, + ACTIONS(2322), 1, + anon_sym_PERCENT, + ACTIONS(2324), 1, + aux_sym_binary_expression_token2, + ACTIONS(2326), 1, + aux_sym_binary_expression_token3, + ACTIONS(2328), 1, + aux_sym_binary_expression_token4, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2261), 9, + ACTIONS(2278), 6, 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, - [26887] = 19, - ACTIONS(1575), 1, + [27563] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, - anon_sym_AMP, - ACTIONS(2301), 1, - anon_sym_STAR_STAR, - ACTIONS(2309), 1, - anon_sym_GT_EQ, - ACTIONS(2313), 1, - anon_sym_DOT, - ACTIONS(2317), 1, - anon_sym_PERCENT, - ACTIONS(2319), 1, + ACTIONS(2282), 1, anon_sym_QMARK, - ACTIONS(2321), 1, + ACTIONS(2290), 1, + anon_sym_AMP, + ACTIONS(2294), 1, anon_sym_PIPE, - ACTIONS(2323), 1, + ACTIONS(2298), 1, anon_sym_QMARK_QMARK, - ACTIONS(2331), 1, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2304), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2306), 1, anon_sym_CARET, - ACTIONS(2299), 2, + ACTIONS(2314), 1, + anon_sym_GT_EQ, + ACTIONS(2318), 1, + anon_sym_DOT, + ACTIONS(2322), 1, + anon_sym_PERCENT, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2259), 9, + ACTIONS(2280), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -100515,618 +101052,626 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [26962] = 3, - ACTIONS(3), 1, + [27638] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2343), 7, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, + ACTIONS(2272), 1, anon_sym_QMARK, - anon_sym_POUND_LBRACK, - anon_sym_DOLLAR, - ACTIONS(2341), 28, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - aux_sym_enum_declaration_token1, - anon_sym_string, - anon_sym_int, - 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_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [27005] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2297), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2301), 1, - anon_sym_STAR_STAR, - ACTIONS(2309), 1, - anon_sym_GT_EQ, - ACTIONS(2313), 1, - anon_sym_DOT, - ACTIONS(2317), 1, - anon_sym_PERCENT, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2321), 1, + ACTIONS(2294), 1, anon_sym_PIPE, - ACTIONS(2323), 1, + ACTIONS(2298), 1, anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, - aux_sym_binary_expression_token2, - ACTIONS(2327), 1, - aux_sym_binary_expression_token3, - ACTIONS(2329), 1, - aux_sym_binary_expression_token4, - ACTIONS(2331), 1, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2304), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2306), 1, anon_sym_CARET, - ACTIONS(2299), 2, + ACTIONS(2314), 1, + anon_sym_GT_EQ, + ACTIONS(2318), 1, + anon_sym_DOT, + ACTIONS(2322), 1, + anon_sym_PERCENT, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2277), 6, + ACTIONS(2270), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [27086] = 19, - ACTIONS(1575), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [27713] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2275), 1, - anon_sym_QMARK, - ACTIONS(2297), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2301), 1, - anon_sym_STAR_STAR, - ACTIONS(2309), 1, - anon_sym_GT_EQ, - ACTIONS(2313), 1, - anon_sym_DOT, - ACTIONS(2317), 1, - anon_sym_PERCENT, - ACTIONS(2321), 1, + ACTIONS(2292), 1, + anon_sym_QMARK, + ACTIONS(2294), 1, anon_sym_PIPE, - ACTIONS(2323), 1, + ACTIONS(2298), 1, anon_sym_QMARK_QMARK, - ACTIONS(2331), 1, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2304), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2306), 1, anon_sym_CARET, - ACTIONS(2299), 2, + ACTIONS(2314), 1, + anon_sym_GT_EQ, + ACTIONS(2318), 1, + anon_sym_DOT, + ACTIONS(2322), 1, + anon_sym_PERCENT, + ACTIONS(2324), 1, + aux_sym_binary_expression_token2, + ACTIONS(2326), 1, + aux_sym_binary_expression_token3, + ACTIONS(2328), 1, + aux_sym_binary_expression_token4, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2273), 9, + ACTIONS(2194), 6, 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, - [27161] = 19, - ACTIONS(1575), 1, + [27794] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2301), 1, - anon_sym_STAR_STAR, - ACTIONS(2309), 1, - anon_sym_GT_EQ, - ACTIONS(2313), 1, - anon_sym_DOT, - ACTIONS(2317), 1, - anon_sym_PERCENT, - ACTIONS(2319), 1, + ACTIONS(2292), 1, anon_sym_QMARK, - ACTIONS(2321), 1, + ACTIONS(2294), 1, anon_sym_PIPE, - ACTIONS(2323), 1, + ACTIONS(2298), 1, anon_sym_QMARK_QMARK, - ACTIONS(2331), 1, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2304), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2306), 1, anon_sym_CARET, - ACTIONS(2299), 2, + ACTIONS(2314), 1, + anon_sym_GT_EQ, + ACTIONS(2318), 1, + anon_sym_DOT, + ACTIONS(2322), 1, + anon_sym_PERCENT, + ACTIONS(2324), 1, + aux_sym_binary_expression_token2, + ACTIONS(2326), 1, + aux_sym_binary_expression_token3, + ACTIONS(2328), 1, + aux_sym_binary_expression_token4, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2231), 9, + ACTIONS(2276), 6, 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, - [27236] = 3, - ACTIONS(3), 1, + [27875] = 23, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2347), 7, + ACTIONS(2290), 1, anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, + ACTIONS(2292), 1, anon_sym_QMARK, - anon_sym_POUND_LBRACK, - anon_sym_DOLLAR, - ACTIONS(2345), 28, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - aux_sym_enum_declaration_token1, - anon_sym_string, - anon_sym_int, - 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_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [27279] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2297), 1, - anon_sym_AMP, - ACTIONS(2301), 1, + ACTIONS(2294), 1, + anon_sym_PIPE, + ACTIONS(2298), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2300), 1, anon_sym_STAR_STAR, - ACTIONS(2309), 1, + ACTIONS(2302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2304), 1, + anon_sym_AMP_AMP, + ACTIONS(2306), 1, + anon_sym_CARET, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2313), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2322), 1, anon_sym_PERCENT, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2321), 1, - anon_sym_PIPE, - ACTIONS(2323), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, + ACTIONS(2324), 1, aux_sym_binary_expression_token2, - ACTIONS(2327), 1, + ACTIONS(2326), 1, aux_sym_binary_expression_token3, - ACTIONS(2329), 1, + ACTIONS(2328), 1, aux_sym_binary_expression_token4, - ACTIONS(2331), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, - anon_sym_AMP_AMP, - ACTIONS(2335), 1, - anon_sym_CARET, - ACTIONS(2299), 2, + ACTIONS(2334), 1, + anon_sym_EQ_GT, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2291), 6, + ACTIONS(2091), 5, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [27360] = 22, - ACTIONS(1575), 1, + [27958] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2301), 1, + ACTIONS(2292), 1, + anon_sym_QMARK, + ACTIONS(2294), 1, + anon_sym_PIPE, + ACTIONS(2298), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2300), 1, anon_sym_STAR_STAR, - ACTIONS(2309), 1, + ACTIONS(2302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2304), 1, + anon_sym_AMP_AMP, + ACTIONS(2306), 1, + anon_sym_CARET, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2313), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2322), 1, anon_sym_PERCENT, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2321), 1, - anon_sym_PIPE, - ACTIONS(2323), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, + ACTIONS(2324), 1, aux_sym_binary_expression_token2, - ACTIONS(2327), 1, + ACTIONS(2326), 1, aux_sym_binary_expression_token3, - ACTIONS(2329), 1, + ACTIONS(2328), 1, aux_sym_binary_expression_token4, - ACTIONS(2331), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, - anon_sym_AMP_AMP, - ACTIONS(2335), 1, - anon_sym_CARET, - ACTIONS(2299), 2, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2283), 6, + ACTIONS(2264), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [27441] = 22, - ACTIONS(1575), 1, + [28039] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2301), 1, + ACTIONS(2292), 1, + anon_sym_QMARK, + ACTIONS(2294), 1, + anon_sym_PIPE, + ACTIONS(2298), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2300), 1, anon_sym_STAR_STAR, - ACTIONS(2309), 1, + ACTIONS(2302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2304), 1, + anon_sym_AMP_AMP, + ACTIONS(2306), 1, + anon_sym_CARET, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2313), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2322), 1, anon_sym_PERCENT, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2321), 1, - anon_sym_PIPE, - ACTIONS(2323), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, + ACTIONS(2324), 1, aux_sym_binary_expression_token2, - ACTIONS(2327), 1, + ACTIONS(2326), 1, aux_sym_binary_expression_token3, - ACTIONS(2329), 1, + ACTIONS(2328), 1, aux_sym_binary_expression_token4, - ACTIONS(2331), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, - anon_sym_AMP_AMP, - ACTIONS(2335), 1, - anon_sym_CARET, - ACTIONS(2299), 2, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2289), 6, + ACTIONS(2262), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [27522] = 22, - ACTIONS(1575), 1, + [28120] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2301), 1, + ACTIONS(2292), 1, + anon_sym_QMARK, + ACTIONS(2294), 1, + anon_sym_PIPE, + ACTIONS(2298), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2300), 1, anon_sym_STAR_STAR, - ACTIONS(2309), 1, + ACTIONS(2302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2304), 1, + anon_sym_AMP_AMP, + ACTIONS(2306), 1, + anon_sym_CARET, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2313), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2322), 1, anon_sym_PERCENT, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2321), 1, - anon_sym_PIPE, - ACTIONS(2323), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, + ACTIONS(2324), 1, aux_sym_binary_expression_token2, - ACTIONS(2327), 1, + ACTIONS(2326), 1, aux_sym_binary_expression_token3, - ACTIONS(2329), 1, + ACTIONS(2328), 1, aux_sym_binary_expression_token4, - ACTIONS(2331), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, - anon_sym_AMP_AMP, - ACTIONS(2335), 1, - anon_sym_CARET, - ACTIONS(2299), 2, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2295), 6, + ACTIONS(2260), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [27603] = 23, - ACTIONS(1575), 1, + [28201] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2301), 1, + ACTIONS(2292), 1, + anon_sym_QMARK, + ACTIONS(2294), 1, + anon_sym_PIPE, + ACTIONS(2298), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2300), 1, anon_sym_STAR_STAR, - ACTIONS(2309), 1, + ACTIONS(2302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2304), 1, + anon_sym_AMP_AMP, + ACTIONS(2306), 1, + anon_sym_CARET, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2313), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2322), 1, anon_sym_PERCENT, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2321), 1, - anon_sym_PIPE, - ACTIONS(2323), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, + ACTIONS(2324), 1, aux_sym_binary_expression_token2, - ACTIONS(2327), 1, + ACTIONS(2326), 1, aux_sym_binary_expression_token3, - ACTIONS(2329), 1, + ACTIONS(2328), 1, aux_sym_binary_expression_token4, - ACTIONS(2331), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, - anon_sym_AMP_AMP, - ACTIONS(2335), 1, - anon_sym_CARET, - ACTIONS(2349), 1, - anon_sym_EQ_GT, - ACTIONS(2299), 2, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2114), 5, + ACTIONS(2258), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [27686] = 22, - ACTIONS(1575), 1, + [28282] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2301), 1, + ACTIONS(2292), 1, + anon_sym_QMARK, + ACTIONS(2294), 1, + anon_sym_PIPE, + ACTIONS(2298), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2300), 1, anon_sym_STAR_STAR, - ACTIONS(2309), 1, + ACTIONS(2302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2304), 1, + anon_sym_AMP_AMP, + ACTIONS(2306), 1, + anon_sym_CARET, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2313), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2322), 1, anon_sym_PERCENT, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2321), 1, - anon_sym_PIPE, - ACTIONS(2323), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, + ACTIONS(2324), 1, aux_sym_binary_expression_token2, - ACTIONS(2327), 1, + ACTIONS(2326), 1, aux_sym_binary_expression_token3, - ACTIONS(2329), 1, + ACTIONS(2328), 1, aux_sym_binary_expression_token4, - ACTIONS(2331), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, - anon_sym_AMP_AMP, - ACTIONS(2335), 1, - anon_sym_CARET, - ACTIONS(2299), 2, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2293), 6, + ACTIONS(1987), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [27767] = 4, - ACTIONS(1575), 1, + [28363] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2338), 7, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_POUND_LBRACK, + anon_sym_DOLLAR, + ACTIONS(2336), 28, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + aux_sym_enum_declaration_token1, + anon_sym_string, + anon_sym_int, + 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_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [28406] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(2342), 7, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_POUND_LBRACK, + anon_sym_DOLLAR, + ACTIONS(2340), 28, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + aux_sym_enum_declaration_token1, + anon_sym_string, + anon_sym_int, + 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_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [28449] = 6, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(1740), 10, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1686), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101135,9 +101680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1738), 23, + ACTIONS(1684), 22, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -101160,11 +101703,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_PERCENT, - [27811] = 3, - ACTIONS(1575), 1, + [28497] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2014), 10, + ACTIONS(1538), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101175,7 +101717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2012), 24, + ACTIONS(1536), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -101200,10 +101742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [27853] = 3, - ACTIONS(1575), 1, + [28539] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2152), 10, + ACTIONS(2013), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101214,7 +101756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2150), 24, + ACTIONS(2011), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -101239,10 +101781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [27895] = 3, - ACTIONS(1575), 1, + [28581] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2136), 10, + ACTIONS(2017), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101253,7 +101795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2134), 24, + ACTIONS(2015), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -101278,10 +101820,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [27937] = 3, - ACTIONS(1575), 1, + [28623] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2072), 10, + ACTIONS(2025), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101292,7 +101834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2070), 24, + ACTIONS(2023), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -101317,10 +101859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [27979] = 3, - ACTIONS(1575), 1, + [28665] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2144), 10, + ACTIONS(1025), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101331,7 +101873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2142), 24, + ACTIONS(1023), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -101356,10 +101898,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [28021] = 3, - ACTIONS(1575), 1, + [28707] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2156), 10, + ACTIONS(1751), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101370,7 +101912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2154), 24, + ACTIONS(1749), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -101395,49 +101937,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [28063] = 3, - ACTIONS(1575), 1, + [28749] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2208), 10, - anon_sym_AMP, + ACTIONS(1686), 1, anon_sym_QMARK, + ACTIONS(2344), 1, + anon_sym_STAR_STAR, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, + anon_sym_AMP, + ACTIONS(2352), 1, anon_sym_PIPE, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, + anon_sym_AMP_AMP, + ACTIONS(2362), 1, + anon_sym_CARET, + ACTIONS(2370), 1, + anon_sym_GT_EQ, + ACTIONS(2374), 1, + anon_sym_DOT, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 24, + ACTIONS(2366), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1684), 8, 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, - anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [28105] = 3, - ACTIONS(1575), 1, + [28823] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2058), 10, + ACTIONS(2344), 1, + anon_sym_STAR_STAR, + ACTIONS(1686), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101448,7 +102008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2056), 24, + ACTIONS(1684), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -101457,7 +102017,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -101473,49 +102032,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [28147] = 3, - ACTIONS(1575), 1, + [28867] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1998), 10, + ACTIONS(2344), 1, + anon_sym_STAR_STAR, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, anon_sym_AMP, - anon_sym_QMARK, + ACTIONS(2352), 1, anon_sym_PIPE, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, + anon_sym_AMP_AMP, + ACTIONS(2362), 1, + anon_sym_CARET, + ACTIONS(2370), 1, + anon_sym_GT_EQ, + ACTIONS(2374), 1, + anon_sym_DOT, + ACTIONS(2376), 1, + anon_sym_QMARK, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1996), 24, + ACTIONS(2366), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1684), 8, 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, - anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [28189] = 3, - ACTIONS(1575), 1, + [28941] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2010), 10, + ACTIONS(1037), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101526,7 +102101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2008), 24, + ACTIONS(1035), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -101551,117 +102126,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [28231] = 22, - ACTIONS(1575), 1, + [28983] = 21, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, anon_sym_AMP, - ACTIONS(2355), 1, - anon_sym_QMARK, - ACTIONS(2357), 1, + ACTIONS(2352), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2356), 1, anon_sym_QMARK_QMARK, - ACTIONS(2363), 1, - aux_sym_binary_expression_token2, - ACTIONS(2365), 1, - aux_sym_binary_expression_token3, - ACTIONS(2367), 1, - aux_sym_binary_expression_token4, - ACTIONS(2369), 1, + ACTIONS(2358), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, + ACTIONS(2360), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, + ACTIONS(2362), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2370), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2374), 1, anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2376), 1, + anon_sym_QMARK, + ACTIONS(2378), 1, + aux_sym_binary_expression_token2, + ACTIONS(2380), 1, + aux_sym_binary_expression_token4, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2379), 3, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2366), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2277), 5, + ACTIONS(1684), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, - [28311] = 13, - ACTIONS(1575), 1, + aux_sym_binary_expression_token3, + [29061] = 20, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2381), 1, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, + anon_sym_AMP, + ACTIONS(2352), 1, + anon_sym_PIPE, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, + anon_sym_AMP_AMP, + ACTIONS(2362), 1, + anon_sym_CARET, + ACTIONS(2370), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2374), 1, anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2376), 1, + anon_sym_QMARK, + ACTIONS(2378), 1, + aux_sym_binary_expression_token2, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1740), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2379), 3, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2366), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 12, + ACTIONS(1684), 7, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [28373] = 3, - ACTIONS(1575), 1, + [29137] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2054), 10, + ACTIONS(1997), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101672,7 +102253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2052), 24, + ACTIONS(1995), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -101697,180 +102278,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [28415] = 22, - ACTIONS(1575), 1, + [29179] = 17, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(1686), 1, + anon_sym_QMARK, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, anon_sym_AMP, - ACTIONS(2355), 1, - anon_sym_QMARK, - ACTIONS(2357), 1, + ACTIONS(2352), 1, anon_sym_PIPE, - ACTIONS(2361), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2363), 1, - aux_sym_binary_expression_token2, - ACTIONS(2365), 1, - aux_sym_binary_expression_token3, - ACTIONS(2367), 1, - aux_sym_binary_expression_token4, - ACTIONS(2369), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, + ACTIONS(2360), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, + ACTIONS(2362), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2370), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2374), 1, anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2379), 3, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2366), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2162), 5, + ACTIONS(1684), 10, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, - [28495] = 19, - ACTIONS(1575), 1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + [29249] = 16, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(1686), 1, + anon_sym_QMARK, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, anon_sym_AMP, - ACTIONS(2355), 1, - anon_sym_QMARK, - ACTIONS(2357), 1, + ACTIONS(2352), 1, anon_sym_PIPE, - ACTIONS(2361), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2369), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, - anon_sym_AMP_AMP, - ACTIONS(2373), 1, + ACTIONS(2362), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2370), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2374), 1, anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2379), 3, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2366), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2259), 8, + ACTIONS(1684), 11, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [28569] = 19, - ACTIONS(1575), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [29317] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2109), 10, anon_sym_AMP, - ACTIONS(2355), 1, anon_sym_QMARK, - ACTIONS(2357), 1, anon_sym_PIPE, - ACTIONS(2361), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2369), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, - anon_sym_AMP_AMP, - ACTIONS(2373), 1, - anon_sym_CARET, - ACTIONS(2381), 1, - anon_sym_GT_EQ, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2261), 8, + 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, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [28643] = 4, - ACTIONS(1575), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [29359] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(1740), 10, + ACTIONS(2139), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101881,7 +102436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 23, + ACTIONS(2137), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -101890,6 +102445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -101905,10 +102461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [28687] = 3, - ACTIONS(1575), 1, + [29401] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2196), 10, + ACTIONS(2113), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101919,7 +102475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2194), 24, + ACTIONS(2111), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -101944,10 +102500,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [28729] = 3, - ACTIONS(1575), 1, + [29443] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2084), 10, + ACTIONS(2155), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101958,7 +102514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2082), 24, + ACTIONS(2153), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -101983,10 +102539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [28771] = 3, - ACTIONS(1575), 1, + [29485] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1041), 10, + ACTIONS(2159), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101997,7 +102553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1039), 24, + ACTIONS(2157), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102022,32 +102578,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [28813] = 8, - ACTIONS(1575), 1, + [29527] = 14, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2389), 1, + ACTIONS(2348), 1, anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2350), 1, + anon_sym_AMP, + ACTIONS(2370), 1, + anon_sym_GT_EQ, + ACTIONS(2374), 1, + anon_sym_DOT, + ACTIONS(1686), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2383), 2, + ACTIONS(2364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, + ACTIONS(2368), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2366), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1684), 12, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [29591] = 11, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2344), 1, + anon_sym_STAR_STAR, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2370), 1, + anon_sym_GT_EQ, + ACTIONS(2374), 1, + anon_sym_DOT, + ACTIONS(2346), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 8, + ACTIONS(2354), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2368), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1686), 5, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1738), 18, + ACTIONS(1684), 16, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102063,23 +102674,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_DOT, - [28865] = 7, - ACTIONS(1575), 1, + [29649] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1740), 8, + ACTIONS(2167), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102088,13 +102687,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1738), 20, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2165), 24, 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, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -102109,10 +102713,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - [28915] = 3, - ACTIONS(1575), 1, + anon_sym_PERCENT, + [29691] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2050), 10, + ACTIONS(1957), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102123,7 +102728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2048), 24, + ACTIONS(1955), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102148,10 +102753,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [28957] = 3, - ACTIONS(1575), 1, + [29733] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2088), 10, + ACTIONS(2073), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102162,7 +102767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2086), 24, + ACTIONS(2071), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102187,25 +102792,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [28999] = 9, - ACTIONS(1575), 1, + [29775] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2383), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1740), 8, + ACTIONS(2009), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102214,13 +102804,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1738), 17, + 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, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -102232,10 +102827,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [29053] = 3, - ACTIONS(1575), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [29817] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2046), 10, + ACTIONS(1556), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102246,7 +102845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2044), 24, + ACTIONS(1554), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102271,10 +102870,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29095] = 3, - ACTIONS(1575), 1, + [29859] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2096), 10, + ACTIONS(2117), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102285,7 +102884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2094), 24, + ACTIONS(2115), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102310,43 +102909,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29137] = 11, - ACTIONS(1575), 1, + [29901] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2381), 1, - anon_sym_GT_EQ, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2383), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2379), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1740), 5, + ACTIONS(2382), 1, + aux_sym_binary_expression_token1, + ACTIONS(2117), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1738), 16, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2115), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - aux_sym_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -102356,66 +102943,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [29195] = 19, - ACTIONS(1575), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [29945] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2281), 1, - anon_sym_QMARK, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2029), 10, anon_sym_AMP, - ACTIONS(2357), 1, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2361), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2369), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, - anon_sym_AMP_AMP, - ACTIONS(2373), 1, - anon_sym_CARET, - ACTIONS(2381), 1, - anon_sym_GT_EQ, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2279), 8, + 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, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [29269] = 3, - ACTIONS(1575), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [29987] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1033), 10, + ACTIONS(2001), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102426,7 +103002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1031), 24, + ACTIONS(1999), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102451,10 +103027,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29311] = 3, - ACTIONS(1575), 1, + [30029] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2184), 10, + ACTIONS(1977), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102465,7 +103041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2182), 24, + ACTIONS(1975), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102490,10 +103066,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29353] = 3, - ACTIONS(1575), 1, + [30071] = 9, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2100), 10, + ACTIONS(2344), 1, + anon_sym_STAR_STAR, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2374), 1, + anon_sym_DOT, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1686), 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(1684), 17, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [30125] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2127), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102504,7 +103125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2098), 24, + ACTIONS(2125), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102529,10 +103150,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29395] = 3, - ACTIONS(1575), 1, + [30167] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2026), 10, + ACTIONS(2033), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102543,7 +103164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2024), 24, + ACTIONS(2031), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102568,10 +103189,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29437] = 3, - ACTIONS(1575), 1, + [30209] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2076), 10, + ACTIONS(1953), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102582,7 +103203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2074), 24, + ACTIONS(1951), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102607,10 +103228,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29479] = 3, - ACTIONS(1575), 1, + [30251] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1990), 10, + ACTIONS(2272), 1, + anon_sym_QMARK, + ACTIONS(2344), 1, + anon_sym_STAR_STAR, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, + anon_sym_AMP, + ACTIONS(2352), 1, + anon_sym_PIPE, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, + anon_sym_AMP_AMP, + ACTIONS(2362), 1, + anon_sym_CARET, + ACTIONS(2370), 1, + anon_sym_GT_EQ, + ACTIONS(2374), 1, + anon_sym_DOT, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2368), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2366), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2270), 8, + 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, + [30325] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2041), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102621,7 +103297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1988), 24, + ACTIONS(2039), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102646,10 +103322,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29521] = 3, - ACTIONS(1575), 1, + [30367] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2042), 10, + ACTIONS(2045), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102660,7 +103336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2040), 24, + ACTIONS(2043), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102685,10 +103361,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29563] = 3, - ACTIONS(1575), 1, + [30409] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2066), 10, + ACTIONS(2049), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102699,7 +103375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2064), 24, + ACTIONS(2047), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102724,10 +103400,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29605] = 3, - ACTIONS(1575), 1, + [30451] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2108), 10, + ACTIONS(1993), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102738,7 +103414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2106), 24, + ACTIONS(1991), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102763,60 +103439,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29647] = 14, - ACTIONS(1575), 1, + [30493] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 8, anon_sym_AMP, - ACTIONS(2381), 1, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1684), 20, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2385), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2389), 1, + [30543] = 22, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2344), 1, + anon_sym_STAR_STAR, + ACTIONS(2348), 1, anon_sym_PERCENT, - ACTIONS(1740), 2, - anon_sym_QMARK, + ACTIONS(2350), 1, + anon_sym_AMP, + ACTIONS(2352), 1, anon_sym_PIPE, - ACTIONS(2359), 2, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, + anon_sym_AMP_AMP, + ACTIONS(2362), 1, + anon_sym_CARET, + ACTIONS(2370), 1, + anon_sym_GT_EQ, + ACTIONS(2374), 1, + anon_sym_DOT, + ACTIONS(2376), 1, + anon_sym_QMARK, + ACTIONS(2378), 1, + aux_sym_binary_expression_token2, + ACTIONS(2380), 1, + aux_sym_binary_expression_token4, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2379), 3, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2366), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 12, + ACTIONS(1987), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [29711] = 3, - ACTIONS(1575), 1, + [30623] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1986), 10, + ACTIONS(1973), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102827,7 +103554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1984), 24, + ACTIONS(1971), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102852,10 +103579,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29753] = 3, - ACTIONS(1575), 1, + [30665] = 8, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2344), 1, + anon_sym_STAR_STAR, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1686), 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(1684), 18, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [30717] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1994), 10, + ACTIONS(2344), 1, + anon_sym_STAR_STAR, + ACTIONS(1686), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102866,7 +103639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1992), 24, + ACTIONS(1684), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102875,7 +103648,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -102891,12 +103663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29795] = 4, - ACTIONS(1575), 1, + [30761] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2391), 1, - aux_sym_binary_expression_token1, - ACTIONS(2066), 10, + ACTIONS(2123), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102907,13 +103677,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2064), 23, + ACTIONS(2121), 24, 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, anon_sym_STAR_STAR, aux_sym_binary_expression_token2, @@ -102931,10 +103702,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29839] = 3, - ACTIONS(1575), 1, + [30803] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2002), 10, + ACTIONS(2061), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102945,7 +103716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2000), 24, + ACTIONS(2059), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102970,10 +103741,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29881] = 3, - ACTIONS(1575), 1, + [30845] = 22, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2344), 1, + anon_sym_STAR_STAR, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, + anon_sym_AMP, + ACTIONS(2352), 1, + anon_sym_PIPE, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, + anon_sym_AMP_AMP, + ACTIONS(2362), 1, + anon_sym_CARET, + ACTIONS(2370), 1, + anon_sym_GT_EQ, + ACTIONS(2374), 1, + anon_sym_DOT, + ACTIONS(2376), 1, + anon_sym_QMARK, + ACTIONS(2378), 1, + aux_sym_binary_expression_token2, + ACTIONS(2380), 1, + aux_sym_binary_expression_token4, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2368), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2366), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2194), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + [30925] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2006), 10, + ACTIONS(2147), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102984,7 +103813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2004), 24, + ACTIONS(2145), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103009,10 +103838,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29923] = 3, - ACTIONS(1575), 1, + [30967] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2080), 10, + ACTIONS(2151), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103023,7 +103852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2078), 24, + ACTIONS(2149), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103048,275 +103877,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29965] = 16, - ACTIONS(1575), 1, + [31009] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1740), 1, - anon_sym_QMARK, - ACTIONS(2351), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, anon_sym_AMP, - ACTIONS(2357), 1, + ACTIONS(2352), 1, anon_sym_PIPE, - ACTIONS(2373), 1, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, + anon_sym_AMP_AMP, + ACTIONS(2362), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2370), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2374), 1, anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2376), 1, + anon_sym_QMARK, + ACTIONS(2378), 1, + aux_sym_binary_expression_token2, + ACTIONS(2380), 1, + aux_sym_binary_expression_token4, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2379), 3, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2366), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 11, + ACTIONS(2276), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [30033] = 10, - ACTIONS(1575), 1, + [31089] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2395), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2400), 1, - aux_sym_final_modifier_token1, - ACTIONS(2403), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2406), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2409), 1, - sym_var_modifier, - ACTIONS(2412), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - ACTIONS(2398), 4, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_DOLLAR, - STATE(1087), 7, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym__modifier, - sym_static_modifier, - sym_visibility_modifier, - aux_sym_property_declaration_repeat1, - ACTIONS(2393), 15, - 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_false, - anon_sym_null, - anon_sym_true, - sym_name, - [30089] = 17, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1740), 1, - anon_sym_QMARK, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(1965), 10, anon_sym_AMP, - ACTIONS(2357), 1, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2371), 1, - anon_sym_AMP_AMP, - ACTIONS(2373), 1, - anon_sym_CARET, - ACTIONS(2381), 1, - anon_sym_GT_EQ, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1738), 10, + 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, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - [30159] = 22, - ACTIONS(1575), 1, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [31131] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2005), 10, anon_sym_AMP, - ACTIONS(2355), 1, anon_sym_QMARK, - ACTIONS(2357), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2003), 24, + 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, - ACTIONS(2363), 1, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, - ACTIONS(2365), 1, aux_sym_binary_expression_token3, - ACTIONS(2367), 1, aux_sym_binary_expression_token4, - ACTIONS(2369), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2381), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2385), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2389), 1, anon_sym_PERCENT, - ACTIONS(2359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2375), 2, + [31173] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1969), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2295), 5, + 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, aux_sym_binary_expression_token1, - [30239] = 20, - ACTIONS(1575), 1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [31215] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, anon_sym_AMP, - ACTIONS(2355), 1, - anon_sym_QMARK, - ACTIONS(2357), 1, + ACTIONS(2352), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2356), 1, anon_sym_QMARK_QMARK, - ACTIONS(2363), 1, - aux_sym_binary_expression_token2, - ACTIONS(2369), 1, + ACTIONS(2358), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, + ACTIONS(2360), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, + ACTIONS(2362), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2370), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2374), 1, anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2376), 1, + anon_sym_QMARK, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2379), 3, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2366), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 7, + ACTIONS(2288), 8, 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, - [30315] = 3, - ACTIONS(1575), 1, + [31289] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2034), 10, + ACTIONS(2037), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103327,7 +104121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2032), 24, + ACTIONS(2035), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103352,49 +104146,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [30357] = 3, - ACTIONS(1575), 1, + [31331] = 23, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2176), 10, + ACTIONS(2344), 1, + anon_sym_STAR_STAR, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, anon_sym_AMP, - anon_sym_QMARK, + ACTIONS(2352), 1, anon_sym_PIPE, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, + anon_sym_AMP_AMP, + ACTIONS(2362), 1, + anon_sym_CARET, + ACTIONS(2370), 1, + anon_sym_GT_EQ, + ACTIONS(2374), 1, + anon_sym_DOT, + ACTIONS(2376), 1, + anon_sym_QMARK, + ACTIONS(2378), 1, + aux_sym_binary_expression_token2, + ACTIONS(2380), 1, + aux_sym_binary_expression_token4, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2386), 1, + anon_sym_EQ_GT, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2174), 24, + ACTIONS(2091), 4, 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, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2366), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [30399] = 3, - ACTIONS(1575), 1, + [31413] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2038), 10, + ACTIONS(1961), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103405,7 +104219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2036), 24, + ACTIONS(1959), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103430,161 +104244,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [30441] = 21, - ACTIONS(1575), 1, + [31455] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, anon_sym_AMP, - ACTIONS(2355), 1, - anon_sym_QMARK, - ACTIONS(2357), 1, + ACTIONS(2352), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2356), 1, anon_sym_QMARK_QMARK, - ACTIONS(2363), 1, - aux_sym_binary_expression_token2, - ACTIONS(2367), 1, - aux_sym_binary_expression_token4, - ACTIONS(2369), 1, + ACTIONS(2358), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, + ACTIONS(2360), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, + ACTIONS(2362), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2370), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2374), 1, anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2376), 1, + anon_sym_QMARK, + ACTIONS(2378), 1, + aux_sym_binary_expression_token2, + ACTIONS(2380), 1, + aux_sym_binary_expression_token4, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2379), 3, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2366), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 6, + ACTIONS(2264), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - [30519] = 19, - ACTIONS(1575), 1, + [31535] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, anon_sym_AMP, - ACTIONS(2355), 1, - anon_sym_QMARK, - ACTIONS(2357), 1, + ACTIONS(2352), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2356), 1, anon_sym_QMARK_QMARK, - ACTIONS(2369), 1, + ACTIONS(2358), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, + ACTIONS(2360), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, + ACTIONS(2362), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2370), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2374), 1, anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2376), 1, + anon_sym_QMARK, + ACTIONS(2378), 1, + aux_sym_binary_expression_token2, + ACTIONS(2380), 1, + aux_sym_binary_expression_token4, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2379), 3, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2366), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 8, + ACTIONS(2262), 5, 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, - [30593] = 3, - ACTIONS(1575), 1, + [31615] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2172), 10, + ACTIONS(2344), 1, + anon_sym_STAR_STAR, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, anon_sym_AMP, - anon_sym_QMARK, + ACTIONS(2352), 1, anon_sym_PIPE, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, + anon_sym_AMP_AMP, + ACTIONS(2362), 1, + anon_sym_CARET, + ACTIONS(2370), 1, + anon_sym_GT_EQ, + ACTIONS(2374), 1, + anon_sym_DOT, + ACTIONS(2376), 1, + anon_sym_QMARK, + ACTIONS(2378), 1, + aux_sym_binary_expression_token2, + ACTIONS(2380), 1, + aux_sym_binary_expression_token4, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2170), 24, + ACTIONS(2366), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2260), 5, 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, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [30635] = 3, - ACTIONS(1575), 1, + [31695] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2116), 10, + ACTIONS(2069), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103595,7 +104432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2114), 24, + ACTIONS(2067), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103620,53 +104457,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [30677] = 19, - ACTIONS(1575), 1, + [31737] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1740), 1, - anon_sym_QMARK, - ACTIONS(2351), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, anon_sym_AMP, - ACTIONS(2357), 1, + ACTIONS(2352), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2356), 1, anon_sym_QMARK_QMARK, - ACTIONS(2369), 1, + ACTIONS(2358), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, + ACTIONS(2360), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, + ACTIONS(2362), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2370), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2374), 1, anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2376), 1, + anon_sym_QMARK, + ACTIONS(2378), 1, + aux_sym_binary_expression_token2, + ACTIONS(2380), 1, + aux_sym_binary_expression_token4, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, + ACTIONS(2368), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2366), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2258), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + [31817] = 19, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2344), 1, + anon_sym_STAR_STAR, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, + anon_sym_AMP, + ACTIONS(2352), 1, + anon_sym_PIPE, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, + anon_sym_AMP_AMP, + ACTIONS(2362), 1, + anon_sym_CARET, + ACTIONS(2370), 1, + anon_sym_GT_EQ, + ACTIONS(2374), 1, + anon_sym_DOT, + ACTIONS(2376), 1, + anon_sym_QMARK, + ACTIONS(2346), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2379), 3, + ACTIONS(2354), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2366), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 8, + ACTIONS(2286), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103675,10 +104570,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [30751] = 3, - ACTIONS(1575), 1, + [31891] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1605), 10, + ACTIONS(2135), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103689,7 +104584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 24, + ACTIONS(2133), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103714,71 +104609,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [30793] = 3, - ACTIONS(1575), 1, + [31933] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2030), 10, + ACTIONS(2344), 1, + anon_sym_STAR_STAR, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, anon_sym_AMP, - anon_sym_QMARK, + ACTIONS(2352), 1, anon_sym_PIPE, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, + anon_sym_AMP_AMP, + ACTIONS(2362), 1, + anon_sym_CARET, + ACTIONS(2370), 1, + anon_sym_GT_EQ, + ACTIONS(2374), 1, + anon_sym_DOT, + ACTIONS(2376), 1, + anon_sym_QMARK, + ACTIONS(2378), 1, + aux_sym_binary_expression_token2, + ACTIONS(2380), 1, + aux_sym_binary_expression_token4, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2028), 24, + ACTIONS(2366), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2284), 5, 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, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [30835] = 6, - ACTIONS(1575), 1, + [32013] = 13, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2389), 1, + ACTIONS(2348), 1, anon_sym_PERCENT, - ACTIONS(2387), 2, + ACTIONS(2370), 1, + anon_sym_GT_EQ, + ACTIONS(2374), 1, + anon_sym_DOT, + ACTIONS(2346), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 8, + ACTIONS(2354), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1686), 3, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1738), 22, + ACTIONS(2366), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1684), 12, 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, @@ -103787,69 +104716,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [30883] = 15, - ACTIONS(1575), 1, + [32075] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, anon_sym_AMP, - ACTIONS(2373), 1, + ACTIONS(2352), 1, + anon_sym_PIPE, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, + anon_sym_AMP_AMP, + ACTIONS(2362), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2370), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2374), 1, anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(1740), 2, + ACTIONS(2376), 1, anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2359), 2, + ACTIONS(2378), 1, + aux_sym_binary_expression_token2, + ACTIONS(2380), 1, + aux_sym_binary_expression_token4, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2379), 3, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2366), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 11, + ACTIONS(2268), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [30949] = 3, - ACTIONS(1575), 1, + [32155] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1982), 10, + ACTIONS(2175), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103860,7 +104788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1980), 24, + ACTIONS(2173), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103885,10 +104813,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [30991] = 3, - ACTIONS(1575), 1, + [32197] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2018), 10, + ACTIONS(1528), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103899,7 +104827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2016), 24, + ACTIONS(1526), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103924,68 +104852,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31033] = 22, - ACTIONS(1575), 1, + [32239] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2143), 10, anon_sym_AMP, - ACTIONS(2355), 1, anon_sym_QMARK, - ACTIONS(2357), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2141), 24, + 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, - ACTIONS(2363), 1, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, - ACTIONS(2365), 1, aux_sym_binary_expression_token3, - ACTIONS(2367), 1, aux_sym_binary_expression_token4, - ACTIONS(2369), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2381), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2385), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2389), 1, anon_sym_PERCENT, - ACTIONS(2359), 2, + [32281] = 15, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2344), 1, + anon_sym_STAR_STAR, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, + anon_sym_AMP, + ACTIONS(2362), 1, + anon_sym_CARET, + ACTIONS(2370), 1, + anon_sym_GT_EQ, + ACTIONS(2374), 1, + anon_sym_DOT, + ACTIONS(1686), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2379), 3, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2366), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2267), 5, + ACTIONS(1684), 11, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, - [31113] = 3, - ACTIONS(1575), 1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [32347] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2164), 10, + ACTIONS(2065), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103996,7 +104956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2162), 24, + ACTIONS(2063), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104021,10 +104981,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31155] = 3, - ACTIONS(1575), 1, + [32389] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2092), 10, + ACTIONS(2077), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104035,7 +104995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2090), 24, + ACTIONS(2075), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104060,10 +105020,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31197] = 3, - ACTIONS(1575), 1, + [32431] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2062), 10, + ACTIONS(2081), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104074,7 +105034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2060), 24, + ACTIONS(2079), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104099,10 +105059,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31239] = 3, - ACTIONS(1575), 1, + [32473] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2112), 10, + ACTIONS(1989), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104113,7 +105073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2110), 24, + ACTIONS(1987), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104138,10 +105098,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31281] = 3, - ACTIONS(1575), 1, + [32515] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2140), 10, + ACTIONS(2085), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104152,7 +105112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2138), 24, + ACTIONS(2083), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104177,68 +105137,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31323] = 22, - ACTIONS(1575), 1, + [32557] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(1534), 10, anon_sym_AMP, - ACTIONS(2355), 1, anon_sym_QMARK, - ACTIONS(2357), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1532), 24, + 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, - ACTIONS(2363), 1, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, - ACTIONS(2365), 1, aux_sym_binary_expression_token3, - ACTIONS(2367), 1, aux_sym_binary_expression_token4, - ACTIONS(2369), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2381), 1, - anon_sym_GT_EQ, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2375), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2383), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2379), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2271), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - aux_sym_binary_expression_token1, - [31403] = 3, - ACTIONS(1575), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [32599] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2104), 10, + ACTIONS(2057), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104249,7 +105190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2102), 24, + ACTIONS(2055), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104274,10 +105215,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31445] = 3, - ACTIONS(1575), 1, + [32641] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2160), 10, + ACTIONS(2053), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104288,7 +105229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2158), 24, + ACTIONS(2051), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104313,65 +105254,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31487] = 19, - ACTIONS(1575), 1, + [32683] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2275), 1, - anon_sym_QMARK, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2089), 10, anon_sym_AMP, - ACTIONS(2357), 1, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2361), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2369), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, - anon_sym_AMP_AMP, - ACTIONS(2373), 1, - anon_sym_CARET, - ACTIONS(2381), 1, - anon_sym_GT_EQ, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2273), 8, + 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, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [31561] = 3, - ACTIONS(1575), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [32725] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1583), 10, + ACTIONS(2097), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104382,7 +105307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1581), 24, + ACTIONS(2095), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104407,65 +105332,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31603] = 19, - ACTIONS(1575), 1, + [32767] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(1542), 10, anon_sym_AMP, - ACTIONS(2355), 1, anon_sym_QMARK, - ACTIONS(2357), 1, anon_sym_PIPE, - ACTIONS(2361), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2369), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, - anon_sym_AMP_AMP, - ACTIONS(2373), 1, - anon_sym_CARET, - ACTIONS(2381), 1, - anon_sym_GT_EQ, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2231), 8, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1540), 24, 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, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [31677] = 3, - ACTIONS(1575), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [32809] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1579), 10, + ACTIONS(1985), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104476,7 +105385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1577), 24, + ACTIONS(1983), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104501,10 +105410,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31719] = 3, - ACTIONS(1575), 1, + [32851] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2148), 10, + ACTIONS(2021), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104515,7 +105424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2146), 24, + ACTIONS(2019), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104540,10 +105449,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31761] = 3, - ACTIONS(1575), 1, + [32893] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1932), 10, + ACTIONS(2131), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104554,7 +105463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1930), 24, + ACTIONS(2129), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104579,10 +105488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31803] = 3, - ACTIONS(1575), 1, + [32935] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1587), 10, + ACTIONS(2101), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104593,7 +105502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1585), 24, + ACTIONS(2099), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104618,10 +105527,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31845] = 3, - ACTIONS(1575), 1, + [32977] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2168), 10, + ACTIONS(2282), 1, + anon_sym_QMARK, + ACTIONS(2344), 1, + anon_sym_STAR_STAR, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, + anon_sym_AMP, + ACTIONS(2352), 1, + anon_sym_PIPE, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, + anon_sym_AMP_AMP, + ACTIONS(2362), 1, + anon_sym_CARET, + ACTIONS(2370), 1, + anon_sym_GT_EQ, + ACTIONS(2374), 1, + anon_sym_DOT, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2368), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2366), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2280), 8, + 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, + [33051] = 19, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2344), 1, + anon_sym_STAR_STAR, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, + anon_sym_AMP, + ACTIONS(2352), 1, + anon_sym_PIPE, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, + anon_sym_AMP_AMP, + ACTIONS(2362), 1, + anon_sym_CARET, + ACTIONS(2370), 1, + anon_sym_GT_EQ, + ACTIONS(2374), 1, + anon_sym_DOT, + ACTIONS(2376), 1, + anon_sym_QMARK, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2368), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2366), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2274), 8, + 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, + [33125] = 22, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2344), 1, + anon_sym_STAR_STAR, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, + anon_sym_AMP, + ACTIONS(2352), 1, + anon_sym_PIPE, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, + anon_sym_AMP_AMP, + ACTIONS(2362), 1, + anon_sym_CARET, + ACTIONS(2370), 1, + anon_sym_GT_EQ, + ACTIONS(2374), 1, + anon_sym_DOT, + ACTIONS(2376), 1, + anon_sym_QMARK, + ACTIONS(2378), 1, + aux_sym_binary_expression_token2, + ACTIONS(2380), 1, + aux_sym_binary_expression_token4, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2368), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2366), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2278), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + [33205] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2105), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104632,7 +105709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2166), 24, + ACTIONS(2103), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104657,10 +105734,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31887] = 3, - ACTIONS(1575), 1, + [33247] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2132), 10, + ACTIONS(2163), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104671,7 +105748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2130), 24, + ACTIONS(2161), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104696,68 +105773,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31929] = 22, - ACTIONS(1575), 1, + [33289] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(1981), 10, anon_sym_AMP, - ACTIONS(2355), 1, anon_sym_QMARK, - ACTIONS(2357), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1979), 24, + 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, - ACTIONS(2363), 1, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, - ACTIONS(2365), 1, aux_sym_binary_expression_token3, - ACTIONS(2367), 1, aux_sym_binary_expression_token4, - ACTIONS(2369), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2381), 1, - anon_sym_GT_EQ, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2375), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2383), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2379), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2283), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - aux_sym_binary_expression_token1, - [32009] = 3, - ACTIONS(1575), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [33331] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2128), 10, + ACTIONS(1877), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104768,7 +105826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2126), 24, + ACTIONS(1875), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104793,10 +105851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [32051] = 3, - ACTIONS(1575), 1, + [33373] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1573), 10, + ACTIONS(2093), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104807,7 +105865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1571), 24, + ACTIONS(2091), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104832,10 +105890,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [32093] = 3, - ACTIONS(1575), 1, + [33415] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2180), 10, + ACTIONS(2171), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104846,7 +105904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2178), 24, + ACTIONS(2169), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104871,10 +105929,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [32135] = 3, - ACTIONS(1575), 1, + [33457] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2188), 10, + ACTIONS(2179), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104885,7 +105943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2186), 24, + ACTIONS(2177), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104910,10 +105968,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [32177] = 3, - ACTIONS(1575), 1, + [33499] = 8, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2192), 10, + ACTIONS(2390), 1, + anon_sym_STAR_STAR, + ACTIONS(2396), 1, + anon_sym_PERCENT, + ACTIONS(2388), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1686), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104922,18 +105993,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2190), 24, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1684), 17, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_RPAREN, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -104945,248 +106010,281 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, - anon_sym_PERCENT, - [32219] = 22, - ACTIONS(1575), 1, + [33550] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2396), 1, + anon_sym_PERCENT, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2355), 1, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2357), 1, + ACTIONS(2402), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2363), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2365), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2367), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2369), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, + ACTIONS(2414), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, + ACTIONS(2416), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2424), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2426), 1, anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, + ACTIONS(2394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2379), 3, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2194), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2285), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - aux_sym_binary_expression_token1, - [32299] = 3, - ACTIONS(1575), 1, + [33629] = 16, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_LPAREN, + ACTIONS(1680), 1, + anon_sym_QMARK, + ACTIONS(2428), 1, + sym_name, + STATE(1418), 1, + sym_qualified_name, + STATE(1575), 1, + sym_type, + STATE(1776), 1, + sym_const_element, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2520), 1, + sym__reserved_identifier, + STATE(2556), 1, + sym_namespace_name, + ACTIONS(2430), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1454), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(1409), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1674), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [33696] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2022), 10, + ACTIONS(2390), 1, + anon_sym_STAR_STAR, + ACTIONS(2396), 1, + anon_sym_PERCENT, + ACTIONS(2398), 1, anon_sym_AMP, + ACTIONS(2400), 1, anon_sym_QMARK, + ACTIONS(2402), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_binary_expression_token1, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, + ACTIONS(2414), 1, anon_sym_AMP_AMP, + ACTIONS(2416), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2424), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [32341] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2200), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2198), 24, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(2268), 4, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_RPAREN, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [32383] = 23, - ACTIONS(1575), 1, + [33775] = 13, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2396), 1, + anon_sym_PERCENT, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1686), 3, anon_sym_AMP, - ACTIONS(2355), 1, anon_sym_QMARK, - ACTIONS(2357), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2422), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2420), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1684), 11, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, - ACTIONS(2363), 1, aux_sym_binary_expression_token2, - ACTIONS(2365), 1, aux_sym_binary_expression_token3, - ACTIONS(2367), 1, aux_sym_binary_expression_token4, - ACTIONS(2369), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2381), 1, + [33836] = 15, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2390), 1, + anon_sym_STAR_STAR, + ACTIONS(2396), 1, + anon_sym_PERCENT, + ACTIONS(2398), 1, + anon_sym_AMP, + ACTIONS(2416), 1, + anon_sym_CARET, + ACTIONS(2424), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2426), 1, anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2415), 1, - anon_sym_EQ_GT, - ACTIONS(2359), 2, + ACTIONS(1686), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, + ACTIONS(2394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2379), 3, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2114), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_binary_expression_token1, - ACTIONS(2377), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [32465] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2204), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2202), 24, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1684), 10, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_RPAREN, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [32507] = 3, - ACTIONS(1575), 1, + [33901] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2120), 10, + ACTIONS(2390), 1, + anon_sym_STAR_STAR, + ACTIONS(2396), 1, + anon_sym_PERCENT, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1686), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105195,18 +106293,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2118), 24, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1684), 21, 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, - anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -105221,127 +106315,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_PERCENT, - [32549] = 22, - ACTIONS(1575), 1, + [33948] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(1686), 1, + anon_sym_QMARK, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2396), 1, + anon_sym_PERCENT, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2355), 1, - anon_sym_QMARK, - ACTIONS(2357), 1, + ACTIONS(2402), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2363), 1, - aux_sym_binary_expression_token2, - ACTIONS(2365), 1, - aux_sym_binary_expression_token3, - ACTIONS(2367), 1, - aux_sym_binary_expression_token4, - ACTIONS(2369), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, + ACTIONS(2414), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, + ACTIONS(2416), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2424), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2426), 1, anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, + ACTIONS(2394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2379), 3, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2289), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1684), 7, anon_sym_COMMA, anon_sym_EQ_GT, + anon_sym_RPAREN, aux_sym_binary_expression_token1, - [32629] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, - anon_sym_AMP, - ACTIONS(2355), 1, - anon_sym_QMARK, - ACTIONS(2357), 1, - anon_sym_PIPE, - ACTIONS(2361), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2363), 1, aux_sym_binary_expression_token2, - ACTIONS(2365), 1, aux_sym_binary_expression_token3, - ACTIONS(2367), 1, aux_sym_binary_expression_token4, - ACTIONS(2369), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, - anon_sym_AMP_AMP, - ACTIONS(2373), 1, - anon_sym_CARET, - ACTIONS(2381), 1, - anon_sym_GT_EQ, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2375), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2383), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2379), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2377), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2291), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - aux_sym_binary_expression_token1, - [32709] = 3, - ACTIONS(1575), 1, + [34021] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2124), 10, + ACTIONS(2390), 1, + anon_sym_STAR_STAR, + ACTIONS(1686), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105352,16 +106385,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2122), 24, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1684), 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, - anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -105377,187 +106408,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [32751] = 22, - ACTIONS(1575), 1, + [34064] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2396), 1, + anon_sym_PERCENT, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2355), 1, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2357), 1, + ACTIONS(2402), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2363), 1, - aux_sym_binary_expression_token2, - ACTIONS(2365), 1, - aux_sym_binary_expression_token3, - ACTIONS(2367), 1, - aux_sym_binary_expression_token4, - ACTIONS(2369), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, + ACTIONS(2414), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, + ACTIONS(2416), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2424), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2426), 1, anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, + ACTIONS(2394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2379), 3, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2293), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1684), 7, anon_sym_COMMA, anon_sym_EQ_GT, + anon_sym_RPAREN, aux_sym_binary_expression_token1, - [32831] = 4, - ACTIONS(1575), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [34137] = 21, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2417), 1, - anon_sym_COLON, - ACTIONS(2152), 10, + ACTIONS(2390), 1, + anon_sym_STAR_STAR, + ACTIONS(2396), 1, + anon_sym_PERCENT, + ACTIONS(2398), 1, anon_sym_AMP, + ACTIONS(2400), 1, anon_sym_QMARK, + ACTIONS(2402), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2150), 22, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_binary_expression_token1, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, + ACTIONS(2414), 1, anon_sym_AMP_AMP, + ACTIONS(2416), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2424), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [32874] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2419), 1, - anon_sym_STAR_STAR, - ACTIONS(2423), 1, - anon_sym_PERCENT, - ACTIONS(2421), 2, + ACTIONS(2394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 8, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1738), 21, + ACTIONS(2420), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1684), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, aux_sym_binary_expression_token1, + aux_sym_binary_expression_token3, + [34214] = 20, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2390), 1, + anon_sym_STAR_STAR, + ACTIONS(2396), 1, + anon_sym_PERCENT, + ACTIONS(2398), 1, + anon_sym_AMP, + ACTIONS(2400), 1, + anon_sym_QMARK, + ACTIONS(2402), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, + ACTIONS(2414), 1, anon_sym_AMP_AMP, + ACTIONS(2416), 1, anon_sym_CARET, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2422), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [32921] = 17, - ACTIONS(1575), 1, + ACTIONS(1684), 6, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [34289] = 17, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1740), 1, + ACTIONS(1686), 1, anon_sym_QMARK, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2427), 1, + ACTIONS(2402), 1, anon_sym_PIPE, - ACTIONS(2431), 1, + ACTIONS(2414), 1, anon_sym_AMP_AMP, - ACTIONS(2433), 1, + ACTIONS(2416), 1, anon_sym_CARET, - ACTIONS(2441), 1, + ACTIONS(2424), 1, anon_sym_GT_EQ, - ACTIONS(2445), 1, + ACTIONS(2426), 1, anon_sym_DOT, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2439), 3, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 9, + ACTIONS(1684), 9, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -105567,47 +106625,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - [32990] = 16, - ACTIONS(1575), 1, + [34358] = 16, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1740), 1, + ACTIONS(1686), 1, anon_sym_QMARK, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2427), 1, + ACTIONS(2402), 1, anon_sym_PIPE, - ACTIONS(2433), 1, + ACTIONS(2416), 1, anon_sym_CARET, - ACTIONS(2441), 1, + ACTIONS(2424), 1, anon_sym_GT_EQ, - ACTIONS(2445), 1, + ACTIONS(2426), 1, anon_sym_DOT, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2439), 3, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 10, + ACTIONS(1684), 10, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -105618,101 +106676,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [33057] = 22, - ACTIONS(1575), 1, + [34425] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2449), 1, + ACTIONS(2402), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2414), 1, + anon_sym_AMP_AMP, + ACTIONS(2416), 1, + anon_sym_CARET, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2439), 3, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2293), 4, + ACTIONS(2258), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - ACTIONS(2437), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33136] = 14, - ACTIONS(1575), 1, + [34504] = 14, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2441), 1, + ACTIONS(2424), 1, anon_sym_GT_EQ, - ACTIONS(2445), 1, + ACTIONS(2426), 1, anon_sym_DOT, - ACTIONS(1740), 2, + ACTIONS(1686), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2439), 3, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 11, + ACTIONS(1684), 11, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -105724,120 +106782,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [33199] = 19, - ACTIONS(1575), 1, + [34567] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1740), 1, - anon_sym_QMARK, - ACTIONS(2419), 1, - anon_sym_STAR_STAR, - ACTIONS(2423), 1, - anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2432), 1, + anon_sym_COLON, + ACTIONS(2109), 10, anon_sym_AMP, - ACTIONS(2427), 1, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2457), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2435), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2443), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2439), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1738), 7, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2107), 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, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [33272] = 19, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2419), 1, - anon_sym_STAR_STAR, - ACTIONS(2423), 1, - anon_sym_PERCENT, - ACTIONS(2425), 1, - anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(2433), 1, anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, - anon_sym_QMARK, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2457), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2439), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2437), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 7, - 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, - [33345] = 4, - ACTIONS(1575), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [34610] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, - anon_sym_STAR_STAR, - ACTIONS(1740), 10, + ACTIONS(2432), 1, + anon_sym_COLON, + ACTIONS(2113), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105848,14 +106837,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 22, + ACTIONS(2111), 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, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -105871,310 +106860,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33388] = 21, - ACTIONS(1575), 1, + [34653] = 11, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, - anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, + ACTIONS(2424), 1, anon_sym_GT_EQ, - ACTIONS(2445), 1, + ACTIONS(2426), 1, anon_sym_DOT, - ACTIONS(2447), 1, - anon_sym_QMARK, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, - aux_sym_binary_expression_token2, - ACTIONS(2455), 1, - aux_sym_binary_expression_token4, - ACTIONS(2457), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2439), 3, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1738), 5, + ACTIONS(1686), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1684), 15, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - [33465] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2419), 1, - anon_sym_STAR_STAR, - ACTIONS(2423), 1, - anon_sym_PERCENT, - ACTIONS(2425), 1, - anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, - anon_sym_QMARK, - ACTIONS(2449), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, aux_sym_binary_expression_token3, - ACTIONS(2455), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + 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, + [34710] = 9, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2390), 1, + anon_sym_STAR_STAR, + ACTIONS(2396), 1, + anon_sym_PERCENT, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2439), 3, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1686), 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(2267), 4, + ACTIONS(1684), 16, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - ACTIONS(2437), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [33544] = 20, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2419), 1, - anon_sym_STAR_STAR, - ACTIONS(2423), 1, - anon_sym_PERCENT, - ACTIONS(2425), 1, - anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, - anon_sym_QMARK, - ACTIONS(2449), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, aux_sym_binary_expression_token2, - ACTIONS(2457), 1, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2439), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2437), 4, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 6, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [33619] = 22, - ACTIONS(1575), 1, + [34763] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2449), 1, + ACTIONS(2402), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2414), 1, + anon_sym_AMP_AMP, + ACTIONS(2416), 1, + anon_sym_CARET, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2439), 3, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2271), 4, + ACTIONS(2260), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - ACTIONS(2437), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33698] = 13, - ACTIONS(1575), 1, + [34842] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1740), 3, + ACTIONS(2398), 1, anon_sym_AMP, + ACTIONS(2400), 1, anon_sym_QMARK, + ACTIONS(2402), 1, anon_sym_PIPE, - ACTIONS(2439), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2437), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1738), 11, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_binary_expression_token1, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, + ACTIONS(2414), 1, anon_sym_AMP_AMP, + ACTIONS(2416), 1, anon_sym_CARET, - [33759] = 11, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2419), 1, - anon_sym_STAR_STAR, - ACTIONS(2423), 1, - anon_sym_PERCENT, - ACTIONS(2441), 1, + ACTIONS(2424), 1, anon_sym_GT_EQ, - ACTIONS(2445), 1, + ACTIONS(2426), 1, anon_sym_DOT, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2439), 3, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1740), 5, + ACTIONS(2262), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2420), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [34921] = 7, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2390), 1, + anon_sym_STAR_STAR, + ACTIONS(2396), 1, + anon_sym_PERCENT, + ACTIONS(2388), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1686), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1738), 15, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1684), 19, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -106189,97 +107101,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [33816] = 16, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1721), 1, - anon_sym_LPAREN, - ACTIONS(1723), 1, - anon_sym_QMARK, - ACTIONS(2459), 1, - sym_name, - STATE(1415), 1, - sym_qualified_name, - STATE(1571), 1, - sym__type, - STATE(1751), 1, - sym_const_element, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2580), 1, - sym__reserved_identifier, - STATE(2599), 1, - sym_namespace_name, - ACTIONS(2461), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1453), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - STATE(1402), 4, - sym__types, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1717), 12, - 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_false, - anon_sym_null, - anon_sym_true, - [33883] = 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [34970] = 16, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1721), 1, + ACTIONS(1678), 1, anon_sym_LPAREN, - ACTIONS(1723), 1, + ACTIONS(1680), 1, anon_sym_QMARK, - ACTIONS(2459), 1, + ACTIONS(2428), 1, sym_name, - STATE(1415), 1, + STATE(1418), 1, sym_qualified_name, - STATE(1583), 1, - sym__type, - STATE(1746), 1, + STATE(1609), 1, + sym_type, + STATE(1815), 1, sym_const_element, - STATE(2531), 1, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2580), 1, + STATE(2520), 1, sym__reserved_identifier, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - ACTIONS(2461), 3, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1453), 3, + STATE(1454), 3, sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - STATE(1402), 4, + STATE(1409), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1717), 12, + ACTIONS(1674), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -106292,287 +107157,511 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [33950] = 22, - ACTIONS(1575), 1, + [35037] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2449), 1, + ACTIONS(2402), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2414), 1, + anon_sym_AMP_AMP, + ACTIONS(2416), 1, + anon_sym_CARET, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2439), 3, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2291), 4, + ACTIONS(2278), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - ACTIONS(2437), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34029] = 9, - ACTIONS(1575), 1, + [35116] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2445), 1, + ACTIONS(2398), 1, + anon_sym_AMP, + ACTIONS(2400), 1, + anon_sym_QMARK, + ACTIONS(2402), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2414), 1, + anon_sym_AMP_AMP, + ACTIONS(2416), 1, + anon_sym_CARET, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, anon_sym_DOT, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1740), 8, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2422), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2420), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2288), 7, + 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, + [35189] = 22, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2390), 1, + anon_sym_STAR_STAR, + ACTIONS(2396), 1, + anon_sym_PERCENT, + ACTIONS(2398), 1, anon_sym_AMP, + ACTIONS(2400), 1, anon_sym_QMARK, + ACTIONS(2402), 1, anon_sym_PIPE, + ACTIONS(2404), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2406), 1, + aux_sym_binary_expression_token2, + ACTIONS(2408), 1, + aux_sym_binary_expression_token3, + ACTIONS(2410), 1, + aux_sym_binary_expression_token4, + ACTIONS(2412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2414), 1, + anon_sym_AMP_AMP, + ACTIONS(2416), 1, + anon_sym_CARET, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1738), 16, + ACTIONS(2264), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, + ACTIONS(2420), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [35268] = 23, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2390), 1, + anon_sym_STAR_STAR, + ACTIONS(2396), 1, + anon_sym_PERCENT, + ACTIONS(2398), 1, + anon_sym_AMP, + ACTIONS(2400), 1, + anon_sym_QMARK, + ACTIONS(2402), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, + ACTIONS(2414), 1, anon_sym_AMP_AMP, + ACTIONS(2416), 1, anon_sym_CARET, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2434), 1, + anon_sym_EQ_GT, + ACTIONS(2388), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2091), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2422), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [34082] = 7, - ACTIONS(1575), 1, + [35349] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1740), 8, + ACTIONS(2398), 1, anon_sym_AMP, + ACTIONS(2400), 1, anon_sym_QMARK, + ACTIONS(2402), 1, anon_sym_PIPE, + ACTIONS(2404), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2414), 1, + anon_sym_AMP_AMP, + ACTIONS(2416), 1, + anon_sym_CARET, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1738), 19, + ACTIONS(2420), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2286), 7, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, + [35422] = 19, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2282), 1, + anon_sym_QMARK, + ACTIONS(2390), 1, + anon_sym_STAR_STAR, + ACTIONS(2396), 1, + anon_sym_PERCENT, + ACTIONS(2398), 1, + anon_sym_AMP, + ACTIONS(2402), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, + ACTIONS(2414), 1, anon_sym_AMP_AMP, + ACTIONS(2416), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2424), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - [34131] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2417), 1, - anon_sym_COLON, - ACTIONS(2156), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2154), 22, + ACTIONS(2420), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2280), 7, 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, + [35495] = 22, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2390), 1, anon_sym_STAR_STAR, + ACTIONS(2396), 1, + anon_sym_PERCENT, + ACTIONS(2398), 1, + anon_sym_AMP, + ACTIONS(2400), 1, + anon_sym_QMARK, + ACTIONS(2402), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, + ACTIONS(2414), 1, anon_sym_AMP_AMP, + ACTIONS(2416), 1, anon_sym_CARET, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2422), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2276), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [34174] = 15, - ACTIONS(1575), 1, + [35574] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2433), 1, + ACTIONS(2400), 1, + anon_sym_QMARK, + ACTIONS(2402), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2414), 1, + anon_sym_AMP_AMP, + ACTIONS(2416), 1, anon_sym_CARET, - ACTIONS(2441), 1, + ACTIONS(2424), 1, anon_sym_GT_EQ, - ACTIONS(2445), 1, + ACTIONS(2426), 1, anon_sym_DOT, - ACTIONS(1740), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2439), 3, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1738), 10, + ACTIONS(2274), 7, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [34239] = 8, - ACTIONS(1575), 1, + [35647] = 19, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2272), 1, + anon_sym_QMARK, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2398), 1, + anon_sym_AMP, + ACTIONS(2402), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2414), 1, + anon_sym_AMP_AMP, + ACTIONS(2416), 1, + anon_sym_CARET, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1740), 8, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1738), 17, + ACTIONS(2420), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2270), 7, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_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, - [34290] = 4, - ACTIONS(1575), 1, + [35720] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(1740), 10, + ACTIONS(1686), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106583,7 +107672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 22, + ACTIONS(1684), 22, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -106606,45 +107695,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34333] = 16, + [35763] = 16, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1721), 1, + ACTIONS(1678), 1, anon_sym_LPAREN, - ACTIONS(1723), 1, + ACTIONS(1680), 1, anon_sym_QMARK, - ACTIONS(2459), 1, + ACTIONS(2428), 1, sym_name, - STATE(1415), 1, + STATE(1418), 1, sym_qualified_name, - STATE(1562), 1, - sym__type, - STATE(1821), 1, + STATE(1629), 1, + sym_type, + STATE(1865), 1, sym_const_element, - STATE(2531), 1, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2580), 1, + STATE(2520), 1, sym__reserved_identifier, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - ACTIONS(2461), 3, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1453), 3, + STATE(1454), 3, sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - STATE(1402), 4, + STATE(1409), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1717), 12, + ACTIONS(1674), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -106657,210 +107746,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [34400] = 19, - ACTIONS(1575), 1, + [35830] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2449), 1, + ACTIONS(2402), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2457), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2439), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2437), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2261), 7, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_binary_expression_token1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - [34473] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2419), 1, - anon_sym_STAR_STAR, - ACTIONS(2423), 1, - anon_sym_PERCENT, - ACTIONS(2425), 1, - anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, + ACTIONS(2412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2414), 1, anon_sym_AMP_AMP, - ACTIONS(2433), 1, + ACTIONS(2416), 1, anon_sym_CARET, - ACTIONS(2441), 1, + ACTIONS(2424), 1, anon_sym_GT_EQ, - ACTIONS(2445), 1, + ACTIONS(2426), 1, anon_sym_DOT, - ACTIONS(2447), 1, - anon_sym_QMARK, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, - aux_sym_binary_expression_token2, - ACTIONS(2453), 1, - aux_sym_binary_expression_token3, - ACTIONS(2455), 1, - aux_sym_binary_expression_token4, - ACTIONS(2457), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2439), 3, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2295), 4, + ACTIONS(1987), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - ACTIONS(2437), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34552] = 19, - ACTIONS(1575), 1, + [35909] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2427), 1, + ACTIONS(2400), 1, + anon_sym_QMARK, + ACTIONS(2402), 1, anon_sym_PIPE, - ACTIONS(2431), 1, + ACTIONS(2404), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2406), 1, + aux_sym_binary_expression_token2, + ACTIONS(2408), 1, + aux_sym_binary_expression_token3, + ACTIONS(2410), 1, + aux_sym_binary_expression_token4, + ACTIONS(2412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2414), 1, anon_sym_AMP_AMP, - ACTIONS(2433), 1, + ACTIONS(2416), 1, anon_sym_CARET, - ACTIONS(2441), 1, + ACTIONS(2424), 1, anon_sym_GT_EQ, - ACTIONS(2445), 1, + ACTIONS(2426), 1, anon_sym_DOT, - ACTIONS(2447), 1, - anon_sym_QMARK, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2457), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2439), 3, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2259), 7, + ACTIONS(2284), 4, 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, - [34625] = 16, + ACTIONS(2420), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [35988] = 16, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1721), 1, + ACTIONS(1678), 1, anon_sym_LPAREN, - ACTIONS(1723), 1, + ACTIONS(1680), 1, anon_sym_QMARK, - ACTIONS(2459), 1, + ACTIONS(2428), 1, sym_name, - STATE(1415), 1, + STATE(1418), 1, sym_qualified_name, - STATE(1616), 1, - sym__type, - STATE(1841), 1, + STATE(1627), 1, + sym_type, + STATE(1797), 1, sym_const_element, - STATE(2531), 1, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2580), 1, + STATE(2520), 1, sym__reserved_identifier, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - ACTIONS(2461), 3, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1453), 3, + STATE(1454), 3, sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - STATE(1402), 4, + STATE(1409), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1717), 12, + ACTIONS(1674), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -106873,4000 +107911,4133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [34692] = 19, - ACTIONS(1575), 1, + [36055] = 23, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2275), 1, - anon_sym_QMARK, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2427), 1, + ACTIONS(2400), 1, + anon_sym_QMARK, + ACTIONS(2402), 1, anon_sym_PIPE, - ACTIONS(2431), 1, + ACTIONS(2404), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2406), 1, + aux_sym_binary_expression_token2, + ACTIONS(2408), 1, + aux_sym_binary_expression_token3, + ACTIONS(2410), 1, + aux_sym_binary_expression_token4, + ACTIONS(2412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2414), 1, anon_sym_AMP_AMP, - ACTIONS(2433), 1, + ACTIONS(2416), 1, anon_sym_CARET, - ACTIONS(2441), 1, + ACTIONS(2424), 1, anon_sym_GT_EQ, - ACTIONS(2445), 1, + ACTIONS(2426), 1, anon_sym_DOT, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2457), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2436), 1, + anon_sym_EQ_GT, + ACTIONS(2091), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2439), 3, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2273), 7, - 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, - [34765] = 19, - ACTIONS(1575), 1, + [36135] = 24, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2281), 1, - anon_sym_QMARK, - ACTIONS(2419), 1, - anon_sym_STAR_STAR, - ACTIONS(2423), 1, - anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2427), 1, + ACTIONS(2292), 1, + anon_sym_QMARK, + ACTIONS(2294), 1, anon_sym_PIPE, - ACTIONS(2431), 1, + ACTIONS(2298), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2304), 1, anon_sym_AMP_AMP, - ACTIONS(2433), 1, + ACTIONS(2306), 1, anon_sym_CARET, - ACTIONS(2441), 1, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2445), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2457), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2322), 1, + anon_sym_PERCENT, + ACTIONS(2324), 1, + aux_sym_binary_expression_token2, + ACTIONS(2326), 1, + aux_sym_binary_expression_token3, + ACTIONS(2328), 1, + aux_sym_binary_expression_token4, + ACTIONS(2438), 1, + anon_sym_COMMA, + ACTIONS(2440), 1, + anon_sym_EQ_GT, + STATE(2065), 1, + aux_sym_match_condition_list_repeat1, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2439), 3, + ACTIONS(2320), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2279), 7, - 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, - [34838] = 22, - ACTIONS(1575), 1, + [36217] = 23, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2348), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2350), 1, anon_sym_AMP, - ACTIONS(2427), 1, + ACTIONS(2352), 1, anon_sym_PIPE, - ACTIONS(2431), 1, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, anon_sym_AMP_AMP, - ACTIONS(2433), 1, + ACTIONS(2362), 1, anon_sym_CARET, - ACTIONS(2441), 1, + ACTIONS(2370), 1, anon_sym_GT_EQ, - ACTIONS(2445), 1, + ACTIONS(2374), 1, anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2376), 1, anon_sym_QMARK, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2378), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, - aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2380), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2444), 1, + anon_sym_COMMA, + ACTIONS(2346), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2439), 3, + ACTIONS(2442), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2277), 4, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_binary_expression_token1, - ACTIONS(2437), 4, + ACTIONS(2366), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34917] = 22, - ACTIONS(1575), 1, + [36297] = 23, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, - anon_sym_STAR_STAR, - ACTIONS(2423), 1, - anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2427), 1, + ACTIONS(2292), 1, + anon_sym_QMARK, + ACTIONS(2294), 1, anon_sym_PIPE, - ACTIONS(2431), 1, + ACTIONS(2298), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2304), 1, anon_sym_AMP_AMP, - ACTIONS(2433), 1, + ACTIONS(2306), 1, anon_sym_CARET, - ACTIONS(2441), 1, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2445), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2447), 1, - anon_sym_QMARK, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2322), 1, + anon_sym_PERCENT, + ACTIONS(2324), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, + ACTIONS(2326), 1, aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2328), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2446), 1, + anon_sym_EQ_GT, + ACTIONS(2091), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2439), 3, + ACTIONS(2320), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2162), 4, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_binary_expression_token1, - ACTIONS(2437), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34996] = 22, - ACTIONS(1575), 1, + [36377] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2348), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2350), 1, anon_sym_AMP, - ACTIONS(2427), 1, + ACTIONS(2352), 1, anon_sym_PIPE, - ACTIONS(2431), 1, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, anon_sym_AMP_AMP, - ACTIONS(2433), 1, + ACTIONS(2362), 1, anon_sym_CARET, - ACTIONS(2441), 1, + ACTIONS(2370), 1, anon_sym_GT_EQ, - ACTIONS(2445), 1, + ACTIONS(2374), 1, anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2376), 1, anon_sym_QMARK, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2378), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, - aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2380), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2346), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2439), 3, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2283), 4, + ACTIONS(2448), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_binary_expression_token1, - ACTIONS(2437), 4, + ACTIONS(2366), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35075] = 22, - ACTIONS(1575), 1, + [36455] = 17, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(43), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1666), 1, + sym_name, + ACTIONS(1678), 1, + anon_sym_LPAREN, + ACTIONS(1680), 1, + anon_sym_QMARK, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + STATE(1253), 1, + sym_readonly_modifier, + STATE(1418), 1, + sym_qualified_name, + STATE(2110), 1, + sym_variable_name, + STATE(2158), 1, + sym_type, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + STATE(1454), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(1409), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1674), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [36523] = 17, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(43), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1666), 1, + sym_name, + ACTIONS(1678), 1, + anon_sym_LPAREN, + ACTIONS(1680), 1, + anon_sym_QMARK, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + STATE(1249), 1, + sym_readonly_modifier, + STATE(1418), 1, + sym_qualified_name, + STATE(1977), 1, + sym_variable_name, + STATE(2315), 1, + sym_type, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + STATE(1454), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(1409), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1674), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [36591] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2348), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2350), 1, anon_sym_AMP, - ACTIONS(2427), 1, + ACTIONS(2352), 1, anon_sym_PIPE, - ACTIONS(2431), 1, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, anon_sym_AMP_AMP, - ACTIONS(2433), 1, + ACTIONS(2362), 1, anon_sym_CARET, - ACTIONS(2441), 1, + ACTIONS(2370), 1, anon_sym_GT_EQ, - ACTIONS(2445), 1, + ACTIONS(2374), 1, anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2376), 1, anon_sym_QMARK, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2378), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, - aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2380), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2346), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2439), 3, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2285), 4, + ACTIONS(2450), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_binary_expression_token1, - ACTIONS(2437), 4, + ACTIONS(2366), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35154] = 19, - ACTIONS(1575), 1, + [36669] = 23, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2348), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2350), 1, anon_sym_AMP, - ACTIONS(2427), 1, + ACTIONS(2352), 1, anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, - anon_sym_QMARK, - ACTIONS(2449), 1, + ACTIONS(2356), 1, anon_sym_QMARK_QMARK, - ACTIONS(2457), 1, + ACTIONS(2358), 1, anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2439), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2437), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2231), 7, - 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, - [35227] = 23, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2419), 1, - anon_sym_STAR_STAR, - ACTIONS(2423), 1, - anon_sym_PERCENT, - ACTIONS(2425), 1, - anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, + ACTIONS(2360), 1, anon_sym_AMP_AMP, - ACTIONS(2433), 1, + ACTIONS(2362), 1, anon_sym_CARET, - ACTIONS(2441), 1, + ACTIONS(2370), 1, anon_sym_GT_EQ, - ACTIONS(2445), 1, + ACTIONS(2374), 1, anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2376), 1, anon_sym_QMARK, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2378), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, - aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2380), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2463), 1, - anon_sym_EQ_GT, - ACTIONS(2421), 2, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2444), 1, + anon_sym_COMMA, + ACTIONS(2346), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2114), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_binary_expression_token1, - ACTIONS(2439), 3, + ACTIONS(2452), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2366), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35308] = 22, - ACTIONS(1575), 1, + [36749] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2348), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2350), 1, anon_sym_AMP, - ACTIONS(2427), 1, + ACTIONS(2352), 1, anon_sym_PIPE, - ACTIONS(2431), 1, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, anon_sym_AMP_AMP, - ACTIONS(2433), 1, + ACTIONS(2362), 1, anon_sym_CARET, - ACTIONS(2441), 1, + ACTIONS(2370), 1, anon_sym_GT_EQ, - ACTIONS(2445), 1, + ACTIONS(2374), 1, anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2376), 1, anon_sym_QMARK, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2378), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, - aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2380), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2346), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2439), 3, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2289), 4, + ACTIONS(2454), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_binary_expression_token1, - ACTIONS(2437), 4, + ACTIONS(2366), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35387] = 24, - ACTIONS(1575), 1, + [36827] = 23, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2301), 1, + ACTIONS(2292), 1, + anon_sym_QMARK, + ACTIONS(2294), 1, + anon_sym_PIPE, + ACTIONS(2298), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2300), 1, anon_sym_STAR_STAR, - ACTIONS(2309), 1, + ACTIONS(2302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2304), 1, + anon_sym_AMP_AMP, + ACTIONS(2306), 1, + anon_sym_CARET, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2313), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2322), 1, anon_sym_PERCENT, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2321), 1, - anon_sym_PIPE, - ACTIONS(2323), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, + ACTIONS(2324), 1, aux_sym_binary_expression_token2, - ACTIONS(2327), 1, + ACTIONS(2326), 1, aux_sym_binary_expression_token3, - ACTIONS(2329), 1, + ACTIONS(2328), 1, aux_sym_binary_expression_token4, - ACTIONS(2331), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, - anon_sym_AMP_AMP, - ACTIONS(2335), 1, - anon_sym_CARET, - ACTIONS(2465), 1, - anon_sym_COMMA, - ACTIONS(2467), 1, + ACTIONS(2456), 1, anon_sym_EQ_GT, - STATE(2034), 1, - aux_sym_match_condition_list_repeat1, - ACTIONS(2299), 2, + ACTIONS(2091), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35469] = 17, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(43), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1711), 1, - sym_name, - ACTIONS(1721), 1, - anon_sym_LPAREN, - ACTIONS(1723), 1, - anon_sym_QMARK, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - STATE(1258), 1, - sym_readonly_modifier, - STATE(1415), 1, - sym_qualified_name, - STATE(2068), 1, - sym_variable_name, - STATE(2328), 1, - sym__type, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - STATE(1453), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - STATE(1402), 4, - sym__types, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1717), 12, - 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_false, - anon_sym_null, - anon_sym_true, - [35537] = 22, - ACTIONS(1575), 1, + [36907] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2396), 1, + anon_sym_PERCENT, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2355), 1, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2357), 1, + ACTIONS(2402), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2363), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2365), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2367), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2369), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, + ACTIONS(2414), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, + ACTIONS(2416), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2424), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2426), 1, anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, + ACTIONS(2394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2379), 3, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2458), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2469), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2377), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35615] = 23, - ACTIONS(1575), 1, + [36984] = 23, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, - anon_sym_AMP, - ACTIONS(2301), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2309), 1, - anon_sym_GT_EQ, - ACTIONS(2313), 1, - anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2319), 1, + ACTIONS(2398), 1, + anon_sym_AMP, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2321), 1, + ACTIONS(2402), 1, anon_sym_PIPE, - ACTIONS(2323), 1, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2327), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2329), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2331), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2414), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2416), 1, anon_sym_CARET, - ACTIONS(2471), 1, - anon_sym_EQ_GT, - ACTIONS(2114), 2, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2452), 1, + anon_sym_RPAREN, + ACTIONS(2460), 1, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2299), 2, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35695] = 22, - ACTIONS(1575), 1, + [37063] = 23, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2355), 1, + ACTIONS(2292), 1, anon_sym_QMARK, - ACTIONS(2357), 1, + ACTIONS(2294), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2298), 1, anon_sym_QMARK_QMARK, - ACTIONS(2363), 1, - aux_sym_binary_expression_token2, - ACTIONS(2365), 1, - aux_sym_binary_expression_token3, - ACTIONS(2367), 1, - aux_sym_binary_expression_token4, - ACTIONS(2369), 1, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, + ACTIONS(2304), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, + ACTIONS(2306), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2389), 1, + ACTIONS(2322), 1, anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token2, + ACTIONS(2326), 1, + aux_sym_binary_expression_token3, + ACTIONS(2328), 1, + aux_sym_binary_expression_token4, + ACTIONS(2452), 1, + anon_sym_SEMI, + ACTIONS(2462), 1, + anon_sym_COMMA, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2379), 3, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2473), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2377), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35773] = 23, - ACTIONS(1575), 1, + [37142] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2355), 1, + ACTIONS(2292), 1, anon_sym_QMARK, - ACTIONS(2357), 1, + ACTIONS(2294), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2298), 1, anon_sym_QMARK_QMARK, - ACTIONS(2363), 1, - aux_sym_binary_expression_token2, - ACTIONS(2365), 1, - aux_sym_binary_expression_token3, - ACTIONS(2367), 1, - aux_sym_binary_expression_token4, - ACTIONS(2369), 1, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, + ACTIONS(2304), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, + ACTIONS(2306), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2389), 1, + ACTIONS(2322), 1, anon_sym_PERCENT, - ACTIONS(2477), 1, - anon_sym_COMMA, - ACTIONS(2359), 2, + ACTIONS(2324), 1, + aux_sym_binary_expression_token2, + ACTIONS(2326), 1, + aux_sym_binary_expression_token3, + ACTIONS(2328), 1, + aux_sym_binary_expression_token4, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2475), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2379), 3, + ACTIONS(2464), 2, + anon_sym_COMMA, + anon_sym_EQ_GT, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35853] = 23, - ACTIONS(1575), 1, + [37219] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2396), 1, + anon_sym_PERCENT, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2355), 1, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2357), 1, + ACTIONS(2402), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2363), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2365), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2367), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2369), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, + ACTIONS(2414), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, + ACTIONS(2416), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2424), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2426), 1, anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2477), 1, - anon_sym_COMMA, - ACTIONS(2359), 2, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, + ACTIONS(2394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2479), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2379), 3, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2466), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35933] = 22, - ACTIONS(1575), 1, + [37296] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, anon_sym_AMP, - ACTIONS(2355), 1, - anon_sym_QMARK, - ACTIONS(2357), 1, + ACTIONS(2352), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2356), 1, anon_sym_QMARK_QMARK, - ACTIONS(2363), 1, - aux_sym_binary_expression_token2, - ACTIONS(2365), 1, - aux_sym_binary_expression_token3, - ACTIONS(2367), 1, - aux_sym_binary_expression_token4, - ACTIONS(2369), 1, + ACTIONS(2358), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, + ACTIONS(2360), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, + ACTIONS(2362), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2370), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2374), 1, anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2376), 1, + anon_sym_QMARK, + ACTIONS(2378), 1, + aux_sym_binary_expression_token2, + ACTIONS(2380), 1, + aux_sym_binary_expression_token4, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2379), 3, + ACTIONS(2468), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2481), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2377), 4, + ACTIONS(2366), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36011] = 23, - ACTIONS(1575), 1, + [37373] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, - anon_sym_AMP, - ACTIONS(2301), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2309), 1, - anon_sym_GT_EQ, - ACTIONS(2313), 1, - anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2348), 1, anon_sym_PERCENT, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2321), 1, + ACTIONS(2350), 1, + anon_sym_AMP, + ACTIONS(2352), 1, anon_sym_PIPE, - ACTIONS(2323), 1, + ACTIONS(2356), 1, anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, - aux_sym_binary_expression_token2, - ACTIONS(2327), 1, - aux_sym_binary_expression_token3, - ACTIONS(2329), 1, - aux_sym_binary_expression_token4, - ACTIONS(2331), 1, + ACTIONS(2358), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2360), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2362), 1, anon_sym_CARET, - ACTIONS(2483), 1, - anon_sym_EQ_GT, - ACTIONS(2114), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2299), 2, + ACTIONS(2370), 1, + anon_sym_GT_EQ, + ACTIONS(2374), 1, + anon_sym_DOT, + ACTIONS(2376), 1, + anon_sym_QMARK, + ACTIONS(2378), 1, + aux_sym_binary_expression_token2, + ACTIONS(2380), 1, + aux_sym_binary_expression_token4, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2470), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2366), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36091] = 23, - ACTIONS(1575), 1, + [37450] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2348), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2350), 1, anon_sym_AMP, - ACTIONS(2427), 1, + ACTIONS(2352), 1, anon_sym_PIPE, - ACTIONS(2431), 1, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, anon_sym_AMP_AMP, - ACTIONS(2433), 1, + ACTIONS(2362), 1, anon_sym_CARET, - ACTIONS(2441), 1, + ACTIONS(2370), 1, anon_sym_GT_EQ, - ACTIONS(2445), 1, + ACTIONS(2374), 1, anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2376), 1, anon_sym_QMARK, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2378), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, - aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2380), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ_GT, - ACTIONS(2114), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2421), 2, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2346), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2439), 3, + ACTIONS(2472), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2366), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36171] = 17, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(43), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1711), 1, - sym_name, - ACTIONS(1721), 1, - anon_sym_LPAREN, - ACTIONS(1723), 1, - anon_sym_QMARK, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - STATE(1240), 1, - sym_readonly_modifier, - STATE(1415), 1, - sym_qualified_name, - STATE(1942), 1, - sym_variable_name, - STATE(2405), 1, - sym__type, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - STATE(1453), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - STATE(1402), 4, - sym__types, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1717), 12, - 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_false, - anon_sym_null, - anon_sym_true, - [36239] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(113), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2487), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2489), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2491), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2493), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2495), 1, - anon_sym_RBRACE, - ACTIONS(2497), 1, - aux_sym_final_modifier_token1, - ACTIONS(2499), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2501), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2503), 1, - sym_var_modifier, - STATE(1257), 1, - sym_final_modifier, - STATE(1317), 1, - sym_visibility_modifier, - STATE(1342), 1, - sym_attribute_list, - STATE(1372), 1, - sym__class_const_declaration, - STATE(1387), 1, - sym__const_declaration, - STATE(1853), 1, - sym__function_definition_header, - STATE(972), 2, - sym_attribute_group, - aux_sym_attribute_list_repeat1, - ACTIONS(2505), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(644), 5, - sym_abstract_modifier, - sym_readonly_modifier, - sym__modifier, - sym_static_modifier, - aux_sym_property_declaration_repeat1, - STATE(1210), 5, - sym__member_declaration, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - aux_sym_declaration_list_repeat1, - [36314] = 22, - ACTIONS(1575), 1, + [37527] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2449), 1, + ACTIONS(2402), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2414), 1, + anon_sym_AMP_AMP, + ACTIONS(2416), 1, + anon_sym_CARET, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2507), 2, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2474), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2439), 3, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36391] = 22, - ACTIONS(1575), 1, + [37604] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2449), 1, + ACTIONS(2402), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2414), 1, + anon_sym_AMP_AMP, + ACTIONS(2416), 1, + anon_sym_CARET, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2509), 2, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2476), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2439), 3, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36468] = 22, - ACTIONS(1575), 1, + [37681] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2449), 1, + ACTIONS(2402), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2414), 1, + anon_sym_AMP_AMP, + ACTIONS(2416), 1, + anon_sym_CARET, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2511), 2, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2478), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2439), 3, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36545] = 22, - ACTIONS(1575), 1, + [37758] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2427), 1, + ACTIONS(2400), 1, + anon_sym_QMARK, + ACTIONS(2402), 1, anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, - anon_sym_QMARK, - ACTIONS(2449), 1, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2513), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2439), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2437), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [36622] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2419), 1, - anon_sym_STAR_STAR, - ACTIONS(2423), 1, - anon_sym_PERCENT, - ACTIONS(2425), 1, - anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, + ACTIONS(2414), 1, anon_sym_AMP_AMP, - ACTIONS(2433), 1, + ACTIONS(2416), 1, anon_sym_CARET, - ACTIONS(2441), 1, + ACTIONS(2424), 1, anon_sym_GT_EQ, - ACTIONS(2445), 1, + ACTIONS(2426), 1, anon_sym_DOT, - ACTIONS(2447), 1, - anon_sym_QMARK, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, - aux_sym_binary_expression_token2, - ACTIONS(2453), 1, - aux_sym_binary_expression_token3, - ACTIONS(2455), 1, - aux_sym_binary_expression_token4, - ACTIONS(2457), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2515), 2, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2480), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2439), 3, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36699] = 21, + [37835] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(115), 1, anon_sym_POUND_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2482), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2489), 1, + ACTIONS(2484), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2491), 1, + ACTIONS(2486), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2493), 1, + ACTIONS(2488), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2497), 1, + ACTIONS(2490), 1, + anon_sym_RBRACE, + ACTIONS(2492), 1, aux_sym_final_modifier_token1, - ACTIONS(2499), 1, + ACTIONS(2494), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2501), 1, + ACTIONS(2496), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2503), 1, + ACTIONS(2498), 1, sym_var_modifier, - ACTIONS(2517), 1, - anon_sym_RBRACE, - STATE(1257), 1, - sym_final_modifier, - STATE(1317), 1, - sym_visibility_modifier, - STATE(1342), 1, + STATE(1344), 1, sym_attribute_list, - STATE(1372), 1, - sym__class_const_declaration, - STATE(1387), 1, + STATE(1390), 1, sym__const_declaration, - STATE(1853), 1, + STATE(1391), 1, + sym__class_const_declaration, + STATE(1783), 1, sym__function_definition_header, - STATE(972), 2, + STATE(970), 2, sym_attribute_group, aux_sym_attribute_list_repeat1, - ACTIONS(2505), 3, + ACTIONS(2500), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(644), 5, - sym_abstract_modifier, - sym_readonly_modifier, - sym__modifier, - sym_static_modifier, - aux_sym_property_declaration_repeat1, - STATE(1223), 5, + STATE(1233), 5, sym__member_declaration, sym_property_declaration, sym_method_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [36774] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2419), 1, - anon_sym_STAR_STAR, - ACTIONS(2423), 1, - anon_sym_PERCENT, - ACTIONS(2425), 1, - anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, - anon_sym_QMARK, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, - aux_sym_binary_expression_token2, - ACTIONS(2453), 1, - aux_sym_binary_expression_token3, - ACTIONS(2455), 1, - aux_sym_binary_expression_token4, - ACTIONS(2457), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2519), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2439), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2437), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [36851] = 21, + STATE(634), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_class_declaration_repeat1, + [37906] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(115), 1, anon_sym_POUND_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2482), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2489), 1, + ACTIONS(2484), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2491), 1, + ACTIONS(2486), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2493), 1, + ACTIONS(2488), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2497), 1, + ACTIONS(2492), 1, aux_sym_final_modifier_token1, - ACTIONS(2499), 1, + ACTIONS(2494), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2501), 1, + ACTIONS(2496), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2503), 1, + ACTIONS(2498), 1, sym_var_modifier, - ACTIONS(2521), 1, + ACTIONS(2502), 1, anon_sym_RBRACE, - STATE(1257), 1, - sym_final_modifier, - STATE(1317), 1, - sym_visibility_modifier, - STATE(1342), 1, + STATE(1344), 1, sym_attribute_list, - STATE(1372), 1, - sym__class_const_declaration, - STATE(1387), 1, + STATE(1390), 1, sym__const_declaration, - STATE(1853), 1, + STATE(1391), 1, + sym__class_const_declaration, + STATE(1783), 1, sym__function_definition_header, - STATE(972), 2, + STATE(970), 2, sym_attribute_group, aux_sym_attribute_list_repeat1, - ACTIONS(2505), 3, + ACTIONS(2500), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(644), 5, - sym_abstract_modifier, - sym_readonly_modifier, - sym__modifier, - sym_static_modifier, - aux_sym_property_declaration_repeat1, - STATE(1210), 5, + STATE(1208), 5, sym__member_declaration, sym_property_declaration, sym_method_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [36926] = 21, + STATE(634), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_class_declaration_repeat1, + [37977] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(115), 1, anon_sym_POUND_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2482), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2489), 1, + ACTIONS(2484), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2491), 1, + ACTIONS(2486), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2493), 1, + ACTIONS(2488), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2497), 1, + ACTIONS(2492), 1, aux_sym_final_modifier_token1, - ACTIONS(2499), 1, + ACTIONS(2494), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2501), 1, + ACTIONS(2496), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2503), 1, + ACTIONS(2498), 1, sym_var_modifier, - ACTIONS(2523), 1, + ACTIONS(2504), 1, anon_sym_RBRACE, - STATE(1257), 1, - sym_final_modifier, - STATE(1317), 1, - sym_visibility_modifier, - STATE(1342), 1, + STATE(1344), 1, sym_attribute_list, - STATE(1372), 1, - sym__class_const_declaration, - STATE(1387), 1, + STATE(1390), 1, sym__const_declaration, - STATE(1853), 1, + STATE(1391), 1, + sym__class_const_declaration, + STATE(1783), 1, sym__function_definition_header, - STATE(972), 2, + STATE(970), 2, sym_attribute_group, aux_sym_attribute_list_repeat1, - ACTIONS(2505), 3, + ACTIONS(2500), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(644), 5, - sym_abstract_modifier, - sym_readonly_modifier, - sym__modifier, - sym_static_modifier, - aux_sym_property_declaration_repeat1, - STATE(1210), 5, + STATE(1202), 5, sym__member_declaration, sym_property_declaration, sym_method_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [37001] = 23, - ACTIONS(1575), 1, + STATE(634), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_class_declaration_repeat1, + [38048] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, - anon_sym_AMP, - ACTIONS(2301), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2309), 1, - anon_sym_GT_EQ, - ACTIONS(2313), 1, - anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2348), 1, anon_sym_PERCENT, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2321), 1, + ACTIONS(2350), 1, + anon_sym_AMP, + ACTIONS(2352), 1, anon_sym_PIPE, - ACTIONS(2323), 1, + ACTIONS(2356), 1, anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, - aux_sym_binary_expression_token2, - ACTIONS(2327), 1, - aux_sym_binary_expression_token3, - ACTIONS(2329), 1, - aux_sym_binary_expression_token4, - ACTIONS(2331), 1, + ACTIONS(2358), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2360), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2362), 1, anon_sym_CARET, - ACTIONS(2475), 1, - anon_sym_SEMI, - ACTIONS(2525), 1, - anon_sym_COMMA, - ACTIONS(2299), 2, + ACTIONS(2370), 1, + anon_sym_GT_EQ, + ACTIONS(2374), 1, + anon_sym_DOT, + ACTIONS(2376), 1, + anon_sym_QMARK, + ACTIONS(2378), 1, + aux_sym_binary_expression_token2, + ACTIONS(2380), 1, + aux_sym_binary_expression_token4, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2506), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2366), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37080] = 23, - ACTIONS(1575), 1, + [38125] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2348), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2350), 1, anon_sym_AMP, - ACTIONS(2427), 1, + ACTIONS(2352), 1, anon_sym_PIPE, - ACTIONS(2431), 1, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, anon_sym_AMP_AMP, - ACTIONS(2433), 1, + ACTIONS(2362), 1, anon_sym_CARET, - ACTIONS(2441), 1, + ACTIONS(2370), 1, anon_sym_GT_EQ, - ACTIONS(2445), 1, + ACTIONS(2374), 1, anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2376), 1, anon_sym_QMARK, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2378), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, - aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2380), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2475), 1, - anon_sym_RPAREN, - ACTIONS(2527), 1, - anon_sym_COMMA, - ACTIONS(2421), 2, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2346), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2439), 3, + ACTIONS(2508), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2368), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2366), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37159] = 22, - ACTIONS(1575), 1, + [38202] = 23, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2355), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2357), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2363), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - ACTIONS(2365), 1, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, - ACTIONS(2367), 1, + ACTIONS(2212), 1, aux_sym_binary_expression_token4, - ACTIONS(2369), 1, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2389), 1, + ACTIONS(2234), 1, anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2510), 1, + anon_sym_EQ_GT, + ACTIONS(2512), 1, + anon_sym_RPAREN, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, + ACTIONS(2232), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2529), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2379), 3, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37236] = 22, - ACTIONS(1575), 1, + [38281] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2449), 1, + ACTIONS(2402), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2414), 1, + anon_sym_AMP_AMP, + ACTIONS(2416), 1, + anon_sym_CARET, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2531), 2, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2514), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2439), 3, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37313] = 22, - ACTIONS(1575), 1, + [38358] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2516), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2519), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2522), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2525), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2528), 1, + anon_sym_RBRACE, + ACTIONS(2530), 1, + aux_sym_final_modifier_token1, + ACTIONS(2533), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2536), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2539), 1, + sym_var_modifier, + ACTIONS(2545), 1, + anon_sym_POUND_LBRACK, + STATE(1344), 1, + sym_attribute_list, + STATE(1390), 1, + sym__const_declaration, + STATE(1391), 1, + sym__class_const_declaration, + STATE(1783), 1, + sym__function_definition_header, + STATE(970), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2542), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1208), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + STATE(634), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_class_declaration_repeat1, + [38429] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2396), 1, + anon_sym_PERCENT, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2355), 1, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2357), 1, + ACTIONS(2402), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2363), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2365), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2367), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2369), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, + ACTIONS(2414), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, + ACTIONS(2416), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2424), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2426), 1, anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, + ACTIONS(2394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2533), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2379), 3, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2548), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37390] = 22, - ACTIONS(1575), 1, + [38506] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2449), 1, + ACTIONS(2402), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2414), 1, + anon_sym_AMP_AMP, + ACTIONS(2416), 1, + anon_sym_CARET, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2535), 2, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2550), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2439), 3, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37467] = 23, - ACTIONS(1575), 1, + [38583] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2402), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2406), 1, + aux_sym_binary_expression_token2, + ACTIONS(2408), 1, + aux_sym_binary_expression_token3, + ACTIONS(2410), 1, + aux_sym_binary_expression_token4, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2414), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2416), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2424), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2426), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2537), 1, - anon_sym_EQ_GT, - ACTIONS(2539), 1, - anon_sym_RPAREN, - ACTIONS(2223), 2, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, + ACTIONS(2392), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2552), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37546] = 22, - ACTIONS(1575), 1, + [38660] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2396), 1, + anon_sym_PERCENT, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2355), 1, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2357), 1, + ACTIONS(2402), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2363), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2365), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2367), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2369), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, + ACTIONS(2414), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, + ACTIONS(2416), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2424), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2426), 1, anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, + ACTIONS(2394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2541), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2379), 3, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2554), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37623] = 22, - ACTIONS(1575), 1, + [38737] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2396), 1, + anon_sym_PERCENT, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2355), 1, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2357), 1, + ACTIONS(2402), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2363), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2365), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2367), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2369), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, + ACTIONS(2414), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, + ACTIONS(2416), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2424), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2426), 1, anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, + ACTIONS(2394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2543), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2379), 3, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2556), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37700] = 22, - ACTIONS(1575), 1, + [38814] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, - anon_sym_STAR_STAR, - ACTIONS(2423), 1, - anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2427), 1, + ACTIONS(2292), 1, + anon_sym_QMARK, + ACTIONS(2294), 1, anon_sym_PIPE, - ACTIONS(2431), 1, + ACTIONS(2298), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2304), 1, anon_sym_AMP_AMP, - ACTIONS(2433), 1, + ACTIONS(2306), 1, anon_sym_CARET, - ACTIONS(2441), 1, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2445), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2447), 1, - anon_sym_QMARK, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2322), 1, + anon_sym_PERCENT, + ACTIONS(2324), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, + ACTIONS(2326), 1, aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2328), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2545), 2, + ACTIONS(2320), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2558), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2439), 3, + anon_sym_RBRACE, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37777] = 22, - ACTIONS(1575), 1, + [38891] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, - anon_sym_STAR_STAR, - ACTIONS(2423), 1, - anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2427), 1, + ACTIONS(2292), 1, + anon_sym_QMARK, + ACTIONS(2294), 1, anon_sym_PIPE, - ACTIONS(2431), 1, + ACTIONS(2298), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2304), 1, anon_sym_AMP_AMP, - ACTIONS(2433), 1, + ACTIONS(2306), 1, anon_sym_CARET, - ACTIONS(2441), 1, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2445), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2447), 1, - anon_sym_QMARK, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2322), 1, + anon_sym_PERCENT, + ACTIONS(2324), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, + ACTIONS(2326), 1, aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2328), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2547), 2, + ACTIONS(2320), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2560), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2439), 3, + anon_sym_RBRACE, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37854] = 22, - ACTIONS(1575), 1, + [38968] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2449), 1, + ACTIONS(2402), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2414), 1, + anon_sym_AMP_AMP, + ACTIONS(2416), 1, + anon_sym_CARET, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2549), 2, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2562), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2439), 3, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37931] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2551), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2554), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2557), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2560), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2563), 1, - anon_sym_RBRACE, - ACTIONS(2565), 1, - aux_sym_final_modifier_token1, - ACTIONS(2568), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2571), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2574), 1, - sym_var_modifier, - ACTIONS(2580), 1, - anon_sym_POUND_LBRACK, - STATE(1257), 1, - sym_final_modifier, - STATE(1317), 1, - sym_visibility_modifier, - STATE(1342), 1, - sym_attribute_list, - STATE(1372), 1, - sym__class_const_declaration, - STATE(1387), 1, - sym__const_declaration, - STATE(1853), 1, - sym__function_definition_header, - STATE(972), 2, - sym_attribute_group, - aux_sym_attribute_list_repeat1, - ACTIONS(2577), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(644), 5, - sym_abstract_modifier, - sym_readonly_modifier, - sym__modifier, - sym_static_modifier, - aux_sym_property_declaration_repeat1, - STATE(1210), 5, - sym__member_declaration, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - aux_sym_declaration_list_repeat1, - [38006] = 23, - ACTIONS(1575), 1, + [39045] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2449), 1, + ACTIONS(2402), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2479), 1, - anon_sym_RPAREN, - ACTIONS(2527), 1, - anon_sym_COMMA, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2414), 1, + anon_sym_AMP_AMP, + ACTIONS(2416), 1, + anon_sym_CARET, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2439), 3, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2564), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38085] = 23, - ACTIONS(1575), 1, + [39122] = 23, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2537), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2510), 1, anon_sym_EQ_GT, - ACTIONS(2583), 1, + ACTIONS(2566), 1, anon_sym_RPAREN, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38164] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(113), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2487), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2489), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2491), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2493), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2497), 1, - aux_sym_final_modifier_token1, - ACTIONS(2499), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2501), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2503), 1, - sym_var_modifier, - ACTIONS(2585), 1, - anon_sym_RBRACE, - STATE(1257), 1, - sym_final_modifier, - STATE(1317), 1, - sym_visibility_modifier, - STATE(1342), 1, - sym_attribute_list, - STATE(1372), 1, - sym__class_const_declaration, - STATE(1387), 1, - sym__const_declaration, - STATE(1853), 1, - sym__function_definition_header, - STATE(972), 2, - sym_attribute_group, - aux_sym_attribute_list_repeat1, - ACTIONS(2505), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(644), 5, - sym_abstract_modifier, - sym_readonly_modifier, - sym__modifier, - sym_static_modifier, - aux_sym_property_declaration_repeat1, - STATE(1197), 5, - sym__member_declaration, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - aux_sym_declaration_list_repeat1, - [38239] = 22, - ACTIONS(1575), 1, + [39201] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2449), 1, + ACTIONS(2402), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2414), 1, + anon_sym_AMP_AMP, + ACTIONS(2416), 1, + anon_sym_CARET, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2587), 2, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2568), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2439), 3, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38316] = 22, - ACTIONS(1575), 1, + [39278] = 23, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2396), 1, + anon_sym_PERCENT, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2355), 1, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2357), 1, + ACTIONS(2402), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2363), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2365), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2367), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2369), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, + ACTIONS(2414), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, + ACTIONS(2416), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2424), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2426), 1, anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2442), 1, + anon_sym_RPAREN, + ACTIONS(2460), 1, + anon_sym_COMMA, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, + ACTIONS(2394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2589), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2379), 3, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38393] = 22, - ACTIONS(1575), 1, + [39357] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, - anon_sym_STAR_STAR, - ACTIONS(2423), 1, - anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2449), 1, + ACTIONS(2200), 1, + anon_sym_PIPE, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2212), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2216), 1, + anon_sym_AMP_AMP, + ACTIONS(2218), 1, + anon_sym_CARET, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2591), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2439), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2570), 2, + anon_sym_SEMI, + anon_sym_COLON, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38470] = 22, - ACTIONS(1575), 1, + [39434] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2398), 1, anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2449), 1, + ACTIONS(2402), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2414), 1, + anon_sym_AMP_AMP, + ACTIONS(2416), 1, + anon_sym_CARET, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2593), 2, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2572), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2439), 3, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38547] = 23, - ACTIONS(1575), 1, + [39511] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, - anon_sym_AMP, - ACTIONS(2301), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2309), 1, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, + anon_sym_AMP, + ACTIONS(2352), 1, + anon_sym_PIPE, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, + anon_sym_AMP_AMP, + ACTIONS(2362), 1, + anon_sym_CARET, + ACTIONS(2370), 1, anon_sym_GT_EQ, - ACTIONS(2313), 1, + ACTIONS(2374), 1, anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2376), 1, + anon_sym_QMARK, + ACTIONS(2378), 1, + aux_sym_binary_expression_token2, + ACTIONS(2380), 1, + aux_sym_binary_expression_token4, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2574), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2368), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2366), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39588] = 22, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2390), 1, + anon_sym_STAR_STAR, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2319), 1, + ACTIONS(2398), 1, + anon_sym_AMP, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2321), 1, + ACTIONS(2402), 1, anon_sym_PIPE, - ACTIONS(2323), 1, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2327), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2329), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2331), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2414), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2416), 1, anon_sym_CARET, - ACTIONS(2479), 1, - anon_sym_SEMI, - ACTIONS(2525), 1, - anon_sym_COMMA, - ACTIONS(2299), 2, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2576), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38626] = 22, - ACTIONS(1575), 1, + [39665] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, - anon_sym_AMP, - ACTIONS(2301), 1, + ACTIONS(2390), 1, anon_sym_STAR_STAR, - ACTIONS(2309), 1, - anon_sym_GT_EQ, - ACTIONS(2313), 1, - anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2319), 1, + ACTIONS(2398), 1, + anon_sym_AMP, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2321), 1, + ACTIONS(2402), 1, anon_sym_PIPE, - ACTIONS(2323), 1, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2327), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2329), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2331), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2414), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2416), 1, anon_sym_CARET, - ACTIONS(2299), 2, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2392), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2394), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2578), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2422), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2420), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39742] = 22, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2390), 1, + anon_sym_STAR_STAR, + ACTIONS(2396), 1, + anon_sym_PERCENT, + ACTIONS(2398), 1, + anon_sym_AMP, + ACTIONS(2400), 1, + anon_sym_QMARK, + ACTIONS(2402), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2406), 1, + aux_sym_binary_expression_token2, + ACTIONS(2408), 1, + aux_sym_binary_expression_token3, + ACTIONS(2410), 1, + aux_sym_binary_expression_token4, + ACTIONS(2412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2414), 1, + anon_sym_AMP_AMP, + ACTIONS(2416), 1, + anon_sym_CARET, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2595), 2, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2580), 2, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2307), 3, + anon_sym_RPAREN, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38703] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(113), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2487), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2489), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2491), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2493), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2497), 1, - aux_sym_final_modifier_token1, - ACTIONS(2499), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2501), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2503), 1, - sym_var_modifier, - ACTIONS(2597), 1, - anon_sym_RBRACE, - STATE(1257), 1, - sym_final_modifier, - STATE(1317), 1, - sym_visibility_modifier, - STATE(1342), 1, - sym_attribute_list, - STATE(1372), 1, - sym__class_const_declaration, - STATE(1387), 1, - sym__const_declaration, - STATE(1853), 1, - sym__function_definition_header, - STATE(972), 2, - sym_attribute_group, - aux_sym_attribute_list_repeat1, - ACTIONS(2505), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(644), 5, - sym_abstract_modifier, - sym_readonly_modifier, - sym__modifier, - sym_static_modifier, - aux_sym_property_declaration_repeat1, - STATE(1188), 5, - sym__member_declaration, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - aux_sym_declaration_list_repeat1, - [38778] = 22, - ACTIONS(1575), 1, + [39819] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, - anon_sym_AMP, - ACTIONS(2301), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2309), 1, + ACTIONS(2348), 1, + anon_sym_PERCENT, + ACTIONS(2350), 1, + anon_sym_AMP, + ACTIONS(2352), 1, + anon_sym_PIPE, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, + anon_sym_AMP_AMP, + ACTIONS(2362), 1, + anon_sym_CARET, + ACTIONS(2370), 1, anon_sym_GT_EQ, - ACTIONS(2313), 1, + ACTIONS(2374), 1, anon_sym_DOT, - ACTIONS(2317), 1, + ACTIONS(2376), 1, + anon_sym_QMARK, + ACTIONS(2378), 1, + aux_sym_binary_expression_token2, + ACTIONS(2380), 1, + aux_sym_binary_expression_token4, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2346), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2354), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2364), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2582), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2368), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2366), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39896] = 22, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2390), 1, + anon_sym_STAR_STAR, + ACTIONS(2396), 1, anon_sym_PERCENT, - ACTIONS(2319), 1, + ACTIONS(2398), 1, + anon_sym_AMP, + ACTIONS(2400), 1, anon_sym_QMARK, - ACTIONS(2321), 1, + ACTIONS(2402), 1, anon_sym_PIPE, - ACTIONS(2323), 1, + ACTIONS(2404), 1, anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, + ACTIONS(2406), 1, aux_sym_binary_expression_token2, - ACTIONS(2327), 1, + ACTIONS(2408), 1, aux_sym_binary_expression_token3, - ACTIONS(2329), 1, + ACTIONS(2410), 1, aux_sym_binary_expression_token4, - ACTIONS(2331), 1, + ACTIONS(2412), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2414), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2416), 1, anon_sym_CARET, - ACTIONS(2299), 2, + ACTIONS(2424), 1, + anon_sym_GT_EQ, + ACTIONS(2426), 1, + anon_sym_DOT, + ACTIONS(2388), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2392), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2394), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2599), 2, + ACTIONS(2418), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2584), 2, anon_sym_COMMA, - anon_sym_EQ_GT, - ACTIONS(2307), 3, + anon_sym_RPAREN, + ACTIONS(2422), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2420), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38855] = 22, - ACTIONS(1575), 1, + [39973] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, + ACTIONS(2344), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2348), 1, anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2350), 1, anon_sym_AMP, - ACTIONS(2427), 1, + ACTIONS(2352), 1, anon_sym_PIPE, - ACTIONS(2431), 1, + ACTIONS(2356), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2360), 1, anon_sym_AMP_AMP, - ACTIONS(2433), 1, + ACTIONS(2362), 1, anon_sym_CARET, - ACTIONS(2441), 1, + ACTIONS(2370), 1, anon_sym_GT_EQ, - ACTIONS(2445), 1, + ACTIONS(2374), 1, anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2376), 1, anon_sym_QMARK, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2378), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, - aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2380), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, + ACTIONS(2384), 1, + aux_sym_binary_expression_token3, + ACTIONS(2346), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2354), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, + ACTIONS(2364), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2601), 2, - anon_sym_COMMA, + ACTIONS(2586), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2368), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2366), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40050] = 23, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2196), 1, + anon_sym_AMP, + ACTIONS(2198), 1, + anon_sym_QMARK, + ACTIONS(2200), 1, + anon_sym_PIPE, + ACTIONS(2204), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2216), 1, + anon_sym_AMP_AMP, + ACTIONS(2218), 1, + anon_sym_CARET, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2510), 1, + anon_sym_EQ_GT, + ACTIONS(2588), 1, anon_sym_RPAREN, - ACTIONS(2439), 3, + ACTIONS(2202), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2220), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2228), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38932] = 21, + [40129] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(115), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2482), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2484), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2486), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2488), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2492), 1, + aux_sym_final_modifier_token1, + ACTIONS(2494), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2496), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2498), 1, + sym_var_modifier, + ACTIONS(2590), 1, + anon_sym_RBRACE, + STATE(1344), 1, + sym_attribute_list, + STATE(1390), 1, + sym__const_declaration, + STATE(1391), 1, + sym__class_const_declaration, + STATE(1783), 1, + sym__function_definition_header, + STATE(970), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2500), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1208), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + STATE(634), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_class_declaration_repeat1, + [40200] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(115), 1, anon_sym_POUND_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2482), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2489), 1, + ACTIONS(2484), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2491), 1, + ACTIONS(2486), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2493), 1, + ACTIONS(2488), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2497), 1, + ACTIONS(2492), 1, aux_sym_final_modifier_token1, - ACTIONS(2499), 1, + ACTIONS(2494), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2501), 1, + ACTIONS(2496), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2503), 1, + ACTIONS(2498), 1, sym_var_modifier, - ACTIONS(2603), 1, + ACTIONS(2592), 1, anon_sym_RBRACE, - STATE(1257), 1, + STATE(1344), 1, + sym_attribute_list, + STATE(1390), 1, + sym__const_declaration, + STATE(1391), 1, + sym__class_const_declaration, + STATE(1783), 1, + sym__function_definition_header, + STATE(970), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2500), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1234), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + STATE(634), 7, sym_final_modifier, - STATE(1317), 1, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, sym_visibility_modifier, - STATE(1342), 1, + aux_sym_class_declaration_repeat1, + [40271] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(115), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2482), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2484), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2486), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2488), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2492), 1, + aux_sym_final_modifier_token1, + ACTIONS(2494), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2496), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2498), 1, + sym_var_modifier, + ACTIONS(2594), 1, + anon_sym_RBRACE, + STATE(1344), 1, sym_attribute_list, - STATE(1372), 1, + STATE(1390), 1, + sym__const_declaration, + STATE(1391), 1, sym__class_const_declaration, - STATE(1387), 1, + STATE(1783), 1, + sym__function_definition_header, + STATE(970), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2500), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1208), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + STATE(634), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_class_declaration_repeat1, + [40342] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(115), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2482), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2484), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2486), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2488), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2492), 1, + aux_sym_final_modifier_token1, + ACTIONS(2494), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2496), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2498), 1, + sym_var_modifier, + ACTIONS(2596), 1, + anon_sym_RBRACE, + STATE(1344), 1, + sym_attribute_list, + STATE(1390), 1, sym__const_declaration, - STATE(1853), 1, + STATE(1391), 1, + sym__class_const_declaration, + STATE(1783), 1, sym__function_definition_header, - STATE(972), 2, + STATE(970), 2, sym_attribute_group, aux_sym_attribute_list_repeat1, - ACTIONS(2505), 3, + ACTIONS(2500), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(644), 5, + STATE(1208), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + STATE(634), 7, + sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, sym__modifier, sym_static_modifier, - aux_sym_property_declaration_repeat1, - STATE(1210), 5, + sym_visibility_modifier, + aux_sym_class_declaration_repeat1, + [40413] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(115), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2482), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2484), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2486), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2488), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2492), 1, + aux_sym_final_modifier_token1, + ACTIONS(2494), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2496), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2498), 1, + sym_var_modifier, + ACTIONS(2598), 1, + anon_sym_RBRACE, + STATE(1344), 1, + sym_attribute_list, + STATE(1390), 1, + sym__const_declaration, + STATE(1391), 1, + sym__class_const_declaration, + STATE(1783), 1, + sym__function_definition_header, + STATE(970), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2500), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1231), 5, sym__member_declaration, sym_property_declaration, sym_method_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [39007] = 22, - ACTIONS(1575), 1, + STATE(634), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_class_declaration_repeat1, + [40484] = 23, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2355), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2357), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2363), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - ACTIONS(2365), 1, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, - ACTIONS(2367), 1, + ACTIONS(2212), 1, aux_sym_binary_expression_token4, - ACTIONS(2369), 1, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2389), 1, + ACTIONS(2234), 1, anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2510), 1, + anon_sym_EQ_GT, + ACTIONS(2600), 1, + anon_sym_RPAREN, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, + ACTIONS(2232), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2605), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2379), 3, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39084] = 22, - ACTIONS(1575), 1, + [40563] = 23, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, - anon_sym_STAR_STAR, - ACTIONS(2423), 1, - anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2427), 1, + ACTIONS(2292), 1, + anon_sym_QMARK, + ACTIONS(2294), 1, anon_sym_PIPE, - ACTIONS(2431), 1, + ACTIONS(2298), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2304), 1, anon_sym_AMP_AMP, - ACTIONS(2433), 1, + ACTIONS(2306), 1, anon_sym_CARET, - ACTIONS(2441), 1, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2445), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2447), 1, - anon_sym_QMARK, - ACTIONS(2449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2322), 1, + anon_sym_PERCENT, + ACTIONS(2324), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, + ACTIONS(2326), 1, aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2328), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2442), 1, + anon_sym_SEMI, + ACTIONS(2462), 1, + anon_sym_COMMA, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2439), 3, + ACTIONS(2320), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39161] = 22, - ACTIONS(1575), 1, + [40642] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, - anon_sym_STAR_STAR, - ACTIONS(2423), 1, - anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2449), 1, + ACTIONS(2200), 1, + anon_sym_PIPE, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2212), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2216), 1, + anon_sym_AMP_AMP, + ACTIONS(2218), 1, + anon_sym_CARET, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2602), 1, + anon_sym_RBRACE, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2609), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2439), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39238] = 22, - ACTIONS(1575), 1, + [40718] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, - anon_sym_STAR_STAR, - ACTIONS(2423), 1, - anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2449), 1, + ACTIONS(2200), 1, + anon_sym_PIPE, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2212), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2216), 1, + anon_sym_AMP_AMP, + ACTIONS(2218), 1, + anon_sym_CARET, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2604), 1, + anon_sym_RBRACE, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2611), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2439), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39315] = 22, - ACTIONS(1575), 1, + [40794] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2292), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2294), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2298), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2304), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2306), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2263), 1, + ACTIONS(2322), 1, + anon_sym_PERCENT, + ACTIONS(2324), 1, aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, + ACTIONS(2326), 1, aux_sym_binary_expression_token3, - ACTIONS(2223), 2, + ACTIONS(2328), 1, + aux_sym_binary_expression_token4, + ACTIONS(2606), 1, + anon_sym_RBRACK, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2613), 2, - anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(2251), 3, + ACTIONS(2320), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39392] = 22, - ACTIONS(1575), 1, + [40870] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, - anon_sym_STAR_STAR, - ACTIONS(2423), 1, - anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2449), 1, + ACTIONS(2200), 1, + anon_sym_PIPE, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2212), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2216), 1, + anon_sym_AMP_AMP, + ACTIONS(2218), 1, + anon_sym_CARET, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2608), 1, + anon_sym_RBRACE, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2615), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2439), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39469] = 22, - ACTIONS(1575), 1, + [40946] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2301), 1, - anon_sym_STAR_STAR, - ACTIONS(2309), 1, - anon_sym_GT_EQ, - ACTIONS(2313), 1, - anon_sym_DOT, - ACTIONS(2317), 1, - anon_sym_PERCENT, - ACTIONS(2319), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2321), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2323), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - ACTIONS(2327), 1, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, - ACTIONS(2329), 1, + ACTIONS(2212), 1, aux_sym_binary_expression_token4, - ACTIONS(2331), 1, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2299), 2, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2610), 1, + anon_sym_RBRACE, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2232), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2617), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2307), 3, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39546] = 22, - ACTIONS(1575), 1, + [41022] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2355), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2357), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2363), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - ACTIONS(2365), 1, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, - ACTIONS(2367), 1, + ACTIONS(2212), 1, aux_sym_binary_expression_token4, - ACTIONS(2369), 1, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2389), 1, + ACTIONS(2234), 1, anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2612), 1, + anon_sym_COLON, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, + ACTIONS(2232), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2619), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2379), 3, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39623] = 22, - ACTIONS(1575), 1, + [41098] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2419), 1, - anon_sym_STAR_STAR, - ACTIONS(2423), 1, - anon_sym_PERCENT, - ACTIONS(2425), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2427), 1, - anon_sym_PIPE, - ACTIONS(2431), 1, - anon_sym_AMP_AMP, - ACTIONS(2433), 1, - anon_sym_CARET, - ACTIONS(2441), 1, - anon_sym_GT_EQ, - ACTIONS(2445), 1, - anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2449), 1, + ACTIONS(2200), 1, + anon_sym_PIPE, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2451), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - ACTIONS(2453), 1, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, - ACTIONS(2455), 1, + ACTIONS(2212), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2421), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2429), 2, + ACTIONS(2216), 1, + anon_sym_AMP_AMP, + ACTIONS(2218), 1, + anon_sym_CARET, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2614), 1, + anon_sym_RBRACE, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2435), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2443), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2621), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2439), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2437), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39700] = 22, - ACTIONS(1575), 1, + [41174] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2355), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2357), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2363), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - ACTIONS(2365), 1, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, - ACTIONS(2367), 1, + ACTIONS(2212), 1, aux_sym_binary_expression_token4, - ACTIONS(2369), 1, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2371), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2373), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2385), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2389), 1, + ACTIONS(2234), 1, anon_sym_PERCENT, - ACTIONS(2359), 2, + ACTIONS(2616), 1, + anon_sym_RBRACE, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2375), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2383), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2387), 2, + ACTIONS(2232), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2623), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2379), 3, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2377), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39777] = 21, - ACTIONS(3), 1, + [41250] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2487), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2489), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2491), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2493), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2497), 1, - aux_sym_final_modifier_token1, - ACTIONS(2499), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2501), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2503), 1, - sym_var_modifier, - ACTIONS(2625), 1, - anon_sym_RBRACE, - STATE(1257), 1, - sym_final_modifier, - STATE(1317), 1, - sym_visibility_modifier, - STATE(1342), 1, - sym_attribute_list, - STATE(1372), 1, - sym__class_const_declaration, - STATE(1387), 1, - sym__const_declaration, - STATE(1853), 1, - sym__function_definition_header, - STATE(972), 2, - sym_attribute_group, - aux_sym_attribute_list_repeat1, - ACTIONS(2505), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(644), 5, - sym_abstract_modifier, - sym_readonly_modifier, - sym__modifier, - sym_static_modifier, - aux_sym_property_declaration_repeat1, - STATE(1196), 5, - sym__member_declaration, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - aux_sym_declaration_list_repeat1, - [39852] = 23, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2537), 1, - anon_sym_EQ_GT, - ACTIONS(2627), 1, - anon_sym_RPAREN, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2618), 1, + anon_sym_RBRACE, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39931] = 23, - ACTIONS(1575), 1, + [41326] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2537), 1, - anon_sym_EQ_GT, - ACTIONS(2629), 1, - anon_sym_RPAREN, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2620), 1, + anon_sym_RBRACE, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40010] = 22, - ACTIONS(1575), 1, + [41402] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2631), 1, - anon_sym_RPAREN, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2622), 1, + anon_sym_RBRACE, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40086] = 22, - ACTIONS(1575), 1, + [41478] = 15, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(1666), 1, + sym_name, + ACTIONS(1678), 1, + anon_sym_LPAREN, + ACTIONS(1680), 1, + anon_sym_QMARK, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + STATE(1418), 1, + sym_qualified_name, + STATE(2125), 1, + sym_variable_name, + STATE(2138), 1, + sym_type, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + STATE(1454), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(1409), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1674), 12, + 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_false, + anon_sym_null, + anon_sym_true, + [41540] = 22, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2624), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2202), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2220), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2228), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2222), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41616] = 22, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2196), 1, + anon_sym_AMP, + ACTIONS(2198), 1, + anon_sym_QMARK, + ACTIONS(2200), 1, + anon_sym_PIPE, + ACTIONS(2204), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, - ACTIONS(2633), 1, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2216), 1, + anon_sym_AMP_AMP, + ACTIONS(2218), 1, + anon_sym_CARET, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2626), 1, anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40162] = 7, - ACTIONS(25), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(1575), 1, + [41692] = 22, + ACTIONS(1530), 1, sym_comment, - STATE(1371), 1, - sym__const_declaration, - STATE(2594), 1, - sym_visibility_modifier, - ACTIONS(45), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - ACTIONS(2637), 4, - anon_sym_BSLASH, - anon_sym_LPAREN, + ACTIONS(2196), 1, + anon_sym_AMP, + ACTIONS(2198), 1, anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(2635), 20, - 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, - 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_false, - anon_sym_null, - anon_sym_true, - sym_name, - [40208] = 15, + ACTIONS(2200), 1, + anon_sym_PIPE, + ACTIONS(2204), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2216), 1, + anon_sym_AMP_AMP, + ACTIONS(2218), 1, + anon_sym_CARET, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2628), 1, + anon_sym_RBRACE, + ACTIONS(2202), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2220), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2228), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2222), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41768] = 15, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1711), 1, + ACTIONS(1666), 1, sym_name, - ACTIONS(1721), 1, + ACTIONS(1678), 1, anon_sym_LPAREN, - ACTIONS(1723), 1, + ACTIONS(1680), 1, anon_sym_QMARK, - ACTIONS(1754), 1, + ACTIONS(1711), 1, anon_sym_DOLLAR, - STATE(1415), 1, + STATE(1418), 1, sym_qualified_name, - STATE(2009), 1, + STATE(1871), 1, sym_variable_name, - STATE(2341), 1, - sym__type, - STATE(2531), 1, + STATE(2270), 1, + sym_type, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - STATE(1453), 3, + STATE(1454), 3, sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - STATE(1402), 4, + STATE(1409), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1717), 12, + ACTIONS(1674), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -110879,3835 +112050,3028 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [40270] = 22, - ACTIONS(1575), 1, + [41830] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2292), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2294), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2298), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2304), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2306), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2263), 1, + ACTIONS(2322), 1, + anon_sym_PERCENT, + ACTIONS(2324), 1, aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, + ACTIONS(2326), 1, aux_sym_binary_expression_token3, - ACTIONS(2639), 1, - anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2328), 1, + aux_sym_binary_expression_token4, + ACTIONS(2626), 1, + anon_sym_RBRACK, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2320), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40346] = 22, - ACTIONS(1575), 1, + [41906] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2641), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2630), 1, anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40422] = 22, - ACTIONS(1575), 1, + [41982] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2643), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2632), 1, anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40498] = 22, - ACTIONS(1575), 1, + [42058] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2645), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2634), 1, anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40574] = 22, - ACTIONS(1575), 1, + [42134] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2292), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2294), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2298), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2304), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2306), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2263), 1, + ACTIONS(2322), 1, + anon_sym_PERCENT, + ACTIONS(2324), 1, aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, + ACTIONS(2326), 1, aux_sym_binary_expression_token3, - ACTIONS(2647), 1, - anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2328), 1, + aux_sym_binary_expression_token4, + ACTIONS(2636), 1, + anon_sym_RBRACK, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2320), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40650] = 22, - ACTIONS(1575), 1, + [42210] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2649), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2638), 1, anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40726] = 22, - ACTIONS(1575), 1, + [42286] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2651), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2640), 1, anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40802] = 22, - ACTIONS(1575), 1, + [42362] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2653), 1, - anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2642), 1, + anon_sym_RPAREN, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40878] = 22, - ACTIONS(1575), 1, + [42438] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2655), 1, - anon_sym_RPAREN, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2644), 1, + anon_sym_RBRACE, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40954] = 22, - ACTIONS(1575), 1, + [42514] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2657), 1, - anon_sym_RPAREN, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2646), 1, + anon_sym_RBRACE, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41030] = 22, - ACTIONS(1575), 1, + [42590] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2659), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2648), 1, anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41106] = 22, - ACTIONS(1575), 1, + [42666] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2292), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2294), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2298), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2304), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2306), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2263), 1, + ACTIONS(2322), 1, + anon_sym_PERCENT, + ACTIONS(2324), 1, aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, + ACTIONS(2326), 1, aux_sym_binary_expression_token3, - ACTIONS(2661), 1, - anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2328), 1, + aux_sym_binary_expression_token4, + ACTIONS(2648), 1, + anon_sym_RBRACK, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2320), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41182] = 22, - ACTIONS(1575), 1, + [42742] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2663), 1, - anon_sym_RPAREN, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2650), 1, + anon_sym_COLON, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41258] = 22, - ACTIONS(1575), 1, + [42818] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2665), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2636), 1, anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41334] = 22, - ACTIONS(1575), 1, + [42894] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2667), 1, - aux_sym_namespace_aliasing_clause_token1, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2652), 1, + anon_sym_RBRACE, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41410] = 22, - ACTIONS(1575), 1, + [42970] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2669), 1, - aux_sym_namespace_aliasing_clause_token1, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2654), 1, + anon_sym_RBRACE, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, + ACTIONS(2220), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2228), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2232), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2224), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2222), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43046] = 22, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2196), 1, + anon_sym_AMP, + ACTIONS(2198), 1, + anon_sym_QMARK, + ACTIONS(2200), 1, + anon_sym_PIPE, + ACTIONS(2204), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2216), 1, + anon_sym_AMP_AMP, + ACTIONS(2218), 1, + anon_sym_CARET, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2656), 1, + anon_sym_RBRACE, + ACTIONS(2202), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41486] = 7, - ACTIONS(25), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(1575), 1, + [43122] = 22, + ACTIONS(1530), 1, sym_comment, - STATE(1392), 1, - sym__const_declaration, - STATE(2594), 1, - sym_visibility_modifier, - ACTIONS(45), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - ACTIONS(2637), 4, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(2635), 20, - 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, - 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_false, - anon_sym_null, - anon_sym_true, - sym_name, - [41532] = 15, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1711), 1, - sym_name, - ACTIONS(1721), 1, - anon_sym_LPAREN, - ACTIONS(1723), 1, - anon_sym_QMARK, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - STATE(1415), 1, - sym_qualified_name, - STATE(2113), 1, - sym_variable_name, - STATE(2217), 1, - sym__type, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - STATE(1453), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - STATE(1402), 4, - sym__types, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1717), 12, - 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_false, - anon_sym_null, - anon_sym_true, - [41594] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2671), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2606), 1, anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41670] = 22, - ACTIONS(1575), 1, + [43198] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2301), 1, - anon_sym_STAR_STAR, - ACTIONS(2309), 1, - anon_sym_GT_EQ, - ACTIONS(2313), 1, - anon_sym_DOT, - ACTIONS(2317), 1, - anon_sym_PERCENT, - ACTIONS(2319), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2321), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2323), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - ACTIONS(2327), 1, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, - ACTIONS(2329), 1, + ACTIONS(2212), 1, aux_sym_binary_expression_token4, - ACTIONS(2331), 1, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2671), 1, - anon_sym_RBRACK, - ACTIONS(2299), 2, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2658), 1, + anon_sym_RBRACE, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2232), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41746] = 22, - ACTIONS(1575), 1, + [43274] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2673), 1, - anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2660), 1, + anon_sym_EQ_GT, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41822] = 22, - ACTIONS(1575), 1, + [43350] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2675), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2662), 1, + anon_sym_RBRACE, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41898] = 22, - ACTIONS(1575), 1, + [43426] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2677), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2664), 1, + anon_sym_RPAREN, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41974] = 22, - ACTIONS(1575), 1, + [43502] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2679), 1, - anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2666), 1, + anon_sym_COLON, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42050] = 22, - ACTIONS(1575), 1, + [43578] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2681), 1, - anon_sym_RPAREN, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2668), 1, + anon_sym_EQ_GT, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42126] = 22, - ACTIONS(1575), 1, + [43654] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2683), 1, - anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2670), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42202] = 22, - ACTIONS(1575), 1, + [43730] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2685), 1, - anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2672), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42278] = 22, - ACTIONS(1575), 1, + [43806] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2687), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2674), 1, anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42354] = 22, - ACTIONS(1575), 1, + [43882] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2689), 1, - anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2676), 1, + anon_sym_RPAREN, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42430] = 22, - ACTIONS(1575), 1, + [43958] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2292), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2294), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2298), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2304), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2306), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2263), 1, + ACTIONS(2322), 1, + anon_sym_PERCENT, + ACTIONS(2324), 1, aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, + ACTIONS(2326), 1, aux_sym_binary_expression_token3, - ACTIONS(2691), 1, - anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2328), 1, + aux_sym_binary_expression_token4, + ACTIONS(2604), 1, + anon_sym_RBRACK, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2320), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42506] = 22, - ACTIONS(1575), 1, + [44034] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2290), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2292), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2294), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2298), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2300), 1, + anon_sym_STAR_STAR, + ACTIONS(2302), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2304), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2306), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2314), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2318), 1, anon_sym_DOT, - ACTIONS(2263), 1, + ACTIONS(2322), 1, + anon_sym_PERCENT, + ACTIONS(2324), 1, aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, + ACTIONS(2326), 1, aux_sym_binary_expression_token3, - ACTIONS(2693), 1, - anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2328), 1, + aux_sym_binary_expression_token4, + ACTIONS(2678), 1, + anon_sym_RBRACK, + ACTIONS(2296), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2316), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2320), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2312), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2310), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42582] = 22, - ACTIONS(1575), 1, + [44110] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2695), 1, - anon_sym_RPAREN, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2680), 1, + anon_sym_RBRACE, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42658] = 22, - ACTIONS(1575), 1, + [44186] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2684), 4, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2682), 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, + aux_sym__arrow_function_header_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_false, + anon_sym_null, + anon_sym_true, + sym_name, + [44224] = 22, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2697), 1, - anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2686), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42734] = 22, - ACTIONS(1575), 1, + [44300] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2699), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2688), 1, anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42810] = 22, - ACTIONS(1575), 1, + [44376] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2701), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2678), 1, anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42886] = 22, - ACTIONS(1575), 1, + [44452] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2301), 1, - anon_sym_STAR_STAR, - ACTIONS(2309), 1, - anon_sym_GT_EQ, - ACTIONS(2313), 1, - anon_sym_DOT, - ACTIONS(2317), 1, - anon_sym_PERCENT, - ACTIONS(2319), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2321), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2323), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - ACTIONS(2327), 1, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, - ACTIONS(2329), 1, + ACTIONS(2212), 1, aux_sym_binary_expression_token4, - ACTIONS(2331), 1, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2703), 1, - anon_sym_RBRACK, - ACTIONS(2299), 2, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2690), 1, + anon_sym_RBRACE, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2232), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42962] = 22, - ACTIONS(1575), 1, + [44528] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2705), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2692), 1, anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43038] = 22, - ACTIONS(1575), 1, + [44604] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2703), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2694), 1, anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43114] = 22, - ACTIONS(1575), 1, + [44680] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2707), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2696), 1, anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43190] = 22, - ACTIONS(1575), 1, + [44756] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2709), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2698), 1, anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43266] = 22, - ACTIONS(1575), 1, + [44832] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2301), 1, - anon_sym_STAR_STAR, - ACTIONS(2309), 1, - anon_sym_GT_EQ, - ACTIONS(2313), 1, - anon_sym_DOT, - ACTIONS(2317), 1, - anon_sym_PERCENT, - ACTIONS(2319), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2321), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2323), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - ACTIONS(2327), 1, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, - ACTIONS(2329), 1, + ACTIONS(2212), 1, aux_sym_binary_expression_token4, - ACTIONS(2331), 1, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2705), 1, - anon_sym_RBRACK, - ACTIONS(2299), 2, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2700), 1, + anon_sym_RBRACE, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2232), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43342] = 22, - ACTIONS(1575), 1, + [44908] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2711), 1, - anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2702), 1, + anon_sym_RPAREN, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43418] = 22, - ACTIONS(1575), 1, + [44984] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2713), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2704), 1, anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43494] = 22, - ACTIONS(1575), 1, + [45060] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2715), 1, - anon_sym_COLON, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2706), 1, + anon_sym_RBRACE, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, - anon_sym_LT, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, + anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43570] = 22, - ACTIONS(1575), 1, + [45136] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2301), 1, - anon_sym_STAR_STAR, - ACTIONS(2309), 1, - anon_sym_GT_EQ, - ACTIONS(2313), 1, - anon_sym_DOT, - ACTIONS(2317), 1, - anon_sym_PERCENT, - ACTIONS(2319), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2321), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2323), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - ACTIONS(2327), 1, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, - ACTIONS(2329), 1, + ACTIONS(2212), 1, aux_sym_binary_expression_token4, - ACTIONS(2331), 1, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2717), 1, - anon_sym_RBRACK, - ACTIONS(2299), 2, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2708), 1, + anon_sym_EQ_GT, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2232), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43646] = 22, - ACTIONS(1575), 1, + [45212] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2717), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2710), 1, anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2249), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43722] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, - anon_sym_AMP, - ACTIONS(2235), 1, - anon_sym_QMARK, - ACTIONS(2237), 1, - anon_sym_PIPE, - ACTIONS(2239), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, - anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2719), 1, - anon_sym_COLON, - ACTIONS(2223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2227), 2, + ACTIONS(2232), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2247), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43798] = 22, - ACTIONS(1575), 1, + [45288] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, - anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2263), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, - ACTIONS(2721), 1, - anon_sym_RBRACE, - ACTIONS(2223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2249), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43874] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, - anon_sym_AMP, - ACTIONS(2235), 1, - anon_sym_QMARK, - ACTIONS(2237), 1, - anon_sym_PIPE, - ACTIONS(2239), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2723), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2712), 1, anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43950] = 22, - ACTIONS(1575), 1, + [45364] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2301), 1, - anon_sym_STAR_STAR, - ACTIONS(2309), 1, - anon_sym_GT_EQ, - ACTIONS(2313), 1, - anon_sym_DOT, - ACTIONS(2317), 1, - anon_sym_PERCENT, - ACTIONS(2319), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2321), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2323), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - ACTIONS(2327), 1, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, - ACTIONS(2329), 1, + ACTIONS(2212), 1, aux_sym_binary_expression_token4, - ACTIONS(2331), 1, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2725), 1, - anon_sym_RBRACK, - ACTIONS(2299), 2, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2714), 1, + anon_sym_RBRACE, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2232), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44026] = 22, - ACTIONS(1575), 1, + [45440] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, - anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2263), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, - ACTIONS(2727), 1, - anon_sym_RBRACE, - ACTIONS(2223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2249), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44102] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, - anon_sym_AMP, - ACTIONS(2235), 1, - anon_sym_QMARK, - ACTIONS(2237), 1, - anon_sym_PIPE, - ACTIONS(2239), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2729), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2716), 1, anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2249), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44178] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, - anon_sym_AMP, - ACTIONS(2235), 1, - anon_sym_QMARK, - ACTIONS(2237), 1, - anon_sym_PIPE, - ACTIONS(2239), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, - anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2725), 1, - anon_sym_RBRACE, - ACTIONS(2223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2227), 2, + ACTIONS(2232), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2247), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44254] = 22, - ACTIONS(1575), 1, + [45516] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, - anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2263), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, - ACTIONS(2731), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2249), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44330] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, - anon_sym_AMP, - ACTIONS(2235), 1, - anon_sym_QMARK, - ACTIONS(2237), 1, - anon_sym_PIPE, - ACTIONS(2239), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2733), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2718), 1, anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2249), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44406] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, - anon_sym_AMP, - ACTIONS(2235), 1, - anon_sym_QMARK, - ACTIONS(2237), 1, - anon_sym_PIPE, - ACTIONS(2239), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, - anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2735), 1, - anon_sym_RBRACE, - ACTIONS(2223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2227), 2, + ACTIONS(2232), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2247), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44482] = 22, - ACTIONS(1575), 1, + [45592] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, + aux_sym_binary_expression_token2, + ACTIONS(2210), 1, + aux_sym_binary_expression_token3, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2737), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2720), 1, anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2249), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44558] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, - anon_sym_AMP, - ACTIONS(2235), 1, - anon_sym_QMARK, - ACTIONS(2237), 1, - anon_sym_PIPE, - ACTIONS(2239), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, - anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2739), 1, - aux_sym_namespace_aliasing_clause_token1, - ACTIONS(2223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2227), 2, + ACTIONS(2232), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2247), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44634] = 22, - ACTIONS(1575), 1, + [45668] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, - anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2263), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, - ACTIONS(2741), 1, - anon_sym_RBRACE, - ACTIONS(2223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2249), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44710] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, - anon_sym_AMP, - ACTIONS(2235), 1, - anon_sym_QMARK, - ACTIONS(2237), 1, - anon_sym_PIPE, - ACTIONS(2239), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2743), 1, - anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2722), 1, + anon_sym_RPAREN, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2249), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44786] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, - anon_sym_AMP, - ACTIONS(2235), 1, - anon_sym_QMARK, - ACTIONS(2237), 1, - anon_sym_PIPE, - ACTIONS(2239), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, - anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2745), 1, - anon_sym_RBRACE, - ACTIONS(2223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2227), 2, + ACTIONS(2232), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2247), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44862] = 22, - ACTIONS(1575), 1, + [45744] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, - anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2263), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, - ACTIONS(2747), 1, - anon_sym_RBRACE, - ACTIONS(2223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2249), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44938] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, - anon_sym_AMP, - ACTIONS(2235), 1, - anon_sym_QMARK, - ACTIONS(2237), 1, - anon_sym_PIPE, - ACTIONS(2239), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2749), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2724), 1, anon_sym_COLON, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2232), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45014] = 22, - ACTIONS(1575), 1, + [45820] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2301), 1, - anon_sym_STAR_STAR, - ACTIONS(2309), 1, - anon_sym_GT_EQ, - ACTIONS(2313), 1, - anon_sym_DOT, - ACTIONS(2317), 1, - anon_sym_PERCENT, - ACTIONS(2319), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2321), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2323), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2325), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - ACTIONS(2327), 1, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, - ACTIONS(2329), 1, + ACTIONS(2212), 1, aux_sym_binary_expression_token4, - ACTIONS(2331), 1, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2333), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2335), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2641), 1, - anon_sym_RBRACK, - ACTIONS(2299), 2, + ACTIONS(2226), 1, + anon_sym_GT_EQ, + ACTIONS(2230), 1, + anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2726), 1, + anon_sym_RPAREN, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2303), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2311), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2315), 2, + ACTIONS(2232), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2307), 3, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2305), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45090] = 22, - ACTIONS(1575), 1, + [45896] = 22, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, + ACTIONS(2196), 1, anon_sym_AMP, - ACTIONS(2235), 1, + ACTIONS(2198), 1, anon_sym_QMARK, - ACTIONS(2237), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2239), 1, + ACTIONS(2204), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, - anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2263), 1, + ACTIONS(2206), 1, + anon_sym_STAR_STAR, + ACTIONS(2208), 1, aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, + ACTIONS(2210), 1, aux_sym_binary_expression_token3, - ACTIONS(2751), 1, - anon_sym_COLON, - ACTIONS(2223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2249), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45166] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, - anon_sym_AMP, - ACTIONS(2235), 1, - anon_sym_QMARK, - ACTIONS(2237), 1, - anon_sym_PIPE, - ACTIONS(2239), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2212), 1, + aux_sym_binary_expression_token4, + ACTIONS(2214), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2216), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2218), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2226), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2230), 1, anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2753), 1, + ACTIONS(2234), 1, + anon_sym_PERCENT, + ACTIONS(2728), 1, anon_sym_RBRACE, - ACTIONS(2223), 2, + ACTIONS(2202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, + ACTIONS(2220), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2249), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45242] = 22, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, - anon_sym_AMP, - ACTIONS(2235), 1, - anon_sym_QMARK, - ACTIONS(2237), 1, - anon_sym_PIPE, - ACTIONS(2239), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, - anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2755), 1, - aux_sym_namespace_aliasing_clause_token1, - ACTIONS(2223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2227), 2, + ACTIONS(2232), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2247), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2251), 3, + ACTIONS(2224), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2222), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45318] = 22, - ACTIONS(1575), 1, + [45972] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_STAR_STAR, - ACTIONS(2229), 1, - anon_sym_PERCENT, - ACTIONS(2233), 1, - anon_sym_AMP, - ACTIONS(2235), 1, - anon_sym_QMARK, - ACTIONS(2237), 1, - anon_sym_PIPE, - ACTIONS(2239), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, - anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2263), 1, - aux_sym_binary_expression_token2, - ACTIONS(2265), 1, - aux_sym_binary_expression_token4, - ACTIONS(2269), 1, - aux_sym_binary_expression_token3, - ACTIONS(2757), 1, - anon_sym_RBRACE, - ACTIONS(2223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2247), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2249), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45394] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(113), 1, + ACTIONS(115), 1, anon_sym_POUND_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2482), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2489), 1, + ACTIONS(2484), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2491), 1, + ACTIONS(2486), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2497), 1, + ACTIONS(2492), 1, aux_sym_final_modifier_token1, - ACTIONS(2499), 1, + ACTIONS(2494), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2501), 1, + ACTIONS(2496), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2759), 1, + ACTIONS(2730), 1, anon_sym_RBRACE, - ACTIONS(2761), 1, - aux_sym_enum_case_token1, - ACTIONS(2763), 1, - sym_var_modifier, - STATE(1343), 1, - sym_attribute_list, - STATE(1853), 1, - sym__function_definition_header, - STATE(972), 2, - sym_attribute_group, - aux_sym_attribute_list_repeat1, - ACTIONS(2505), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1311), 5, - sym__enum_member_declaration, - sym_enum_case, - sym_method_declaration, - sym_use_declaration, - aux_sym_enum_declaration_list_repeat1, - STATE(1345), 7, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym__modifier, - sym_static_modifier, - sym_visibility_modifier, - aux_sym_property_declaration_repeat1, - [45459] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(113), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2487), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2489), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2491), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2497), 1, - aux_sym_final_modifier_token1, - ACTIONS(2499), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2501), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2761), 1, + ACTIONS(2732), 1, aux_sym_enum_case_token1, - ACTIONS(2763), 1, + ACTIONS(2734), 1, sym_var_modifier, - ACTIONS(2765), 1, - anon_sym_RBRACE, - STATE(1343), 1, + STATE(1345), 1, sym_attribute_list, - STATE(1853), 1, + STATE(1783), 1, sym__function_definition_header, - STATE(972), 2, + STATE(970), 2, sym_attribute_group, aux_sym_attribute_list_repeat1, - ACTIONS(2505), 3, + ACTIONS(2500), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1315), 5, + STATE(1314), 5, sym__enum_member_declaration, sym_enum_case, sym_method_declaration, sym_use_declaration, aux_sym_enum_declaration_list_repeat1, - STATE(1345), 7, + STATE(1347), 7, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, sym__modifier, sym_static_modifier, sym_visibility_modifier, - aux_sym_property_declaration_repeat1, - [45524] = 17, - ACTIONS(3), 1, + aux_sym_class_declaration_repeat1, + [46037] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2767), 1, + ACTIONS(2738), 4, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2736), 25, aux_sym_function_static_declaration_token1, - ACTIONS(2770), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2773), 1, + aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2776), 1, - anon_sym_RBRACE, - ACTIONS(2778), 1, - aux_sym_enum_case_token1, - ACTIONS(2781), 1, + aux_sym_namespace_use_declaration_token3, + anon_sym_string, + anon_sym_int, + aux_sym_class_declaration_token1, aux_sym_final_modifier_token1, - ACTIONS(2784), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2787), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2790), 1, sym_var_modifier, - ACTIONS(2796), 1, - anon_sym_POUND_LBRACK, - STATE(1343), 1, - sym_attribute_list, - STATE(1853), 1, - sym__function_definition_header, - STATE(972), 2, - sym_attribute_group, - aux_sym_attribute_list_repeat1, - ACTIONS(2793), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1311), 5, - sym__enum_member_declaration, - sym_enum_case, - sym_method_declaration, - sym_use_declaration, - aux_sym_enum_declaration_list_repeat1, - STATE(1345), 7, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym__modifier, - sym_static_modifier, - sym_visibility_modifier, - aux_sym_property_declaration_repeat1, - [45589] = 14, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1711), 1, - sym_name, - ACTIONS(1721), 1, - anon_sym_LPAREN, - ACTIONS(1723), 1, - anon_sym_QMARK, - ACTIONS(2799), 1, - sym_bottom_type, - STATE(1415), 1, - sym_qualified_name, - STATE(2415), 1, - sym__type, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - STATE(1453), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - STATE(1402), 4, - sym__types, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1717), 12, - anon_sym_string, - anon_sym_int, anon_sym_array, aux_sym_primitive_type_token1, anon_sym_iterable, @@ -114718,41 +115082,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [45648] = 14, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2801), 1, sym_name, - ACTIONS(2805), 1, + [46074] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2742), 4, + anon_sym_BSLASH, anon_sym_LPAREN, - ACTIONS(2807), 1, anon_sym_QMARK, - ACTIONS(2809), 1, - sym_bottom_type, - STATE(1648), 1, - sym_qualified_name, - STATE(2078), 1, - sym__type, - STATE(2599), 1, - sym_namespace_name, - STATE(2600), 1, - sym_namespace_name_as_prefix, - STATE(2114), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - STATE(1507), 4, - sym__types, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(2803), 12, + anon_sym_DOLLAR, + ACTIONS(2740), 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_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, @@ -114763,15 +115116,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [45707] = 3, - ACTIONS(1575), 1, + sym_name, + [46111] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2813), 4, + ACTIONS(2746), 4, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(2811), 25, + ACTIONS(2744), 25, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -114797,118 +115151,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [45744] = 17, + [46148] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(115), 1, anon_sym_POUND_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2482), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2489), 1, + ACTIONS(2484), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2491), 1, + ACTIONS(2486), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2497), 1, + ACTIONS(2492), 1, aux_sym_final_modifier_token1, - ACTIONS(2499), 1, + ACTIONS(2494), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2501), 1, + ACTIONS(2496), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2761), 1, + ACTIONS(2732), 1, aux_sym_enum_case_token1, - ACTIONS(2763), 1, + ACTIONS(2734), 1, sym_var_modifier, - ACTIONS(2815), 1, + ACTIONS(2748), 1, anon_sym_RBRACE, - STATE(1343), 1, + STATE(1345), 1, sym_attribute_list, - STATE(1853), 1, + STATE(1783), 1, sym__function_definition_header, - STATE(972), 2, + STATE(970), 2, sym_attribute_group, aux_sym_attribute_list_repeat1, - ACTIONS(2505), 3, + ACTIONS(2500), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1311), 5, + STATE(1309), 5, sym__enum_member_declaration, sym_enum_case, sym_method_declaration, sym_use_declaration, aux_sym_enum_declaration_list_repeat1, - STATE(1345), 7, + STATE(1347), 7, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, sym__modifier, sym_static_modifier, sym_visibility_modifier, - aux_sym_property_declaration_repeat1, - [45809] = 17, + aux_sym_class_declaration_repeat1, + [46213] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2750), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2489), 1, + ACTIONS(2753), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2491), 1, + ACTIONS(2756), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2497), 1, + ACTIONS(2759), 1, + anon_sym_RBRACE, + ACTIONS(2761), 1, + aux_sym_enum_case_token1, + ACTIONS(2764), 1, aux_sym_final_modifier_token1, - ACTIONS(2499), 1, + ACTIONS(2767), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2501), 1, + ACTIONS(2770), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2761), 1, - aux_sym_enum_case_token1, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_var_modifier, - ACTIONS(2817), 1, - anon_sym_RBRACE, - STATE(1343), 1, + ACTIONS(2779), 1, + anon_sym_POUND_LBRACK, + STATE(1345), 1, sym_attribute_list, - STATE(1853), 1, + STATE(1783), 1, sym__function_definition_header, - STATE(972), 2, + STATE(970), 2, sym_attribute_group, aux_sym_attribute_list_repeat1, - ACTIONS(2505), 3, + ACTIONS(2776), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1309), 5, + STATE(1314), 5, sym__enum_member_declaration, sym_enum_case, sym_method_declaration, sym_use_declaration, aux_sym_enum_declaration_list_repeat1, - STATE(1345), 7, + STATE(1347), 7, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, sym__modifier, sym_static_modifier, sym_visibility_modifier, - aux_sym_property_declaration_repeat1, - [45874] = 4, - ACTIONS(1575), 1, + aux_sym_class_declaration_repeat1, + [46278] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2819), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2637), 4, + ACTIONS(2784), 4, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(2635), 23, + ACTIONS(2782), 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_class_declaration_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -114927,61 +115281,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [45912] = 3, - ACTIONS(1575), 1, + [46315] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(2823), 4, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(2821), 24, + ACTIONS(115), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2482), 1, aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, + ACTIONS(2484), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2486), 1, aux_sym_namespace_use_declaration_token2, - anon_sym_string, - anon_sym_int, + ACTIONS(2492), 1, aux_sym_final_modifier_token1, + ACTIONS(2494), 1, aux_sym_abstract_modifier_token1, + ACTIONS(2496), 1, aux_sym_readonly_modifier_token1, + ACTIONS(2732), 1, + aux_sym_enum_case_token1, + ACTIONS(2734), 1, sym_var_modifier, + ACTIONS(2786), 1, + anon_sym_RBRACE, + STATE(1345), 1, + sym_attribute_list, + STATE(1783), 1, + sym__function_definition_header, + STATE(970), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2500), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - aux_sym__arrow_function_header_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_false, - anon_sym_null, - anon_sym_true, - sym_name, - [45948] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2827), 4, + STATE(1319), 5, + sym__enum_member_declaration, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + aux_sym_enum_declaration_list_repeat1, + STATE(1347), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_class_declaration_repeat1, + [46380] = 14, + ACTIONS(27), 1, anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1666), 1, + sym_name, + ACTIONS(1678), 1, anon_sym_LPAREN, + ACTIONS(1680), 1, anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(2825), 24, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, + ACTIONS(2788), 1, + sym_bottom_type, + STATE(1418), 1, + sym_qualified_name, + STATE(2300), 1, + sym_type, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + STATE(1454), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(1409), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1674), 12, 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, @@ -114992,29 +115374,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - sym_name, - [45984] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2831), 4, + [46439] = 14, + ACTIONS(27), 1, anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2790), 1, + sym_name, + ACTIONS(2794), 1, anon_sym_LPAREN, + ACTIONS(2796), 1, anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(2829), 24, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, + ACTIONS(2798), 1, + sym_bottom_type, + STATE(1710), 1, + sym_qualified_name, + STATE(2013), 1, + sym_type, + STATE(2556), 1, + sym_namespace_name, + STATE(2557), 1, + sym_namespace_name_as_prefix, + STATE(2094), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(1511), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(2792), 12, 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, @@ -115025,65 +115419,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - sym_name, - [46020] = 3, - ACTIONS(1575), 1, + [46498] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(2835), 4, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(2833), 24, + ACTIONS(115), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2482), 1, aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, + ACTIONS(2484), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2486), 1, aux_sym_namespace_use_declaration_token2, - anon_sym_string, - anon_sym_int, - aux_sym_class_declaration_token1, + ACTIONS(2492), 1, aux_sym_final_modifier_token1, + ACTIONS(2494), 1, aux_sym_abstract_modifier_token1, + ACTIONS(2496), 1, aux_sym_readonly_modifier_token1, + ACTIONS(2732), 1, + aux_sym_enum_case_token1, + ACTIONS(2734), 1, sym_var_modifier, + ACTIONS(2800), 1, + anon_sym_RBRACE, + STATE(1345), 1, + sym_attribute_list, + STATE(1783), 1, + sym__function_definition_header, + STATE(970), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2500), 3, 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_false, - anon_sym_null, - anon_sym_true, - sym_name, - [46056] = 11, + STATE(1314), 5, + sym__enum_member_declaration, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + aux_sym_enum_declaration_list_repeat1, + STATE(1347), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_class_declaration_repeat1, + [46563] = 11, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1711), 1, + ACTIONS(1666), 1, sym_name, - ACTIONS(1752), 1, + ACTIONS(1709), 1, anon_sym_QMARK, - ACTIONS(2837), 1, + ACTIONS(2802), 1, anon_sym_LPAREN, - STATE(1415), 1, + STATE(1418), 1, sym_qualified_name, - STATE(2515), 1, + STATE(2492), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - STATE(1419), 4, + STATE(1425), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1717), 12, + ACTIONS(1674), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115096,31 +115504,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46104] = 11, + [46611] = 11, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1711), 1, + ACTIONS(1666), 1, sym_name, - ACTIONS(1723), 1, + ACTIONS(1680), 1, anon_sym_QMARK, - STATE(1415), 1, + STATE(1418), 1, sym_qualified_name, - STATE(2531), 1, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - STATE(2614), 1, + STATE(2577), 1, sym_intersection_type, - STATE(1913), 4, + STATE(1887), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1717), 12, + ACTIONS(1674), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115133,31 +115541,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46152] = 11, + [46659] = 11, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1711), 1, + ACTIONS(1666), 1, sym_name, - ACTIONS(1723), 1, + ACTIONS(1709), 1, anon_sym_QMARK, - STATE(1415), 1, + ACTIONS(2802), 1, + anon_sym_LPAREN, + STATE(1418), 1, sym_qualified_name, - STATE(2497), 1, - sym_intersection_type, - STATE(2531), 1, + STATE(2492), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - STATE(1913), 4, + STATE(1443), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1717), 12, + ACTIONS(1674), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115170,31 +115578,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46200] = 11, + [46707] = 11, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1711), 1, + ACTIONS(1666), 1, sym_name, - ACTIONS(1723), 1, + ACTIONS(1680), 1, anon_sym_QMARK, - STATE(1415), 1, + STATE(1418), 1, sym_qualified_name, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2567), 1, + STATE(2421), 1, sym_intersection_type, - STATE(2599), 1, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, sym_namespace_name, - STATE(1913), 4, + STATE(1887), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1717), 12, + ACTIONS(1674), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115207,31 +115615,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46248] = 11, + [46755] = 11, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1711), 1, + ACTIONS(1666), 1, sym_name, - ACTIONS(1723), 1, + ACTIONS(1680), 1, anon_sym_QMARK, - STATE(1415), 1, + STATE(1418), 1, sym_qualified_name, - STATE(2469), 1, + STATE(2433), 1, sym_intersection_type, - STATE(2531), 1, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - STATE(1913), 4, + STATE(1887), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1717), 12, + ACTIONS(1674), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115244,31 +115652,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46296] = 11, + [46803] = 11, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(2790), 1, sym_name, - ACTIONS(2807), 1, + ACTIONS(2796), 1, anon_sym_QMARK, - ACTIONS(2839), 1, + ACTIONS(2804), 1, anon_sym_LPAREN, - STATE(1648), 1, + STATE(1710), 1, sym_qualified_name, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - STATE(2600), 1, + STATE(2557), 1, sym_namespace_name_as_prefix, - STATE(1795), 4, + STATE(1753), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(2803), 12, + ACTIONS(2792), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115281,31 +115689,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46344] = 11, + [46851] = 11, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1711), 1, + ACTIONS(1666), 1, sym_name, - ACTIONS(1752), 1, + ACTIONS(1680), 1, anon_sym_QMARK, - ACTIONS(2837), 1, - anon_sym_LPAREN, - STATE(1415), 1, + STATE(1418), 1, sym_qualified_name, - STATE(2515), 1, + STATE(2438), 1, + sym_intersection_type, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - STATE(1425), 4, + STATE(1887), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1717), 12, + ACTIONS(1674), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115318,31 +115726,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46392] = 11, + [46899] = 11, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1711), 1, + ACTIONS(1666), 1, sym_name, - ACTIONS(1723), 1, + ACTIONS(1680), 1, anon_sym_QMARK, - ACTIONS(2837), 1, + ACTIONS(2802), 1, anon_sym_LPAREN, - STATE(1415), 1, + STATE(1418), 1, sym_qualified_name, - STATE(2531), 1, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - STATE(1419), 4, + STATE(1425), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1717), 12, + ACTIONS(1674), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115355,31 +115763,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46440] = 11, + [46947] = 11, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1711), 1, + ACTIONS(1666), 1, sym_name, - ACTIONS(1723), 1, + ACTIONS(1680), 1, anon_sym_QMARK, - ACTIONS(2837), 1, - anon_sym_LPAREN, - STATE(1415), 1, + STATE(1418), 1, sym_qualified_name, - STATE(2531), 1, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - STATE(1425), 4, + STATE(2573), 1, + sym_intersection_type, + STATE(1887), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1717), 12, + ACTIONS(1674), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115392,31 +115800,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46488] = 11, + [46995] = 11, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(1666), 1, sym_name, - ACTIONS(2807), 1, + ACTIONS(1680), 1, anon_sym_QMARK, - ACTIONS(2839), 1, + ACTIONS(2802), 1, anon_sym_LPAREN, - STATE(1648), 1, + STATE(1418), 1, sym_qualified_name, - STATE(2599), 1, - sym_namespace_name, - STATE(2600), 1, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(1731), 4, + STATE(2556), 1, + sym_namespace_name, + STATE(1443), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(2803), 12, + ACTIONS(1674), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115429,31 +115837,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46536] = 11, + [47043] = 11, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1711), 1, + ACTIONS(2790), 1, sym_name, - ACTIONS(1723), 1, + ACTIONS(2796), 1, anon_sym_QMARK, - STATE(1415), 1, + ACTIONS(2804), 1, + anon_sym_LPAREN, + STATE(1710), 1, sym_qualified_name, - STATE(2436), 1, - sym_intersection_type, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - STATE(1913), 4, + STATE(2557), 1, + sym_namespace_name_as_prefix, + STATE(1743), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1717), 12, + ACTIONS(2792), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115466,29 +115874,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46584] = 10, + [47091] = 10, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1711), 1, + ACTIONS(1666), 1, sym_name, - ACTIONS(1723), 1, + ACTIONS(1680), 1, anon_sym_QMARK, - STATE(1415), 1, + STATE(1418), 1, sym_qualified_name, - STATE(2531), 1, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - STATE(1432), 4, + STATE(1427), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1717), 12, + ACTIONS(1674), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115501,29 +115909,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46629] = 10, + [47136] = 10, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1711), 1, + ACTIONS(2790), 1, sym_name, - ACTIONS(1723), 1, + ACTIONS(2796), 1, anon_sym_QMARK, - STATE(1415), 1, + STATE(1710), 1, sym_qualified_name, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - STATE(1431), 4, + STATE(2557), 1, + sym_namespace_name_as_prefix, + STATE(1754), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1717), 12, + ACTIONS(2792), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115536,29 +115944,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46674] = 10, + [47181] = 10, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(1666), 1, sym_name, - ACTIONS(2807), 1, + ACTIONS(1709), 1, anon_sym_QMARK, - STATE(1648), 1, + STATE(1418), 1, sym_qualified_name, - STATE(2599), 1, - sym_namespace_name, - STATE(2600), 1, + STATE(2492), 1, sym_namespace_name_as_prefix, - STATE(1730), 4, + STATE(2556), 1, + sym_namespace_name, + STATE(1435), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(2803), 12, + ACTIONS(1674), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115571,29 +115979,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46719] = 10, + [47226] = 10, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1711), 1, + ACTIONS(1666), 1, sym_name, - ACTIONS(1752), 1, + ACTIONS(1709), 1, anon_sym_QMARK, - STATE(1415), 1, + STATE(1418), 1, sym_qualified_name, - STATE(2515), 1, + STATE(2492), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - STATE(1432), 4, + STATE(1427), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1717), 12, + ACTIONS(1674), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115606,29 +116014,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46764] = 10, + [47271] = 10, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(2790), 1, sym_name, - ACTIONS(2807), 1, + ACTIONS(2796), 1, anon_sym_QMARK, - STATE(1648), 1, + STATE(1710), 1, sym_qualified_name, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - STATE(2600), 1, + STATE(2557), 1, sym_namespace_name_as_prefix, - STATE(1797), 4, + STATE(1742), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(2803), 12, + ACTIONS(2792), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115641,29 +116049,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46809] = 10, + [47316] = 10, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1711), 1, + ACTIONS(1666), 1, sym_name, - ACTIONS(1752), 1, + ACTIONS(1680), 1, anon_sym_QMARK, - STATE(1415), 1, + STATE(1418), 1, sym_qualified_name, - STATE(2515), 1, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - STATE(1431), 4, + STATE(1435), 4, sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1717), 12, + ACTIONS(1674), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115676,25 +116084,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46854] = 9, + [47361] = 7, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1682), 1, + anon_sym_DOLLAR, + ACTIONS(1873), 1, + anon_sym_COLON_COLON, + STATE(1758), 1, + sym_static_variable_declaration, + STATE(1760), 1, + sym_variable_name, + ACTIONS(1586), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(2684), 12, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + aux_sym_class_declaration_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + 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, + [47398] = 7, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1682), 1, + anon_sym_DOLLAR, + ACTIONS(1873), 1, + anon_sym_COLON_COLON, + STATE(1760), 1, + sym_variable_name, + STATE(1792), 1, + sym_static_variable_declaration, + ACTIONS(1586), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(2684), 12, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + aux_sym_class_declaration_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + 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, + [47435] = 9, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1711), 1, + ACTIONS(1666), 1, sym_name, - STATE(1415), 1, + STATE(1418), 1, sym_qualified_name, - STATE(2515), 1, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - STATE(1406), 2, + STATE(1419), 2, sym_named_type, sym_primitive_type, - ACTIONS(1717), 12, + ACTIONS(1674), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115707,25 +116175,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46894] = 9, + [47475] = 14, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2482), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2492), 1, + aux_sym_final_modifier_token1, + ACTIONS(2494), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2496), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2806), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2808), 1, + aux_sym_enum_declaration_token1, + ACTIONS(2810), 1, + aux_sym_class_declaration_token1, + ACTIONS(2812), 1, + sym_var_modifier, + ACTIONS(2814), 1, + aux_sym__arrow_function_header_token1, + STATE(1415), 1, + sym_static_modifier, + STATE(2299), 1, + sym__function_definition_header, + ACTIONS(2500), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1353), 6, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_visibility_modifier, + aux_sym_class_declaration_repeat1, + [47525] = 9, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1711), 1, + ACTIONS(2790), 1, sym_name, - STATE(1415), 1, + STATE(1710), 1, sym_qualified_name, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - STATE(1406), 2, + STATE(2557), 1, + sym_namespace_name_as_prefix, + STATE(1707), 2, sym_named_type, sym_primitive_type, - ACTIONS(1717), 12, + ACTIONS(2792), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115738,29 +116242,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46934] = 9, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + [47565] = 14, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2801), 1, - sym_name, - STATE(1648), 1, - sym_qualified_name, - STATE(2599), 1, - sym_namespace_name, - STATE(2600), 1, - sym_namespace_name_as_prefix, - STATE(1632), 2, - sym_named_type, - sym_primitive_type, - ACTIONS(2803), 12, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, + ACTIONS(2482), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2492), 1, + aux_sym_final_modifier_token1, + ACTIONS(2494), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2496), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2806), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2814), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(2816), 1, + aux_sym_enum_declaration_token1, + ACTIONS(2818), 1, + aux_sym_class_declaration_token1, + ACTIONS(2820), 1, + sym_var_modifier, + STATE(1415), 1, + sym_static_modifier, + STATE(2298), 1, + sym__function_definition_header, + ACTIONS(2500), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1351), 6, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_visibility_modifier, + aux_sym_class_declaration_repeat1, + [47615] = 9, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1666), 1, + sym_name, + STATE(1418), 1, + sym_qualified_name, + STATE(2492), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + STATE(1419), 2, + sym_named_type, + sym_primitive_type, + ACTIONS(1674), 12, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, anon_sym_iterable, anon_sym_bool, anon_sym_float, @@ -115769,150 +116309,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46974] = 14, - ACTIONS(1575), 1, + [47655] = 12, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2487), 1, + ACTIONS(2482), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2491), 1, + ACTIONS(2486), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2493), 1, + ACTIONS(2488), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2497), 1, + ACTIONS(2492), 1, aux_sym_final_modifier_token1, - ACTIONS(2499), 1, + ACTIONS(2494), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2501), 1, + ACTIONS(2496), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2841), 1, + ACTIONS(2822), 1, sym_var_modifier, - STATE(1239), 1, - sym_final_modifier, - STATE(1317), 1, - sym_visibility_modifier, - STATE(1393), 1, + STATE(1389), 1, sym__const_declaration, - STATE(1765), 1, + STATE(1737), 1, sym__function_definition_header, - ACTIONS(2505), 3, + ACTIONS(2500), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(643), 5, + STATE(635), 7, + sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, sym__modifier, sym_static_modifier, - aux_sym_property_declaration_repeat1, - [47023] = 11, - ACTIONS(1575), 1, + sym_visibility_modifier, + aux_sym_class_declaration_repeat1, + [47700] = 11, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2487), 1, + ACTIONS(2482), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2491), 1, + ACTIONS(2486), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2497), 1, + ACTIONS(2492), 1, aux_sym_final_modifier_token1, - ACTIONS(2499), 1, + ACTIONS(2494), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2501), 1, + ACTIONS(2496), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2843), 1, + ACTIONS(2824), 1, aux_sym_enum_case_token1, - ACTIONS(2845), 1, + ACTIONS(2826), 1, sym_var_modifier, - STATE(1765), 1, + STATE(1737), 1, sym__function_definition_header, - ACTIONS(2505), 3, + ACTIONS(2500), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1344), 7, + STATE(1350), 7, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, sym__modifier, sym_static_modifier, sym_visibility_modifier, - aux_sym_property_declaration_repeat1, - [47065] = 10, - ACTIONS(1575), 1, + aux_sym_class_declaration_repeat1, + [47742] = 10, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2487), 1, + ACTIONS(2482), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2491), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2497), 1, + ACTIONS(2492), 1, aux_sym_final_modifier_token1, - ACTIONS(2499), 1, + ACTIONS(2494), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2501), 1, + ACTIONS(2496), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2847), 1, + ACTIONS(2828), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2830), 1, + aux_sym_class_declaration_token1, + ACTIONS(2832), 1, sym_var_modifier, - STATE(1861), 1, - sym__function_definition_header, - ACTIONS(2505), 3, + ACTIONS(2500), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1087), 7, + STATE(975), 7, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, sym__modifier, sym_static_modifier, sym_visibility_modifier, - aux_sym_property_declaration_repeat1, - [47104] = 10, - ACTIONS(1575), 1, + aux_sym_class_declaration_repeat1, + [47781] = 10, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2487), 1, + ACTIONS(2482), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2491), 1, + ACTIONS(2486), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2497), 1, + ACTIONS(2492), 1, aux_sym_final_modifier_token1, - ACTIONS(2499), 1, + ACTIONS(2494), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2501), 1, + ACTIONS(2496), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2847), 1, + ACTIONS(2832), 1, sym_var_modifier, - STATE(1787), 1, + STATE(1739), 1, sym__function_definition_header, - ACTIONS(2505), 3, + ACTIONS(2500), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1087), 7, + STATE(975), 7, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, sym__modifier, sym_static_modifier, sym_visibility_modifier, - aux_sym_property_declaration_repeat1, - [47143] = 9, - ACTIONS(608), 1, + aux_sym_class_declaration_repeat1, + [47820] = 10, + ACTIONS(585), 1, + sym_integer, + ACTIONS(615), 1, anon_sym_LT_LT_LT, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2849), 1, + ACTIONS(2834), 1, sym_float, - ACTIONS(2851), 1, - sym_integer, - ACTIONS(2853), 1, + ACTIONS(2836), 1, aux_sym__argument_name_token1, - ACTIONS(2855), 1, + ACTIONS(2838), 1, aux_sym__argument_name_token2, - ACTIONS(604), 2, + STATE(2561), 1, + sym_literal, + ACTIONS(611), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(606), 2, + ACTIONS(613), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(2479), 7, + STATE(916), 7, sym_encapsed_string, sym_string, sym_heredoc, @@ -115920,17 +116460,156 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean, sym_null, sym__string, - [47179] = 3, - ACTIONS(1575), 1, + [47859] = 10, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2482), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2492), 1, + aux_sym_final_modifier_token1, + ACTIONS(2494), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2496), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2832), 1, + sym_var_modifier, + ACTIONS(2840), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2842), 1, + aux_sym_class_declaration_token1, + ACTIONS(2500), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(975), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_class_declaration_repeat1, + [47898] = 10, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2482), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2486), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2492), 1, + aux_sym_final_modifier_token1, + ACTIONS(2494), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2496), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2832), 1, + sym_var_modifier, + STATE(1831), 1, + sym__function_definition_header, + ACTIONS(2500), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(975), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_class_declaration_repeat1, + [47937] = 9, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2482), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2492), 1, + aux_sym_final_modifier_token1, + ACTIONS(2494), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2496), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2832), 1, + sym_var_modifier, + ACTIONS(2844), 1, + aux_sym_class_declaration_token1, + ACTIONS(2500), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(975), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_class_declaration_repeat1, + [47973] = 9, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2482), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2492), 1, + aux_sym_final_modifier_token1, + ACTIONS(2494), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2496), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2828), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2832), 1, + sym_var_modifier, + ACTIONS(2500), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(975), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_class_declaration_repeat1, + [48009] = 9, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2482), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2492), 1, + aux_sym_final_modifier_token1, + ACTIONS(2494), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2496), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2832), 1, + sym_var_modifier, + ACTIONS(2846), 1, + aux_sym_class_declaration_token1, + ACTIONS(2500), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(975), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_class_declaration_repeat1, + [48045] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2857), 6, + ACTIONS(2848), 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(1800), 10, + ACTIONS(1775), 10, anon_sym_BSLASH, anon_sym_RBRACE, anon_sym_LPAREN, @@ -115941,66 +116620,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LT_LT_LT, anon_sym_DOLLAR, - [47203] = 11, + [48069] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2859), 1, + ACTIONS(2850), 1, anon_sym_LBRACE, - ACTIONS(2865), 1, + ACTIONS(2854), 1, anon_sym_BSLASHu, - ACTIONS(2868), 1, + ACTIONS(2856), 1, sym__new_line, - ACTIONS(2871), 1, + ACTIONS(2859), 1, anon_sym_DOLLAR, - ACTIONS(2874), 1, + ACTIONS(2861), 1, sym_heredoc_end, - STATE(1348), 1, + STATE(1356), 1, aux_sym_heredoc_body_repeat1, - STATE(1435), 1, + STATE(1424), 1, sym_variable_name, - STATE(1519), 1, + STATE(1529), 1, sym__simple_string_member_access_expression, - ACTIONS(2862), 2, + ACTIONS(2852), 2, sym_encapsed_string_chars_heredoc, sym_escape_sequence, - STATE(1352), 5, + STATE(1374), 5, sym__complex_string_part, sym__simple_string_subscript_expression, sym__simple_string_part, aux_sym__interpolated_string_body_heredoc, sym_dynamic_variable_name, - [47242] = 11, + [48108] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2876), 1, + ACTIONS(2863), 1, anon_sym_LBRACE, - ACTIONS(2880), 1, + ACTIONS(2869), 1, anon_sym_BSLASHu, - ACTIONS(2882), 1, + ACTIONS(2872), 1, sym__new_line, - ACTIONS(2885), 1, + ACTIONS(2875), 1, anon_sym_DOLLAR, - ACTIONS(2887), 1, + ACTIONS(2878), 1, sym_heredoc_end, - STATE(1348), 1, + STATE(1356), 1, aux_sym_heredoc_body_repeat1, - STATE(1435), 1, + STATE(1424), 1, sym_variable_name, - STATE(1519), 1, + STATE(1529), 1, sym__simple_string_member_access_expression, - ACTIONS(2878), 2, + ACTIONS(2866), 2, sym_encapsed_string_chars_heredoc, sym_escape_sequence, - STATE(1352), 5, + STATE(1374), 5, sym__complex_string_part, sym__simple_string_subscript_expression, sym__simple_string_part, aux_sym__interpolated_string_body_heredoc, sym_dynamic_variable_name, - [47281] = 2, + [48147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2889), 14, + ACTIONS(2880), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116015,10 +116694,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47301] = 2, + [48167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 14, + ACTIONS(2882), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116033,35 +116712,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47321] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2876), 1, - anon_sym_LBRACE, - ACTIONS(2885), 1, - anon_sym_DOLLAR, - ACTIONS(2895), 1, - anon_sym_BSLASHu, - STATE(1435), 1, - sym_variable_name, - STATE(1519), 1, - sym__simple_string_member_access_expression, - ACTIONS(2893), 2, - sym_encapsed_string_chars_heredoc, - sym_escape_sequence, - ACTIONS(2897), 2, - sym_heredoc_end, - sym__new_line, - STATE(1356), 5, - sym__complex_string_part, - sym__simple_string_subscript_expression, - sym__simple_string_part, - aux_sym__interpolated_string_body_heredoc, - sym_dynamic_variable_name, - [47355] = 2, + [48187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2899), 14, + ACTIONS(2884), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116076,36 +116730,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47375] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2876), 1, - anon_sym_LBRACE, - ACTIONS(2880), 1, - anon_sym_BSLASHu, - ACTIONS(2885), 1, - anon_sym_DOLLAR, - ACTIONS(2901), 1, - sym__new_line, - STATE(1349), 1, - aux_sym_heredoc_body_repeat1, - STATE(1435), 1, - sym_variable_name, - STATE(1519), 1, - sym__simple_string_member_access_expression, - ACTIONS(2878), 2, - sym_encapsed_string_chars_heredoc, - sym_escape_sequence, - STATE(1352), 5, - sym__complex_string_part, - sym__simple_string_subscript_expression, - sym__simple_string_part, - aux_sym__interpolated_string_body_heredoc, - sym_dynamic_variable_name, - [47411] = 2, + [48207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2899), 14, + ACTIONS(2886), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116120,35 +116748,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47431] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2903), 1, - anon_sym_LBRACE, - ACTIONS(2909), 1, - anon_sym_BSLASHu, - ACTIONS(2914), 1, - anon_sym_DOLLAR, - STATE(1435), 1, - sym_variable_name, - STATE(1519), 1, - sym__simple_string_member_access_expression, - ACTIONS(2906), 2, - sym_encapsed_string_chars_heredoc, - sym_escape_sequence, - ACTIONS(2912), 2, - sym_heredoc_end, - sym__new_line, - STATE(1356), 5, - sym__complex_string_part, - sym__simple_string_subscript_expression, - sym__simple_string_part, - aux_sym__interpolated_string_body_heredoc, - sym_dynamic_variable_name, - [47465] = 2, + [48227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2917), 14, + ACTIONS(2888), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116163,10 +116766,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47485] = 2, + [48247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 14, + ACTIONS(2888), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116181,10 +116784,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47505] = 2, + [48267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 14, + ACTIONS(2890), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116199,10 +116802,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47525] = 2, + [48287] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2850), 1, + anon_sym_LBRACE, + ACTIONS(2859), 1, + anon_sym_DOLLAR, + ACTIONS(2894), 1, + anon_sym_BSLASHu, + STATE(1424), 1, + sym_variable_name, + STATE(1529), 1, + sym__simple_string_member_access_expression, + ACTIONS(2878), 2, + sym_heredoc_end, + sym__new_line, + ACTIONS(2892), 2, + sym_encapsed_string_chars_heredoc, + sym_escape_sequence, + STATE(1367), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [48321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 14, + ACTIONS(2886), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116217,10 +116845,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47545] = 2, + [48341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2925), 14, + ACTIONS(2896), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116235,10 +116863,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47565] = 2, + [48361] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2898), 1, + anon_sym_LBRACE, + ACTIONS(2904), 1, + anon_sym_BSLASHu, + ACTIONS(2909), 1, + anon_sym_DOLLAR, + STATE(1424), 1, + sym_variable_name, + STATE(1529), 1, + sym__simple_string_member_access_expression, + ACTIONS(2901), 2, + sym_encapsed_string_chars_heredoc, + sym_escape_sequence, + ACTIONS(2907), 2, + sym_heredoc_end, + sym__new_line, + STATE(1367), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [48395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2927), 14, + ACTIONS(2912), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116253,10 +116906,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47585] = 2, + [48415] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 14, + ACTIONS(2914), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116271,10 +116924,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47605] = 2, + [48435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2929), 14, + ACTIONS(2914), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116289,10 +116942,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47625] = 2, + [48455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2931), 14, + ACTIONS(2916), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116307,35 +116960,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47645] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2876), 1, - anon_sym_LBRACE, - ACTIONS(2885), 1, - anon_sym_DOLLAR, - ACTIONS(2895), 1, - anon_sym_BSLASHu, - STATE(1435), 1, - sym_variable_name, - STATE(1519), 1, - sym__simple_string_member_access_expression, - ACTIONS(2874), 2, - sym_heredoc_end, - sym__new_line, - ACTIONS(2893), 2, - sym_encapsed_string_chars_heredoc, - sym_escape_sequence, - STATE(1356), 5, - sym__complex_string_part, - sym__simple_string_subscript_expression, - sym__simple_string_part, - aux_sym__interpolated_string_body_heredoc, - sym_dynamic_variable_name, - [47679] = 2, + [48475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 14, + ACTIONS(2912), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116350,10 +116978,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47699] = 2, + [48495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2917), 14, + ACTIONS(2918), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116368,10 +116996,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47719] = 2, + [48515] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2850), 1, + anon_sym_LBRACE, + ACTIONS(2859), 1, + anon_sym_DOLLAR, + ACTIONS(2894), 1, + anon_sym_BSLASHu, + STATE(1424), 1, + sym_variable_name, + STATE(1529), 1, + sym__simple_string_member_access_expression, + ACTIONS(2892), 2, + sym_encapsed_string_chars_heredoc, + sym_escape_sequence, + ACTIONS(2920), 2, + sym_heredoc_end, + sym__new_line, + STATE(1367), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [48549] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2850), 1, + anon_sym_LBRACE, + ACTIONS(2854), 1, + anon_sym_BSLASHu, + ACTIONS(2859), 1, + anon_sym_DOLLAR, + ACTIONS(2922), 1, + sym__new_line, + STATE(1355), 1, + aux_sym_heredoc_body_repeat1, + STATE(1424), 1, + sym_variable_name, + STATE(1529), 1, + sym__simple_string_member_access_expression, + ACTIONS(2852), 2, + sym_encapsed_string_chars_heredoc, + sym_escape_sequence, + STATE(1374), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [48585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2931), 14, + ACTIONS(2924), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116386,34 +117065,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47739] = 9, - ACTIONS(1575), 1, + [48605] = 9, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2926), 1, + anon_sym_LBRACE, + ACTIONS(2930), 1, + anon_sym_BSLASHu, + ACTIONS(2932), 1, + anon_sym_BQUOTE, + ACTIONS(2934), 1, + anon_sym_DOLLAR, + STATE(1471), 1, + sym_variable_name, + STATE(1565), 1, + sym__simple_string_member_access_expression, + ACTIONS(2928), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1384), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_execution_operator_body, + sym_dynamic_variable_name, + [48638] = 9, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2935), 1, + ACTIONS(2936), 1, anon_sym_LBRACE, - ACTIONS(2939), 1, + ACTIONS(2940), 1, anon_sym_BSLASHu, - ACTIONS(2941), 1, + ACTIONS(2942), 1, anon_sym_DQUOTE, - ACTIONS(2943), 1, + ACTIONS(2944), 1, + anon_sym_DOLLAR, + STATE(1463), 1, + sym_variable_name, + STATE(1587), 1, + sym__simple_string_member_access_expression, + ACTIONS(2938), 2, + sym_encapsed_string_chars, + sym_escape_sequence, + STATE(1393), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body, + sym_dynamic_variable_name, + [48671] = 9, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2936), 1, + anon_sym_LBRACE, + ACTIONS(2944), 1, anon_sym_DOLLAR, - STATE(1465), 1, + ACTIONS(2948), 1, + anon_sym_BSLASHu, + ACTIONS(2950), 1, + anon_sym_DQUOTE, + STATE(1463), 1, sym_variable_name, - STATE(1598), 1, + STATE(1587), 1, sym__simple_string_member_access_expression, - ACTIONS(2937), 2, + ACTIONS(2946), 2, sym_encapsed_string_chars, sym_escape_sequence, - STATE(1383), 5, + STATE(1405), 5, sym__complex_string_part, sym__simple_string_subscript_expression, sym__simple_string_part, aux_sym__interpolated_string_body, sym_dynamic_variable_name, - [47772] = 2, + [48704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2945), 13, + ACTIONS(2952), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116427,10 +117154,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47791] = 2, + [48723] = 10, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2954), 1, + sym_name, + ACTIONS(2960), 1, + anon_sym_BSLASH, + STATE(1794), 1, + sym_namespace_use_clause, + STATE(2503), 1, + sym_namespace_name, + STATE(2557), 1, + sym_namespace_name_as_prefix, + ACTIONS(2958), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + STATE(1702), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2956), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48758] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2947), 13, + ACTIONS(2962), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116444,15 +117196,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47810] = 2, + [48777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 13, + ACTIONS(2964), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, anon_sym_RBRACE, + aux_sym_enum_case_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -116461,111 +117213,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47829] = 9, - ACTIONS(1575), 1, + [48796] = 9, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2951), 1, + ACTIONS(2966), 1, anon_sym_LBRACE, - ACTIONS(2955), 1, + ACTIONS(2972), 1, anon_sym_BSLASHu, - ACTIONS(2957), 1, + ACTIONS(2975), 1, anon_sym_BQUOTE, - ACTIONS(2959), 1, + ACTIONS(2977), 1, anon_sym_DOLLAR, - STATE(1468), 1, + STATE(1471), 1, sym_variable_name, - STATE(1628), 1, + STATE(1565), 1, sym__simple_string_member_access_expression, - ACTIONS(2953), 2, + ACTIONS(2969), 2, sym_execution_string_chars, sym_escape_sequence, - STATE(1375), 5, + STATE(1384), 5, sym__complex_string_part, sym__simple_string_subscript_expression, sym__simple_string_part, aux_sym__interpolated_execution_operator_body, sym_dynamic_variable_name, - [47862] = 9, - ACTIONS(1575), 1, + [48829] = 9, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2961), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2934), 1, + anon_sym_DOLLAR, + ACTIONS(2982), 1, anon_sym_BSLASHu, - ACTIONS(2970), 1, + ACTIONS(2984), 1, anon_sym_BQUOTE, - ACTIONS(2972), 1, - anon_sym_DOLLAR, - STATE(1468), 1, + STATE(1471), 1, sym_variable_name, - STATE(1628), 1, + STATE(1565), 1, sym__simple_string_member_access_expression, - ACTIONS(2964), 2, + ACTIONS(2980), 2, sym_execution_string_chars, sym_escape_sequence, - STATE(1375), 5, + STATE(1377), 5, sym__complex_string_part, sym__simple_string_subscript_expression, sym__simple_string_part, aux_sym__interpolated_execution_operator_body, sym_dynamic_variable_name, - [47895] = 9, - ACTIONS(1575), 1, + [48862] = 9, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2935), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2943), 1, - anon_sym_DOLLAR, - ACTIONS(2977), 1, + ACTIONS(2930), 1, anon_sym_BSLASHu, - ACTIONS(2979), 1, - anon_sym_DQUOTE, - STATE(1465), 1, - sym_variable_name, - STATE(1598), 1, - sym__simple_string_member_access_expression, - ACTIONS(2975), 2, - sym_encapsed_string_chars, - sym_escape_sequence, - STATE(1394), 5, - sym__complex_string_part, - sym__simple_string_subscript_expression, - sym__simple_string_part, - aux_sym__interpolated_string_body, - sym_dynamic_variable_name, - [47928] = 9, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2951), 1, - anon_sym_LBRACE, - ACTIONS(2959), 1, + ACTIONS(2934), 1, anon_sym_DOLLAR, - ACTIONS(2983), 1, - anon_sym_BSLASHu, - ACTIONS(2985), 1, + ACTIONS(2986), 1, anon_sym_BQUOTE, - STATE(1468), 1, + STATE(1471), 1, sym_variable_name, - STATE(1628), 1, + STATE(1565), 1, sym__simple_string_member_access_expression, - ACTIONS(2981), 2, + ACTIONS(2928), 2, sym_execution_string_chars, sym_escape_sequence, - STATE(1389), 5, + STATE(1384), 5, sym__complex_string_part, sym__simple_string_subscript_expression, sym__simple_string_part, aux_sym__interpolated_execution_operator_body, sym_dynamic_variable_name, - [47961] = 2, + [48895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 13, + 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_enum_case_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -116574,10 +117302,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47980] = 2, + [48914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2989), 13, + ACTIONS(2990), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116591,10 +117319,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47999] = 2, + [48933] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 13, + ACTIONS(2992), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116608,15 +117336,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48018] = 2, + [48952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2993), 13, + 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, + [48971] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2996), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, anon_sym_RBRACE, - aux_sym_enum_case_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -116625,63 +117370,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48037] = 9, - ACTIONS(1575), 1, + [48990] = 9, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2935), 1, + ACTIONS(2926), 1, anon_sym_LBRACE, - ACTIONS(2943), 1, + ACTIONS(2934), 1, anon_sym_DOLLAR, - ACTIONS(2997), 1, + ACTIONS(3000), 1, anon_sym_BSLASHu, - ACTIONS(2999), 1, - anon_sym_DQUOTE, - STATE(1465), 1, + ACTIONS(3002), 1, + anon_sym_BQUOTE, + STATE(1471), 1, sym_variable_name, - STATE(1598), 1, + STATE(1565), 1, sym__simple_string_member_access_expression, - ACTIONS(2995), 2, - sym_encapsed_string_chars, + ACTIONS(2998), 2, + sym_execution_string_chars, sym_escape_sequence, - STATE(1376), 5, + STATE(1386), 5, sym__complex_string_part, sym__simple_string_subscript_expression, sym__simple_string_part, - aux_sym__interpolated_string_body, + aux_sym__interpolated_execution_operator_body, sym_dynamic_variable_name, - [48070] = 9, - ACTIONS(1575), 1, + [49023] = 9, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2935), 1, + ACTIONS(2936), 1, anon_sym_LBRACE, - ACTIONS(2943), 1, + ACTIONS(2944), 1, anon_sym_DOLLAR, - ACTIONS(2977), 1, + ACTIONS(3006), 1, anon_sym_BSLASHu, - ACTIONS(3001), 1, + ACTIONS(3008), 1, anon_sym_DQUOTE, - STATE(1465), 1, + STATE(1463), 1, sym_variable_name, - STATE(1598), 1, + STATE(1587), 1, sym__simple_string_member_access_expression, - ACTIONS(2975), 2, + ACTIONS(3004), 2, sym_encapsed_string_chars, sym_escape_sequence, - STATE(1394), 5, + STATE(1402), 5, sym__complex_string_part, sym__simple_string_subscript_expression, sym__simple_string_part, aux_sym__interpolated_string_body, sym_dynamic_variable_name, - [48103] = 2, + [49056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3003), 13, + ACTIONS(3010), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, anon_sym_RBRACE, + aux_sym_enum_case_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -116690,10 +117435,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48122] = 2, + [49075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3005), 13, + ACTIONS(3012), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116707,35 +117452,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48141] = 10, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3007), 1, - sym_name, - ACTIONS(3013), 1, - anon_sym_BSLASH, - STATE(1817), 1, - sym_namespace_use_clause, - STATE(2539), 1, - sym_namespace_name, - STATE(2600), 1, - sym_namespace_name_as_prefix, - ACTIONS(3011), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - STATE(1703), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(3009), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [48176] = 2, + [49094] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3015), 13, + ACTIONS(3014), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116749,92 +117469,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48195] = 10, - ACTIONS(566), 1, + [49113] = 10, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3007), 1, + ACTIONS(2954), 1, sym_name, - ACTIONS(3019), 1, + ACTIONS(3018), 1, anon_sym_BSLASH, - STATE(1759), 1, + STATE(1767), 1, sym_namespace_use_clause, - STATE(2582), 1, + STATE(2528), 1, sym_namespace_name, - STATE(2600), 1, + STATE(2557), 1, sym_namespace_name_as_prefix, - ACTIONS(3017), 2, + ACTIONS(3016), 2, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, - STATE(1703), 2, + STATE(1702), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(3009), 3, + ACTIONS(2956), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [48230] = 9, - ACTIONS(1575), 1, + [49148] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2951), 1, + ACTIONS(1688), 1, + anon_sym_BSLASH, + STATE(2288), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3020), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(3022), 7, + anon_sym_AMP, anon_sym_LBRACE, - ACTIONS(2955), 1, - anon_sym_BSLASHu, - ACTIONS(2959), 1, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(3021), 1, - anon_sym_BQUOTE, - STATE(1468), 1, - sym_variable_name, - STATE(1628), 1, - sym__simple_string_member_access_expression, - ACTIONS(2953), 2, - sym_execution_string_chars, - sym_escape_sequence, - STATE(1375), 5, - sym__complex_string_part, - sym__simple_string_subscript_expression, - sym__simple_string_part, - aux_sym__interpolated_execution_operator_body, - sym_dynamic_variable_name, - [48263] = 13, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2487), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2497), 1, - aux_sym_final_modifier_token1, - ACTIONS(2499), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2501), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(3023), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(3025), 1, - aux_sym_enum_declaration_token1, - ACTIONS(3027), 1, - aux_sym_class_declaration_token1, - ACTIONS(3029), 1, - aux_sym__arrow_function_header_token1, - STATE(2255), 1, - sym_static_modifier, - STATE(2256), 1, - sym__function_definition_header, - STATE(2523), 1, - sym_readonly_modifier, - STATE(1900), 2, - sym_final_modifier, - sym_abstract_modifier, - [48304] = 2, + [49173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3031), 13, + ACTIONS(3024), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, anon_sym_RBRACE, - aux_sym_enum_case_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -116843,10 +117531,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48323] = 2, + [49192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3033), 13, + ACTIONS(3026), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116860,10 +117548,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48342] = 2, + [49211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3035), 13, + ACTIONS(3028), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -116877,91 +117565,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48361] = 9, - ACTIONS(1575), 1, + [49230] = 9, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(3030), 1, anon_sym_LBRACE, - ACTIONS(3043), 1, + ACTIONS(3036), 1, anon_sym_BSLASHu, - ACTIONS(3046), 1, + ACTIONS(3039), 1, anon_sym_DQUOTE, - ACTIONS(3048), 1, + ACTIONS(3041), 1, anon_sym_DOLLAR, - STATE(1465), 1, + STATE(1463), 1, sym_variable_name, - STATE(1598), 1, + STATE(1587), 1, sym__simple_string_member_access_expression, - ACTIONS(3040), 2, + ACTIONS(3033), 2, sym_encapsed_string_chars, sym_escape_sequence, - STATE(1394), 5, + STATE(1402), 5, sym__complex_string_part, sym__simple_string_subscript_expression, sym__simple_string_part, aux_sym__interpolated_string_body, sym_dynamic_variable_name, - [48394] = 13, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2487), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2497), 1, - aux_sym_final_modifier_token1, - ACTIONS(2499), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2501), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(3023), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(3029), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3051), 1, - aux_sym_enum_declaration_token1, - ACTIONS(3053), 1, - aux_sym_class_declaration_token1, - STATE(2251), 1, - sym__function_definition_header, - STATE(2255), 1, - sym_static_modifier, - STATE(2548), 1, - sym_readonly_modifier, - STATE(1893), 2, - sym_final_modifier, - sym_abstract_modifier, - [48435] = 9, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2951), 1, - anon_sym_LBRACE, - ACTIONS(2959), 1, - anon_sym_DOLLAR, - ACTIONS(3057), 1, - anon_sym_BSLASHu, - ACTIONS(3059), 1, - anon_sym_BQUOTE, - STATE(1468), 1, - sym_variable_name, - STATE(1628), 1, - sym__simple_string_member_access_expression, - ACTIONS(3055), 2, - sym_execution_string_chars, - sym_escape_sequence, - STATE(1374), 5, - sym__complex_string_part, - sym__simple_string_subscript_expression, - sym__simple_string_part, - aux_sym__interpolated_execution_operator_body, - sym_dynamic_variable_name, - [48468] = 2, + [49263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3061), 13, + ACTIONS(3044), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, anon_sym_RBRACE, + aux_sym_enum_case_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -116970,30 +117606,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48487] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1727), 1, - anon_sym_BSLASH, - STATE(2243), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3063), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - ACTIONS(3065), 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, - [48512] = 2, + [49282] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3067), 13, + ACTIONS(3046), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -117007,10 +117623,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48531] = 2, + [49301] = 9, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2936), 1, + anon_sym_LBRACE, + ACTIONS(2944), 1, + anon_sym_DOLLAR, + ACTIONS(3006), 1, + anon_sym_BSLASHu, + ACTIONS(3048), 1, + anon_sym_DQUOTE, + STATE(1463), 1, + sym_variable_name, + STATE(1587), 1, + sym__simple_string_member_access_expression, + ACTIONS(3004), 2, + sym_encapsed_string_chars, + sym_escape_sequence, + STATE(1402), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body, + sym_dynamic_variable_name, + [49334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 13, + ACTIONS(3050), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -117024,124 +117664,166 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48550] = 2, - ACTIONS(3), 1, + [49353] = 10, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3071), 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, - [48569] = 8, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3078), 1, - anon_sym_AMP, - ACTIONS(3085), 1, - anon_sym_PIPE, - STATE(1424), 1, - aux_sym_intersection_type_repeat1, - STATE(1484), 1, - aux_sym_union_type_repeat1, - STATE(1487), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3080), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - ACTIONS(3073), 4, + ACTIONS(3052), 1, + sym_name, + ACTIONS(3054), 1, + anon_sym_RBRACK, + STATE(2184), 1, + sym_attribute, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + STATE(1813), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - sym_name, - [48599] = 10, + [49387] = 10, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3087), 1, + ACTIONS(3052), 1, sym_name, - ACTIONS(3089), 1, + ACTIONS(3056), 1, anon_sym_RBRACK, - STATE(2370), 1, + STATE(2184), 1, sym_attribute, - STATE(2531), 1, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - STATE(1763), 2, + STATE(1813), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2461), 3, + ACTIONS(2430), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [49421] = 8, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3063), 1, + anon_sym_AMP, + ACTIONS(3070), 1, + anon_sym_PIPE, + STATE(1439), 1, + aux_sym_intersection_type_repeat1, + STATE(1447), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + STATE(1451), 1, + aux_sym_union_type_repeat1, + ACTIONS(3065), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + ACTIONS(3058), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [48633] = 8, - ACTIONS(1575), 1, + sym_name, + [49451] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3074), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(3076), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3072), 10, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token3, + 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, + [49473] = 8, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(3078), 1, anon_sym_LBRACE, - ACTIONS(3095), 1, + ACTIONS(3082), 1, anon_sym_BSLASHu, - ACTIONS(3097), 1, + ACTIONS(3084), 1, anon_sym_DOLLAR, - STATE(1435), 1, + STATE(1424), 1, sym_variable_name, - STATE(1519), 1, + STATE(1529), 1, sym__simple_string_member_access_expression, - ACTIONS(3093), 2, + ACTIONS(3080), 2, sym_encapsed_string_chars_heredoc, sym_escape_sequence, - STATE(1366), 5, + STATE(1364), 5, sym__complex_string_part, sym__simple_string_subscript_expression, sym__simple_string_part, aux_sym__interpolated_string_body_heredoc, sym_dynamic_variable_name, - [48663] = 10, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, + [49503] = 6, + ACTIONS(121), 1, + anon_sym_LT_LT_LT, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3086), 1, + sym_integer, + ACTIONS(117), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(119), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(2178), 5, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [49528] = 9, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3087), 1, + ACTIONS(2954), 1, sym_name, - ACTIONS(3099), 1, - anon_sym_RBRACK, - STATE(2370), 1, - sym_attribute, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, + ACTIONS(3088), 1, + anon_sym_BSLASH, + STATE(1837), 1, + sym_namespace_use_clause, + STATE(2513), 1, sym_namespace_name, - STATE(1763), 2, + STATE(2557), 1, + sym_namespace_name_as_prefix, + STATE(1702), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2461), 3, + ACTIONS(2956), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [48697] = 3, - ACTIONS(1575), 1, + [49559] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3101), 4, + ACTIONS(3090), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3103), 7, + ACTIONS(3092), 7, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -117149,17 +117831,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [48716] = 5, - ACTIONS(1575), 1, + [49578] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3094), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(3096), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3072), 9, + aux_sym_function_static_declaration_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, + [49599] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1938), 1, + ACTIONS(1873), 1, anon_sym_COLON_COLON, - ACTIONS(1954), 1, + ACTIONS(1917), 1, anon_sym_COLON, - ACTIONS(2823), 2, + ACTIONS(2684), 2, aux_sym_namespace_use_declaration_token2, aux_sym__arrow_function_header_token1, - ACTIONS(1647), 7, + ACTIONS(1586), 7, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_LPAREN, @@ -117167,57 +117866,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [48739] = 9, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + [49622] = 6, + ACTIONS(121), 1, + anon_sym_LT_LT_LT, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3007), 1, - sym_name, - ACTIONS(3105), 1, - anon_sym_BSLASH, - STATE(1864), 1, - sym_namespace_use_clause, - STATE(2550), 1, - sym_namespace_name, - STATE(2600), 1, - sym_namespace_name_as_prefix, - STATE(1703), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(3009), 3, + ACTIONS(3098), 1, + sym_integer, + ACTIONS(117), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(119), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(2203), 5, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [49647] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3020), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [48770] = 7, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1725), 1, - anon_sym_DOLLAR, - ACTIONS(1938), 1, - anon_sym_COLON_COLON, - STATE(1768), 1, - sym_variable_name, - STATE(1769), 1, - sym_static_variable_declaration, - ACTIONS(2823), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym__arrow_function_header_token1, - ACTIONS(1647), 5, + sym_name, + ACTIONS(3022), 7, + anon_sym_AMP, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [48797] = 3, - ACTIONS(1575), 1, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [49666] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3107), 4, + ACTIONS(3100), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3109), 7, + ACTIONS(3102), 7, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -117225,303 +117917,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [48816] = 9, + [49685] = 9, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3087), 1, + ACTIONS(3052), 1, sym_name, - STATE(1897), 1, + STATE(1956), 1, sym_attribute, - STATE(2531), 1, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - STATE(1763), 2, + STATE(1813), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2461), 3, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [48847] = 6, - ACTIONS(119), 1, - anon_sym_LT_LT_LT, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3111), 1, - sym_integer, - ACTIONS(115), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(117), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(2193), 5, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - sym__string, - [48872] = 9, - ACTIONS(566), 1, + [49716] = 9, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3007), 1, + ACTIONS(3052), 1, sym_name, - ACTIONS(3113), 1, - anon_sym_BSLASH, - STATE(1825), 1, - sym_namespace_use_clause, - STATE(2514), 1, - sym_namespace_name, - STATE(2600), 1, + STATE(2184), 1, + sym_attribute, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(1703), 2, + STATE(2556), 1, + sym_namespace_name, + STATE(1813), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(3009), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [48903] = 7, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1725), 1, - anon_sym_DOLLAR, - ACTIONS(1938), 1, - anon_sym_COLON_COLON, - STATE(1768), 1, - sym_variable_name, - STATE(1814), 1, - sym_static_variable_declaration, - ACTIONS(2823), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym__arrow_function_header_token1, - ACTIONS(1647), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [48930] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3063), 4, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - sym_name, - ACTIONS(3065), 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, - [48949] = 9, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, + [49747] = 9, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3007), 1, + ACTIONS(2954), 1, sym_name, - STATE(1937), 1, + ACTIONS(3104), 1, + anon_sym_BSLASH, + STATE(1842), 1, sym_namespace_use_clause, - STATE(2599), 1, + STATE(2441), 1, sym_namespace_name, - STATE(2600), 1, + STATE(2557), 1, sym_namespace_name_as_prefix, - STATE(1703), 2, + STATE(1702), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(3009), 3, + ACTIONS(2956), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [48980] = 9, + [49778] = 9, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3087), 1, + ACTIONS(2954), 1, sym_name, - STATE(2370), 1, - sym_attribute, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(1967), 1, + sym_namespace_use_clause, + STATE(2556), 1, sym_namespace_name, - STATE(1763), 2, + STATE(2557), 1, + sym_namespace_name_as_prefix, + STATE(1702), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2461), 3, + ACTIONS(2956), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [49011] = 6, - ACTIONS(119), 1, - anon_sym_LT_LT_LT, - ACTIONS(1575), 1, + [49809] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(3115), 1, - sym_integer, - ACTIONS(115), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(117), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(2153), 5, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - sym__string, - [49036] = 3, - ACTIONS(1575), 1, + ACTIONS(3108), 1, + anon_sym_DASH_GT, + ACTIONS(3110), 1, + anon_sym_LBRACK, + ACTIONS(3114), 1, + sym_encapsed_string_chars_after_variable_heredoc, + ACTIONS(3106), 3, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_DOLLAR, + ACTIONS(3112), 4, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + [49833] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3117), 4, + ACTIONS(3116), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3120), 6, + ACTIONS(3118), 6, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [49054] = 7, - ACTIONS(1575), 1, + [49851] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - ACTIONS(3123), 1, + STATE(587), 1, + sym_arguments, + ACTIONS(1564), 3, anon_sym_COMMA, - ACTIONS(3125), 1, anon_sym_RPAREN, - STATE(584), 1, - sym_arguments, - STATE(1973), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1609), 5, + anon_sym_RBRACK, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [49080] = 8, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + [49873] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(3120), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, sym_name, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - STATE(2128), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2461), 3, + ACTIONS(3122), 6, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [49891] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3124), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [49108] = 8, + sym_name, + ACTIONS(3126), 6, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [49909] = 8, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3129), 1, + ACTIONS(3128), 1, sym_name, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - STATE(1970), 2, + STATE(2557), 1, + sym_namespace_name_as_prefix, + STATE(1611), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2461), 3, + ACTIONS(2956), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [49136] = 8, + [49937] = 8, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3131), 1, + ACTIONS(3130), 1, sym_name, - STATE(2599), 1, - sym_namespace_name, - STATE(2600), 1, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(1597), 2, + STATE(2556), 1, + sym_namespace_name, + STATE(1898), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(3009), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [49164] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3078), 1, - anon_sym_AMP, - STATE(1429), 1, - aux_sym_intersection_type_repeat1, - ACTIONS(3133), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - ACTIONS(3135), 4, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_DOLLAR, - [49186] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3137), 4, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - sym_name, - ACTIONS(3139), 6, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [49204] = 4, - ACTIONS(1575), 1, + [49965] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1938), 1, + ACTIONS(1873), 1, anon_sym_COLON_COLON, - ACTIONS(2823), 2, + ACTIONS(2684), 2, aux_sym_namespace_use_declaration_token2, aux_sym__arrow_function_header_token1, - ACTIONS(1647), 7, + ACTIONS(1586), 7, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_LPAREN, @@ -117529,15332 +118141,14931 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [49224] = 7, - ACTIONS(1575), 1, + [49985] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - ACTIONS(3123), 1, + ACTIONS(3132), 1, anon_sym_COMMA, - ACTIONS(3141), 1, + ACTIONS(3134), 1, anon_sym_RPAREN, - STATE(584), 1, + STATE(587), 1, sym_arguments, - STATE(2029), 1, + STATE(2007), 1, aux_sym_unset_statement_repeat1, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [49250] = 7, - ACTIONS(856), 1, - anon_sym_COMMA, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1593), 1, - anon_sym_LPAREN, - ACTIONS(3143), 1, - anon_sym_RPAREN, - STATE(584), 1, - sym_arguments, - STATE(2139), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [49276] = 5, - ACTIONS(1575), 1, + [50011] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3147), 1, + ACTIONS(3136), 1, anon_sym_AMP, - STATE(1429), 1, + STATE(1433), 1, aux_sym_intersection_type_repeat1, - ACTIONS(3145), 4, + ACTIONS(3120), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3150), 4, + ACTIONS(3122), 4, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_DOLLAR, - [49298] = 8, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3152), 1, - sym_name, - STATE(2599), 1, - sym_namespace_name, - STATE(2600), 1, - sym_namespace_name_as_prefix, - STATE(1784), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(3009), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [49326] = 3, - ACTIONS(1575), 1, + [50033] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3145), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - ACTIONS(3150), 6, - anon_sym_AMP, + ACTIONS(1598), 5, + sym_encapsed_string_chars_heredoc, + sym_encapsed_string_chars_after_variable_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + ACTIONS(1600), 5, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_BSLASHu, anon_sym_DOLLAR, - [49344] = 3, - ACTIONS(1575), 1, + [50051] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3154), 4, + ACTIONS(3139), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3156), 6, + ACTIONS(3141), 6, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [49362] = 8, + [50069] = 8, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3158), 1, + ACTIONS(3143), 1, sym_name, - STATE(2531), 1, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, STATE(1777), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2461), 3, + ACTIONS(2430), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [50097] = 8, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3145), 1, + sym_name, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + STATE(1997), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [49390] = 5, - ACTIONS(1575), 1, + [50125] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(584), 1, - sym_arguments, - ACTIONS(1827), 3, + ACTIONS(3147), 1, anon_sym_COMMA, + ACTIONS(3149), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1609), 5, + STATE(587), 1, + sym_arguments, + STATE(2006), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [49412] = 6, - ACTIONS(3), 1, + [50151] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3162), 1, - anon_sym_DASH_GT, - ACTIONS(3164), 1, - anon_sym_LBRACK, - ACTIONS(3168), 1, - sym_encapsed_string_chars_after_variable_heredoc, - ACTIONS(3160), 3, + ACTIONS(3063), 1, + anon_sym_AMP, + STATE(1433), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3151), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(3153), 4, anon_sym_LBRACE, - anon_sym_BSLASHu, + anon_sym_EQ_GT, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(3166), 4, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - sym__new_line, - [49436] = 5, - ACTIONS(1575), 1, + [50173] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(584), 1, + STATE(587), 1, sym_arguments, - ACTIONS(1613), 3, + ACTIONS(1759), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1609), 5, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50195] = 8, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3155), 1, + sym_name, + STATE(2556), 1, + sym_namespace_name, + STATE(2557), 1, + sym_namespace_name_as_prefix, + STATE(1817), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2956), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [50223] = 7, + ACTIONS(870), 1, + anon_sym_COMMA, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1548), 1, + anon_sym_LPAREN, + ACTIONS(3157), 1, + anon_sym_RPAREN, + STATE(587), 1, + sym_arguments, + STATE(1932), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [49458] = 3, - ACTIONS(1575), 1, + [50249] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3170), 4, + ACTIONS(3159), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3172), 6, + ACTIONS(3162), 6, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [49476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1659), 5, - sym_encapsed_string_chars_heredoc, - sym_encapsed_string_chars_after_variable_heredoc, - sym_heredoc_end, - sym_escape_sequence, - sym__new_line, - ACTIONS(1661), 5, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_BSLASHu, - anon_sym_DOLLAR, - [49494] = 7, - ACTIONS(1575), 1, + [50267] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - ACTIONS(1727), 1, + ACTIONS(1688), 1, anon_sym_BSLASH, - ACTIONS(3174), 1, + ACTIONS(3165), 1, aux_sym_namespace_aliasing_clause_token1, - STATE(584), 1, + STATE(587), 1, sym_arguments, - STATE(2243), 1, + STATE(2288), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [49520] = 6, - ACTIONS(123), 1, - anon_sym_DOLLAR, - ACTIONS(1575), 1, + [50293] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3176), 1, + ACTIONS(1719), 1, + anon_sym_DOLLAR, + ACTIONS(3167), 1, sym_name, - ACTIONS(3180), 1, + ACTIONS(3169), 1, anon_sym_LBRACE, - ACTIONS(3178), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(607), 3, + STATE(666), 1, + sym__reserved_identifier, + STATE(675), 2, sym_dynamic_variable_name, sym_variable_name, - sym__reserved_identifier, - [49543] = 6, - ACTIONS(612), 1, - anon_sym_DOLLAR, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3182), 1, - sym_name, - ACTIONS(3186), 1, - anon_sym_LBRACE, - ACTIONS(3184), 3, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(583), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [49566] = 6, - ACTIONS(612), 1, - anon_sym_DOLLAR, - ACTIONS(1575), 1, + [50318] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3188), 1, - sym_name, - ACTIONS(3190), 1, + ACTIONS(1873), 1, + anon_sym_COLON_COLON, + ACTIONS(1917), 1, + anon_sym_COLON, + ACTIONS(1586), 7, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(2461), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(579), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [49589] = 6, - ACTIONS(612), 1, - anon_sym_DOLLAR, - ACTIONS(1575), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50337] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3182), 1, - sym_name, - ACTIONS(3186), 1, + ACTIONS(3175), 1, + anon_sym_PIPE, + STATE(1491), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3173), 3, anon_sym_LBRACE, - ACTIONS(2461), 3, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + ACTIONS(3171), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(583), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [49612] = 7, - ACTIONS(1575), 1, + sym_name, + [50358] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1766), 1, + ACTIONS(1737), 1, anon_sym_DOLLAR, - ACTIONS(3192), 1, + ACTIONS(3177), 1, sym_name, - ACTIONS(3194), 1, + ACTIONS(3179), 1, anon_sym_LBRACE, - STATE(1529), 1, - sym__reserved_identifier, - STATE(701), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2461), 3, + ACTIONS(2956), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [49637] = 5, - ACTIONS(1575), 1, + STATE(809), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [50381] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(584), 1, + STATE(587), 1, sym_arguments, - ACTIONS(3196), 2, + ACTIONS(3181), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [49658] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1766), 1, + [50402] = 6, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(3198), 1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3183), 1, sym_name, - ACTIONS(3200), 1, + ACTIONS(3187), 1, anon_sym_LBRACE, - ACTIONS(2461), 3, + ACTIONS(3185), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(717), 3, + STATE(600), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [49681] = 6, - ACTIONS(1575), 1, + [50425] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1766), 1, + ACTIONS(3193), 1, + anon_sym_PIPE, + STATE(1503), 1, + aux_sym_union_type_repeat1, + ACTIONS(3191), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + ACTIONS(3189), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [50446] = 6, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1737), 1, anon_sym_DOLLAR, - ACTIONS(3202), 1, + ACTIONS(3195), 1, sym_name, - ACTIONS(3204), 1, + ACTIONS(3197), 1, anon_sym_LBRACE, - ACTIONS(2461), 3, + ACTIONS(2956), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(703), 3, + STATE(816), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [49704] = 5, - ACTIONS(1575), 1, + [50469] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(584), 1, + STATE(587), 1, sym_arguments, - ACTIONS(2519), 2, + ACTIONS(3199), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1609), 5, + anon_sym_RBRACK, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [49725] = 6, - ACTIONS(1575), 1, + [50490] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3201), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(3203), 5, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [50507] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3175), 1, + anon_sym_PIPE, + STATE(1491), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3207), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + ACTIONS(3205), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [50528] = 8, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1699), 1, + anon_sym_AMP, + ACTIONS(3209), 1, + sym_name, + ACTIONS(3211), 1, anon_sym_LPAREN, - ACTIONS(1727), 1, + STATE(1556), 1, + sym_reference_modifier, + STATE(1574), 1, + sym_formal_parameters, + STATE(2197), 1, + sym__reserved_identifier, + ACTIONS(2430), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [50555] = 6, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1688), 1, anon_sym_BSLASH, - STATE(584), 1, + ACTIONS(1909), 1, + anon_sym_LPAREN, + STATE(890), 1, sym_arguments, - STATE(2243), 1, + STATE(2288), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [49748] = 7, - ACTIONS(612), 1, - anon_sym_DOLLAR, - ACTIONS(1575), 1, + [50578] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(1737), 1, + anon_sym_DOLLAR, + ACTIONS(3213), 1, sym_name, - ACTIONS(3208), 1, + ACTIONS(3215), 1, anon_sym_LBRACE, - STATE(1517), 1, + ACTIONS(2956), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(850), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [50601] = 7, + ACTIONS(619), 1, + anon_sym_DOLLAR, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3217), 1, + sym_name, + ACTIONS(3219), 1, + anon_sym_LBRACE, + STATE(1551), 1, sym__reserved_identifier, - STATE(1536), 2, + STATE(1560), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2461), 3, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [49773] = 6, - ACTIONS(1575), 1, + [50626] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1727), 1, + ACTIONS(1688), 1, anon_sym_BSLASH, - ACTIONS(3210), 1, + ACTIONS(3221), 1, anon_sym_EQ, - STATE(2243), 1, + STATE(2288), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3065), 2, + ACTIONS(3022), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3063), 4, + ACTIONS(3020), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - [49796] = 7, - ACTIONS(1575), 1, + [50649] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1766), 1, + ACTIONS(1737), 1, anon_sym_DOLLAR, - ACTIONS(3212), 1, + ACTIONS(3223), 1, sym_name, - ACTIONS(3214), 1, + ACTIONS(3225), 1, anon_sym_LBRACE, - STATE(668), 1, - sym__reserved_identifier, - STATE(690), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2461), 3, + ACTIONS(2956), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [49821] = 3, - ACTIONS(1575), 1, + STATE(849), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [50672] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3216), 4, + ACTIONS(1737), 1, + anon_sym_DOLLAR, + ACTIONS(3167), 1, + sym_name, + ACTIONS(3169), 1, + anon_sym_LBRACE, + STATE(666), 1, + sym__reserved_identifier, + STATE(802), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - sym_name, - ACTIONS(3218), 5, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [49838] = 3, - ACTIONS(1575), 1, + [50697] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1661), 1, + ACTIONS(3106), 1, anon_sym_BSLASHu, - ACTIONS(1659), 8, - sym_execution_string_chars, - sym_execution_string_chars_after_variable, - anon_sym_LBRACE, + ACTIONS(3227), 1, anon_sym_DASH_GT, + ACTIONS(3229), 1, anon_sym_LBRACK, + ACTIONS(3231), 1, + sym_encapsed_string_chars_after_variable, + ACTIONS(3112), 5, + sym_encapsed_string_chars, + anon_sym_LBRACE, sym_escape_sequence, - anon_sym_BQUOTE, + anon_sym_DQUOTE, anon_sym_DOLLAR, - [49855] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1766), 1, + [50720] = 7, + ACTIONS(1518), 1, anon_sym_DOLLAR, - ACTIONS(3220), 1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3233), 1, sym_name, - ACTIONS(3222), 1, + ACTIONS(3235), 1, anon_sym_LBRACE, - ACTIONS(2461), 3, + STATE(712), 1, + sym__reserved_identifier, + STATE(644), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(688), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [49878] = 6, - ACTIONS(1575), 1, + [50745] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1774), 1, + ACTIONS(1688), 1, + anon_sym_BSLASH, + ACTIONS(1697), 1, + anon_sym_LPAREN, + STATE(735), 1, + sym_arguments, + STATE(2288), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50768] = 6, + ACTIONS(1518), 1, anon_sym_DOLLAR, - ACTIONS(3224), 1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3237), 1, sym_name, - ACTIONS(3226), 1, + ACTIONS(3241), 1, anon_sym_LBRACE, - ACTIONS(3009), 3, + ACTIONS(3239), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(855), 3, + STATE(640), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [49901] = 6, - ACTIONS(1575), 1, + [50791] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1766), 1, + ACTIONS(1737), 1, anon_sym_DOLLAR, - ACTIONS(3228), 1, + ACTIONS(3243), 1, sym_name, - ACTIONS(3230), 1, + ACTIONS(3245), 1, anon_sym_LBRACE, - ACTIONS(2461), 3, + ACTIONS(2956), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(689), 3, + STATE(817), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [49924] = 7, - ACTIONS(1575), 1, + [50814] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1774), 1, + ACTIONS(1737), 1, anon_sym_DOLLAR, - ACTIONS(3212), 1, + ACTIONS(3247), 1, sym_name, - ACTIONS(3214), 1, + ACTIONS(3249), 1, anon_sym_LBRACE, - STATE(668), 1, + STATE(1557), 1, sym__reserved_identifier, - STATE(818), 2, + STATE(846), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2461), 3, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [49949] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1661), 1, - anon_sym_BSLASHu, - ACTIONS(1659), 8, - sym_encapsed_string_chars, - sym_encapsed_string_chars_after_variable, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LBRACK, - sym_escape_sequence, - anon_sym_DQUOTE, + [50839] = 6, + ACTIONS(1518), 1, anon_sym_DOLLAR, - [49966] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1938), 1, - anon_sym_COLON_COLON, - ACTIONS(1954), 1, - anon_sym_COLON, - ACTIONS(1647), 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, - [49985] = 6, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1727), 1, - anon_sym_BSLASH, - ACTIONS(1730), 1, - anon_sym_LPAREN, - STATE(672), 1, - sym_arguments, - STATE(2243), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1609), 5, + ACTIONS(3251), 1, + sym_name, + ACTIONS(3253), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [50008] = 5, - ACTIONS(1575), 1, + ACTIONS(3239), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(642), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [50862] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(584), 1, + STATE(587), 1, sym_arguments, - ACTIONS(2601), 2, + ACTIONS(2572), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [50029] = 5, - ACTIONS(1575), 1, + [50883] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3236), 1, - anon_sym_PIPE, - STATE(1501), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3234), 3, + ACTIONS(3106), 1, + anon_sym_BSLASHu, + ACTIONS(3255), 1, + anon_sym_DASH_GT, + ACTIONS(3257), 1, + anon_sym_LBRACK, + ACTIONS(3259), 1, + sym_execution_string_chars_after_variable, + ACTIONS(3112), 5, + sym_execution_string_chars, anon_sym_LBRACE, - anon_sym_EQ_GT, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [50906] = 6, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1719), 1, anon_sym_DOLLAR, - ACTIONS(3232), 4, + ACTIONS(3261), 1, + sym_name, + ACTIONS(3263), 1, + anon_sym_LBRACE, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - sym_name, - [50050] = 6, - ACTIONS(1575), 1, + STATE(698), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [50929] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1727), 1, - anon_sym_BSLASH, - ACTIONS(1946), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(857), 1, + STATE(587), 1, sym_arguments, - STATE(2243), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1609), 5, + ACTIONS(2564), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [50073] = 6, - ACTIONS(1575), 1, + [50950] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3160), 1, - anon_sym_BSLASHu, - ACTIONS(3238), 1, - anon_sym_DASH_GT, - ACTIONS(3240), 1, - anon_sym_LBRACK, - ACTIONS(3242), 1, - sym_encapsed_string_chars_after_variable, - ACTIONS(3166), 5, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [50096] = 6, - ACTIONS(1563), 1, + ACTIONS(1719), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3244), 1, + ACTIONS(3265), 1, sym_name, - ACTIONS(3248), 1, + ACTIONS(3267), 1, anon_sym_LBRACE, - ACTIONS(3246), 3, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(778), 3, + STATE(693), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [50119] = 5, - ACTIONS(1575), 1, + [50973] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(584), 1, + STATE(587), 1, sym_arguments, - ACTIONS(2591), 2, + ACTIONS(2578), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [50140] = 6, - ACTIONS(1575), 1, + [50994] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3160), 1, - anon_sym_BSLASHu, - ACTIONS(3250), 1, + ACTIONS(1688), 1, + anon_sym_BSLASH, + ACTIONS(1691), 1, + anon_sym_LPAREN, + STATE(670), 1, + sym_arguments, + STATE(2288), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, - ACTIONS(3252), 1, + anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(3254), 1, - sym_execution_string_chars_after_variable, - ACTIONS(3166), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [50163] = 7, - ACTIONS(123), 1, - anon_sym_DOLLAR, - ACTIONS(1575), 1, + [51017] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3256), 1, + ACTIONS(1737), 1, + anon_sym_DOLLAR, + ACTIONS(3167), 1, sym_name, - ACTIONS(3258), 1, + ACTIONS(3169), 1, anon_sym_LBRACE, - STATE(822), 1, + STATE(666), 1, sym__reserved_identifier, - STATE(609), 2, + STATE(820), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(3009), 3, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [50188] = 7, - ACTIONS(1563), 1, - anon_sym_DOLLAR, - ACTIONS(1575), 1, + [51042] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3260), 1, - sym_name, - ACTIONS(3262), 1, + ACTIONS(1688), 1, + anon_sym_BSLASH, + ACTIONS(1903), 1, + anon_sym_LPAREN, + STATE(794), 1, + sym_arguments, + STATE(2288), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1560), 5, anon_sym_LBRACE, - STATE(1545), 1, - sym__reserved_identifier, - STATE(779), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2461), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [50213] = 6, - ACTIONS(123), 1, - anon_sym_DOLLAR, - ACTIONS(1575), 1, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [51065] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3264), 1, + ACTIONS(1719), 1, + anon_sym_DOLLAR, + ACTIONS(3269), 1, sym_name, - ACTIONS(3266), 1, + ACTIONS(3271), 1, anon_sym_LBRACE, - ACTIONS(3178), 3, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(608), 3, + STATE(674), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [50236] = 8, - ACTIONS(1575), 1, + [51088] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1742), 1, - anon_sym_AMP, - ACTIONS(3268), 1, - sym_name, - ACTIONS(3270), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(1540), 1, - sym_reference_modifier, - STATE(1590), 1, - sym_formal_parameters, - STATE(2213), 1, - sym__reserved_identifier, - ACTIONS(2461), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [50263] = 6, - ACTIONS(1563), 1, - anon_sym_DOLLAR, - ACTIONS(1575), 1, + STATE(587), 1, + sym_arguments, + ACTIONS(3273), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [51109] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3272), 1, + ACTIONS(1719), 1, + anon_sym_DOLLAR, + ACTIONS(3275), 1, sym_name, - ACTIONS(3274), 1, + ACTIONS(3277), 1, anon_sym_LBRACE, - ACTIONS(3246), 3, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(765), 3, + STATE(673), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [50286] = 7, - ACTIONS(1575), 1, + [51132] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1774), 1, + ACTIONS(1719), 1, anon_sym_DOLLAR, - ACTIONS(3206), 1, + ACTIONS(3167), 1, sym_name, - ACTIONS(3208), 1, + ACTIONS(3169), 1, anon_sym_LBRACE, - STATE(1517), 1, + STATE(666), 1, sym__reserved_identifier, - STATE(842), 2, + STATE(691), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2461), 3, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [50311] = 7, - ACTIONS(1569), 1, - anon_sym_DOLLAR, - ACTIONS(1575), 1, + [51157] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3276), 1, - sym_name, - ACTIONS(3278), 1, + ACTIONS(1600), 1, + anon_sym_BSLASHu, + ACTIONS(1598), 8, + sym_encapsed_string_chars, + sym_encapsed_string_chars_after_variable, anon_sym_LBRACE, - STATE(710), 1, - sym__reserved_identifier, - STATE(653), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2461), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [50336] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1774), 1, + anon_sym_DASH_GT, + anon_sym_LBRACK, + sym_escape_sequence, + anon_sym_DQUOTE, anon_sym_DOLLAR, - ACTIONS(3280), 1, - sym_name, - ACTIONS(3282), 1, - anon_sym_LBRACE, - ACTIONS(3009), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(838), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [50359] = 6, - ACTIONS(1575), 1, + [51174] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1774), 1, - anon_sym_DOLLAR, - ACTIONS(3284), 1, - sym_name, - ACTIONS(3286), 1, + ACTIONS(3175), 1, + anon_sym_PIPE, + STATE(1455), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3281), 3, anon_sym_LBRACE, - ACTIONS(3009), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(834), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [50382] = 7, - ACTIONS(612), 1, + anon_sym_EQ_GT, anon_sym_DOLLAR, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3212), 1, - sym_name, - ACTIONS(3214), 1, - anon_sym_LBRACE, - STATE(668), 1, - sym__reserved_identifier, - STATE(582), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2461), 3, + ACTIONS(3279), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [50407] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1774), 1, + sym_name, + [51195] = 6, + ACTIONS(619), 1, anon_sym_DOLLAR, - ACTIONS(3288), 1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3283), 1, sym_name, - ACTIONS(3290), 1, + ACTIONS(3287), 1, anon_sym_LBRACE, - ACTIONS(3009), 3, + ACTIONS(3285), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(843), 3, + STATE(569), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [50430] = 7, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1766), 1, + [51218] = 7, + ACTIONS(1524), 1, anon_sym_DOLLAR, - ACTIONS(3212), 1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3289), 1, sym_name, - ACTIONS(3214), 1, + ACTIONS(3291), 1, anon_sym_LBRACE, - STATE(668), 1, + STATE(1540), 1, sym__reserved_identifier, - STATE(706), 2, + STATE(759), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2461), 3, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [50455] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1774), 1, + [51243] = 6, + ACTIONS(619), 1, anon_sym_DOLLAR, - ACTIONS(3292), 1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3283), 1, sym_name, - ACTIONS(3294), 1, + ACTIONS(3287), 1, anon_sym_LBRACE, - ACTIONS(3009), 3, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(849), 3, + STATE(569), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [50478] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1774), 1, + [51266] = 6, + ACTIONS(619), 1, anon_sym_DOLLAR, - ACTIONS(3296), 1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3293), 1, sym_name, - ACTIONS(3298), 1, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3009), 3, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(850), 3, + STATE(572), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [50501] = 5, - ACTIONS(1575), 1, + [51289] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(584), 1, + STATE(587), 1, sym_arguments, - ACTIONS(3300), 2, + ACTIONS(2584), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [50522] = 5, - ACTIONS(1575), 1, + [51310] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3306), 1, - anon_sym_PIPE, - STATE(1494), 1, - aux_sym_union_type_repeat1, - ACTIONS(3304), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, + ACTIONS(1719), 1, anon_sym_DOLLAR, - ACTIONS(3302), 4, + ACTIONS(3217), 1, + sym_name, + ACTIONS(3219), 1, + anon_sym_LBRACE, + STATE(1551), 1, + sym__reserved_identifier, + STATE(694), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - sym_name, - [50543] = 5, - ACTIONS(1575), 1, + [51335] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3308), 1, + ACTIONS(3297), 1, anon_sym_PIPE, - STATE(1485), 1, + STATE(1491), 1, aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3139), 3, + ACTIONS(3118), 3, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOLLAR, - ACTIONS(3137), 4, + ACTIONS(3116), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - [50564] = 7, - ACTIONS(612), 1, + [51356] = 6, + ACTIONS(619), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3192), 1, + ACTIONS(3293), 1, sym_name, - ACTIONS(3194), 1, + ACTIONS(3295), 1, anon_sym_LBRACE, - STATE(1529), 1, - sym__reserved_identifier, - STATE(1518), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2461), 3, + ACTIONS(3285), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [50589] = 5, - ACTIONS(1575), 1, + STATE(572), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [51379] = 7, + ACTIONS(125), 1, + anon_sym_DOLLAR, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3236), 1, - anon_sym_PIPE, - STATE(1485), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3313), 3, + ACTIONS(3300), 1, + sym_name, + ACTIONS(3302), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - ACTIONS(3311), 4, + STATE(806), 1, + sym__reserved_identifier, + STATE(595), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2956), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - sym_name, - [50610] = 6, - ACTIONS(1575), 1, + [51404] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1727), 1, - anon_sym_BSLASH, - ACTIONS(1736), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(730), 1, + ACTIONS(1688), 1, + anon_sym_BSLASH, + STATE(587), 1, sym_arguments, - STATE(2243), 1, + STATE(2288), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [50633] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1593), 1, - anon_sym_LPAREN, - STATE(584), 1, - sym_arguments, - ACTIONS(3315), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [50654] = 6, - ACTIONS(1575), 1, + [51427] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1766), 1, + ACTIONS(1719), 1, anon_sym_DOLLAR, - ACTIONS(3317), 1, + ACTIONS(3304), 1, sym_name, - ACTIONS(3319), 1, + ACTIONS(3306), 1, anon_sym_LBRACE, - ACTIONS(2461), 3, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(713), 3, + STATE(697), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [50677] = 7, - ACTIONS(1563), 1, + [51450] = 6, + ACTIONS(1524), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3321), 1, + ACTIONS(3308), 1, sym_name, - ACTIONS(3323), 1, + ACTIONS(3312), 1, anon_sym_LBRACE, - STATE(837), 1, - sym__reserved_identifier, - STATE(779), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(3009), 3, + ACTIONS(3310), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [50702] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1727), 1, - anon_sym_BSLASH, - ACTIONS(1944), 1, - anon_sym_LPAREN, - STATE(787), 1, - sym_arguments, - STATE(2243), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [50725] = 5, - ACTIONS(1575), 1, + STATE(767), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [51473] = 6, + ACTIONS(125), 1, + anon_sym_DOLLAR, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, - anon_sym_LPAREN, - STATE(584), 1, - sym_arguments, - ACTIONS(2609), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1609), 5, + ACTIONS(3314), 1, + sym_name, + ACTIONS(3316), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [50746] = 5, - ACTIONS(1575), 1, + ACTIONS(3185), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(593), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [51496] = 6, + ACTIONS(1524), 1, + anon_sym_DOLLAR, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3325), 1, - anon_sym_PIPE, - STATE(1494), 1, - aux_sym_union_type_repeat1, - ACTIONS(3156), 3, + ACTIONS(3318), 1, + sym_name, + ACTIONS(3320), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - ACTIONS(3154), 4, + ACTIONS(3310), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - sym_name, - [50767] = 8, - ACTIONS(1575), 1, + STATE(757), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [51519] = 8, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1742), 1, + ACTIONS(1699), 1, anon_sym_AMP, - ACTIONS(3268), 1, + ACTIONS(3209), 1, sym_name, - ACTIONS(3270), 1, + ACTIONS(3211), 1, anon_sym_LPAREN, - STATE(1550), 1, + STATE(1558), 1, sym_reference_modifier, - STATE(1570), 1, + STATE(1606), 1, sym_formal_parameters, - STATE(2213), 1, + STATE(2197), 1, sym__reserved_identifier, - ACTIONS(2461), 3, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [50794] = 7, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1774), 1, + [51546] = 7, + ACTIONS(619), 1, anon_sym_DOLLAR, - ACTIONS(3212), 1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3167), 1, sym_name, - ACTIONS(3214), 1, + ACTIONS(3169), 1, anon_sym_LBRACE, - STATE(668), 1, + STATE(666), 1, sym__reserved_identifier, - STATE(847), 2, + STATE(570), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2461), 3, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [50819] = 6, - ACTIONS(1569), 1, + [51571] = 7, + ACTIONS(619), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3328), 1, + ACTIONS(3247), 1, sym_name, - ACTIONS(3332), 1, + ACTIONS(3249), 1, anon_sym_LBRACE, - ACTIONS(3330), 3, + STATE(1557), 1, + sym__reserved_identifier, + STATE(1559), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(651), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [50842] = 6, - ACTIONS(612), 1, - anon_sym_DOLLAR, - ACTIONS(1575), 1, + [51596] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3188), 1, + ACTIONS(1719), 1, + anon_sym_DOLLAR, + ACTIONS(3322), 1, sym_name, - ACTIONS(3190), 1, + ACTIONS(3324), 1, anon_sym_LBRACE, - ACTIONS(3184), 3, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(579), 3, + STATE(671), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [50865] = 6, - ACTIONS(1575), 1, + [51619] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3326), 1, + anon_sym_PIPE, + STATE(1503), 1, + aux_sym_union_type_repeat1, + ACTIONS(3141), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + ACTIONS(3139), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [51640] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1766), 1, + ACTIONS(1737), 1, anon_sym_DOLLAR, - ACTIONS(3334), 1, + ACTIONS(3329), 1, sym_name, - ACTIONS(3336), 1, + ACTIONS(3331), 1, anon_sym_LBRACE, - ACTIONS(2461), 3, + ACTIONS(2956), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(707), 3, + STATE(821), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [50888] = 6, - ACTIONS(1569), 1, + [51663] = 7, + ACTIONS(1524), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3338), 1, + ACTIONS(3333), 1, sym_name, - ACTIONS(3340), 1, + ACTIONS(3335), 1, anon_sym_LBRACE, - ACTIONS(3330), 3, + STATE(808), 1, + sym__reserved_identifier, + STATE(759), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2956), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(650), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [50911] = 5, - ACTIONS(1575), 1, + [51688] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3236), 1, - anon_sym_PIPE, - STATE(1485), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3344), 3, + ACTIONS(1600), 1, + anon_sym_BSLASHu, + ACTIONS(1598), 8, + sym_execution_string_chars, + sym_execution_string_chars_after_variable, anon_sym_LBRACE, - anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_LBRACK, + sym_escape_sequence, + anon_sym_BQUOTE, anon_sym_DOLLAR, - ACTIONS(3342), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [50932] = 9, - ACTIONS(1575), 1, + [51705] = 9, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - ACTIONS(3346), 1, + ACTIONS(3337), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3339), 1, aux_sym_base_clause_token1, - ACTIONS(3350), 1, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - STATE(1096), 1, + STATE(964), 1, sym_declaration_list, - STATE(1559), 1, + STATE(1576), 1, sym_arguments, - STATE(1858), 1, + STATE(1863), 1, sym_base_clause, - STATE(2381), 1, + STATE(2366), 1, sym_class_interface_clause, - [50960] = 6, - ACTIONS(976), 1, + [51733] = 6, + ACTIONS(993), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(3343), 1, aux_sym_catch_clause_token1, - ACTIONS(3354), 1, + ACTIONS(3345), 1, aux_sym_finally_clause_token1, - ACTIONS(974), 2, + ACTIONS(991), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - STATE(1513), 3, + STATE(1518), 3, sym_catch_clause, sym_finally_clause, aux_sym_try_statement_repeat1, - [50982] = 8, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1727), 1, + [51755] = 9, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(3358), 1, - anon_sym_COMMA, - ACTIONS(3360), 1, - anon_sym_LBRACE, - STATE(1358), 1, - sym_use_list, - STATE(1631), 1, - aux_sym_base_clause_repeat1, - STATE(2243), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3356), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51008] = 5, - ACTIONS(1575), 1, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3123), 1, - anon_sym_COMMA, - ACTIONS(3125), 1, - anon_sym_RPAREN, - STATE(1973), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [51028] = 9, - ACTIONS(1575), 1, + ACTIONS(1666), 1, + sym_name, + STATE(1418), 1, + sym_qualified_name, + STATE(1741), 1, + sym_named_type, + STATE(2077), 1, + sym_type_list, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + [51783] = 9, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - ACTIONS(3348), 1, + ACTIONS(3339), 1, aux_sym_base_clause_token1, - ACTIONS(3350), 1, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3362), 1, + ACTIONS(3347), 1, anon_sym_LBRACE, - STATE(945), 1, + STATE(1082), 1, sym_declaration_list, - STATE(1620), 1, + STATE(1563), 1, sym_arguments, - STATE(1760), 1, + STATE(1746), 1, sym_base_clause, - STATE(2228), 1, + STATE(2216), 1, sym_class_interface_clause, - [51056] = 7, - ACTIONS(1575), 1, + [51811] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3349), 1, anon_sym_AMP, - ACTIONS(3366), 1, + ACTIONS(3351), 1, anon_sym_PIPE, - STATE(1649), 1, + STATE(1648), 1, aux_sym_intersection_type_repeat1, - STATE(1707), 1, + STATE(1681), 1, aux_sym_union_type_repeat1, - STATE(1716), 1, + STATE(1704), 1, aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3080), 3, + ACTIONS(3065), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [51080] = 9, + [51835] = 5, + ACTIONS(870), 1, + anon_sym_COMMA, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3157), 1, + anon_sym_RPAREN, + STATE(1932), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1560), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [51855] = 9, ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(566), 1, + ACTIONS(573), 1, aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1711), 1, + ACTIONS(1666), 1, sym_name, - STATE(1415), 1, + STATE(1418), 1, sym_qualified_name, - STATE(1854), 1, + STATE(1741), 1, sym_named_type, - STATE(2028), 1, + STATE(1999), 1, sym_type_list, - STATE(2531), 1, + STATE(2516), 1, sym_namespace_name_as_prefix, - STATE(2599), 1, + STATE(2556), 1, sym_namespace_name, - [51108] = 5, - ACTIONS(856), 1, - anon_sym_COMMA, - ACTIONS(1575), 1, + [51883] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3143), 1, + ACTIONS(3132), 1, + anon_sym_COMMA, + ACTIONS(3134), 1, anon_sym_RPAREN, - STATE(2139), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1609), 5, + STATE(2007), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51128] = 9, - ACTIONS(1575), 1, + [51903] = 9, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - ACTIONS(3348), 1, + ACTIONS(3337), 1, + anon_sym_LBRACE, + ACTIONS(3339), 1, aux_sym_base_clause_token1, - ACTIONS(3350), 1, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3362), 1, - anon_sym_LBRACE, - STATE(958), 1, + STATE(917), 1, sym_declaration_list, - STATE(1574), 1, + STATE(1585), 1, sym_arguments, - STATE(1874), 1, + STATE(1849), 1, sym_base_clause, - STATE(2406), 1, + STATE(2359), 1, sym_class_interface_clause, - [51156] = 9, - ACTIONS(1575), 1, + [51931] = 9, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - ACTIONS(3346), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3339), 1, aux_sym_base_clause_token1, - ACTIONS(3350), 1, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - STATE(1119), 1, + ACTIONS(3347), 1, + anon_sym_LBRACE, + STATE(1136), 1, sym_declaration_list, - STATE(1567), 1, + STATE(1597), 1, sym_arguments, - STATE(1756), 1, + STATE(1861), 1, sym_base_clause, - STATE(2305), 1, + STATE(2346), 1, sym_class_interface_clause, - [51184] = 5, - ACTIONS(1575), 1, + [51959] = 8, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(1688), 1, + anon_sym_BSLASH, + ACTIONS(3355), 1, anon_sym_COMMA, - ACTIONS(3141), 1, - anon_sym_RPAREN, - STATE(2029), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1609), 5, + ACTIONS(3357), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [51204] = 6, - ACTIONS(984), 1, + STATE(1373), 1, + sym_use_list, + STATE(1599), 1, + aux_sym_base_clause_repeat1, + STATE(2288), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3353), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51985] = 6, + ACTIONS(983), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3368), 1, + ACTIONS(3359), 1, aux_sym_catch_clause_token1, - ACTIONS(3371), 1, + ACTIONS(3362), 1, aux_sym_finally_clause_token1, - ACTIONS(982), 2, + ACTIONS(981), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - STATE(1513), 3, + STATE(1518), 3, sym_catch_clause, sym_finally_clause, aux_sym_try_statement_repeat1, - [51226] = 9, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1711), 1, - sym_name, - STATE(1415), 1, - sym_qualified_name, - STATE(1854), 1, - sym_named_type, - STATE(2020), 1, - sym_type_list, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - [51254] = 6, - ACTIONS(1575), 1, + [52007] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1727), 1, - anon_sym_BSLASH, - ACTIONS(3376), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1907), 1, - sym_namespace_aliasing_clause, - STATE(2243), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3374), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3147), 1, anon_sym_COMMA, - [51275] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3378), 3, - anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_DOLLAR, - ACTIONS(2912), 4, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - sym__new_line, - [51290] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1946), 1, - anon_sym_LPAREN, - STATE(871), 1, - sym_arguments, - ACTIONS(1756), 5, + ACTIONS(3149), 1, + anon_sym_RPAREN, + STATE(2006), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51307] = 4, - ACTIONS(1575), 1, + [52027] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(1691), 1, anon_sym_LPAREN, - STATE(762), 1, + STATE(670), 1, sym_arguments, - ACTIONS(1615), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51324] = 3, + [52044] = 6, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1699), 1, + anon_sym_AMP, + ACTIONS(3365), 1, + sym_name, + STATE(1662), 1, + sym_reference_modifier, + STATE(2229), 1, + sym__reserved_identifier, + ACTIONS(2430), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [52065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3380), 3, + ACTIONS(1600), 3, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_DOLLAR, - ACTIONS(3382), 4, + ACTIONS(1598), 4, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, sym__new_line, - [51339] = 3, - ACTIONS(1575), 1, + [52080] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3300), 2, + ACTIONS(3199), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1609), 5, + anon_sym_RBRACK, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51354] = 4, - ACTIONS(1575), 1, + [52095] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1944), 1, - anon_sym_LPAREN, - STATE(787), 1, + ACTIONS(1620), 3, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_DOLLAR, + ACTIONS(1618), 4, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + [52110] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + ACTIONS(3369), 1, + anon_sym_DASH, + ACTIONS(3367), 2, + sym_integer, + sym_name, + STATE(2523), 3, + sym__simple_string_subscript_unary_expression, + sym__simple_string_array_access_argument, + sym_variable_name, + [52129] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1909), 1, + anon_sym_LPAREN, + STATE(890), 1, sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51371] = 3, + [52146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3384), 3, + ACTIONS(1580), 3, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_DOLLAR, - ACTIONS(3386), 4, + ACTIONS(1578), 4, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, sym__new_line, - [51386] = 3, - ACTIONS(3), 1, + [52161] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3388), 3, + ACTIONS(1909), 1, + anon_sym_LPAREN, + STATE(875), 1, + sym_arguments, + ACTIONS(1725), 5, anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_DOLLAR, - ACTIONS(3390), 4, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - sym__new_line, - [51401] = 3, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [52178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 3, + ACTIONS(3371), 3, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_DOLLAR, - ACTIONS(3394), 4, + ACTIONS(3373), 4, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, sym__new_line, - [51416] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - ACTIONS(3398), 1, - anon_sym_DASH, - ACTIONS(3396), 2, - sym_integer, - sym_name, - STATE(2572), 3, - sym__simple_string_subscript_unary_expression, - sym__simple_string_array_access_argument, - sym_variable_name, - [51435] = 4, - ACTIONS(1575), 1, + [52193] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1727), 1, + ACTIONS(1688), 1, anon_sym_BSLASH, - STATE(2243), 1, + STATE(2288), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3065), 5, + ACTIONS(3022), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_AMP, anon_sym_LBRACE, anon_sym_PIPE, - [51452] = 7, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3400), 1, - anon_sym_AMP, - ACTIONS(3406), 1, - anon_sym_PIPE, - STATE(1704), 1, - aux_sym_union_type_repeat1, - STATE(1705), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - STATE(1737), 1, - aux_sym_intersection_type_repeat1, - ACTIONS(3080), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [51475] = 5, - ACTIONS(1575), 1, + [52210] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1754), 1, + ACTIONS(3375), 3, + anon_sym_LBRACE, + anon_sym_BSLASHu, anon_sym_DOLLAR, - ACTIONS(3398), 1, - anon_sym_DASH, - ACTIONS(3408), 2, - sym_integer, - sym_name, - STATE(2431), 3, - sym__simple_string_subscript_unary_expression, - sym__simple_string_array_access_argument, - sym_variable_name, - [51494] = 4, - ACTIONS(1575), 1, + ACTIONS(2907), 4, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + [52225] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - STATE(762), 1, + STATE(735), 1, sym_arguments, - ACTIONS(1756), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51511] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1742), 1, - anon_sym_AMP, - ACTIONS(3410), 1, - sym_name, - STATE(1702), 1, - sym_reference_modifier, - STATE(2276), 1, - sym__reserved_identifier, - ACTIONS(2461), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [51532] = 4, - ACTIONS(1575), 1, + [52242] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1946), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - STATE(857), 1, + STATE(735), 1, sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51549] = 8, - ACTIONS(27), 1, - anon_sym_BSLASH, - ACTIONS(566), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1575), 1, + [52259] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1711), 1, - sym_name, - STATE(1415), 1, - sym_qualified_name, - STATE(2146), 1, - sym_named_type, - STATE(2531), 1, - sym_namespace_name_as_prefix, - STATE(2599), 1, - sym_namespace_name, - [51574] = 5, - ACTIONS(1575), 1, + ACTIONS(3377), 3, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_DOLLAR, + ACTIONS(3379), 4, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + [52274] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3381), 3, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_DOLLAR, + ACTIONS(3383), 4, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + [52289] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1754), 1, + ACTIONS(1711), 1, anon_sym_DOLLAR, - ACTIONS(3398), 1, + ACTIONS(3369), 1, anon_sym_DASH, - ACTIONS(3412), 2, + ACTIONS(3385), 2, sym_integer, sym_name, - STATE(2445), 3, + STATE(2555), 3, sym__simple_string_subscript_unary_expression, sym__simple_string_array_access_argument, sym_variable_name, - [51593] = 4, - ACTIONS(1575), 1, + [52308] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(1903), 1, anon_sym_LPAREN, - STATE(721), 1, + STATE(791), 1, sym_arguments, - ACTIONS(1780), 5, + ACTIONS(1725), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51610] = 5, - ACTIONS(1575), 1, + [52325] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3416), 1, - aux_sym_enum_case_token1, - ACTIONS(3419), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3414), 2, - anon_sym_RBRACE, - aux_sym_switch_block_token1, - STATE(1535), 3, - sym_case_statement, - sym_default_statement, - aux_sym_switch_block_repeat1, - [51629] = 4, - ACTIONS(1575), 1, + ACTIONS(3387), 1, + anon_sym_AMP, + ACTIONS(3393), 1, + anon_sym_PIPE, + STATE(1697), 1, + aux_sym_union_type_repeat1, + STATE(1698), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + STATE(1725), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3065), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [52348] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1946), 1, + ACTIONS(1638), 1, anon_sym_LPAREN, - STATE(871), 1, + STATE(615), 1, sym_arguments, - ACTIONS(1615), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51646] = 4, - ACTIONS(1575), 1, + [52365] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1730), 1, + ACTIONS(1903), 1, anon_sym_LPAREN, - STATE(672), 1, + STATE(782), 1, sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1739), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51663] = 4, - ACTIONS(1575), 1, + [52382] = 8, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(573), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_LPAREN, - STATE(857), 1, - sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1666), 1, + sym_name, + STATE(1418), 1, + sym_qualified_name, + STATE(1996), 1, + sym_named_type, + STATE(2516), 1, + sym_namespace_name_as_prefix, + STATE(2556), 1, + sym_namespace_name, + [52407] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3165), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(3395), 1, + aux_sym_use_instead_of_clause_token1, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51680] = 4, - ACTIONS(1575), 1, + [52424] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + ACTIONS(3369), 1, + anon_sym_DASH, + ACTIONS(3397), 2, + sym_integer, + sym_name, + STATE(2428), 3, + sym__simple_string_subscript_unary_expression, + sym__simple_string_array_access_argument, + sym_variable_name, + [52443] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1730), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(672), 1, + STATE(587), 1, sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51697] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3270), 1, - anon_sym_LPAREN, - ACTIONS(3422), 1, - sym_name, - STATE(1581), 1, - sym_formal_parameters, - STATE(2278), 1, - sym__reserved_identifier, - ACTIONS(2461), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [51718] = 4, - ACTIONS(1575), 1, + [52460] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1903), 1, anon_sym_LPAREN, - STATE(584), 1, + STATE(794), 1, sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51735] = 4, - ACTIONS(1575), 1, + [52477] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3174), 1, - aux_sym_namespace_aliasing_clause_token1, - ACTIONS(3424), 1, - aux_sym_use_instead_of_clause_token1, - ACTIONS(1609), 5, + ACTIONS(3401), 1, + aux_sym_enum_case_token1, + ACTIONS(3404), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3399), 2, + anon_sym_RBRACE, + aux_sym_switch_block_token1, + STATE(1546), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [52496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3407), 3, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_DOLLAR, + ACTIONS(3409), 4, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + [52511] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1691), 1, + anon_sym_LPAREN, + STATE(670), 1, + sym_arguments, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51752] = 4, - ACTIONS(1575), 1, + [52528] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, - anon_sym_LPAREN, - STATE(584), 1, - sym_arguments, - ACTIONS(1609), 5, + ACTIONS(3181), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51769] = 3, - ACTIONS(1575), 1, + [52543] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3315), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1609), 5, + ACTIONS(1697), 1, + anon_sym_LPAREN, + STATE(720), 1, + sym_arguments, + ACTIONS(1725), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51784] = 4, - ACTIONS(1575), 1, + [52560] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1944), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - STATE(797), 1, + STATE(731), 1, sym_arguments, - ACTIONS(1756), 5, + ACTIONS(1739), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51801] = 3, - ACTIONS(1575), 1, + [52577] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3196), 2, + ACTIONS(3273), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51816] = 4, - ACTIONS(1575), 1, + [52592] = 6, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1688), 1, + anon_sym_BSLASH, + ACTIONS(3413), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1917), 1, + sym_namespace_aliasing_clause, + STATE(2288), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3411), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [52613] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1913), 3, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + ACTIONS(1911), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [52628] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1944), 1, + ACTIONS(1903), 1, anon_sym_LPAREN, - STATE(787), 1, + STATE(794), 1, sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51833] = 3, - ACTIONS(3), 1, + [52645] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1661), 3, - anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_DOLLAR, - ACTIONS(1659), 4, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - sym__new_line, - [51848] = 4, - ACTIONS(1575), 1, + ACTIONS(3211), 1, + anon_sym_LPAREN, + ACTIONS(3415), 1, + sym_name, + STATE(1591), 1, + sym_formal_parameters, + STATE(2360), 1, + sym__reserved_identifier, + ACTIONS(2430), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [52666] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1946), 1, + ACTIONS(1909), 1, anon_sym_LPAREN, - STATE(874), 1, + STATE(882), 1, sym_arguments, - ACTIONS(1780), 5, + ACTIONS(1739), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51865] = 6, - ACTIONS(1575), 1, + [52683] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3270), 1, + ACTIONS(3211), 1, anon_sym_LPAREN, - ACTIONS(3422), 1, + ACTIONS(3415), 1, sym_name, - STATE(1621), 1, + STATE(1620), 1, sym_formal_parameters, - STATE(2278), 1, + STATE(2360), 1, sym__reserved_identifier, - ACTIONS(2461), 3, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [51886] = 4, - ACTIONS(1575), 1, + [52704] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(1909), 1, anon_sym_LPAREN, - STATE(730), 1, + STATE(882), 1, sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1550), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51903] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1665), 3, - anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_DOLLAR, - ACTIONS(1663), 4, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - sym__new_line, - [51918] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 3, - anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_DOLLAR, - ACTIONS(1627), 4, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - sym__new_line, - [51933] = 4, - ACTIONS(1575), 1, + [52721] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1944), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - STATE(794), 1, + STATE(731), 1, sym_arguments, - ACTIONS(1780), 5, + ACTIONS(1550), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51950] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1950), 3, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - ACTIONS(1948), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [51965] = 4, - ACTIONS(1575), 1, + [52738] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1685), 1, + ACTIONS(1909), 1, anon_sym_LPAREN, - STATE(617), 1, + STATE(890), 1, sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51982] = 4, - ACTIONS(1575), 1, + [52755] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - STATE(730), 1, + STATE(587), 1, sym_arguments, - ACTIONS(1609), 5, + ACTIONS(1560), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51999] = 7, - ACTIONS(1575), 1, + [52772] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3348), 1, + ACTIONS(3339), 1, aux_sym_base_clause_token1, - ACTIONS(3350), 1, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3426), 1, - anon_sym_LBRACE, - STATE(452), 1, - sym_declaration_list, - STATE(1800), 1, - sym_base_clause, - STATE(2290), 1, - sym_class_interface_clause, - [52021] = 7, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3346), 1, + ACTIONS(3347), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, - aux_sym_base_clause_token1, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - STATE(1134), 1, + STATE(1045), 1, sym_declaration_list, - STATE(1791), 1, + STATE(1745), 1, sym_base_clause, - STATE(2274), 1, + STATE(2199), 1, sym_class_interface_clause, - [52043] = 4, - ACTIONS(1575), 1, + [52794] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1727), 1, - anon_sym_BSLASH, - STATE(2243), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3428), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - [52059] = 3, - ACTIONS(1575), 1, + ACTIONS(3417), 1, + aux_sym_if_statement_token2, + ACTIONS(3419), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3421), 1, + aux_sym_else_clause_token1, + STATE(1666), 1, + aux_sym_if_statement_repeat2, + STATE(2024), 1, + sym_else_if_clause_2, + STATE(2535), 1, + sym_else_clause_2, + [52816] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1661), 1, + ACTIONS(3371), 1, anon_sym_BSLASHu, - ACTIONS(1659), 5, - sym_encapsed_string_chars, + ACTIONS(3373), 5, + sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, - anon_sym_DQUOTE, + anon_sym_BQUOTE, anon_sym_DOLLAR, - [52073] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3430), 1, - sym_name, - STATE(1872), 1, - sym_const_element, - STATE(2580), 1, - sym__reserved_identifier, - ACTIONS(2461), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [52091] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1727), 1, - anon_sym_BSLASH, - ACTIONS(3432), 1, - anon_sym_COMMA, - STATE(1808), 1, - aux_sym_base_clause_repeat1, - STATE(2243), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3434), 2, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [52111] = 7, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3348), 1, - aux_sym_base_clause_token1, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3426), 1, - anon_sym_LBRACE, - STATE(462), 1, - sym_declaration_list, - STATE(1837), 1, - sym_base_clause, - STATE(2360), 1, - sym_class_interface_clause, - [52133] = 7, - ACTIONS(394), 1, - anon_sym_LBRACE, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3436), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3438), 1, - anon_sym_COLON, - STATE(913), 1, - sym_compound_statement, - STATE(1781), 1, - sym_anonymous_function_use_clause, - STATE(2303), 1, - sym__return_type, - [52155] = 7, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3346), 1, + [52830] = 7, + ACTIONS(389), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, - aux_sym_base_clause_token1, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - STATE(1712), 1, - sym_declaration_list, - STATE(1772), 1, - sym_base_clause, - STATE(2309), 1, - sym_class_interface_clause, - [52177] = 7, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3346), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - aux_sym_base_clause_token1, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - STATE(1092), 1, - sym_declaration_list, - STATE(1857), 1, - sym_base_clause, - STATE(2382), 1, - sym_class_interface_clause, - [52199] = 7, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3348), 1, - aux_sym_base_clause_token1, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3426), 1, - anon_sym_LBRACE, - STATE(440), 1, - sym_declaration_list, - STATE(1804), 1, - sym_base_clause, - STATE(2242), 1, - sym_class_interface_clause, - [52221] = 7, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3436), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3438), 1, - anon_sym_COLON, - ACTIONS(3440), 1, - anon_sym_LBRACE, - STATE(1085), 1, - sym_compound_statement, - STATE(1822), 1, - sym_anonymous_function_use_clause, - STATE(2234), 1, - sym__return_type, - [52243] = 7, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3436), 1, + ACTIONS(3423), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3438), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3440), 1, - anon_sym_LBRACE, - STATE(1074), 1, + STATE(967), 1, sym_compound_statement, - STATE(1846), 1, + STATE(1845), 1, sym_anonymous_function_use_clause, - STATE(2279), 1, + STATE(2305), 1, sym__return_type, - [52265] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3430), 1, - sym_name, - STATE(1852), 1, - sym_const_element, - STATE(2580), 1, - sym__reserved_identifier, - ACTIONS(2461), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [52283] = 3, - ACTIONS(1575), 1, + [52852] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1665), 1, + ACTIONS(1620), 1, anon_sym_BSLASHu, - ACTIONS(1663), 5, + ACTIONS(1618), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [52297] = 3, - ACTIONS(1575), 1, + [52866] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(1600), 1, anon_sym_BSLASHu, - ACTIONS(3394), 5, - sym_encapsed_string_chars, + ACTIONS(1598), 5, + sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, - anon_sym_DQUOTE, + anon_sym_BQUOTE, anon_sym_DOLLAR, - [52311] = 7, - ACTIONS(1575), 1, + [52880] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3348), 1, + ACTIONS(3339), 1, aux_sym_base_clause_token1, - ACTIONS(3350), 1, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3362), 1, + ACTIONS(3347), 1, anon_sym_LBRACE, - STATE(942), 1, + STATE(1699), 1, sym_declaration_list, - STATE(1803), 1, + STATE(1853), 1, sym_base_clause, - STATE(2375), 1, + STATE(2356), 1, sym_class_interface_clause, - [52333] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3442), 1, - aux_sym_enum_case_token1, - ACTIONS(3444), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3446), 1, - aux_sym_switch_block_token1, - STATE(1577), 3, - sym_case_statement, - sym_default_statement, - aux_sym_switch_block_repeat1, - [52351] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3442), 1, - aux_sym_enum_case_token1, - ACTIONS(3444), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3448), 1, - anon_sym_RBRACE, - STATE(1624), 3, - sym_case_statement, - sym_default_statement, - aux_sym_switch_block_repeat1, - [52369] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3442), 1, - aux_sym_enum_case_token1, - ACTIONS(3444), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3450), 1, - aux_sym_switch_block_token1, - STATE(1535), 3, - sym_case_statement, - sym_default_statement, - aux_sym_switch_block_repeat1, - [52387] = 7, - ACTIONS(1575), 1, + [52902] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3452), 1, - aux_sym_if_statement_token2, - ACTIONS(3454), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3456), 1, - aux_sym_else_clause_token1, - STATE(1622), 1, - aux_sym_if_statement_repeat2, - STATE(1974), 1, - sym_else_if_clause_2, - STATE(2437), 1, - sym_else_clause_2, - [52409] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3442), 1, - aux_sym_enum_case_token1, - ACTIONS(3444), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3458), 1, - anon_sym_RBRACE, - STATE(1629), 3, - sym_case_statement, - sym_default_statement, - aux_sym_switch_block_repeat1, - [52427] = 3, - ACTIONS(1575), 1, + ACTIONS(1600), 1, + anon_sym_BSLASHu, + ACTIONS(1598), 5, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [52916] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1580), 1, anon_sym_BSLASHu, - ACTIONS(1627), 5, + ACTIONS(1578), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [52441] = 7, - ACTIONS(1575), 1, + [52930] = 7, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3436), 1, + ACTIONS(3423), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3438), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3440), 1, - anon_sym_LBRACE, - STATE(1067), 1, + STATE(936), 1, sym_compound_statement, - STATE(1789), 1, + STATE(1860), 1, sym_anonymous_function_use_clause, - STATE(2246), 1, + STATE(2383), 1, sym__return_type, - [52463] = 7, - ACTIONS(1575), 1, + [52952] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3427), 1, + anon_sym_RBRACE, + ACTIONS(3429), 1, + aux_sym_enum_case_token1, + ACTIONS(3431), 1, + aux_sym_match_default_expression_token1, + STATE(1584), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [52970] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3436), 1, + ACTIONS(3423), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3438), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3440), 1, + ACTIONS(3433), 1, anon_sym_LBRACE, - STATE(1113), 1, + STATE(1139), 1, sym_compound_statement, - STATE(1823), 1, + STATE(1859), 1, sym_anonymous_function_use_clause, - STATE(2359), 1, + STATE(2364), 1, sym__return_type, - [52485] = 5, - ACTIONS(1575), 1, + [52992] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3430), 1, + ACTIONS(3435), 1, sym_name, - STATE(1812), 1, + STATE(1864), 1, sym_const_element, - STATE(2580), 1, + STATE(2520), 1, sym__reserved_identifier, - ACTIONS(2461), 3, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [52503] = 7, - ACTIONS(1575), 1, + [53010] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3348), 1, + ACTIONS(3337), 1, + anon_sym_LBRACE, + ACTIONS(3339), 1, aux_sym_base_clause_token1, - ACTIONS(3350), 1, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3426), 1, - anon_sym_LBRACE, - STATE(455), 1, + STATE(918), 1, sym_declaration_list, - STATE(1766), 1, + STATE(1851), 1, sym_base_clause, - STATE(2167), 1, + STATE(2363), 1, sym_class_interface_clause, - [52525] = 7, - ACTIONS(1575), 1, + [53032] = 7, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3436), 1, + ACTIONS(3423), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3438), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3440), 1, + STATE(914), 1, + sym_compound_statement, + STATE(1832), 1, + sym_anonymous_function_use_clause, + STATE(2355), 1, + sym__return_type, + [53054] = 7, + ACTIONS(389), 1, anon_sym_LBRACE, - STATE(1041), 1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3423), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(912), 1, sym_compound_statement, - STATE(1728), 1, + STATE(1830), 1, sym_anonymous_function_use_clause, - STATE(2165), 1, + STATE(2354), 1, sym__return_type, - [52547] = 3, - ACTIONS(1575), 1, + [53076] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1665), 1, - anon_sym_BSLASHu, - ACTIONS(1663), 5, - sym_encapsed_string_chars, + ACTIONS(3339), 1, + aux_sym_base_clause_token1, + ACTIONS(3341), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3347), 1, anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [52561] = 3, - ACTIONS(1575), 1, + STATE(1652), 1, + sym_declaration_list, + STATE(1829), 1, + sym_base_clause, + STATE(2351), 1, + sym_class_interface_clause, + [53098] = 7, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3339), 1, + aux_sym_base_clause_token1, + ACTIONS(3341), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, + anon_sym_LBRACE, + STATE(440), 1, + sym_declaration_list, + STATE(1869), 1, + sym_base_clause, + STATE(2388), 1, + sym_class_interface_clause, + [53120] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1620), 1, anon_sym_BSLASHu, - ACTIONS(1627), 5, + ACTIONS(1618), 5, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_DQUOTE, anon_sym_DOLLAR, - [52575] = 7, - ACTIONS(1575), 1, + [53134] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3348), 1, + ACTIONS(3339), 1, aux_sym_base_clause_token1, - ACTIONS(3350), 1, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3426), 1, + ACTIONS(3347), 1, anon_sym_LBRACE, - STATE(435), 1, + STATE(1651), 1, sym_declaration_list, - STATE(1770), 1, + STATE(1824), 1, sym_base_clause, - STATE(2353), 1, + STATE(2349), 1, sym_class_interface_clause, - [52597] = 7, - ACTIONS(1006), 1, + [53156] = 7, + ACTIONS(999), 1, aux_sym_while_statement_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3460), 1, + ACTIONS(3439), 1, aux_sym_else_if_clause_token1, - ACTIONS(3462), 1, + ACTIONS(3441), 1, aux_sym_else_clause_token1, - STATE(1724), 1, + STATE(1614), 1, aux_sym_if_statement_repeat1, - STATE(2048), 1, - sym_else_clause, - STATE(2066), 1, + STATE(2108), 1, sym_else_if_clause, - [52619] = 7, - ACTIONS(1575), 1, + STATE(2128), 1, + sym_else_clause, + [53178] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3436), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3438), 1, - anon_sym_COLON, - ACTIONS(3440), 1, + ACTIONS(3429), 1, + aux_sym_enum_case_token1, + ACTIONS(3431), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3443), 1, + anon_sym_RBRACE, + STATE(1546), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [53196] = 7, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3337), 1, anon_sym_LBRACE, - STATE(1118), 1, - sym_compound_statement, - STATE(1782), 1, - sym_anonymous_function_use_clause, - STATE(2356), 1, - sym__return_type, - [52641] = 3, - ACTIONS(1575), 1, + ACTIONS(3339), 1, + aux_sym_base_clause_token1, + ACTIONS(3341), 1, + aux_sym_class_interface_clause_token1, + STATE(926), 1, + sym_declaration_list, + STATE(1812), 1, + sym_base_clause, + STATE(2335), 1, + sym_class_interface_clause, + [53218] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3388), 1, + ACTIONS(1580), 1, anon_sym_BSLASHu, - ACTIONS(3390), 5, + ACTIONS(1578), 5, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_DQUOTE, anon_sym_DOLLAR, - [52655] = 7, - ACTIONS(1575), 1, + [53232] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3346), 1, + ACTIONS(3371), 1, + anon_sym_BSLASHu, + ACTIONS(3373), 5, + sym_encapsed_string_chars, anon_sym_LBRACE, - ACTIONS(3348), 1, - aux_sym_base_clause_token1, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - STATE(1643), 1, - sym_declaration_list, - STATE(1774), 1, - sym_base_clause, - STATE(2413), 1, - sym_class_interface_clause, - [52677] = 7, - ACTIONS(394), 1, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [53246] = 7, + ACTIONS(389), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3436), 1, + ACTIONS(3423), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3438), 1, + ACTIONS(3425), 1, anon_sym_COLON, - STATE(931), 1, + STATE(927), 1, sym_compound_statement, - STATE(1871), 1, + STATE(1809), 1, sym_anonymous_function_use_clause, - STATE(2350), 1, + STATE(2331), 1, sym__return_type, - [52699] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3384), 1, - anon_sym_BSLASHu, - ACTIONS(3386), 5, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [52713] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1661), 1, - anon_sym_BSLASHu, - ACTIONS(1659), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [52727] = 6, - ACTIONS(1575), 1, + [53268] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1548), 1, anon_sym_LPAREN, - ACTIONS(1727), 1, + ACTIONS(1688), 1, anon_sym_BSLASH, - STATE(2243), 1, + STATE(2288), 1, aux_sym_namespace_name_repeat1, - STATE(2319), 1, + STATE(2367), 1, sym_arguments, - ACTIONS(3464), 2, + ACTIONS(3445), 2, anon_sym_COMMA, anon_sym_RBRACK, - [52747] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3358), 1, - anon_sym_COMMA, - ACTIONS(3360), 1, - anon_sym_LBRACE, - STATE(1358), 1, - sym_use_list, - STATE(1631), 1, - aux_sym_base_clause_repeat1, - ACTIONS(3356), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52767] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3380), 1, - anon_sym_BSLASHu, - ACTIONS(3382), 5, - sym_encapsed_string_chars, + [53288] = 7, + ACTIONS(389), 1, anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [52781] = 7, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3436), 1, + ACTIONS(3423), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3438), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3440), 1, - anon_sym_LBRACE, - STATE(1080), 1, + STATE(930), 1, sym_compound_statement, - STATE(1778), 1, + STATE(1808), 1, sym_anonymous_function_use_clause, - STATE(2249), 1, + STATE(2325), 1, sym__return_type, - [52803] = 7, - ACTIONS(394), 1, - anon_sym_LBRACE, - ACTIONS(1575), 1, + [53310] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3436), 1, + ACTIONS(3423), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3438), 1, + ACTIONS(3425), 1, anon_sym_COLON, - STATE(951), 1, - sym_compound_statement, - STATE(1792), 1, - sym_anonymous_function_use_clause, - STATE(2420), 1, - sym__return_type, - [52825] = 7, - ACTIONS(394), 1, + ACTIONS(3433), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3436), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3438), 1, - anon_sym_COLON, - STATE(932), 1, + STATE(1115), 1, sym_compound_statement, - STATE(1762), 1, + STATE(1796), 1, sym_anonymous_function_use_clause, - STATE(2346), 1, + STATE(2303), 1, sym__return_type, - [52847] = 7, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3346), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - aux_sym_base_clause_token1, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - STATE(1680), 1, - sym_declaration_list, - STATE(1757), 1, - sym_base_clause, - STATE(2347), 1, - sym_class_interface_clause, - [52869] = 7, - ACTIONS(1006), 1, - aux_sym_while_statement_token1, - ACTIONS(1575), 1, + [53332] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3466), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3469), 1, - aux_sym_else_clause_token1, - STATE(1724), 1, - aux_sym_if_statement_repeat1, - STATE(2048), 1, - sym_else_clause, - STATE(2066), 1, - sym_else_if_clause, - [52891] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3384), 1, - anon_sym_BSLASHu, - ACTIONS(3386), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [52905] = 7, - ACTIONS(1575), 1, + ACTIONS(3435), 1, + sym_name, + STATE(1989), 1, + sym_const_element, + STATE(2520), 1, + sym__reserved_identifier, + ACTIONS(2430), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [53350] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3454), 1, + ACTIONS(3419), 1, aux_sym_else_if_clause_token1, - ACTIONS(3456), 1, + ACTIONS(3421), 1, aux_sym_else_clause_token1, - ACTIONS(3472), 1, + ACTIONS(3447), 1, aux_sym_if_statement_token2, - STATE(1630), 1, + STATE(1564), 1, aux_sym_if_statement_repeat2, - STATE(1974), 1, + STATE(2024), 1, sym_else_if_clause_2, - STATE(2477), 1, + STATE(2485), 1, sym_else_clause_2, - [52927] = 7, - ACTIONS(992), 1, - aux_sym_while_statement_token1, - ACTIONS(1575), 1, + [53372] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3474), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3477), 1, - aux_sym_else_clause_token1, - STATE(1603), 1, - aux_sym_if_statement_repeat1, - STATE(2065), 1, - sym_else_clause, - STATE(2066), 1, - sym_else_if_clause, - [52949] = 5, - ACTIONS(1575), 1, + ACTIONS(3429), 1, + aux_sym_enum_case_token1, + ACTIONS(3431), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3449), 1, + anon_sym_RBRACE, + STATE(1625), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [53390] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3429), 1, aux_sym_enum_case_token1, - ACTIONS(3444), 1, + ACTIONS(3431), 1, aux_sym_match_default_expression_token1, - ACTIONS(3480), 1, + ACTIONS(3451), 1, aux_sym_switch_block_token1, - STATE(1615), 3, + STATE(1626), 3, sym_case_statement, sym_default_statement, aux_sym_switch_block_repeat1, - [52967] = 7, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3348), 1, - aux_sym_base_clause_token1, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3426), 1, - anon_sym_LBRACE, - STATE(447), 1, - sym_declaration_list, - STATE(1776), 1, - sym_base_clause, - STATE(2250), 1, - sym_class_interface_clause, - [52989] = 7, - ACTIONS(394), 1, + [53408] = 7, + ACTIONS(389), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3436), 1, + ACTIONS(3423), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3438), 1, + ACTIONS(3425), 1, anon_sym_COLON, - STATE(936), 1, + STATE(935), 1, sym_compound_statement, - STATE(1750), 1, + STATE(1804), 1, sym_anonymous_function_use_clause, - STATE(2362), 1, + STATE(2322), 1, sym__return_type, - [53011] = 7, - ACTIONS(1575), 1, + [53430] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3346), 1, + ACTIONS(3339), 1, + aux_sym_base_clause_token1, + ACTIONS(3341), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3347), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + STATE(1054), 1, + sym_declaration_list, + STATE(1735), 1, + sym_base_clause, + STATE(2220), 1, + sym_class_interface_clause, + [53452] = 7, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3339), 1, aux_sym_base_clause_token1, - ACTIONS(3350), 1, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - STATE(1720), 1, + ACTIONS(3347), 1, + anon_sym_LBRACE, + STATE(1645), 1, sym_declaration_list, - STATE(1876), 1, + STATE(1803), 1, sym_base_clause, - STATE(2163), 1, + STATE(2321), 1, sym_class_interface_clause, - [53033] = 3, - ACTIONS(1575), 1, + [53474] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3482), 1, + ACTIONS(3355), 1, + anon_sym_COMMA, + ACTIONS(3357), 1, + anon_sym_LBRACE, + STATE(1357), 1, + sym_use_list, + STATE(1660), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3453), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53494] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3455), 1, anon_sym_BSLASHu, - ACTIONS(3046), 5, + ACTIONS(3039), 5, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_DQUOTE, anon_sym_DOLLAR, - [53047] = 7, - ACTIONS(394), 1, + [53508] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3457), 1, + anon_sym_BSLASHu, + ACTIONS(2975), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [53522] = 7, + ACTIONS(389), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3436), 1, + ACTIONS(3423), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3438), 1, + ACTIONS(3425), 1, anon_sym_COLON, - STATE(954), 1, + STATE(919), 1, sym_compound_statement, - STATE(1758), 1, + STATE(1781), 1, + sym_anonymous_function_use_clause, + STATE(2294), 1, + sym__return_type, + [53544] = 7, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3423), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(3433), 1, + anon_sym_LBRACE, + STATE(1072), 1, + sym_compound_statement, + STATE(1816), 1, sym_anonymous_function_use_clause, - STATE(2419), 1, + STATE(2278), 1, sym__return_type, - [53069] = 3, - ACTIONS(1575), 1, + [53566] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3388), 1, + ACTIONS(3407), 1, anon_sym_BSLASHu, - ACTIONS(3390), 5, - sym_execution_string_chars, + ACTIONS(3409), 5, + sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, - anon_sym_BQUOTE, + anon_sym_DQUOTE, anon_sym_DOLLAR, - [53083] = 7, - ACTIONS(1575), 1, + [53580] = 7, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3423), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(3433), 1, + anon_sym_LBRACE, + STATE(1126), 1, + sym_compound_statement, + STATE(1736), 1, + sym_anonymous_function_use_clause, + STATE(2164), 1, + sym__return_type, + [53602] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3346), 1, + ACTIONS(3423), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(3433), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + STATE(1135), 1, + sym_compound_statement, + STATE(1733), 1, + sym_anonymous_function_use_clause, + STATE(2156), 1, + sym__return_type, + [53624] = 7, + ACTIONS(1007), 1, + aux_sym_while_statement_token1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3459), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3462), 1, + aux_sym_else_clause_token1, + STATE(1637), 1, + aux_sym_if_statement_repeat1, + STATE(2026), 1, + sym_else_clause, + STATE(2108), 1, + sym_else_if_clause, + [53646] = 7, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3339), 1, aux_sym_base_clause_token1, - ACTIONS(3350), 1, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - STATE(1667), 1, + ACTIONS(3437), 1, + anon_sym_LBRACE, + STATE(443), 1, sym_declaration_list, - STATE(1878), 1, + STATE(1732), 1, sym_base_clause, - STATE(2412), 1, + STATE(2149), 1, sym_class_interface_clause, - [53105] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3442), 1, - aux_sym_enum_case_token1, - ACTIONS(3444), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3484), 1, - aux_sym_switch_block_token1, - STATE(1535), 3, - sym_case_statement, - sym_default_statement, - aux_sym_switch_block_repeat1, - [53123] = 5, - ACTIONS(1575), 1, + [53668] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3430), 1, + ACTIONS(3435), 1, sym_name, - STATE(1839), 1, + STATE(1726), 1, sym_const_element, - STATE(2580), 1, + STATE(2520), 1, sym__reserved_identifier, - ACTIONS(2461), 3, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53141] = 3, - ACTIONS(1575), 1, + [53686] = 7, + ACTIONS(999), 1, + aux_sym_while_statement_token1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3465), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3468), 1, + aux_sym_else_clause_token1, + STATE(1607), 1, + aux_sym_if_statement_repeat1, + STATE(2108), 1, + sym_else_if_clause, + STATE(2128), 1, + sym_else_clause, + [53708] = 6, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3355), 1, + anon_sym_COMMA, + ACTIONS(3357), 1, + anon_sym_LBRACE, + STATE(1373), 1, + sym_use_list, + STATE(1599), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3353), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53728] = 7, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3339), 1, + aux_sym_base_clause_token1, + ACTIONS(3341), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, + anon_sym_LBRACE, + STATE(446), 1, + sym_declaration_list, + STATE(1729), 1, + sym_base_clause, + STATE(2237), 1, + sym_class_interface_clause, + [53750] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1688), 1, + anon_sym_BSLASH, + STATE(2288), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3471), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + [53766] = 7, + ACTIONS(1007), 1, + aux_sym_while_statement_token1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3439), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3441), 1, + aux_sym_else_clause_token1, + STATE(1637), 1, + aux_sym_if_statement_repeat1, + STATE(2026), 1, + sym_else_clause, + STATE(2108), 1, + sym_else_if_clause, + [53788] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3486), 1, + ACTIONS(3377), 1, anon_sym_BSLASHu, - ACTIONS(2970), 5, + ACTIONS(3379), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [53155] = 3, - ACTIONS(1575), 1, + [53802] = 6, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1688), 1, + anon_sym_BSLASH, + ACTIONS(3473), 1, + anon_sym_COMMA, + STATE(1740), 1, + aux_sym_base_clause_repeat1, + STATE(2288), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3475), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [53822] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3381), 1, anon_sym_BSLASHu, - ACTIONS(3394), 5, + ACTIONS(3383), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [53169] = 7, - ACTIONS(992), 1, - aux_sym_while_statement_token1, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3460), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3462), 1, - aux_sym_else_clause_token1, - STATE(1589), 1, - aux_sym_if_statement_repeat1, - STATE(2065), 1, - sym_else_clause, - STATE(2066), 1, - sym_else_if_clause, - [53191] = 7, - ACTIONS(1575), 1, + [53836] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3348), 1, + ACTIONS(3339), 1, aux_sym_base_clause_token1, - ACTIONS(3350), 1, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3362), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, - STATE(959), 1, + STATE(442), 1, sym_declaration_list, - STATE(1868), 1, + STATE(1768), 1, sym_base_clause, - STATE(2404), 1, + STATE(2254), 1, sym_class_interface_clause, - [53213] = 7, - ACTIONS(1575), 1, + [53858] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3436), 1, + ACTIONS(3423), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3438), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3440), 1, + ACTIONS(3433), 1, anon_sym_LBRACE, - STATE(1043), 1, + STATE(1089), 1, sym_compound_statement, - STATE(1859), 1, + STATE(1765), 1, sym_anonymous_function_use_clause, - STATE(2416), 1, + STATE(2251), 1, sym__return_type, - [53235] = 7, - ACTIONS(1575), 1, + [53880] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3454), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3456), 1, - aux_sym_else_clause_token1, - ACTIONS(3488), 1, - aux_sym_if_statement_token2, - STATE(1661), 1, - aux_sym_if_statement_repeat2, - STATE(1974), 1, - sym_else_if_clause_2, - STATE(2491), 1, - sym_else_clause_2, - [53257] = 7, - ACTIONS(394), 1, + ACTIONS(3423), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(3433), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, + STATE(1079), 1, + sym_compound_statement, + STATE(1763), 1, + sym_anonymous_function_use_clause, + STATE(2233), 1, + sym__return_type, + [53902] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3436), 1, + ACTIONS(3423), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3438), 1, + ACTIONS(3425), 1, anon_sym_COLON, - STATE(948), 1, + ACTIONS(3433), 1, + anon_sym_LBRACE, + STATE(1071), 1, sym_compound_statement, - STATE(1806), 1, + STATE(1747), 1, sym_anonymous_function_use_clause, - STATE(2307), 1, + STATE(2142), 1, sym__return_type, - [53279] = 5, - ACTIONS(1575), 1, + [53924] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3429), 1, aux_sym_enum_case_token1, - ACTIONS(3444), 1, + ACTIONS(3431), 1, aux_sym_match_default_expression_token1, - ACTIONS(3490), 1, - anon_sym_RBRACE, - STATE(1535), 3, + ACTIONS(3477), 1, + aux_sym_switch_block_token1, + STATE(1546), 3, sym_case_statement, sym_default_statement, aux_sym_switch_block_repeat1, - [53297] = 7, - ACTIONS(394), 1, - anon_sym_LBRACE, - ACTIONS(1575), 1, + [53942] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3436), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3438), 1, - anon_sym_COLON, - STATE(905), 1, - sym_compound_statement, - STATE(1742), 1, - sym_anonymous_function_use_clause, - STATE(2365), 1, - sym__return_type, - [53319] = 7, - ACTIONS(1575), 1, + ACTIONS(3419), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3421), 1, + aux_sym_else_clause_token1, + ACTIONS(3479), 1, + aux_sym_if_statement_token2, + STATE(1666), 1, + aux_sym_if_statement_repeat2, + STATE(2024), 1, + sym_else_if_clause_2, + STATE(2468), 1, + sym_else_clause_2, + [53964] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3346), 1, + ACTIONS(3381), 1, + anon_sym_BSLASHu, + ACTIONS(3383), 5, + sym_encapsed_string_chars, anon_sym_LBRACE, - ACTIONS(3348), 1, - aux_sym_base_clause_token1, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - STATE(1645), 1, - sym_declaration_list, - STATE(1733), 1, - sym_base_clause, - STATE(2369), 1, - sym_class_interface_clause, - [53341] = 5, - ACTIONS(1575), 1, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [53978] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3429), 1, + aux_sym_enum_case_token1, + ACTIONS(3431), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3481), 1, + anon_sym_RBRACE, + STATE(1546), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [53996] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3429), 1, + aux_sym_enum_case_token1, + ACTIONS(3431), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3483), 1, + aux_sym_switch_block_token1, + STATE(1546), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [54014] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3430), 1, + ACTIONS(3435), 1, sym_name, - STATE(1967), 1, + STATE(1847), 1, sym_const_element, - STATE(2580), 1, + STATE(2520), 1, sym__reserved_identifier, - ACTIONS(2461), 3, + ACTIONS(2430), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53359] = 3, - ACTIONS(1575), 1, + [54032] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3380), 1, + ACTIONS(3407), 1, anon_sym_BSLASHu, - ACTIONS(3382), 5, + ACTIONS(3409), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [53373] = 5, - ACTIONS(1575), 1, + [54046] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3435), 1, + sym_name, + STATE(1827), 1, + sym_const_element, + STATE(2520), 1, + sym__reserved_identifier, + ACTIONS(2430), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [54064] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3429), 1, aux_sym_enum_case_token1, - ACTIONS(3444), 1, + ACTIONS(3431), 1, aux_sym_match_default_expression_token1, - ACTIONS(3492), 1, - anon_sym_RBRACE, - STATE(1535), 3, + ACTIONS(3485), 1, + aux_sym_switch_block_token1, + STATE(1622), 3, sym_case_statement, sym_default_statement, aux_sym_switch_block_repeat1, - [53391] = 7, - ACTIONS(1575), 1, + [54082] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3377), 1, + anon_sym_BSLASHu, + ACTIONS(3379), 5, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [54096] = 7, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3454), 1, + ACTIONS(3419), 1, aux_sym_else_if_clause_token1, - ACTIONS(3456), 1, + ACTIONS(3421), 1, aux_sym_else_clause_token1, - ACTIONS(3494), 1, + ACTIONS(3487), 1, aux_sym_if_statement_token2, - STATE(1661), 1, + STATE(1623), 1, aux_sym_if_statement_repeat2, - STATE(1974), 1, + STATE(2024), 1, sym_else_if_clause_2, - STATE(2465), 1, + STATE(2473), 1, sym_else_clause_2, - [53413] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3358), 1, - anon_sym_COMMA, - ACTIONS(3360), 1, - anon_sym_LBRACE, - STATE(1361), 1, - sym_use_list, - STATE(1694), 1, - aux_sym_base_clause_repeat1, - ACTIONS(3496), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [53433] = 2, - ACTIONS(1575), 1, + [54118] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3103), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_PIPE, - [53444] = 4, - ACTIONS(1063), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1061), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3498), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [53459] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1742), 1, + ACTIONS(1699), 1, anon_sym_AMP, - ACTIONS(2417), 1, + ACTIONS(2432), 1, anon_sym_COLON, - ACTIONS(3270), 1, + ACTIONS(3211), 1, anon_sym_LPAREN, - STATE(1887), 1, + STATE(1990), 1, sym_formal_parameters, - STATE(2247), 1, + STATE(2224), 1, sym_reference_modifier, - [53478] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(1575), 1, + [54137] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3500), 1, - sym_name, - ACTIONS(3502), 1, - anon_sym_BSLASH, - STATE(524), 1, - sym_compound_statement, - STATE(1699), 1, - sym_namespace_name, - [53497] = 4, - ACTIONS(1057), 1, + ACTIONS(3489), 1, + anon_sym_LBRACE, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + ACTIONS(3493), 1, + anon_sym_DASH_GT, + ACTIONS(3495), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3497), 1, + anon_sym_LBRACK, + [54156] = 4, + ACTIONS(1052), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1055), 2, + ACTIONS(1050), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3504), 2, + ACTIONS(3499), 2, sym__automatic_semicolon, anon_sym_SEMI, - [53512] = 6, - ACTIONS(1575), 1, + [54171] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1742), 1, + ACTIONS(3501), 1, + anon_sym_PIPE, + STATE(1636), 1, + aux_sym_union_type_repeat1, + ACTIONS(3141), 3, anon_sym_AMP, - ACTIONS(2417), 1, - anon_sym_COLON, - ACTIONS(3270), 1, - anon_sym_LPAREN, - STATE(1593), 1, - sym_formal_parameters, - STATE(2294), 1, - sym_reference_modifier, - [53531] = 6, - ACTIONS(1575), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [54186] = 6, + ACTIONS(1039), 1, + aux_sym_while_statement_token1, + ACTIONS(1041), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3506), 1, - anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3504), 1, + aux_sym_else_if_clause_token1, + STATE(1637), 1, + aux_sym_if_statement_repeat1, + STATE(2108), 1, + sym_else_if_clause, + [54205] = 6, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3491), 1, anon_sym_COLON_COLON, - ACTIONS(3510), 1, + ACTIONS(3507), 1, + anon_sym_LBRACE, + ACTIONS(3509), 1, anon_sym_DASH_GT, - ACTIONS(3512), 1, + ACTIONS(3511), 1, anon_sym_QMARK_DASH_GT, - ACTIONS(3514), 1, + ACTIONS(3513), 1, anon_sym_LBRACK, - [53550] = 5, - ACTIONS(1575), 1, + [54224] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1774), 1, - anon_sym_DOLLAR, - ACTIONS(3516), 1, + ACTIONS(3515), 1, sym_name, - ACTIONS(3518), 1, + ACTIONS(3517), 1, + anon_sym_LBRACE, + ACTIONS(3519), 1, + anon_sym_DOLLAR, + STATE(1527), 2, + sym_dynamic_variable_name, + sym_variable_name, + [54241] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3517), 1, anon_sym_LBRACE, - STATE(884), 2, + ACTIONS(3519), 1, + anon_sym_DOLLAR, + ACTIONS(3521), 1, + sym_name, + STATE(1527), 2, sym_dynamic_variable_name, sym_variable_name, - [53567] = 4, - ACTIONS(1121), 1, + [54258] = 4, + ACTIONS(1058), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1119), 2, + ACTIONS(1056), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3520), 2, + ACTIONS(3523), 2, sym__automatic_semicolon, anon_sym_SEMI, - [53582] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3524), 1, - anon_sym_BSLASH, - STATE(1647), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3522), 3, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [53597] = 6, - ACTIONS(1575), 1, + [54273] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1742), 1, - anon_sym_AMP, - ACTIONS(1754), 1, + ACTIONS(3525), 1, + sym_name, + ACTIONS(3527), 1, + anon_sym_LBRACE, + ACTIONS(3529), 1, anon_sym_DOLLAR, - ACTIONS(3526), 1, - anon_sym_DOT_DOT_DOT, - STATE(2017), 1, - sym_reference_modifier, - STATE(2018), 1, + STATE(1571), 2, + sym_dynamic_variable_name, sym_variable_name, - [53616] = 4, - ACTIONS(1051), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + [54290] = 6, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1049), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3528), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [53631] = 5, - ACTIONS(1575), 1, + ACTIONS(3531), 1, + sym_name, + ACTIONS(3533), 1, + anon_sym_BSLASH, + STATE(512), 1, + sym_compound_statement, + STATE(1712), 1, + sym_namespace_name, + [54309] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3530), 1, + ACTIONS(3535), 1, sym_name, - ACTIONS(3532), 1, + ACTIONS(3537), 1, anon_sym_LBRACE, - ACTIONS(3534), 1, + ACTIONS(3539), 1, anon_sym_DOLLAR, - STATE(1587), 2, + STATE(1586), 2, sym_dynamic_variable_name, sym_variable_name, - [53648] = 4, - ACTIONS(1111), 1, + [54326] = 4, + ACTIONS(1090), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1109), 2, + ACTIONS(1088), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3536), 2, + ACTIONS(3541), 2, sym__automatic_semicolon, anon_sym_SEMI, - [53663] = 4, - ACTIONS(1575), 1, + [54341] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1727), 1, - anon_sym_BSLASH, - STATE(2243), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3428), 3, - anon_sym_COMMA, + ACTIONS(1719), 1, + anon_sym_DOLLAR, + ACTIONS(3543), 1, + sym_name, + ACTIONS(3545), 1, anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [53678] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3524), 1, - anon_sym_BSLASH, - STATE(1700), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3538), 3, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [53693] = 2, - ACTIONS(1575), 1, + STATE(723), 2, + sym_dynamic_variable_name, + sym_variable_name, + [54358] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3065), 5, + ACTIONS(3547), 1, + anon_sym_PIPE, + STATE(1671), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3207), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_AMP, anon_sym_LBRACE, - anon_sym_PIPE, - [53704] = 4, - ACTIONS(1575), 1, + [54373] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3349), 1, anon_sym_AMP, - STATE(1695), 1, + STATE(1672), 1, aux_sym_intersection_type_repeat1, - ACTIONS(3135), 3, + ACTIONS(3153), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [53719] = 4, - ACTIONS(1575), 1, + [54388] = 5, + ACTIONS(1518), 1, + anon_sym_DOLLAR, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3549), 1, + sym_name, + ACTIONS(3551), 1, + anon_sym_LBRACE, + STATE(668), 2, + sym_dynamic_variable_name, + sym_variable_name, + [54405] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3540), 1, + ACTIONS(3553), 1, anon_sym_PIPE, - STATE(1650), 1, + STATE(1678), 1, aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3139), 3, + ACTIONS(3207), 3, anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [53734] = 4, - ACTIONS(1575), 1, + [54420] = 4, + ACTIONS(1114), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3543), 1, - anon_sym_BSLASH, - STATE(1685), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3538), 3, + ACTIONS(1112), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3555), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [53749] = 2, - ACTIONS(1575), 1, + [54435] = 4, + ACTIONS(1096), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3109), 5, + ACTIONS(1094), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3557), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_AMP, + [54450] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3561), 1, + anon_sym_BSLASH, + STATE(1675), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3559), 3, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [54465] = 4, + ACTIONS(1084), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1082), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3563), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54480] = 6, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1688), 1, + anon_sym_BSLASH, + ACTIONS(3473), 1, + anon_sym_COMMA, + ACTIONS(3565), 1, anon_sym_LBRACE, - anon_sym_PIPE, - [53760] = 5, - ACTIONS(1575), 1, + STATE(2085), 1, + aux_sym_base_clause_repeat1, + STATE(2288), 1, + aux_sym_namespace_name_repeat1, + [54499] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1766), 1, + ACTIONS(3527), 1, + anon_sym_LBRACE, + ACTIONS(3529), 1, anon_sym_DOLLAR, - ACTIONS(3546), 1, + ACTIONS(3567), 1, sym_name, - ACTIONS(3548), 1, - anon_sym_LBRACE, - STATE(755), 2, + STATE(1571), 2, sym_dynamic_variable_name, sym_variable_name, - [53777] = 4, - ACTIONS(1575), 1, + [54516] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3550), 1, - anon_sym_PIPE, - STATE(1654), 1, - aux_sym_union_type_repeat1, - ACTIONS(3156), 3, + ACTIONS(1699), 1, anon_sym_AMP, - anon_sym_DOT_DOT_DOT, + ACTIONS(1711), 1, anon_sym_DOLLAR, - [53792] = 4, - ACTIONS(1575), 1, + ACTIONS(3569), 1, + anon_sym_DOT_DOT_DOT, + STATE(2105), 1, + sym_variable_name, + STATE(2106), 1, + sym_reference_modifier, + [54535] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3555), 1, - anon_sym_COLON, - STATE(2060), 1, - sym__return_type, - ACTIONS(3553), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3537), 1, anon_sym_LBRACE, - [53807] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3557), 1, + ACTIONS(3539), 1, + anon_sym_DOLLAR, + ACTIONS(3571), 1, sym_name, - ACTIONS(3559), 1, - anon_sym_LBRACE, - ACTIONS(3561), 1, - anon_sym_DOLLAR, - STATE(1580), 2, + STATE(1586), 2, sym_dynamic_variable_name, sym_variable_name, - [53824] = 5, - ACTIONS(1575), 1, + [54552] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3563), 1, - sym_name, - ACTIONS(3565), 1, - anon_sym_LBRACE, - ACTIONS(3567), 1, - anon_sym_DOLLAR, - STATE(1553), 2, - sym_dynamic_variable_name, - sym_variable_name, - [53841] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, - ACTIONS(3569), 1, - anon_sym_LBRACE, - ACTIONS(3571), 1, - anon_sym_DASH_GT, ACTIONS(3573), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(3575), 1, - anon_sym_LBRACK, - [53860] = 6, - ACTIONS(1575), 1, + sym_name, + STATE(1730), 1, + sym_namespace_name, + STATE(2126), 1, + sym_namespace_use_group_clause, + ACTIONS(3575), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + [54569] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1742), 1, - anon_sym_AMP, - ACTIONS(1754), 1, - anon_sym_DOLLAR, ACTIONS(3577), 1, - anon_sym_DOT_DOT_DOT, - STATE(1946), 1, - sym_reference_modifier, - STATE(1952), 1, - sym_variable_name, - [53879] = 4, - ACTIONS(1575), 1, + anon_sym_COMMA, + STATE(1660), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3471), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [54584] = 3, + ACTIONS(1033), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(1031), 4, aux_sym_catch_clause_token1, - ACTIONS(3354), 1, aux_sym_finally_clause_token1, - STATE(1503), 3, - sym_catch_clause, - sym_finally_clause, - aux_sym_try_statement_repeat1, - [53894] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3579), 1, - aux_sym_if_statement_token2, - ACTIONS(3581), 1, + aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3584), 1, - aux_sym_else_clause_token1, - STATE(1661), 1, - aux_sym_if_statement_repeat2, - STATE(1974), 1, - sym_else_if_clause_2, - [53913] = 5, - ACTIONS(1575), 1, + [54597] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3586), 1, + ACTIONS(3580), 1, sym_name, - STATE(1755), 1, - sym_namespace_name, - STATE(2161), 1, - sym_namespace_use_group_clause, - ACTIONS(3588), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - [53930] = 5, - ACTIONS(1575), 1, + STATE(2302), 1, + sym__reserved_identifier, + ACTIONS(2430), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [54612] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3565), 1, + ACTIONS(3489), 1, anon_sym_LBRACE, - ACTIONS(3567), 1, - anon_sym_DOLLAR, - ACTIONS(3590), 1, - sym_name, - STATE(1553), 2, - sym_dynamic_variable_name, - sym_variable_name, - [53947] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3508), 1, + ACTIONS(3491), 1, anon_sym_COLON_COLON, - ACTIONS(3592), 1, - anon_sym_LBRACE, - ACTIONS(3594), 1, - anon_sym_DASH_GT, - ACTIONS(3596), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(3598), 1, + ACTIONS(3497), 1, anon_sym_LBRACK, - [53966] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, - ACTIONS(3600), 1, - anon_sym_LBRACE, - ACTIONS(3602), 1, + ACTIONS(3582), 1, anon_sym_DASH_GT, - ACTIONS(3604), 1, + ACTIONS(3584), 1, anon_sym_QMARK_DASH_GT, - ACTIONS(3606), 1, - anon_sym_LBRACK, - [53985] = 6, - ACTIONS(1575), 1, + [54631] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3608), 1, + ACTIONS(1737), 1, + anon_sym_DOLLAR, + ACTIONS(3586), 1, + sym_name, + ACTIONS(3588), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - anon_sym_COLON, - STATE(2097), 1, - sym_enum_declaration_list, - STATE(2227), 1, - sym_class_interface_clause, - [54004] = 4, - ACTIONS(1183), 1, + STATE(891), 2, + sym_dynamic_variable_name, + sym_variable_name, + [54648] = 4, + ACTIONS(1108), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1181), 2, + ACTIONS(1106), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3612), 2, + ACTIONS(3590), 2, sym__automatic_semicolon, anon_sym_SEMI, - [54019] = 6, - ACTIONS(1575), 1, + [54663] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3350), 1, + ACTIONS(3592), 1, + aux_sym_if_statement_token2, + ACTIONS(3594), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3597), 1, + aux_sym_else_clause_token1, + STATE(1666), 1, + aux_sym_if_statement_repeat2, + STATE(2024), 1, + sym_else_if_clause_2, + [54682] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3561), 1, + anon_sym_BSLASH, + STATE(1653), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3599), 3, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [54697] = 6, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3608), 1, + ACTIONS(3601), 1, anon_sym_LBRACE, - ACTIONS(3614), 1, + ACTIONS(3603), 1, anon_sym_COLON, - STATE(2062), 1, + STATE(532), 1, sym_enum_declaration_list, - STATE(2417), 1, + STATE(2153), 1, sym_class_interface_clause, - [54038] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, - ACTIONS(3600), 1, - anon_sym_LBRACE, - ACTIONS(3606), 1, - anon_sym_LBRACK, - ACTIONS(3616), 1, - anon_sym_DASH_GT, - ACTIONS(3618), 1, - anon_sym_QMARK_DASH_GT, - [54057] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3586), 1, - sym_name, - STATE(1755), 1, - sym_namespace_name, - STATE(2008), 1, - sym_namespace_use_group_clause, - ACTIONS(3588), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - [54074] = 5, - ACTIONS(394), 1, - anon_sym_LBRACE, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3622), 1, - anon_sym_BSLASH, - STATE(2102), 1, - sym_compound_statement, - ACTIONS(3620), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [54091] = 6, - ACTIONS(1575), 1, + [54716] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, - ACTIONS(3624), 1, - anon_sym_LBRACE, - ACTIONS(3626), 1, - anon_sym_DASH_GT, - ACTIONS(3628), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(3630), 1, - anon_sym_LBRACK, - [54110] = 4, - ACTIONS(1083), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1081), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3632), 2, + ACTIONS(3607), 1, + anon_sym_EQ, + STATE(1911), 1, + sym_property_initializer, + ACTIONS(3605), 3, sym__automatic_semicolon, anon_sym_SEMI, - [54125] = 6, - ACTIONS(1575), 1, + anon_sym_COMMA, + [54731] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, - ACTIONS(3592), 1, + ACTIONS(3489), 1, anon_sym_LBRACE, - ACTIONS(3598), 1, - anon_sym_LBRACK, - ACTIONS(3634), 1, - anon_sym_DASH_GT, - ACTIONS(3636), 1, - anon_sym_QMARK_DASH_GT, - [54144] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3508), 1, + ACTIONS(3491), 1, anon_sym_COLON_COLON, - ACTIONS(3600), 1, - anon_sym_LBRACE, - ACTIONS(3606), 1, + ACTIONS(3497), 1, anon_sym_LBRACK, - ACTIONS(3638), 1, + ACTIONS(3609), 1, anon_sym_DASH_GT, - ACTIONS(3640), 1, + ACTIONS(3611), 1, anon_sym_QMARK_DASH_GT, - [54163] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1727), 1, - anon_sym_BSLASH, - ACTIONS(3432), 1, - anon_sym_COMMA, - ACTIONS(3642), 1, - anon_sym_LBRACE, - STATE(2025), 1, - aux_sym_base_clause_repeat1, - STATE(2243), 1, - aux_sym_namespace_name_repeat1, - [54182] = 4, - ACTIONS(1173), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + [54750] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1171), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3644), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [54197] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3646), 1, + ACTIONS(3613), 1, anon_sym_PIPE, - STATE(1682), 1, + STATE(1671), 1, aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3234), 3, + ACTIONS(3118), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [54212] = 4, - ACTIONS(1155), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + [54765] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1153), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3648), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [54227] = 4, - ACTIONS(1077), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1075), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3650), 2, + ACTIONS(3616), 1, + anon_sym_AMP, + STATE(1672), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3122), 3, sym__automatic_semicolon, anon_sym_SEMI, - [54242] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, - ACTIONS(3624), 1, anon_sym_LBRACE, - ACTIONS(3630), 1, - anon_sym_LBRACK, - ACTIONS(3652), 1, - anon_sym_DASH_GT, - ACTIONS(3654), 1, - anon_sym_QMARK_DASH_GT, - [54261] = 4, - ACTIONS(1575), 1, + [54780] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3646), 1, + ACTIONS(3619), 1, anon_sym_PIPE, - STATE(1697), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3344), 3, + STATE(1673), 1, + aux_sym_union_type_repeat1, + ACTIONS(3141), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [54276] = 5, - ACTIONS(612), 1, + [54795] = 5, + ACTIONS(1524), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3656), 1, - sym_name, - ACTIONS(3658), 1, - anon_sym_LBRACE, - STATE(585), 2, - sym_dynamic_variable_name, - sym_variable_name, - [54293] = 5, - ACTIONS(1569), 1, - anon_sym_DOLLAR, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3660), 1, + ACTIONS(3622), 1, sym_name, - ACTIONS(3662), 1, + ACTIONS(3624), 1, anon_sym_LBRACE, - STATE(669), 2, + STATE(797), 2, sym_dynamic_variable_name, sym_variable_name, - [54310] = 4, - ACTIONS(1575), 1, + [54812] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3666), 1, + ACTIONS(3628), 1, anon_sym_BSLASH, - STATE(1685), 1, + STATE(1675), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3664), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [54325] = 4, - ACTIONS(1161), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1159), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3669), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [54340] = 5, - ACTIONS(123), 1, - anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(3626), 3, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [54827] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3671), 1, + ACTIONS(3573), 1, sym_name, - ACTIONS(3673), 1, - anon_sym_LBRACE, - STATE(614), 2, - sym_dynamic_variable_name, - sym_variable_name, - [54357] = 4, - ACTIONS(1575), 1, + STATE(1730), 1, + sym_namespace_name, + STATE(2245), 1, + sym_namespace_use_group_clause, + ACTIONS(3575), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + [54844] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3677), 1, - anon_sym_EQ, - STATE(2127), 1, - sym_property_initializer, - ACTIONS(3675), 3, + ACTIONS(3547), 1, + anon_sym_PIPE, + STATE(1647), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3281), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - [54372] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3532), 1, anon_sym_LBRACE, - ACTIONS(3534), 1, - anon_sym_DOLLAR, - ACTIONS(3679), 1, - sym_name, - STATE(1587), 2, - sym_dynamic_variable_name, - sym_variable_name, - [54389] = 4, - ACTIONS(1575), 1, + [54859] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3631), 1, anon_sym_PIPE, - STATE(1650), 1, + STATE(1678), 1, aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3344), 3, + ACTIONS(3118), 3, anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [54404] = 6, - ACTIONS(394), 1, - anon_sym_LBRACE, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3500), 1, - sym_name, - ACTIONS(3502), 1, - anon_sym_BSLASH, - STATE(1671), 1, - sym_namespace_name, - STATE(2115), 1, - sym_compound_statement, - [54423] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3683), 1, - anon_sym_PIPE, - STATE(1692), 1, - aux_sym_union_type_repeat1, - ACTIONS(3156), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [54438] = 4, - ACTIONS(1575), 1, + [54874] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3555), 1, + ACTIONS(3636), 1, anon_sym_COLON, - STATE(2079), 1, + STATE(2092), 1, sym__return_type, - ACTIONS(3686), 3, + ACTIONS(3634), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [54453] = 4, - ACTIONS(1575), 1, + [54889] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3688), 1, - anon_sym_COMMA, - STATE(1694), 1, - aux_sym_base_clause_repeat1, - ACTIONS(3428), 3, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + ACTIONS(3638), 1, + anon_sym_AMP, + ACTIONS(3640), 1, + anon_sym_RPAREN, + STATE(2225), 2, + sym_variable_name, + sym_variable_reference, + [54906] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3642), 1, + anon_sym_PIPE, + STATE(1673), 1, + aux_sym_union_type_repeat1, + ACTIONS(3191), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [54468] = 4, - ACTIONS(1575), 1, + [54921] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3691), 1, + ACTIONS(1699), 1, anon_sym_AMP, - STATE(1695), 1, - aux_sym_intersection_type_repeat1, - ACTIONS(3150), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [54483] = 6, - ACTIONS(1575), 1, + ACTIONS(2432), 1, + anon_sym_COLON, + ACTIONS(3211), 1, + anon_sym_LPAREN, + STATE(1566), 1, + sym_formal_parameters, + STATE(2389), 1, + sym_reference_modifier, + [54940] = 3, + ACTIONS(1029), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1027), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [54953] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(3491), 1, anon_sym_COLON_COLON, - ACTIONS(3694), 1, + ACTIONS(3644), 1, anon_sym_LBRACE, - ACTIONS(3696), 1, + ACTIONS(3646), 1, anon_sym_DASH_GT, - ACTIONS(3698), 1, + ACTIONS(3648), 1, anon_sym_QMARK_DASH_GT, - ACTIONS(3700), 1, + ACTIONS(3650), 1, anon_sym_LBRACK, - [54502] = 4, - ACTIONS(1575), 1, + [54972] = 4, + ACTIONS(1072), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3702), 1, - anon_sym_PIPE, - STATE(1697), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3139), 3, + ACTIONS(1070), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3652), 2, sym__automatic_semicolon, anon_sym_SEMI, + [54987] = 6, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1699), 1, + anon_sym_AMP, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + ACTIONS(3654), 1, + anon_sym_DOT_DOT_DOT, + STATE(1979), 1, + sym_reference_modifier, + STATE(1980), 1, + sym_variable_name, + [55006] = 6, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + ACTIONS(3656), 1, anon_sym_LBRACE, - [54517] = 4, - ACTIONS(1575), 1, + ACTIONS(3658), 1, + anon_sym_DASH_GT, + ACTIONS(3660), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3662), 1, + anon_sym_LBRACK, + [55025] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3705), 1, + ACTIONS(3664), 1, anon_sym_BSLASH, - STATE(1651), 1, + STATE(1688), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3522), 3, + ACTIONS(3626), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [54532] = 5, - ACTIONS(29), 1, + [55040] = 6, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3341), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3601), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, + ACTIONS(3667), 1, + anon_sym_COLON, + STATE(533), 1, + sym_enum_declaration_list, + STATE(2385), 1, + sym_class_interface_clause, + [55059] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3622), 1, - anon_sym_BSLASH, - STATE(547), 1, - sym_compound_statement, - ACTIONS(3708), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [54549] = 4, - ACTIONS(1575), 1, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + ACTIONS(3669), 1, + anon_sym_LBRACE, + ACTIONS(3671), 1, + anon_sym_DASH_GT, + ACTIONS(3673), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3675), 1, + anon_sym_LBRACK, + [55078] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3710), 1, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + ACTIONS(3669), 1, + anon_sym_LBRACE, + ACTIONS(3675), 1, + anon_sym_LBRACK, + ACTIONS(3677), 1, + anon_sym_DASH_GT, + ACTIONS(3679), 1, + anon_sym_QMARK_DASH_GT, + [55097] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1688), 1, anon_sym_BSLASH, - STATE(1700), 1, + STATE(2288), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3664), 3, + ACTIONS(3471), 3, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [54564] = 5, - ACTIONS(1575), 1, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [55112] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3559), 1, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + ACTIONS(3507), 1, anon_sym_LBRACE, - ACTIONS(3561), 1, - anon_sym_DOLLAR, - ACTIONS(3713), 1, - sym_name, - STATE(1580), 2, - sym_dynamic_variable_name, - sym_variable_name, - [54581] = 4, - ACTIONS(1575), 1, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3681), 1, + anon_sym_DASH_GT, + ACTIONS(3683), 1, + anon_sym_QMARK_DASH_GT, + [55131] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3715), 1, - sym_name, - STATE(2233), 1, - sym__reserved_identifier, - ACTIONS(2461), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [54596] = 4, - ACTIONS(1575), 1, + ACTIONS(3685), 1, + aux_sym_catch_clause_token1, + ACTIONS(3687), 1, + aux_sym_finally_clause_token1, + STATE(424), 3, + sym_catch_clause, + sym_finally_clause, + aux_sym_try_statement_repeat1, + [55146] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3376), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1907), 1, - sym_namespace_aliasing_clause, - ACTIONS(3374), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [54611] = 4, - ACTIONS(1575), 1, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + ACTIONS(3669), 1, + anon_sym_LBRACE, + ACTIONS(3675), 1, + anon_sym_LBRACK, + ACTIONS(3689), 1, + anon_sym_DASH_GT, + ACTIONS(3691), 1, + anon_sym_QMARK_DASH_GT, + [55165] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3717), 1, + ACTIONS(3341), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3693), 1, + anon_sym_LBRACE, + ACTIONS(3695), 1, + anon_sym_COLON, + STATE(2118), 1, + sym_enum_declaration_list, + STATE(2352), 1, + sym_class_interface_clause, + [55184] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3697), 1, anon_sym_PIPE, - STATE(1654), 1, + STATE(1636), 1, aux_sym_union_type_repeat1, - ACTIONS(3304), 3, + ACTIONS(3191), 3, anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [54626] = 4, - ACTIONS(1575), 1, + [55199] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3553), 1, anon_sym_PIPE, - STATE(1650), 1, + STATE(1678), 1, aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3313), 3, + ACTIONS(3173), 3, anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [54641] = 3, - ACTIONS(1029), 1, + [55214] = 4, + ACTIONS(1078), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1027), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, + ACTIONS(1076), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [54654] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3719), 1, - anon_sym_PIPE, - STATE(1692), 1, - aux_sym_union_type_repeat1, - ACTIONS(3304), 3, + ACTIONS(3699), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [54669] = 3, - ACTIONS(1018), 1, + [55229] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3553), 1, + anon_sym_PIPE, + STATE(1650), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3281), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [55244] = 3, + ACTIONS(1048), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1016), 4, + ACTIONS(1046), 4, aux_sym_catch_clause_token1, aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [54682] = 5, - ACTIONS(1575), 1, + [55257] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - ACTIONS(3721), 1, - anon_sym_AMP, - ACTIONS(3723), 1, - anon_sym_RPAREN, - STATE(2154), 2, - sym_variable_name, - sym_variable_reference, - [54699] = 4, - ACTIONS(1101), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1099), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3725), 2, + ACTIONS(3413), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1917), 1, + sym_namespace_aliasing_clause, + ACTIONS(3411), 3, sym__automatic_semicolon, anon_sym_SEMI, - [54714] = 6, - ACTIONS(1575), 1, + anon_sym_COMMA, + [55272] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, - ACTIONS(3592), 1, - anon_sym_LBRACE, - ACTIONS(3598), 1, - anon_sym_LBRACK, - ACTIONS(3727), 1, - anon_sym_DASH_GT, - ACTIONS(3729), 1, - anon_sym_QMARK_DASH_GT, - [54733] = 4, - ACTIONS(1149), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(3343), 1, + aux_sym_catch_clause_token1, + ACTIONS(3345), 1, + aux_sym_finally_clause_token1, + STATE(1508), 3, + sym_catch_clause, + sym_finally_clause, + aux_sym_try_statement_repeat1, + [55287] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1147), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3731), 2, + ACTIONS(3547), 1, + anon_sym_PIPE, + STATE(1671), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3173), 3, sym__automatic_semicolon, anon_sym_SEMI, - [54748] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3733), 1, anon_sym_LBRACE, - ACTIONS(3735), 1, - anon_sym_COLON, - STATE(473), 1, - sym_enum_declaration_list, - STATE(2354), 1, - sym_class_interface_clause, - [54767] = 5, - ACTIONS(1575), 1, + [55302] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1754), 1, + ACTIONS(1711), 1, anon_sym_DOLLAR, - ACTIONS(3721), 1, + ACTIONS(3638), 1, anon_sym_AMP, - ACTIONS(3737), 1, + ACTIONS(3701), 1, anon_sym_RPAREN, - STATE(2154), 2, + STATE(2225), 2, sym_variable_name, sym_variable_reference, - [54784] = 4, - ACTIONS(1143), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + [55319] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1141), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3739), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [54799] = 4, - ACTIONS(1575), 1, + ACTIONS(3341), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3693), 1, + anon_sym_LBRACE, + ACTIONS(3703), 1, + anon_sym_COLON, + STATE(1876), 1, + sym_enum_declaration_list, + STATE(2347), 1, + sym_class_interface_clause, + [55338] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3646), 1, - anon_sym_PIPE, - STATE(1697), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3313), 3, + ACTIONS(3102), 5, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [54814] = 3, - ACTIONS(1037), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1035), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [54827] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3681), 1, - anon_sym_PIPE, - STATE(1690), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3234), 3, anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [54842] = 5, - ACTIONS(1563), 1, - anon_sym_DOLLAR, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3741), 1, - sym_name, - ACTIONS(3743), 1, anon_sym_LBRACE, - STATE(786), 2, - sym_dynamic_variable_name, - sym_variable_name, - [54859] = 4, - ACTIONS(1133), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + anon_sym_PIPE, + [55349] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1131), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3745), 2, + ACTIONS(3636), 1, + anon_sym_COLON, + STATE(1970), 1, + sym__return_type, + ACTIONS(3705), 3, sym__automatic_semicolon, anon_sym_SEMI, - [54874] = 4, - ACTIONS(1045), 1, + anon_sym_LBRACE, + [55364] = 4, + ACTIONS(1102), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1043), 2, + ACTIONS(1100), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3747), 2, + ACTIONS(3707), 2, sym__automatic_semicolon, anon_sym_SEMI, - [54889] = 4, - ACTIONS(1127), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + [55379] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1125), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3749), 2, + ACTIONS(3022), 5, sym__automatic_semicolon, anon_sym_SEMI, - [54904] = 4, - ACTIONS(1167), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_PIPE, + [55390] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1165), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3751), 2, + ACTIONS(3092), 5, sym__automatic_semicolon, anon_sym_SEMI, - [54919] = 6, - ACTIONS(1020), 1, - aux_sym_while_statement_token1, - ACTIONS(1022), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3753), 1, - aux_sym_else_if_clause_token1, - STATE(1724), 1, - aux_sym_if_statement_repeat1, - STATE(2066), 1, - sym_else_if_clause, - [54938] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3756), 1, - sym_name, - STATE(2108), 1, - sym_visibility_modifier, - ACTIONS(3758), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [54953] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3760), 1, - aux_sym_catch_clause_token1, - ACTIONS(3762), 1, - aux_sym_finally_clause_token1, - STATE(422), 3, - sym_catch_clause, - sym_finally_clause, - aux_sym_try_statement_repeat1, - [54968] = 6, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3733), 1, + anon_sym_AMP, anon_sym_LBRACE, - ACTIONS(3764), 1, - anon_sym_COLON, - STATE(521), 1, - sym_enum_declaration_list, - STATE(2286), 1, - sym_class_interface_clause, - [54987] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3438), 1, - anon_sym_COLON, - ACTIONS(3440), 1, + anon_sym_PIPE, + [55401] = 5, + ACTIONS(29), 1, anon_sym_LBRACE, - STATE(1048), 1, - sym_compound_statement, - STATE(2187), 1, - sym__return_type, - [55003] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1742), 1, - anon_sym_AMP, - ACTIONS(3270), 1, - anon_sym_LPAREN, - STATE(1880), 1, - sym_formal_parameters, - STATE(2332), 1, - sym_reference_modifier, - [55019] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3156), 4, + ACTIONS(3711), 1, + anon_sym_BSLASH, + STATE(559), 1, + sym_compound_statement, + ACTIONS(3709), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PIPE, - [55029] = 2, - ACTIONS(1575), 1, + [55418] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3139), 4, + ACTIONS(3713), 1, + anon_sym_BSLASH, + STATE(1719), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3599), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PIPE, - [55039] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3768), 1, - anon_sym_PIPE, - STATE(1732), 1, - aux_sym_type_list_repeat1, - ACTIONS(3766), 2, - anon_sym_RPAREN, + [55433] = 5, + ACTIONS(619), 1, anon_sym_DOLLAR, - [55053] = 5, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3346), 1, + ACTIONS(3716), 1, + sym_name, + ACTIONS(3718), 1, anon_sym_LBRACE, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - STATE(1710), 1, - sym_declaration_list, - STATE(2323), 1, - sym_class_interface_clause, - [55069] = 5, - ACTIONS(1575), 1, + STATE(575), 2, + sym_dynamic_variable_name, + sym_variable_name, + [55450] = 6, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1742), 1, - anon_sym_AMP, - ACTIONS(3270), 1, - anon_sym_LPAREN, - STATE(1569), 1, - sym_formal_parameters, - STATE(2349), 1, - sym_reference_modifier, - [55085] = 4, - ACTIONS(1575), 1, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + ACTIONS(3720), 1, + anon_sym_LBRACE, + ACTIONS(3722), 1, + anon_sym_DASH_GT, + ACTIONS(3724), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3726), 1, + anon_sym_LBRACK, + [55469] = 4, + ACTIONS(1120), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3773), 1, - anon_sym_COMMA, - STATE(1736), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3771), 2, + ACTIONS(1118), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3728), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55099] = 4, - ACTIONS(1575), 1, + [55484] = 4, + ACTIONS(1126), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3777), 1, - anon_sym_COMMA, - STATE(1736), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3775), 2, + ACTIONS(1124), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3730), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55113] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3780), 1, - anon_sym_AMP, - STATE(1849), 1, - aux_sym_intersection_type_repeat1, - ACTIONS(3135), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [55127] = 4, - ACTIONS(1575), 1, + [55499] = 5, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3773), 1, - anon_sym_COMMA, - STATE(1809), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3783), 2, + ACTIONS(3711), 1, + anon_sym_BSLASH, + STATE(2131), 1, + sym_compound_statement, + ACTIONS(3732), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55141] = 4, - ACTIONS(1575), 1, + [55516] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3773), 1, - anon_sym_COMMA, - STATE(1736), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3785), 2, + ACTIONS(3734), 1, + anon_sym_BSLASH, + STATE(1688), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3559), 3, sym__automatic_semicolon, anon_sym_SEMI, - [55155] = 3, - ACTIONS(1575), 1, + anon_sym_LBRACE, + [55531] = 4, + ACTIONS(1530), 1, sym_comment, - STATE(2481), 1, - sym_declare_directive, - ACTIONS(3787), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [55167] = 5, - ACTIONS(1575), 1, + ACTIONS(3737), 1, + sym_name, + STATE(2038), 1, + sym_visibility_modifier, + ACTIONS(3739), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + [55546] = 5, + ACTIONS(125), 1, + anon_sym_DOLLAR, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1742), 1, - anon_sym_AMP, - ACTIONS(3270), 1, - anon_sym_LPAREN, - STATE(1590), 1, - sym_formal_parameters, - STATE(2296), 1, - sym_reference_modifier, - [55183] = 5, - ACTIONS(394), 1, + ACTIONS(3741), 1, + sym_name, + ACTIONS(3743), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, + STATE(620), 2, + sym_dynamic_variable_name, + sym_variable_name, + [55563] = 6, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_COLON, - STATE(907), 1, + ACTIONS(3531), 1, + sym_name, + ACTIONS(3533), 1, + anon_sym_BSLASH, + STATE(1718), 1, + sym_namespace_name, + STATE(2089), 1, sym_compound_statement, - STATE(2315), 1, - sym__return_type, - [55199] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2487), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(3029), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3789), 1, - aux_sym_namespace_use_declaration_token2, - STATE(2231), 1, - sym_static_modifier, - [55215] = 4, - ACTIONS(1575), 1, + [55582] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, - anon_sym_COMMA, - STATE(1752), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3791), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [55229] = 5, - ACTIONS(1575), 1, + ACTIONS(3745), 1, + anon_sym_SQUOTE, + ACTIONS(3747), 1, + aux_sym_string_token2, + ACTIONS(3749), 1, + sym_string_content, + STATE(1852), 1, + aux_sym_string_repeat1, + [55598] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1742), 1, + ACTIONS(1699), 1, anon_sym_AMP, - ACTIONS(3270), 1, + ACTIONS(3211), 1, anon_sym_LPAREN, - STATE(1593), 1, + STATE(1578), 1, sym_formal_parameters, - STATE(2294), 1, + STATE(2277), 1, sym_reference_modifier, - [55245] = 4, - ACTIONS(1575), 1, + [55614] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3751), 1, + anon_sym_AMP, + STATE(1771), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3153), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [55628] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3756), 1, anon_sym_COMMA, - STATE(1807), 1, + STATE(1769), 1, aux_sym__const_declaration_repeat1, - ACTIONS(3795), 2, + ACTIONS(3754), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55259] = 5, - ACTIONS(1575), 1, + [55642] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1742), 1, - anon_sym_AMP, - ACTIONS(3270), 1, - anon_sym_LPAREN, - STATE(2003), 1, - sym_formal_parameters, - STATE(2348), 1, - sym_reference_modifier, - [55275] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3799), 1, - anon_sym_COMMA, - STATE(1748), 1, - aux_sym_function_static_declaration_repeat1, - ACTIONS(3797), 2, + ACTIONS(3758), 4, sym__automatic_semicolon, anon_sym_SEMI, - [55289] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3348), 1, - aux_sym_base_clause_token1, - ACTIONS(3802), 1, - anon_sym_LBRACE, - STATE(522), 1, - sym_declaration_list, - STATE(2280), 1, - sym_base_clause, - [55305] = 5, - ACTIONS(394), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3438), 1, anon_sym_COLON, - STATE(910), 1, - sym_compound_statement, - STATE(2312), 1, - sym__return_type, - [55321] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3793), 1, - anon_sym_COMMA, - STATE(1877), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3804), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [55335] = 4, - ACTIONS(1575), 1, + [55652] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3808), 1, + ACTIONS(3756), 1, anon_sym_COMMA, - STATE(1752), 1, + STATE(1788), 1, aux_sym__const_declaration_repeat1, - ACTIONS(3806), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [55349] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3813), 1, - anon_sym_COMMA, - STATE(1753), 1, - aux_sym_global_declaration_repeat1, - ACTIONS(3811), 2, + ACTIONS(3760), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55363] = 2, - ACTIONS(1575), 1, + [55666] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3816), 4, - aux_sym_namespace_use_declaration_token1, + ACTIONS(3341), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [55373] = 4, - ACTIONS(1575), 1, + STATE(441), 1, + sym_declaration_list, + STATE(2255), 1, + sym_class_interface_clause, + [55682] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3820), 1, + ACTIONS(3764), 1, aux_sym_namespace_aliasing_clause_token1, - STATE(2224), 1, + STATE(2259), 1, sym_namespace_aliasing_clause, - ACTIONS(3818), 2, + ACTIONS(3762), 2, anon_sym_COMMA, anon_sym_RBRACE, - [55387] = 5, - ACTIONS(1575), 1, + [55696] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3346), 1, + ACTIONS(3766), 4, + aux_sym_namespace_use_declaration_token1, anon_sym_LBRACE, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - STATE(1092), 1, - sym_declaration_list, - STATE(2382), 1, - sym_class_interface_clause, - [55403] = 5, - ACTIONS(1575), 1, + anon_sym_COLON, + anon_sym_EQ_GT, + [55706] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3346), 1, - anon_sym_LBRACE, - ACTIONS(3350), 1, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - STATE(1715), 1, + ACTIONS(3437), 1, + anon_sym_LBRACE, + STATE(435), 1, sym_declaration_list, - STATE(2310), 1, + STATE(2242), 1, sym_class_interface_clause, - [55419] = 5, - ACTIONS(394), 1, - anon_sym_LBRACE, - ACTIONS(1575), 1, + [55722] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3425), 1, anon_sym_COLON, - STATE(937), 1, + ACTIONS(3433), 1, + anon_sym_LBRACE, + STATE(1081), 1, sym_compound_statement, - STATE(2364), 1, + STATE(2241), 1, sym__return_type, - [55435] = 4, - ACTIONS(1575), 1, + [55738] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3824), 1, - anon_sym_COMMA, - STATE(1826), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3822), 2, + ACTIONS(3766), 4, sym__automatic_semicolon, anon_sym_SEMI, - [55449] = 5, - ACTIONS(1575), 1, + anon_sym_LBRACE, + anon_sym_COLON, + [55748] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3350), 1, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3362), 1, + ACTIONS(3347), 1, anon_sym_LBRACE, - STATE(959), 1, + STATE(1044), 1, sym_declaration_list, - STATE(2404), 1, + STATE(2194), 1, sym_class_interface_clause, - [55465] = 3, - ACTIONS(1575), 1, - sym_comment, - STATE(2506), 1, - sym_declare_directive, - ACTIONS(3787), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [55477] = 5, - ACTIONS(394), 1, - anon_sym_LBRACE, - ACTIONS(1575), 1, + [55764] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3425), 1, anon_sym_COLON, - STATE(920), 1, + ACTIONS(3433), 1, + anon_sym_LBRACE, + STATE(1077), 1, sym_compound_statement, - STATE(2300), 1, + STATE(2223), 1, sym__return_type, - [55493] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1593), 1, - anon_sym_LPAREN, - STATE(2319), 1, - sym_arguments, - ACTIONS(3464), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [55507] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2487), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(3029), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3826), 1, - aux_sym_namespace_use_declaration_token2, - STATE(2255), 1, - sym_static_modifier, - [55523] = 5, + [55780] = 5, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3828), 1, + ACTIONS(3768), 1, anon_sym_SEMI, - ACTIONS(3830), 1, + ACTIONS(3770), 1, sym__automatic_semicolon, - STATE(1364), 1, + STATE(1363), 1, sym_compound_statement, - [55539] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3426), 1, - anon_sym_LBRACE, - STATE(460), 1, - sym_declaration_list, - STATE(2182), 1, - sym_class_interface_clause, - [55555] = 4, - ACTIONS(1575), 1, + [55796] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3834), 1, + ACTIONS(3774), 1, anon_sym_COMMA, - STATE(1819), 1, - aux_sym_global_declaration_repeat1, - ACTIONS(3832), 2, + STATE(1838), 1, + aux_sym_property_declaration_repeat1, + ACTIONS(3772), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55569] = 3, - ACTIONS(1575), 1, + [55810] = 5, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym_EQ, - ACTIONS(3836), 3, - sym__automatic_semicolon, + ACTIONS(3776), 1, anon_sym_SEMI, - anon_sym_COMMA, - [55581] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3842), 1, - anon_sym_COMMA, - STATE(1818), 1, - aux_sym_function_static_declaration_repeat1, - ACTIONS(3840), 2, + ACTIONS(3778), 1, sym__automatic_semicolon, - anon_sym_SEMI, - [55595] = 5, - ACTIONS(1575), 1, + STATE(1366), 1, + sym_compound_statement, + [55826] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3426), 1, + ACTIONS(3473), 1, + anon_sym_COMMA, + STATE(1856), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3780), 2, anon_sym_LBRACE, - STATE(441), 1, - sym_declaration_list, - STATE(2244), 1, - sym_class_interface_clause, - [55611] = 5, - ACTIONS(1575), 1, + aux_sym_class_interface_clause_token1, + [55840] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1742), 1, - anon_sym_AMP, - ACTIONS(3270), 1, - anon_sym_LPAREN, - STATE(1612), 1, - sym_formal_parameters, - STATE(2281), 1, - sym_reference_modifier, - [55627] = 5, - ACTIONS(1575), 1, + ACTIONS(3784), 1, + anon_sym_PIPE, + STATE(1866), 1, + aux_sym_type_list_repeat1, + ACTIONS(3782), 2, + anon_sym_RPAREN, + anon_sym_DOLLAR, + [55854] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3346), 1, + ACTIONS(3141), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - STATE(1677), 1, - sym_declaration_list, - STATE(2288), 1, - sym_class_interface_clause, - [55643] = 4, - ACTIONS(1575), 1, + anon_sym_PIPE, + [55864] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3773), 1, - anon_sym_COMMA, - STATE(1856), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3844), 2, + ACTIONS(3118), 4, sym__automatic_semicolon, anon_sym_SEMI, - [55657] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3346), 1, anon_sym_LBRACE, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - STATE(1673), 1, - sym_declaration_list, - STATE(2352), 1, - sym_class_interface_clause, - [55673] = 3, - ACTIONS(1575), 1, + anon_sym_PIPE, + [55874] = 2, + ACTIONS(1530), 1, sym_comment, - STATE(2423), 1, - sym_declare_directive, - ACTIONS(3787), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [55685] = 5, - ACTIONS(1575), 1, + ACTIONS(3786), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [55884] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3350), 1, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3426), 1, + ACTIONS(3347), 1, anon_sym_LBRACE, - STATE(445), 1, + STATE(1107), 1, sym_declaration_list, - STATE(2172), 1, + STATE(2337), 1, sym_class_interface_clause, - [55701] = 4, - ACTIONS(1575), 1, + [55900] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3432), 1, - anon_sym_COMMA, - STATE(1808), 1, - aux_sym_base_clause_repeat1, - ACTIONS(3434), 2, - anon_sym_LBRACE, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - [55715] = 5, - ACTIONS(1575), 1, + ACTIONS(3347), 1, + anon_sym_LBRACE, + STATE(1045), 1, + sym_declaration_list, + STATE(2199), 1, + sym_class_interface_clause, + [55916] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3440), 1, + ACTIONS(3433), 1, anon_sym_LBRACE, - STATE(1075), 1, + STATE(1060), 1, sym_compound_statement, - STATE(2171), 1, + STATE(2286), 1, sym__return_type, - [55731] = 5, - ACTIONS(856), 1, - anon_sym_COMMA, - ACTIONS(1575), 1, + [55932] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3846), 1, - anon_sym_EQ, - ACTIONS(3848), 1, - anon_sym_RPAREN, - STATE(1983), 1, - aux_sym__list_destructing_repeat1, - [55747] = 5, + ACTIONS(1699), 1, + anon_sym_AMP, + ACTIONS(3211), 1, + anon_sym_LPAREN, + STATE(1990), 1, + sym_formal_parameters, + STATE(2224), 1, + sym_reference_modifier, + [55948] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1699), 1, + anon_sym_AMP, + ACTIONS(3211), 1, + anon_sym_LPAREN, + STATE(1577), 1, + sym_formal_parameters, + STATE(2247), 1, + sym_reference_modifier, + [55964] = 3, + ACTIONS(1530), 1, + sym_comment, + STATE(2518), 1, + sym_declare_directive, + ACTIONS(3788), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [55976] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3850), 1, + ACTIONS(3790), 1, anon_sym_SQUOTE, - ACTIONS(3852), 1, + ACTIONS(3792), 1, aux_sym_string_token2, - ACTIONS(3854), 1, - sym_string_value, - STATE(1845), 1, + ACTIONS(3794), 1, + sym_string_content, + STATE(1818), 1, aux_sym_string_repeat1, - [55763] = 5, - ACTIONS(394), 1, - anon_sym_LBRACE, - ACTIONS(1575), 1, + [55992] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_COLON, - STATE(925), 1, - sym_compound_statement, - STATE(2283), 1, - sym__return_type, - [55779] = 5, - ACTIONS(1575), 1, + ACTIONS(3798), 1, + anon_sym_COMMA, + STATE(1752), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3796), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56006] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_COLON, - ACTIONS(3440), 1, + ACTIONS(3162), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(1059), 1, - sym_compound_statement, - STATE(2245), 1, - sym__return_type, - [55795] = 5, - ACTIONS(1575), 1, + anon_sym_PIPE, + [56016] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3122), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_LBRACE, + [56026] = 3, + ACTIONS(1530), 1, + sym_comment, + STATE(2415), 1, + sym_declare_directive, + ACTIONS(3788), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [56038] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1742), 1, + ACTIONS(1699), 1, anon_sym_AMP, - ACTIONS(3270), 1, + ACTIONS(3211), 1, anon_sym_LPAREN, - STATE(1600), 1, + STATE(1606), 1, sym_formal_parameters, - STATE(2408), 1, + STATE(2262), 1, sym_reference_modifier, - [55811] = 2, - ACTIONS(1575), 1, + [56054] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3428), 4, + ACTIONS(3774), 1, + anon_sym_COMMA, + STATE(1780), 1, + aux_sym_property_declaration_repeat1, + ACTIONS(3801), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - [55821] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3733), 1, - anon_sym_LBRACE, - STATE(469), 1, - sym_enum_declaration_list, - STATE(2304), 1, - sym_class_interface_clause, - [55837] = 2, - ACTIONS(1575), 1, + [56068] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3172), 4, + ACTIONS(3805), 1, + anon_sym_COMMA, + STATE(1834), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3803), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PIPE, - [55847] = 5, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(1575), 1, + [56082] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3856), 1, - anon_sym_SEMI, - ACTIONS(3858), 1, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + ACTIONS(3638), 1, + anon_sym_AMP, + STATE(2225), 2, + sym_variable_name, + sym_variable_reference, + [56096] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3809), 1, + anon_sym_EQ, + ACTIONS(3807), 3, sym__automatic_semicolon, - STATE(1362), 1, - sym_compound_statement, - [55863] = 4, - ACTIONS(1575), 1, + anon_sym_SEMI, + anon_sym_COMMA, + [56108] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - STATE(1752), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3860), 2, + STATE(1840), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3811), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55877] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3438), 1, - anon_sym_COLON, - ACTIONS(3440), 1, - anon_sym_LBRACE, - STATE(1083), 1, - sym_compound_statement, - STATE(2170), 1, - sym__return_type, - [55893] = 4, + [56122] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3864), 1, + ACTIONS(3817), 1, sym_nowdoc_string, - STATE(1843), 1, + STATE(1762), 1, aux_sym_nowdoc_body_repeat1, - ACTIONS(3862), 2, + ACTIONS(3815), 2, sym_heredoc_end, sym__new_line, - [55907] = 5, - ACTIONS(1575), 1, + [56136] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3346), 1, - anon_sym_LBRACE, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - STATE(1050), 1, - sym_declaration_list, - STATE(2186), 1, - sym_class_interface_clause, - [55923] = 5, - ACTIONS(394), 1, - anon_sym_LBRACE, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3438), 1, + ACTIONS(3425), 1, anon_sym_COLON, - STATE(933), 1, + ACTIONS(3433), 1, + anon_sym_LBRACE, + STATE(1066), 1, sym_compound_statement, - STATE(2358), 1, + STATE(2283), 1, sym__return_type, - [55939] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2057), 1, - sym_enum_declaration_list, - STATE(2390), 1, - sym_class_interface_clause, - [55955] = 5, - ACTIONS(1575), 1, + [56152] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3350), 1, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3733), 1, + ACTIONS(3601), 1, anon_sym_LBRACE, - STATE(525), 1, + STATE(476), 1, sym_enum_declaration_list, - STATE(2169), 1, + STATE(2281), 1, sym_class_interface_clause, - [55971] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3120), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PIPE, - [55981] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3866), 1, - anon_sym_SQUOTE, - ACTIONS(3868), 1, - aux_sym_string_token2, - ACTIONS(3870), 1, - sym_string_value, - STATE(1780), 1, - aux_sym_string_repeat1, - [55997] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3150), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACE, - [56007] = 2, - ACTIONS(1575), 1, + [56168] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3872), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3425), 1, anon_sym_COLON, - [56017] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3874), 1, - anon_sym_SQUOTE, - ACTIONS(3876), 1, - aux_sym_string_token2, - ACTIONS(3878), 1, - sym_string_value, - STATE(1851), 1, - aux_sym_string_repeat1, - [56033] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3426), 1, + ACTIONS(3433), 1, anon_sym_LBRACE, - STATE(437), 1, - sym_declaration_list, - STATE(2410), 1, - sym_class_interface_clause, - [56049] = 5, - ACTIONS(1575), 1, + STATE(1075), 1, + sym_compound_statement, + STATE(2269), 1, + sym__return_type, + [56184] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1742), 1, + ACTIONS(1699), 1, anon_sym_AMP, - ACTIONS(3270), 1, + ACTIONS(3211), 1, anon_sym_LPAREN, - STATE(1582), 1, + STATE(1596), 1, sym_formal_parameters, - STATE(2331), 1, + STATE(2274), 1, sym_reference_modifier, - [56065] = 4, - ACTIONS(1575), 1, + [56200] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3882), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - STATE(1802), 1, + STATE(1846), 1, aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3880), 2, + ACTIONS(3820), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56079] = 5, - ACTIONS(1575), 1, + [56214] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3350), 1, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3362), 1, - anon_sym_LBRACE, - STATE(912), 1, - sym_declaration_list, - STATE(2334), 1, - sym_class_interface_clause, - [56095] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3426), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, - STATE(454), 1, + STATE(447), 1, sym_declaration_list, - STATE(2168), 1, + STATE(2253), 1, sym_class_interface_clause, - [56111] = 4, - ACTIONS(1575), 1, + [56230] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3756), 1, anon_sym_COMMA, - STATE(1752), 1, + STATE(1788), 1, aux_sym__const_declaration_repeat1, - ACTIONS(3885), 2, + ACTIONS(3824), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56125] = 5, - ACTIONS(394), 1, - anon_sym_LBRACE, - ACTIONS(1575), 1, + [56244] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3764), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(2252), 1, + sym_namespace_aliasing_clause, + ACTIONS(3826), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [56258] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3828), 1, + anon_sym_AMP, + STATE(1771), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3122), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [56272] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3833), 1, + anon_sym_PIPE, + STATE(1772), 1, + aux_sym_type_list_repeat1, + ACTIONS(3831), 2, + anon_sym_RPAREN, + anon_sym_DOLLAR, + [56286] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3836), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, anon_sym_COLON, - STATE(947), 1, - sym_compound_statement, - STATE(2402), 1, - sym__return_type, - [56141] = 4, - ACTIONS(1575), 1, + anon_sym_EQ_GT, + [56296] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1664), 4, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [56306] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3341), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3601), 1, + anon_sym_LBRACE, + STATE(452), 1, + sym_enum_declaration_list, + STATE(2173), 1, + sym_class_interface_clause, + [56322] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3756), 1, anon_sym_COMMA, - STATE(1752), 1, + STATE(1868), 1, aux_sym__const_declaration_repeat1, - ACTIONS(3887), 2, + ACTIONS(3838), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56155] = 4, - ACTIONS(1575), 1, + [56336] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3432), 1, + ACTIONS(3473), 1, anon_sym_COMMA, - STATE(1848), 1, + STATE(1740), 1, aux_sym_base_clause_repeat1, - ACTIONS(3889), 2, + ACTIONS(3475), 2, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [56169] = 4, - ACTIONS(1575), 1, + [56350] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(3774), 1, anon_sym_COMMA, - STATE(1736), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3891), 2, + STATE(1780), 1, + aux_sym_property_declaration_repeat1, + ACTIONS(3840), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56183] = 4, - ACTIONS(1575), 1, + [56364] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3824), 1, - anon_sym_COMMA, - STATE(1802), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3893), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56197] = 2, - ACTIONS(1575), 1, + ACTIONS(3842), 1, + anon_sym_SQUOTE, + ACTIONS(3844), 1, + aux_sym_string_token2, + ACTIONS(3846), 1, + sym_string_content, + STATE(1723), 1, + aux_sym_string_repeat1, + [56380] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3895), 4, + ACTIONS(3850), 1, + anon_sym_COMMA, + STATE(1780), 1, + aux_sym_property_declaration_repeat1, + ACTIONS(3848), 2, sym__automatic_semicolon, anon_sym_SEMI, + [56394] = 5, + ACTIONS(389), 1, anon_sym_LBRACE, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3425), 1, anon_sym_COLON, - [56207] = 4, - ACTIONS(1575), 1, + STATE(940), 1, + sym_compound_statement, + STATE(2221), 1, + sym__return_type, + [56410] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3774), 1, anon_sym_COMMA, - STATE(1788), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3897), 2, + STATE(1757), 1, + aux_sym_property_declaration_repeat1, + ACTIONS(3853), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56221] = 5, - ACTIONS(1575), 1, + [56424] = 5, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1742), 1, - anon_sym_AMP, - ACTIONS(3270), 1, - anon_sym_LPAREN, - STATE(1927), 1, - sym_formal_parameters, - STATE(2351), 1, - sym_reference_modifier, - [56237] = 4, - ACTIONS(1575), 1, + ACTIONS(3855), 1, + anon_sym_SEMI, + ACTIONS(3857), 1, + sym__automatic_semicolon, + STATE(1376), 1, + sym_compound_statement, + [56440] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3842), 1, + ACTIONS(3339), 1, + aux_sym_base_clause_token1, + ACTIONS(3859), 1, + anon_sym_LBRACE, + STATE(537), 1, + sym_declaration_list, + STATE(2374), 1, + sym_base_clause, + [56456] = 3, + ACTIONS(1530), 1, + sym_comment, + STATE(2487), 1, + sym_declare_directive, + ACTIONS(3788), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [56468] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3774), 1, anon_sym_COMMA, - STATE(1862), 1, - aux_sym_function_static_declaration_repeat1, - ACTIONS(3899), 2, + STATE(1780), 1, + aux_sym_property_declaration_repeat1, + ACTIONS(3861), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56251] = 4, - ACTIONS(1575), 1, + [56482] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2482), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2814), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3863), 1, + aux_sym_namespace_use_declaration_token2, + STATE(2208), 1, + sym_static_modifier, + [56498] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3834), 1, + ACTIONS(3867), 1, anon_sym_COMMA, - STATE(1863), 1, - aux_sym_global_declaration_repeat1, - ACTIONS(3901), 2, + STATE(1788), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3865), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56265] = 4, - ACTIONS(1575), 1, + [56512] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3756), 1, anon_sym_COMMA, - STATE(1752), 1, + STATE(1788), 1, aux_sym__const_declaration_repeat1, - ACTIONS(3903), 2, + ACTIONS(3870), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56279] = 4, - ACTIONS(1575), 1, + [56526] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + ACTIONS(3638), 1, + anon_sym_AMP, + STATE(2101), 2, + sym_variable_name, + sym_variable_reference, + [56540] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3824), 1, - anon_sym_COMMA, - STATE(1866), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3905), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56293] = 4, - ACTIONS(1575), 1, + ACTIONS(1699), 1, + anon_sym_AMP, + ACTIONS(3211), 1, + anon_sym_LPAREN, + STATE(1566), 1, + sym_formal_parameters, + STATE(2389), 1, + sym_reference_modifier, + [56556] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3842), 1, + ACTIONS(3805), 1, anon_sym_COMMA, - STATE(1748), 1, + STATE(1835), 1, aux_sym_function_static_declaration_repeat1, - ACTIONS(3907), 2, + ACTIONS(3872), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56307] = 4, - ACTIONS(1575), 1, + [56570] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3834), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - STATE(1753), 1, + STATE(1836), 1, aux_sym_global_declaration_repeat1, - ACTIONS(3909), 2, + ACTIONS(3874), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56321] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3911), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - [56331] = 4, - ACTIONS(1575), 1, + [56584] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - STATE(1873), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3913), 2, + STATE(1839), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3876), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56345] = 5, - ACTIONS(1575), 1, + [56598] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_COLON, - ACTIONS(3440), 1, - anon_sym_LBRACE, - STATE(1093), 1, - sym_compound_statement, - STATE(2164), 1, - sym__return_type, - [56361] = 5, - ACTIONS(1575), 1, + ACTIONS(2482), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2814), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3878), 1, + aux_sym_namespace_use_declaration_token2, + STATE(2392), 1, + sym_static_modifier, + [56614] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3440), 1, + ACTIONS(3433), 1, anon_sym_LBRACE, - STATE(1072), 1, + STATE(1096), 1, sym_compound_statement, - STATE(2248), 1, + STATE(2162), 1, sym__return_type, - [56377] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3348), 1, - aux_sym_base_clause_token1, - ACTIONS(3362), 1, - anon_sym_LBRACE, - STATE(2098), 1, - sym_declaration_list, - STATE(2216), 1, - sym_base_clause, - [56393] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3824), 1, - anon_sym_COMMA, - STATE(1847), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3915), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56407] = 4, - ACTIONS(1575), 1, + [56630] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3824), 1, + ACTIONS(3756), 1, anon_sym_COMMA, - STATE(1802), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3915), 2, + STATE(1848), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3880), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56421] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1742), 1, - anon_sym_AMP, - ACTIONS(3270), 1, - anon_sym_LPAREN, - STATE(1570), 1, - sym_formal_parameters, - STATE(2173), 1, - sym_reference_modifier, - [56437] = 3, - ACTIONS(1575), 1, + [56644] = 3, + ACTIONS(1530), 1, sym_comment, - STATE(2554), 1, + STATE(2403), 1, sym_declare_directive, - ACTIONS(3787), 3, + ACTIONS(3788), 3, anon_sym_ticks, anon_sym_encoding, anon_sym_strict_types, - [56449] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3917), 4, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [56459] = 4, - ACTIONS(1575), 1, + [56656] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3820), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(2162), 1, - sym_namespace_aliasing_clause, - ACTIONS(3919), 2, + ACTIONS(3756), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [56473] = 2, - ACTIONS(1575), 1, + STATE(1788), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3882), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56670] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3895), 4, - aux_sym_namespace_use_declaration_token1, + ACTIONS(3337), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [56483] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3921), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - [56493] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - ACTIONS(3721), 1, - anon_sym_AMP, - STATE(2154), 2, - sym_variable_name, - sym_variable_reference, - [56507] = 5, - ACTIONS(1575), 1, + ACTIONS(3339), 1, + aux_sym_base_clause_token1, + STATE(1886), 1, + sym_declaration_list, + STATE(2329), 1, + sym_base_clause, + [56686] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1742), 1, + ACTIONS(1699), 1, anon_sym_AMP, - ACTIONS(3270), 1, + ACTIONS(3211), 1, anon_sym_LPAREN, - STATE(1601), 1, + STATE(1574), 1, sym_formal_parameters, - STATE(2308), 1, + STATE(2357), 1, sym_reference_modifier, - [56523] = 2, - ACTIONS(1575), 1, + [56702] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3872), 4, + ACTIONS(3884), 4, aux_sym_namespace_use_declaration_token1, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [56533] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3925), 1, - anon_sym_PIPE, - STATE(1732), 1, - aux_sym_type_list_repeat1, - ACTIONS(3923), 2, - anon_sym_RPAREN, - anon_sym_DOLLAR, - [56547] = 5, - ACTIONS(1575), 1, + [56712] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3350), 1, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3426), 1, + ACTIONS(3347), 1, anon_sym_LBRACE, - STATE(449), 1, + STATE(1716), 1, sym_declaration_list, - STATE(2252), 1, + STATE(2291), 1, sym_class_interface_clause, - [56563] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1742), 1, - anon_sym_AMP, - ACTIONS(3270), 1, - anon_sym_LPAREN, - STATE(1887), 1, - sym_formal_parameters, - STATE(2247), 1, - sym_reference_modifier, - [56579] = 4, - ACTIONS(1575), 1, + [56728] = 5, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3793), 1, - anon_sym_COMMA, - STATE(1744), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3927), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56593] = 2, - ACTIONS(1575), 1, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(953), 1, + sym_compound_statement, + STATE(2293), 1, + sym__return_type, + [56744] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3664), 4, + ACTIONS(3836), 4, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_BSLASH, anon_sym_LBRACE, - [56603] = 4, - ACTIONS(1575), 1, + anon_sym_COLON, + [56754] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3888), 1, anon_sym_COMMA, - STATE(1816), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3929), 2, + STATE(1806), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3886), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56617] = 5, - ACTIONS(1575), 1, + [56768] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3350), 1, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3608), 1, + ACTIONS(3693), 1, anon_sym_LBRACE, - STATE(1996), 1, + STATE(1955), 1, sym_enum_declaration_list, - STATE(2311), 1, + STATE(2295), 1, sym_class_interface_clause, - [56633] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3933), 1, - sym_nowdoc_string, - STATE(1843), 1, - aux_sym_nowdoc_body_repeat1, - ACTIONS(3931), 2, - sym_heredoc_end, - sym__new_line, - [56647] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3917), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + [56784] = 5, + ACTIONS(389), 1, anon_sym_LBRACE, - anon_sym_COLON, - [56657] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3936), 1, - anon_sym_SQUOTE, - ACTIONS(3938), 1, - aux_sym_string_token2, - ACTIONS(3941), 1, - sym_string_value, - STATE(1845), 1, - aux_sym_string_repeat1, - [56673] = 5, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3440), 1, + STATE(938), 1, + sym_compound_statement, + STATE(2296), 1, + sym__return_type, + [56800] = 5, + ACTIONS(389), 1, anon_sym_LBRACE, - STATE(1047), 1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(960), 1, sym_compound_statement, - STATE(2414), 1, + STATE(2301), 1, sym__return_type, - [56689] = 4, - ACTIONS(1575), 1, + [56816] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3824), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - STATE(1802), 1, + STATE(1806), 1, aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3944), 2, + ACTIONS(3891), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56703] = 4, - ACTIONS(1575), 1, + [56830] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3946), 1, + ACTIONS(3895), 1, anon_sym_COMMA, - STATE(1848), 1, - aux_sym_base_clause_repeat1, - ACTIONS(3428), 2, + STATE(1811), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3893), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56844] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3337), 1, anon_sym_LBRACE, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - [56717] = 4, - ACTIONS(1575), 1, + STATE(955), 1, + sym_declaration_list, + STATE(2306), 1, + sym_class_interface_clause, + [56860] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3949), 1, - anon_sym_AMP, - STATE(1849), 1, - aux_sym_intersection_type_repeat1, - ACTIONS(3150), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [56731] = 2, - ACTIONS(1575), 1, + ACTIONS(1548), 1, + anon_sym_LPAREN, + STATE(2367), 1, + sym_arguments, + ACTIONS(3445), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [56874] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1709), 4, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, + ACTIONS(3126), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_DOLLAR, - [56741] = 5, + [56884] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3756), 1, + anon_sym_COMMA, + STATE(1728), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3898), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56898] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(3433), 1, + anon_sym_LBRACE, + STATE(1117), 1, + sym_compound_statement, + STATE(2181), 1, + sym__return_type, + [56914] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3471), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + [56924] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3852), 1, + ACTIONS(3747), 1, aux_sym_string_token2, - ACTIONS(3854), 1, - sym_string_value, - ACTIONS(3952), 1, + ACTIONS(3749), 1, + sym_string_content, + ACTIONS(3900), 1, anon_sym_SQUOTE, - STATE(1845), 1, + STATE(1852), 1, aux_sym_string_repeat1, - [56757] = 4, - ACTIONS(1575), 1, + [56940] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1699), 1, + anon_sym_AMP, + ACTIONS(3211), 1, + anon_sym_LPAREN, + STATE(2121), 1, + sym_formal_parameters, + STATE(2143), 1, + sym_reference_modifier, + [56956] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1699), 1, + anon_sym_AMP, + ACTIONS(3211), 1, + anon_sym_LPAREN, + STATE(1619), 1, + sym_formal_parameters, + STATE(2146), 1, + sym_reference_modifier, + [56972] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1699), 1, + anon_sym_AMP, + ACTIONS(3211), 1, + anon_sym_LPAREN, + STATE(1605), 1, + sym_formal_parameters, + STATE(2348), 1, + sym_reference_modifier, + [56988] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3774), 1, anon_sym_COMMA, - STATE(1875), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3954), 2, + STATE(1786), 1, + aux_sym_property_declaration_repeat1, + ACTIONS(3902), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56771] = 5, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(1575), 1, + [57002] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3956), 1, - anon_sym_SEMI, - ACTIONS(3958), 1, - sym__automatic_semicolon, - STATE(1351), 1, - sym_compound_statement, - [56787] = 4, - ACTIONS(1575), 1, + ACTIONS(3906), 1, + sym_nowdoc_string, + STATE(1762), 1, + aux_sym_nowdoc_body_repeat1, + ACTIONS(3904), 2, + sym_heredoc_end, + sym__new_line, + [57016] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3925), 1, - anon_sym_PIPE, - STATE(1836), 1, - aux_sym_type_list_repeat1, - ACTIONS(3960), 2, - anon_sym_RPAREN, - anon_sym_DOLLAR, - [56801] = 4, - ACTIONS(1575), 1, + ACTIONS(3341), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3347), 1, + anon_sym_LBRACE, + STATE(1654), 1, + sym_declaration_list, + STATE(2319), 1, + sym_class_interface_clause, + [57032] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(3756), 1, anon_sym_COMMA, - STATE(1735), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3962), 2, + STATE(1788), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3908), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56815] = 4, - ACTIONS(1575), 1, + [57046] = 5, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1699), 1, + anon_sym_AMP, + ACTIONS(3211), 1, + anon_sym_LPAREN, + STATE(1942), 1, + sym_formal_parameters, + STATE(2330), 1, + sym_reference_modifier, + [57062] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(3756), 1, anon_sym_COMMA, - STATE(1736), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3964), 2, + STATE(1799), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3910), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56829] = 5, - ACTIONS(1575), 1, + [57076] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3346), 1, - anon_sym_LBRACE, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - STATE(1137), 1, - sym_declaration_list, - STATE(2275), 1, - sym_class_interface_clause, - [56845] = 5, - ACTIONS(1575), 1, + ACTIONS(1699), 1, + anon_sym_AMP, + ACTIONS(3211), 1, + anon_sym_LPAREN, + STATE(1950), 1, + sym_formal_parameters, + STATE(2341), 1, + sym_reference_modifier, + [57092] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3346), 1, - anon_sym_LBRACE, - ACTIONS(3350), 1, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - STATE(1134), 1, + ACTIONS(3347), 1, + anon_sym_LBRACE, + STATE(1635), 1, sym_declaration_list, - STATE(2274), 1, + STATE(2323), 1, sym_class_interface_clause, - [56861] = 5, - ACTIONS(1575), 1, + [57108] = 5, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3440), 1, - anon_sym_LBRACE, - STATE(1122), 1, + STATE(932), 1, sym_compound_statement, - STATE(2320), 1, + STATE(2324), 1, sym__return_type, - [56877] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - ACTIONS(3721), 1, - anon_sym_AMP, - STATE(2019), 2, - sym_variable_name, - sym_variable_reference, - [56891] = 5, + [57124] = 5, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3966), 1, + ACTIONS(3912), 1, anon_sym_SEMI, - ACTIONS(3968), 1, + ACTIONS(3914), 1, sym__automatic_semicolon, - STATE(1367), 1, + STATE(1371), 1, + sym_compound_statement, + [57140] = 5, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(903), 1, sym_compound_statement, - [56907] = 4, - ACTIONS(1575), 1, + STATE(2327), 1, + sym__return_type, + [57156] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3842), 1, + ACTIONS(3626), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BSLASH, + anon_sym_LBRACE, + [57166] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3805), 1, + anon_sym_COMMA, + STATE(1811), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3916), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57180] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3805), 1, anon_sym_COMMA, - STATE(1748), 1, + STATE(1811), 1, aux_sym_function_static_declaration_repeat1, - ACTIONS(3970), 2, + ACTIONS(3918), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56921] = 4, - ACTIONS(1575), 1, + [57194] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3834), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - STATE(1753), 1, + STATE(1752), 1, aux_sym_global_declaration_repeat1, - ACTIONS(3972), 2, + ACTIONS(3920), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56935] = 4, - ACTIONS(1575), 1, + [57208] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3824), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - STATE(1810), 1, + STATE(1862), 1, aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3974), 2, + ACTIONS(3922), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56949] = 2, - ACTIONS(1575), 1, + [57222] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3816), 4, + ACTIONS(3774), 1, + anon_sym_COMMA, + STATE(1780), 1, + aux_sym_property_declaration_repeat1, + ACTIONS(3924), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [56959] = 4, - ACTIONS(1575), 1, + [57236] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3824), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - STATE(1802), 1, + STATE(1806), 1, aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3974), 2, + ACTIONS(3922), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56973] = 4, - ACTIONS(1575), 1, + [57250] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - STATE(1739), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3976), 2, + STATE(1752), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3926), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56987] = 5, - ACTIONS(1575), 1, + [57264] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3362), 1, - anon_sym_LBRACE, - STATE(943), 1, - sym_declaration_list, - STATE(2376), 1, - sym_class_interface_clause, - [57003] = 2, - ACTIONS(1575), 1, + ACTIONS(2432), 1, + anon_sym_COLON, + ACTIONS(3533), 1, + anon_sym_BSLASH, + ACTIONS(3928), 1, + sym_name, + STATE(2519), 1, + sym_namespace_name, + [57280] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3822), 1, + anon_sym_COMMA, + STATE(1810), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3930), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57294] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3774), 1, + anon_sym_COMMA, + STATE(1778), 1, + aux_sym_property_declaration_repeat1, + ACTIONS(3932), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57308] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3664), 4, + ACTIONS(3626), 4, anon_sym_COMMA, anon_sym_BSLASH, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - [57013] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2417), 1, - anon_sym_COLON, - ACTIONS(3502), 1, - anon_sym_BSLASH, - ACTIONS(3978), 1, - sym_name, - STATE(2579), 1, - sym_namespace_name, - [57029] = 5, - ACTIONS(394), 1, + [57318] = 5, + ACTIONS(389), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3425), 1, anon_sym_COLON, - STATE(967), 1, + STATE(933), 1, sym_compound_statement, - STATE(2314), 1, + STATE(2382), 1, sym__return_type, - [57045] = 4, - ACTIONS(1575), 1, + [57334] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - STATE(1805), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3980), 2, + STATE(1806), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3930), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57059] = 4, - ACTIONS(1575), 1, + [57348] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3756), 1, anon_sym_COMMA, - STATE(1752), 1, + STATE(1857), 1, aux_sym__const_declaration_repeat1, - ACTIONS(3929), 2, + ACTIONS(3934), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57073] = 5, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3350), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3362), 1, - anon_sym_LBRACE, - STATE(942), 1, - sym_declaration_list, - STATE(2375), 1, - sym_class_interface_clause, - [57089] = 4, - ACTIONS(1575), 1, + [57362] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3756), 1, anon_sym_COMMA, - STATE(1752), 1, + STATE(1788), 1, aux_sym__const_declaration_repeat1, - ACTIONS(3982), 2, + ACTIONS(3936), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57103] = 5, - ACTIONS(1575), 1, + [57376] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3346), 1, + ACTIONS(3337), 1, anon_sym_LBRACE, - ACTIONS(3350), 1, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - STATE(1633), 1, + STATE(926), 1, sym_declaration_list, - STATE(2324), 1, + STATE(2335), 1, sym_class_interface_clause, - [57119] = 4, - ACTIONS(1575), 1, + [57392] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3793), 1, - anon_sym_COMMA, - STATE(1752), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3795), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [57133] = 5, - ACTIONS(1575), 1, + ACTIONS(3758), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [57402] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3346), 1, + ACTIONS(3337), 1, anon_sym_LBRACE, - ACTIONS(3350), 1, + ACTIONS(3341), 1, aux_sym_class_interface_clause_token1, - STATE(1640), 1, + STATE(924), 1, sym_declaration_list, - STATE(2371), 1, + STATE(2336), 1, sym_class_interface_clause, - [57149] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3984), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [57158] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3438), 1, - anon_sym_COLON, - ACTIONS(3986), 1, - anon_sym_EQ_GT, - STATE(2449), 1, - sym__return_type, - [57171] = 3, - ACTIONS(123), 1, - anon_sym_DOLLAR, - ACTIONS(1575), 1, - sym_comment, - STATE(1767), 2, - sym_dynamic_variable_name, - sym_variable_name, - [57182] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3990), 1, - anon_sym_LPAREN, - ACTIONS(3988), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [57193] = 4, - ACTIONS(1575), 1, + [57418] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3992), 1, - anon_sym_DQUOTE, - ACTIONS(3994), 1, + ACTIONS(3938), 1, anon_sym_SQUOTE, - ACTIONS(3996), 1, - sym_heredoc_start, - [57206] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3998), 1, - anon_sym_COMMA, - ACTIONS(4000), 1, - anon_sym_RPAREN, - STATE(1926), 1, - aux_sym_array_creation_expression_repeat1, - [57219] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2501), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(4002), 1, - aux_sym_class_declaration_token1, - STATE(2527), 1, - sym_readonly_modifier, - [57232] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3502), 1, - anon_sym_BSLASH, - ACTIONS(3978), 1, - sym_name, - STATE(2579), 1, - sym_namespace_name, - [57245] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3438), 1, - anon_sym_COLON, - ACTIONS(4004), 1, - anon_sym_EQ_GT, - STATE(2487), 1, - sym__return_type, - [57258] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4006), 1, - anon_sym_COMMA, - ACTIONS(4009), 1, - anon_sym_RPAREN, - STATE(1888), 1, - aux_sym_array_creation_expression_repeat1, - [57271] = 4, - ACTIONS(1575), 1, + ACTIONS(3940), 1, + aux_sym_string_token2, + ACTIONS(3943), 1, + sym_string_content, + STATE(1852), 1, + aux_sym_string_repeat1, + [57434] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4011), 1, + ACTIONS(3341), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3347), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, - anon_sym_COLON, - STATE(487), 1, - sym_switch_block, - [57284] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3846), 1, - anon_sym_EQ, - ACTIONS(4015), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [57295] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4017), 1, - anon_sym_COMMA, - ACTIONS(4019), 1, - anon_sym_RBRACK, - STATE(1919), 1, - aux_sym__array_destructing_repeat1, - [57308] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4021), 1, - anon_sym_COMMA, - ACTIONS(4023), 1, - anon_sym_RBRACK, - STATE(1920), 1, - aux_sym_array_creation_expression_repeat1, - [57321] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2501), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(4025), 1, - aux_sym_class_declaration_token1, - STATE(2558), 1, - sym_readonly_modifier, - [57334] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4027), 1, - anon_sym_COMMA, - ACTIONS(4029), 1, - anon_sym_RPAREN, - STATE(1916), 1, - aux_sym_formal_parameters_repeat1, - [57347] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4017), 1, - anon_sym_COMMA, - ACTIONS(4019), 1, - anon_sym_RBRACK, - STATE(1921), 1, - aux_sym__array_destructing_repeat1, - [57360] = 4, - ACTIONS(824), 1, - anon_sym_RBRACK, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4031), 1, - anon_sym_COMMA, - STATE(1989), 1, - aux_sym_array_creation_expression_repeat1, - [57373] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4033), 1, - anon_sym_COMMA, - ACTIONS(4035), 1, - anon_sym_RBRACK, - STATE(1922), 1, - aux_sym_attribute_group_repeat1, - [57386] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4037), 1, - sym__new_line, - ACTIONS(4039), 1, - sym_heredoc_end, - STATE(2321), 1, - sym_heredoc_body, - [57399] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2501), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(4041), 1, - aux_sym_class_declaration_token1, - STATE(2546), 1, - sym_readonly_modifier, - [57412] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2501), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(4043), 1, - aux_sym_class_declaration_token1, - STATE(2447), 1, - sym_readonly_modifier, - [57425] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1725), 1, - anon_sym_DOLLAR, - STATE(1768), 1, - sym_variable_name, - STATE(1928), 1, - sym_static_variable_declaration, - [57438] = 4, - ACTIONS(1575), 1, + STATE(1665), 1, + sym_declaration_list, + STATE(2381), 1, + sym_class_interface_clause, + [57450] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4045), 1, + ACTIONS(3946), 4, anon_sym_COMMA, - ACTIONS(4047), 1, + anon_sym_EQ, anon_sym_RPAREN, - STATE(1950), 1, - aux_sym_arguments_repeat1, - [57451] = 3, - ACTIONS(123), 1, - anon_sym_DOLLAR, - ACTIONS(1575), 1, - sym_comment, - STATE(1930), 2, - sym_dynamic_variable_name, - sym_variable_name, - [57462] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4037), 1, - sym__new_line, - ACTIONS(4049), 1, - sym_heredoc_end, - STATE(2240), 1, - sym_heredoc_body, - [57475] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4051), 1, - anon_sym_COMMA, - ACTIONS(4053), 1, anon_sym_RBRACK, - STATE(1896), 1, - aux_sym_array_creation_expression_repeat1, - [57488] = 4, - ACTIONS(1575), 1, + [57460] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4055), 1, + ACTIONS(3341), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3693), 1, anon_sym_LBRACE, - ACTIONS(4057), 1, - anon_sym_COLON, - STATE(2088), 1, - sym_switch_block, - [57501] = 2, - ACTIONS(1575), 1, + STATE(2072), 1, + sym_enum_declaration_list, + STATE(2344), 1, + sym_class_interface_clause, + [57476] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4059), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3948), 1, anon_sym_COMMA, - [57510] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4061), 1, - sym_name, - ACTIONS(4063), 1, - anon_sym_LBRACE, - STATE(2388), 1, - sym_namespace_use_group, - [57523] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - ACTIONS(4065), 1, - anon_sym_DOT_DOT_DOT, - STATE(1939), 1, - sym_variable_name, - [57536] = 4, - ACTIONS(1575), 1, + STATE(1856), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3471), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [57490] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(3756), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_RPAREN, - STATE(1945), 1, - aux_sym_formal_parameters_repeat1, - [57549] = 3, - ACTIONS(1575), 1, + STATE(1788), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3951), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57504] = 5, + ACTIONS(870), 1, + anon_sym_COMMA, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4073), 1, + ACTIONS(3953), 1, anon_sym_EQ, - ACTIONS(4071), 2, - anon_sym_COMMA, + ACTIONS(3955), 1, anon_sym_RPAREN, - [57560] = 4, - ACTIONS(1575), 1, + STATE(2054), 1, + aux_sym__list_destructing_repeat1, + [57520] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3686), 1, + ACTIONS(3433), 1, anon_sym_LBRACE, - STATE(2464), 1, + STATE(1122), 1, + sym_compound_statement, + STATE(2297), 1, sym__return_type, - [57573] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3078), 1, - anon_sym_AMP, - ACTIONS(4075), 1, - anon_sym_RPAREN, - STATE(1424), 1, - aux_sym_intersection_type_repeat1, - [57586] = 4, - ACTIONS(1575), 1, + [57536] = 5, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(4077), 1, - anon_sym_EQ_GT, - STATE(2428), 1, + STATE(909), 1, + sym_compound_statement, + STATE(2134), 1, sym__return_type, - [57599] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4079), 1, - anon_sym_COMMA, - ACTIONS(4081), 1, - anon_sym_RPAREN, - STATE(1972), 1, - aux_sym_array_creation_expression_repeat1, - [57612] = 4, - ACTIONS(1575), 1, + [57552] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1850), 1, - anon_sym_RPAREN, - ACTIONS(4083), 1, - anon_sym_COMMA, - STATE(2013), 1, - aux_sym_formal_parameters_repeat1, - [57625] = 4, - ACTIONS(856), 1, - anon_sym_COMMA, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1683), 1, - anon_sym_RPAREN, - STATE(1979), 1, - aux_sym__list_destructing_repeat1, - [57638] = 4, - ACTIONS(856), 1, - anon_sym_COMMA, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1683), 1, - anon_sym_RPAREN, - STATE(1984), 1, - aux_sym__list_destructing_repeat1, - [57651] = 4, - ACTIONS(1575), 1, + ACTIONS(3341), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3347), 1, + anon_sym_LBRACE, + STATE(1054), 1, + sym_declaration_list, + STATE(2220), 1, + sym_class_interface_clause, + [57568] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4017), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(4085), 1, - anon_sym_RBRACK, - STATE(1921), 1, - aux_sym__array_destructing_repeat1, - [57664] = 4, - ACTIONS(842), 1, - anon_sym_RBRACK, - ACTIONS(1575), 1, + STATE(1806), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3957), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57582] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4087), 1, - anon_sym_COMMA, - STATE(1989), 1, - aux_sym_array_creation_expression_repeat1, - [57677] = 4, - ACTIONS(1575), 1, + ACTIONS(3337), 1, + anon_sym_LBRACE, + ACTIONS(3341), 1, + aux_sym_class_interface_clause_token1, + STATE(918), 1, + sym_declaration_list, + STATE(2363), 1, + sym_class_interface_clause, + [57598] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4089), 1, + ACTIONS(3756), 1, anon_sym_COMMA, - ACTIONS(4092), 1, - anon_sym_RBRACK, - STATE(1921), 1, - aux_sym__array_destructing_repeat1, - [57690] = 4, - ACTIONS(1575), 1, + STATE(1789), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3959), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57612] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3089), 1, - anon_sym_RBRACK, - ACTIONS(4094), 1, + ACTIONS(3756), 1, anon_sym_COMMA, - STATE(1991), 1, - aux_sym_attribute_group_repeat1, - [57703] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4098), 1, - anon_sym_LPAREN, - ACTIONS(4096), 2, + STATE(1825), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3936), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57714] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2417), 1, - anon_sym_COLON, - ACTIONS(4100), 1, - anon_sym_LPAREN, - STATE(2259), 1, - sym_parenthesized_expression, - [57727] = 4, - ACTIONS(1575), 1, + [57626] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4102), 1, - anon_sym_COMMA, - ACTIONS(4104), 1, - anon_sym_RPAREN, - STATE(1997), 1, - aux_sym_arguments_repeat1, - [57740] = 4, - ACTIONS(820), 1, + ACTIONS(3784), 1, + anon_sym_PIPE, + STATE(1772), 1, + aux_sym_type_list_repeat1, + ACTIONS(3961), 2, anon_sym_RPAREN, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4106), 1, - anon_sym_COMMA, - STATE(1888), 1, - aux_sym_array_creation_expression_repeat1, - [57753] = 4, - ACTIONS(1575), 1, + anon_sym_DOLLAR, + [57640] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3884), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(4108), 1, - anon_sym_EQ_GT, - STATE(2450), 1, - sym__return_type, - [57766] = 2, - ACTIONS(1575), 1, + [57650] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3797), 3, + ACTIONS(3756), 1, + anon_sym_COMMA, + STATE(1788), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3898), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - [57775] = 3, - ACTIONS(1433), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + [57664] = 5, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1431), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [57786] = 2, - ACTIONS(1575), 1, + ACTIONS(3341), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, + anon_sym_LBRACE, + STATE(445), 1, + sym_declaration_list, + STATE(2280), 1, + sym_class_interface_clause, + [57680] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3811), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [57795] = 2, - ACTIONS(1575), 1, + ACTIONS(3963), 1, + sym__new_line, + ACTIONS(3965), 1, + sym_heredoc_end, + STATE(2386), 1, + sym_heredoc_body, + [57693] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4110), 3, - anon_sym_COMMA, + ACTIONS(3969), 1, anon_sym_EQ, + ACTIONS(3967), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [57804] = 4, - ACTIONS(1575), 1, + [57704] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4061), 1, - sym_name, - ACTIONS(4063), 1, - anon_sym_LBRACE, - STATE(2345), 1, - sym_namespace_use_group, - [57817] = 4, - ACTIONS(1575), 1, + ACTIONS(3973), 1, + aux_sym_else_clause_token1, + ACTIONS(3971), 2, + aux_sym_if_statement_token2, + aux_sym_else_if_clause_token1, + [57715] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4063), 1, - anon_sym_LBRACE, - ACTIONS(4112), 1, - sym_name, - STATE(2345), 1, - sym_namespace_use_group, - [57830] = 2, - ACTIONS(1575), 1, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(3975), 1, + anon_sym_EQ_GT, + STATE(2472), 1, + sym__return_type, + [57728] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4114), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3977), 1, anon_sym_COMMA, - [57839] = 4, - ACTIONS(1575), 1, + ACTIONS(3979), 1, + anon_sym_RPAREN, + STATE(2003), 1, + aux_sym_array_creation_expression_repeat1, + [57741] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(3981), 1, anon_sym_COMMA, - ACTIONS(4118), 1, - anon_sym_RBRACE, - STATE(1981), 1, - aux_sym_match_block_repeat1, - [57852] = 3, - ACTIONS(1445), 1, + ACTIONS(3983), 1, + anon_sym_RPAREN, + STATE(1923), 1, + aux_sym_arguments_repeat1, + [57754] = 3, + ACTIONS(1420), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1443), 2, + ACTIONS(1418), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [57863] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3880), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [57872] = 3, - ACTIONS(1449), 1, + [57765] = 3, + ACTIONS(1496), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1447), 2, + ACTIONS(1494), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [57883] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4122), 1, - anon_sym_EQ, - ACTIONS(4120), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [57894] = 3, - ACTIONS(1465), 1, + [57776] = 3, + ACTIONS(1452), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1463), 2, + ACTIONS(1450), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [57905] = 3, - ACTIONS(1473), 1, + [57787] = 3, + ACTIONS(1468), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1471), 2, + ACTIONS(1466), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [57916] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4126), 1, - anon_sym_EQ, - ACTIONS(4124), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [57927] = 3, - ACTIONS(1529), 1, + [57798] = 3, + ACTIONS(1408), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1527), 2, + ACTIONS(1406), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [57938] = 3, - ACTIONS(1353), 1, + [57809] = 3, + ACTIONS(1400), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1351), 2, + ACTIONS(1398), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [57949] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1823), 1, - anon_sym_RPAREN, - ACTIONS(4128), 1, - anon_sym_COMMA, - STATE(2013), 1, - aux_sym_formal_parameters_repeat1, - [57962] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - ACTIONS(4130), 1, - anon_sym_DOT_DOT_DOT, - STATE(2015), 1, - sym_variable_name, - [57975] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4037), 1, - sym__new_line, - ACTIONS(4132), 1, - sym_heredoc_end, - STATE(2374), 1, - sym_heredoc_body, - [57988] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4134), 1, - sym__new_line, - ACTIONS(4136), 1, - sym_heredoc_end, - STATE(2372), 1, - sym_nowdoc_body, - [58001] = 3, - ACTIONS(1353), 1, + [57820] = 3, + ACTIONS(1384), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1351), 2, + ACTIONS(1382), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58012] = 4, - ACTIONS(814), 1, - anon_sym_RPAREN, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4138), 1, - anon_sym_COMMA, - STATE(2070), 1, - aux_sym_arguments_repeat1, - [58025] = 3, - ACTIONS(1337), 1, + [57831] = 3, + ACTIONS(1380), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1335), 2, + ACTIONS(1378), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58036] = 3, - ACTIONS(1575), 1, + [57842] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4142), 1, - anon_sym_EQ, - ACTIONS(4140), 2, + ACTIONS(3985), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [58047] = 3, - ACTIONS(1417), 1, + ACTIONS(3988), 1, + anon_sym_RBRACE, + STATE(1884), 1, + aux_sym_match_block_repeat1, + [57855] = 3, + ACTIONS(1376), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1415), 2, + ACTIONS(1374), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58058] = 3, - ACTIONS(1413), 1, + [57866] = 3, + ACTIONS(1436), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1411), 2, + ACTIONS(1434), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58069] = 4, - ACTIONS(1575), 1, + [57877] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - ACTIONS(4144), 1, - anon_sym_DOT_DOT_DOT, - STATE(2016), 1, - sym_variable_name, - [58082] = 3, - ACTIONS(1369), 1, + ACTIONS(3063), 1, + anon_sym_AMP, + ACTIONS(3990), 1, + anon_sym_RPAREN, + STATE(1439), 1, + aux_sym_intersection_type_repeat1, + [57890] = 3, + ACTIONS(1296), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1367), 2, + ACTIONS(1294), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58093] = 3, - ACTIONS(1369), 1, + [57901] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1743), 1, + anon_sym_RPAREN, + ACTIONS(3992), 1, + anon_sym_COMMA, + STATE(2120), 1, + aux_sym_formal_parameters_repeat1, + [57914] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3994), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [57923] = 3, + ACTIONS(1448), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1367), 2, + ACTIONS(1446), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58104] = 3, - ACTIONS(1389), 1, + [57934] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(2464), 1, + anon_sym_EQ_GT, + ACTIONS(3996), 1, + anon_sym_COMMA, + STATE(1892), 1, + aux_sym_match_condition_list_repeat1, + [57947] = 3, + ACTIONS(1280), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1387), 2, + ACTIONS(1278), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58115] = 3, - ACTIONS(1197), 1, + [57958] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4001), 1, + anon_sym_EQ, + ACTIONS(3999), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57969] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4003), 1, + anon_sym_COMMA, + ACTIONS(4005), 1, + anon_sym_RPAREN, + STATE(1899), 1, + aux_sym_array_creation_expression_repeat1, + [57982] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(3705), 1, + anon_sym_LBRACE, + STATE(2442), 1, + sym__return_type, + [57995] = 3, + ACTIONS(1262), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1195), 2, + ACTIONS(1260), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58126] = 3, - ACTIONS(1225), 1, + [58006] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3471), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [58015] = 4, + ACTIONS(845), 1, + anon_sym_RPAREN, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4007), 1, + anon_sym_COMMA, + STATE(2021), 1, + aux_sym_array_creation_expression_repeat1, + [58028] = 4, + ACTIONS(870), 1, + anon_sym_COMMA, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1646), 1, + anon_sym_RPAREN, + STATE(2049), 1, + aux_sym__list_destructing_repeat1, + [58041] = 4, + ACTIONS(870), 1, + anon_sym_COMMA, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1646), 1, + anon_sym_RPAREN, + STATE(2059), 1, + aux_sym__list_destructing_repeat1, + [58054] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4009), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58065] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4013), 1, + anon_sym_COMMA, + ACTIONS(4015), 1, + anon_sym_RBRACK, + STATE(1905), 1, + aux_sym__array_destructing_repeat1, + [58078] = 4, + ACTIONS(847), 1, + anon_sym_RBRACK, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4017), 1, + anon_sym_COMMA, + STATE(2071), 1, + aux_sym_array_creation_expression_repeat1, + [58091] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4019), 1, + anon_sym_COMMA, + ACTIONS(4022), 1, + anon_sym_RBRACK, + STATE(1905), 1, + aux_sym__array_destructing_repeat1, + [58104] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_RBRACK, + ACTIONS(4024), 1, + anon_sym_COMMA, + STATE(2073), 1, + aux_sym_attribute_group_repeat1, + [58117] = 3, + ACTIONS(1262), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1223), 2, + ACTIONS(1260), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58137] = 3, - ACTIONS(1233), 1, + [58128] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4026), 1, + anon_sym_COMMA, + ACTIONS(4028), 1, + anon_sym_RBRACE, + STATE(1953), 1, + aux_sym_match_block_repeat1, + [58141] = 3, + ACTIONS(1360), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1231), 2, + ACTIONS(1358), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58148] = 3, - ACTIONS(1245), 1, + [58152] = 3, + ACTIONS(1404), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1243), 2, + ACTIONS(1402), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58159] = 3, - ACTIONS(1575), 1, + [58163] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4148), 1, - anon_sym_EQ, - ACTIONS(4146), 2, + ACTIONS(4030), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, - [58170] = 3, - ACTIONS(1261), 1, + [58172] = 3, + ACTIONS(1500), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1259), 2, + ACTIONS(1498), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58181] = 4, - ACTIONS(1575), 1, + [58183] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_COLON, - ACTIONS(3553), 1, + ACTIONS(4032), 1, + anon_sym_COMMA, + ACTIONS(4034), 1, + anon_sym_RPAREN, + STATE(1978), 1, + aux_sym_formal_parameters_repeat1, + [58196] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + ACTIONS(4036), 1, + anon_sym_DOT_DOT_DOT, + STATE(1976), 1, + sym_variable_name, + [58209] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4038), 1, + sym_name, + ACTIONS(4040), 1, anon_sym_LBRACE, - STATE(2462), 1, - sym__return_type, - [58194] = 3, - ACTIONS(1265), 1, + STATE(2320), 1, + sym_namespace_use_group, + [58222] = 3, + ACTIONS(1308), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1263), 2, + ACTIONS(1306), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58205] = 2, - ACTIONS(1575), 1, + [58233] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3806), 3, + ACTIONS(4042), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [58214] = 3, - ACTIONS(1289), 1, + [58242] = 3, + ACTIONS(1368), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1287), 2, + ACTIONS(1366), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58225] = 3, - ACTIONS(1289), 1, + [58253] = 3, + ACTIONS(1246), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1287), 2, + ACTIONS(1244), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58236] = 4, - ACTIONS(1575), 1, + [58264] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3432), 1, - anon_sym_COMMA, - ACTIONS(3642), 1, - anon_sym_LBRACE, - STATE(2025), 1, - aux_sym_base_clause_repeat1, - [58249] = 3, - ACTIONS(1293), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(3963), 1, + sym__new_line, + ACTIONS(4044), 1, + sym_heredoc_end, + STATE(2334), 1, + sym_heredoc_body, + [58277] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(1291), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [58260] = 4, - ACTIONS(844), 1, - anon_sym_RPAREN, - ACTIONS(1575), 1, + ACTIONS(4046), 1, + sym__new_line, + ACTIONS(4048), 1, + sym_heredoc_end, + STATE(2333), 1, + sym_nowdoc_body, + [58290] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4150), 1, + ACTIONS(4050), 1, anon_sym_COMMA, - STATE(1888), 1, - aux_sym_array_creation_expression_repeat1, - [58273] = 4, - ACTIONS(1575), 1, + ACTIONS(4052), 1, + anon_sym_RPAREN, + STATE(1889), 1, + aux_sym_formal_parameters_repeat1, + [58303] = 4, + ACTIONS(801), 1, + anon_sym_RPAREN, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(4054), 1, anon_sym_COMMA, - ACTIONS(4152), 1, - anon_sym_RPAREN, - STATE(2027), 1, - aux_sym_unset_statement_repeat1, - [58286] = 3, - ACTIONS(1575), 1, + STATE(2043), 1, + aux_sym_arguments_repeat1, + [58316] = 3, + ACTIONS(125), 1, + anon_sym_DOLLAR, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4156), 1, - aux_sym_else_clause_token1, - ACTIONS(4154), 2, - aux_sym_if_statement_token2, - aux_sym_else_if_clause_token1, - [58297] = 3, - ACTIONS(1301), 1, + STATE(1960), 2, + sym_dynamic_variable_name, + sym_variable_name, + [58327] = 3, + ACTIONS(1226), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1299), 2, + ACTIONS(1224), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58308] = 4, - ACTIONS(1575), 1, + [58338] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(1682), 1, + anon_sym_DOLLAR, + STATE(1760), 1, + sym_variable_name, + STATE(1958), 1, + sym_static_variable_declaration, + [58351] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1682), 1, + anon_sym_DOLLAR, + STATE(1669), 1, + sym_variable_name, + STATE(1994), 1, + sym_property_element, + [58364] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1682), 1, + anon_sym_DOLLAR, + STATE(1669), 1, + sym_variable_name, + STATE(1782), 1, + sym_property_element, + [58377] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4056), 3, anon_sym_COMMA, - ACTIONS(4160), 1, - anon_sym_RBRACE, - STATE(2033), 1, - aux_sym_match_block_repeat1, - [58321] = 3, - ACTIONS(1301), 1, + anon_sym_EQ, + anon_sym_RPAREN, + [58386] = 3, + ACTIONS(1336), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1299), 2, + ACTIONS(1334), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58332] = 3, - ACTIONS(1575), 1, + [58397] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3846), 1, - anon_sym_EQ, - ACTIONS(4162), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [58343] = 4, - ACTIONS(856), 1, + ACTIONS(2432), 1, + anon_sym_COLON, + ACTIONS(4058), 1, + anon_sym_LPAREN, + STATE(2373), 1, + sym_parenthesized_expression, + [58410] = 4, + ACTIONS(870), 1, anon_sym_COMMA, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4164), 1, + ACTIONS(4060), 1, anon_sym_RPAREN, - STATE(1984), 1, + STATE(2059), 1, aux_sym__list_destructing_repeat1, - [58356] = 3, - ACTIONS(1325), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1323), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [58367] = 4, - ACTIONS(868), 1, - anon_sym_RBRACE, - ACTIONS(1575), 1, + [58423] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4062), 1, anon_sym_COMMA, - STATE(2134), 1, - aux_sym_match_block_repeat1, - [58380] = 2, - ACTIONS(1575), 1, + ACTIONS(4064), 1, + anon_sym_RPAREN, + STATE(2087), 1, + aux_sym_arguments_repeat1, + [58436] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4168), 3, + ACTIONS(4066), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [58389] = 4, - ACTIONS(856), 1, - anon_sym_COMMA, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4170), 1, - anon_sym_RPAREN, - STATE(1984), 1, - aux_sym__list_destructing_repeat1, - [58402] = 4, - ACTIONS(1575), 1, + [58445] = 3, + ACTIONS(1226), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1697), 1, - anon_sym_RPAREN, - ACTIONS(4172), 1, - anon_sym_COMMA, - STATE(1984), 1, - aux_sym__list_destructing_repeat1, - [58415] = 3, - ACTIONS(1325), 1, + ACTIONS(1224), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58456] = 3, + ACTIONS(1356), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1323), 2, + ACTIONS(1354), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58426] = 3, - ACTIONS(1575), 1, + [58467] = 3, + ACTIONS(1372), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3846), 1, - anon_sym_EQ, - ACTIONS(4175), 2, + ACTIONS(1370), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58478] = 4, + ACTIONS(870), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [58437] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4009), 3, - anon_sym_COMMA, + ACTIONS(4068), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [58446] = 3, - ACTIONS(1429), 1, + STATE(2059), 1, + aux_sym__list_destructing_repeat1, + [58491] = 3, + ACTIONS(1484), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1427), 2, + ACTIONS(1482), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58457] = 4, - ACTIONS(1575), 1, + [58502] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4009), 1, - anon_sym_RBRACK, - ACTIONS(4177), 1, + ACTIONS(4070), 1, anon_sym_COMMA, - STATE(1989), 1, - aux_sym_array_creation_expression_repeat1, - [58470] = 3, - ACTIONS(1345), 1, + ACTIONS(4072), 1, + anon_sym_RPAREN, + STATE(2117), 1, + aux_sym_arguments_repeat1, + [58515] = 3, + ACTIONS(1218), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1343), 2, + ACTIONS(1216), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58481] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4180), 1, - anon_sym_COMMA, - ACTIONS(4183), 1, - anon_sym_RBRACK, - STATE(1991), 1, - aux_sym_attribute_group_repeat1, - [58494] = 4, - ACTIONS(3), 1, + [58526] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4037), 1, - sym__new_line, - ACTIONS(4185), 1, - sym_heredoc_end, - STATE(2261), 1, - sym_heredoc_body, - [58507] = 3, - ACTIONS(1365), 1, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(4074), 1, + anon_sym_EQ_GT, + STATE(2574), 1, + sym__return_type, + [58539] = 3, + ACTIONS(1250), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1363), 2, + ACTIONS(1248), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58518] = 4, - ACTIONS(3), 1, + [58550] = 3, + ACTIONS(1460), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4134), 1, - sym__new_line, - ACTIONS(4187), 1, - sym_heredoc_end, - STATE(2257), 1, - sym_nowdoc_body, - [58531] = 3, - ACTIONS(1193), 1, + ACTIONS(1458), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58561] = 3, + ACTIONS(1206), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1191), 2, + ACTIONS(1204), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58542] = 3, - ACTIONS(1409), 1, + [58572] = 3, + ACTIONS(1134), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1407), 2, + ACTIONS(1132), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58553] = 4, - ACTIONS(816), 1, - anon_sym_RPAREN, - ACTIONS(1575), 1, + [58583] = 3, + ACTIONS(1388), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4189), 1, - anon_sym_COMMA, - STATE(2070), 1, - aux_sym_arguments_repeat1, - [58566] = 3, - ACTIONS(1107), 1, + ACTIONS(1386), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58594] = 3, + ACTIONS(1182), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1105), 2, + ACTIONS(1180), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58577] = 4, - ACTIONS(1575), 1, + [58605] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3640), 1, + anon_sym_RPAREN, + ACTIONS(4076), 1, + anon_sym_COMMA, + STATE(1988), 1, + aux_sym_anonymous_function_use_clause_repeat1, + [58618] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(4191), 1, + ACTIONS(4078), 1, anon_sym_EQ_GT, - STATE(2526), 1, + STATE(2587), 1, sym__return_type, - [58590] = 3, - ACTIONS(1461), 1, + [58631] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4080), 1, + anon_sym_COMMA, + ACTIONS(4082), 1, + anon_sym_RBRACK, + STATE(2001), 1, + aux_sym_array_creation_expression_repeat1, + [58644] = 3, + ACTIONS(1280), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1459), 2, + ACTIONS(1278), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58601] = 4, - ACTIONS(1575), 1, + [58655] = 4, + ACTIONS(868), 1, + anon_sym_RBRACE, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_COLON, - ACTIONS(4193), 1, - anon_sym_EQ_GT, - STATE(2530), 1, - sym__return_type, - [58614] = 3, - ACTIONS(1453), 1, + ACTIONS(4084), 1, + anon_sym_COMMA, + STATE(1884), 1, + aux_sym_match_block_repeat1, + [58668] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3963), 1, + sym__new_line, + ACTIONS(4086), 1, + sym_heredoc_end, + STATE(2362), 1, + sym_heredoc_body, + [58681] = 3, + ACTIONS(1234), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1232), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58625] = 4, - ACTIONS(1575), 1, + [58692] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4088), 1, + anon_sym_COMMA, + ACTIONS(4090), 1, + anon_sym_RBRACK, + STATE(1906), 1, + aux_sym_attribute_group_repeat1, + [58705] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(4092), 1, + anon_sym_LBRACE, + ACTIONS(4094), 1, anon_sym_COLON, - ACTIONS(4195), 1, - anon_sym_EQ_GT, - STATE(2556), 1, - sym__return_type, - [58638] = 3, - ACTIONS(1457), 1, + STATE(1916), 1, + sym_switch_block, + [58718] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3893), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [58727] = 3, + ACTIONS(1364), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1362), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58649] = 3, - ACTIONS(1489), 1, + [58738] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3796), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [58747] = 3, + ACTIONS(1214), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1487), 2, + ACTIONS(1212), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58660] = 4, - ACTIONS(1575), 1, + [58758] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4013), 1, + anon_sym_COMMA, + ACTIONS(4096), 1, + anon_sym_RBRACK, + STATE(1905), 1, + aux_sym__array_destructing_repeat1, + [58771] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4038), 1, + sym_name, + ACTIONS(4040), 1, + anon_sym_LBRACE, + STATE(2137), 1, + sym_namespace_use_group, + [58784] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4063), 1, + ACTIONS(4040), 1, anon_sym_LBRACE, - ACTIONS(4112), 1, + ACTIONS(4098), 1, sym_name, - STATE(2226), 1, + STATE(2137), 1, sym_namespace_use_group, - [58673] = 3, - ACTIONS(1489), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + [58797] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1487), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [58684] = 4, - ACTIONS(1575), 1, + ACTIONS(4100), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [58806] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4197), 1, + ACTIONS(4102), 1, anon_sym_COMMA, - ACTIONS(4199), 1, - anon_sym_RBRACE, - STATE(2085), 1, - aux_sym_namespace_use_group_repeat1, - [58697] = 3, - ACTIONS(1575), 1, + ACTIONS(4104), 1, + anon_sym_RBRACK, + STATE(1904), 1, + aux_sym_array_creation_expression_repeat1, + [58819] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4203), 1, - anon_sym_EQ, - ACTIONS(4201), 2, + ACTIONS(3886), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, - [58708] = 3, - ACTIONS(1575), 1, + [58828] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4207), 1, + ACTIONS(4013), 1, + anon_sym_COMMA, + ACTIONS(4096), 1, + anon_sym_RBRACK, + STATE(1903), 1, + aux_sym__array_destructing_repeat1, + [58841] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3953), 1, anon_sym_EQ, - ACTIONS(4205), 2, + ACTIONS(4106), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [58719] = 3, - ACTIONS(1505), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + anon_sym_RBRACK, + [58852] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1503), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [58730] = 3, - ACTIONS(1517), 1, + ACTIONS(4108), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [58861] = 3, + ACTIONS(1214), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1515), 2, + ACTIONS(1212), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58741] = 4, - ACTIONS(1575), 1, + [58872] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4110), 1, + anon_sym_COMMA, + ACTIONS(4113), 1, + anon_sym_RBRACE, + STATE(1972), 1, + aux_sym_namespace_use_group_repeat1, + [58885] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4209), 1, + ACTIONS(4117), 1, + anon_sym_EQ, + ACTIONS(4115), 2, anon_sym_COMMA, - ACTIONS(4212), 1, anon_sym_RPAREN, - STATE(2013), 1, - aux_sym_formal_parameters_repeat1, - [58754] = 3, - ACTIONS(1537), 1, + [58896] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4119), 1, + anon_sym_LBRACE, + ACTIONS(4121), 1, + anon_sym_COLON, + STATE(497), 1, + sym_switch_block, + [58909] = 3, + ACTIONS(1464), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1535), 2, + ACTIONS(1462), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58765] = 3, - ACTIONS(1575), 1, + [58920] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4216), 1, + ACTIONS(4125), 1, anon_sym_EQ, - ACTIONS(4214), 2, + ACTIONS(4123), 2, anon_sym_COMMA, anon_sym_RPAREN, - [58776] = 3, - ACTIONS(1575), 1, + [58931] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4220), 1, + ACTIONS(4129), 1, anon_sym_EQ, - ACTIONS(4218), 2, + ACTIONS(4127), 2, anon_sym_COMMA, anon_sym_RPAREN, - [58787] = 4, - ACTIONS(1575), 1, + [58942] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_RPAREN, + ACTIONS(4131), 1, + anon_sym_COMMA, + STATE(2120), 1, + aux_sym_formal_parameters_repeat1, + [58955] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1754), 1, + ACTIONS(1711), 1, anon_sym_DOLLAR, - ACTIONS(4222), 1, + ACTIONS(4133), 1, anon_sym_DOT_DOT_DOT, - STATE(2120), 1, + STATE(2115), 1, sym_variable_name, - [58800] = 3, - ACTIONS(1575), 1, + [58968] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4226), 1, + ACTIONS(4137), 1, anon_sym_EQ, - ACTIONS(4224), 2, + ACTIONS(4135), 2, anon_sym_COMMA, anon_sym_RPAREN, - [58811] = 4, - ACTIONS(1575), 1, + [58979] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4228), 1, + ACTIONS(4141), 1, + anon_sym_EQ, + ACTIONS(4139), 2, anon_sym_COMMA, - ACTIONS(4230), 1, - anon_sym_RPAREN, - STATE(2121), 1, - aux_sym_anonymous_function_use_clause_repeat1, - [58824] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - ACTIONS(4232), 1, anon_sym_RPAREN, - STATE(2458), 1, - sym_variable_name, - [58837] = 4, - ACTIONS(1575), 1, + [58990] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1725), 1, + ACTIONS(1711), 1, anon_sym_DOLLAR, - STATE(1688), 1, + ACTIONS(4143), 1, + anon_sym_DOT_DOT_DOT, + STATE(2112), 1, sym_variable_name, - STATE(1855), 1, - sym_property_element, - [58850] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4236), 1, - anon_sym_EQ, - ACTIONS(4234), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [58861] = 3, - ACTIONS(1537), 1, + [59003] = 3, + ACTIONS(1476), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1535), 2, + ACTIONS(1474), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58872] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4063), 1, - anon_sym_LBRACE, - ACTIONS(4112), 1, - sym_name, - STATE(2343), 1, - sym_namespace_use_group, - [58885] = 4, - ACTIONS(1575), 1, + [59014] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3432), 1, + ACTIONS(4147), 1, + anon_sym_EQ, + ACTIONS(4145), 2, anon_sym_COMMA, - ACTIONS(4238), 1, + anon_sym_RPAREN, + [59025] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(3634), 1, anon_sym_LBRACE, - STATE(1848), 1, - aux_sym_base_clause_repeat1, - [58898] = 3, - ACTIONS(1541), 1, + STATE(2565), 1, + sym__return_type, + [59038] = 3, + ACTIONS(1488), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1539), 2, + ACTIONS(1486), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58909] = 4, - ACTIONS(1575), 1, + [59049] = 3, + ACTIONS(1488), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3300), 1, - anon_sym_RPAREN, - ACTIONS(4240), 1, - anon_sym_COMMA, - STATE(2027), 1, - aux_sym_unset_statement_repeat1, - [58922] = 4, - ACTIONS(1575), 1, + ACTIONS(1486), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [59060] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - ACTIONS(4243), 1, + ACTIONS(4149), 1, + anon_sym_COMMA, + ACTIONS(4152), 1, anon_sym_RPAREN, - STATE(2589), 1, - sym_variable_name, - [58935] = 4, - ACTIONS(1575), 1, + STATE(1988), 1, + aux_sym_anonymous_function_use_clause_repeat1, + [59073] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3865), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(4245), 1, - anon_sym_RPAREN, - STATE(2027), 1, - aux_sym_unset_statement_repeat1, - [58948] = 4, - ACTIONS(1575), 1, + [59082] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4063), 1, - anon_sym_LBRACE, - ACTIONS(4112), 1, - sym_name, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(4154), 1, + anon_sym_EQ_GT, STATE(2411), 1, - sym_namespace_use_group, - [58961] = 3, - ACTIONS(1549), 1, + sym__return_type, + [59095] = 3, + ACTIONS(1480), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1547), 2, + ACTIONS(1478), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58972] = 4, - ACTIONS(1575), 1, + [59106] = 3, + ACTIONS(1444), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4061), 1, - sym_name, - ACTIONS(4063), 1, - anon_sym_LBRACE, - STATE(2411), 1, - sym_namespace_use_group, - [58985] = 4, - ACTIONS(854), 1, - anon_sym_RBRACE, - ACTIONS(1575), 1, + ACTIONS(1442), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [59117] = 3, + ACTIONS(1492), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4247), 1, - anon_sym_COMMA, - STATE(2134), 1, - aux_sym_match_block_repeat1, - [58998] = 4, - ACTIONS(972), 1, - anon_sym_EQ_GT, - ACTIONS(1575), 1, + ACTIONS(1490), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [59128] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4249), 1, + ACTIONS(3848), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - STATE(2135), 1, - aux_sym_match_condition_list_repeat1, - [59011] = 3, - ACTIONS(1421), 1, + [59137] = 3, + ACTIONS(1444), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1419), 2, + ACTIONS(1442), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59022] = 4, - ACTIONS(856), 1, - anon_sym_COMMA, - ACTIONS(1575), 1, + [59148] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4251), 1, + ACTIONS(3831), 3, anon_sym_RPAREN, - STATE(2141), 1, - aux_sym__list_destructing_repeat1, - [59035] = 4, - ACTIONS(856), 1, - anon_sym_COMMA, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_RPAREN, - STATE(2139), 1, - aux_sym__list_destructing_repeat1, - [59048] = 2, - ACTIONS(1575), 1, + anon_sym_PIPE, + anon_sym_DOLLAR, + [59157] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4253), 3, + ACTIONS(3473), 1, anon_sym_COMMA, + ACTIONS(3565), 1, + anon_sym_LBRACE, + STATE(2085), 1, + aux_sym_base_clause_repeat1, + [59170] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4158), 1, anon_sym_EQ, + ACTIONS(4156), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [59057] = 2, - ACTIONS(1575), 1, + [59181] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4255), 3, - anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + ACTIONS(4160), 1, anon_sym_RPAREN, - [59066] = 3, - ACTIONS(1525), 1, + STATE(2457), 1, + sym_variable_name, + [59194] = 3, + ACTIONS(1392), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1523), 2, + ACTIONS(1390), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59077] = 3, - ACTIONS(1469), 1, + [59205] = 4, + ACTIONS(827), 1, + anon_sym_RBRACK, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4162), 1, + anon_sym_COMMA, + STATE(2071), 1, + aux_sym_array_creation_expression_repeat1, + [59218] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4040), 1, + anon_sym_LBRACE, + ACTIONS(4098), 1, + sym_name, + STATE(2316), 1, + sym_namespace_use_group, + [59231] = 4, + ACTIONS(843), 1, + anon_sym_RPAREN, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4164), 1, + anon_sym_COMMA, + STATE(2021), 1, + aux_sym_array_creation_expression_repeat1, + [59244] = 3, + ACTIONS(1146), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1467), 2, + ACTIONS(1144), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59088] = 3, - ACTIONS(1349), 1, + [59255] = 3, + ACTIONS(1344), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1347), 2, + ACTIONS(1342), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59099] = 3, - ACTIONS(1093), 1, + [59266] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1919), 1, + anon_sym_RPAREN, + ACTIONS(4166), 1, + anon_sym_COMMA, + STATE(2083), 1, + aux_sym_unset_statement_repeat1, + [59279] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_RPAREN, + ACTIONS(4168), 1, + anon_sym_COMMA, + STATE(2083), 1, + aux_sym_unset_statement_repeat1, + [59292] = 3, + ACTIONS(1432), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1091), 2, + ACTIONS(1430), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59110] = 3, - ACTIONS(1097), 1, + [59303] = 3, + ACTIONS(1154), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1095), 2, + ACTIONS(1152), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59121] = 3, - ACTIONS(1425), 1, + [59314] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_EQ, + ACTIONS(4170), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59325] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym_COMMA, + ACTIONS(4176), 1, + anon_sym_RBRACE, + STATE(1972), 1, + aux_sym_namespace_use_group_repeat1, + [59338] = 3, + ACTIONS(1404), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1423), 2, + ACTIONS(1402), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59132] = 3, - ACTIONS(1297), 1, + [59349] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4178), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [59358] = 3, + ACTIONS(1162), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1295), 2, + ACTIONS(1160), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59143] = 3, - ACTIONS(1277), 1, + [59369] = 3, + ACTIONS(1288), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1275), 2, + ACTIONS(1286), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59154] = 3, - ACTIONS(1273), 1, + [59380] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4040), 1, + anon_sym_LBRACE, + ACTIONS(4098), 1, + sym_name, + STATE(2282), 1, + sym_namespace_use_group, + [59393] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4038), 1, + sym_name, + ACTIONS(4040), 1, + anon_sym_LBRACE, + STATE(2282), 1, + sym_namespace_use_group, + [59406] = 3, + ACTIONS(1284), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1271), 2, + ACTIONS(1282), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59165] = 3, - ACTIONS(1269), 1, + [59417] = 3, + ACTIONS(1456), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1267), 2, + ACTIONS(1454), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59176] = 3, - ACTIONS(1257), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + [59428] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1255), 2, - aux_sym_while_statement_token1, + ACTIONS(4182), 1, + anon_sym_LPAREN, + ACTIONS(4180), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59439] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4184), 1, + anon_sym_COMMA, + ACTIONS(4187), 1, + anon_sym_RPAREN, + STATE(2021), 1, + aux_sym_array_creation_expression_repeat1, + [59452] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(4189), 1, + anon_sym_EQ_GT, + STATE(2475), 1, + sym__return_type, + [59465] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3533), 1, + anon_sym_BSLASH, + ACTIONS(3928), 1, + sym_name, + STATE(2519), 1, + sym_namespace_name, + [59478] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4193), 1, + aux_sym_else_clause_token1, + ACTIONS(4191), 2, + aux_sym_if_statement_token2, aux_sym_else_if_clause_token1, - [59187] = 3, - ACTIONS(1253), 1, + [59489] = 3, + ACTIONS(1504), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1251), 2, + ACTIONS(1502), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59198] = 3, - ACTIONS(1241), 1, + [59500] = 3, + ACTIONS(1276), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1239), 2, + ACTIONS(1274), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59209] = 3, - ACTIONS(1241), 1, + [59511] = 3, + ACTIONS(1266), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1239), 2, + ACTIONS(1264), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59220] = 3, - ACTIONS(1237), 1, + [59522] = 3, + ACTIONS(1178), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1235), 2, + ACTIONS(1176), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59231] = 3, - ACTIONS(1221), 1, + [59533] = 3, + ACTIONS(1194), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1219), 2, + ACTIONS(1192), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59242] = 3, - ACTIONS(1217), 1, + [59544] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4195), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [59553] = 3, + ACTIONS(1316), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1215), 2, + ACTIONS(1314), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59253] = 3, - ACTIONS(1213), 1, + [59564] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4197), 1, + anon_sym_COMMA, + ACTIONS(4199), 1, + anon_sym_RBRACE, + STATE(2066), 1, + aux_sym_match_block_repeat1, + [59577] = 3, + ACTIONS(1424), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1211), 2, + ACTIONS(1422), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59264] = 3, - ACTIONS(1205), 1, + [59588] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4038), 1, + sym_name, + ACTIONS(4040), 1, + anon_sym_LBRACE, + STATE(2390), 1, + sym_namespace_use_group, + [59601] = 3, + ACTIONS(1222), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1203), 2, + ACTIONS(1220), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59275] = 3, - ACTIONS(1089), 1, + [59612] = 3, + ACTIONS(1324), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1087), 2, + ACTIONS(1322), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59286] = 2, - ACTIONS(1575), 1, + [59623] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4201), 1, + anon_sym_DQUOTE, + ACTIONS(4203), 1, + anon_sym_SQUOTE, + ACTIONS(4205), 1, + sym_heredoc_start, + [59636] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4257), 3, + ACTIONS(4207), 1, + sym_name, + ACTIONS(4209), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [59295] = 3, - ACTIONS(1377), 1, + [59647] = 3, + ACTIONS(1190), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1375), 2, + ACTIONS(1188), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59306] = 3, - ACTIONS(1229), 1, + [59658] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4213), 1, + anon_sym_LPAREN, + ACTIONS(4211), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59669] = 3, + ACTIONS(1238), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1227), 2, + ACTIONS(1236), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59317] = 3, - ACTIONS(1385), 1, + [59680] = 3, + ACTIONS(1428), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1383), 2, + ACTIONS(1426), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59328] = 4, - ACTIONS(1575), 1, + [59691] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4061), 1, - sym_name, - ACTIONS(4063), 1, - anon_sym_LBRACE, - STATE(2293), 1, - sym_namespace_use_group, - [59341] = 3, - ACTIONS(1477), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(4215), 1, + anon_sym_COMMA, + ACTIONS(4218), 1, + anon_sym_RPAREN, + STATE(2043), 1, + aux_sym_arguments_repeat1, + [59704] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1475), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [59352] = 3, - ACTIONS(1497), 1, + ACTIONS(3953), 1, + anon_sym_EQ, + ACTIONS(4220), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59715] = 3, + ACTIONS(1292), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1495), 2, + ACTIONS(1290), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59363] = 4, + [59726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4259), 1, + ACTIONS(4222), 1, anon_sym_, - ACTIONS(4261), 1, + ACTIONS(4224), 1, sym_nowdoc_string, - STATE(1790), 1, + STATE(1823), 1, aux_sym_nowdoc_body_repeat1, - [59376] = 3, - ACTIONS(1575), 1, + [59739] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4265), 1, - anon_sym_EQ, - ACTIONS(4263), 2, + ACTIONS(4226), 3, anon_sym_COMMA, + anon_sym_EQ, anon_sym_RPAREN, - [59387] = 3, - ACTIONS(1481), 1, + [59748] = 3, + ACTIONS(1332), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1479), 2, + ACTIONS(1330), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59398] = 4, - ACTIONS(1575), 1, + [59759] = 4, + ACTIONS(870), 1, + anon_sym_COMMA, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4267), 1, + ACTIONS(4228), 1, + anon_sym_RPAREN, + STATE(2059), 1, + aux_sym__list_destructing_repeat1, + [59772] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4230), 3, anon_sym_COMMA, - ACTIONS(4270), 1, + anon_sym_EQ, anon_sym_RPAREN, - STATE(2070), 1, - aux_sym_arguments_repeat1, - [59411] = 3, - ACTIONS(1201), 1, + [59781] = 3, + ACTIONS(1258), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1199), 2, + ACTIONS(1256), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59422] = 4, - ACTIONS(1575), 1, + [59792] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4272), 1, + ACTIONS(4232), 1, anon_sym_DQUOTE, - ACTIONS(4274), 1, + ACTIONS(4234), 1, anon_sym_SQUOTE, - ACTIONS(4276), 1, + ACTIONS(4236), 1, sym_heredoc_start, - [59435] = 3, - ACTIONS(1361), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1359), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [59446] = 3, - ACTIONS(1209), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + [59805] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1207), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [59457] = 3, - ACTIONS(1249), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(4238), 1, + anon_sym_COMMA, + ACTIONS(4240), 1, + anon_sym_RPAREN, + STATE(2061), 1, + aux_sym_arguments_repeat1, + [59818] = 4, + ACTIONS(870), 1, + anon_sym_COMMA, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1247), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [59468] = 3, - ACTIONS(1069), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(4242), 1, + anon_sym_RPAREN, + STATE(2059), 1, + aux_sym__list_destructing_repeat1, + [59831] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1067), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [59479] = 3, - ACTIONS(1073), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(4244), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [59840] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1071), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [59490] = 2, - ACTIONS(1575), 1, + ACTIONS(4246), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [59849] = 4, + ACTIONS(870), 1, + anon_sym_COMMA, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4278), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [59499] = 2, - ACTIONS(1575), 1, + ACTIONS(3157), 1, + anon_sym_RPAREN, + STATE(1932), 1, + aux_sym__list_destructing_repeat1, + [59862] = 4, + ACTIONS(870), 1, + anon_sym_COMMA, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4280), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [59508] = 4, - ACTIONS(1575), 1, + ACTIONS(4248), 1, + anon_sym_RPAREN, + STATE(1938), 1, + aux_sym__list_destructing_repeat1, + [59875] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_COLON, - ACTIONS(4282), 1, - anon_sym_EQ_GT, - STATE(2638), 1, - sym__return_type, - [59521] = 3, - ACTIONS(1381), 1, + ACTIONS(1652), 1, + anon_sym_RPAREN, + ACTIONS(4250), 1, + anon_sym_COMMA, + STATE(2059), 1, + aux_sym__list_destructing_repeat1, + [59888] = 3, + ACTIONS(1166), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1379), 2, + ACTIONS(1164), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59532] = 3, - ACTIONS(1373), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + [59899] = 4, + ACTIONS(795), 1, + anon_sym_RPAREN, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1371), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [59543] = 3, - ACTIONS(123), 1, + ACTIONS(4253), 1, + anon_sym_COMMA, + STATE(2043), 1, + aux_sym_arguments_repeat1, + [59912] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3953), 1, + anon_sym_EQ, + ACTIONS(4255), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [59923] = 3, + ACTIONS(125), 1, anon_sym_DOLLAR, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - STATE(1815), 2, + STATE(1793), 2, sym_dynamic_variable_name, sym_variable_name, - [59554] = 3, - ACTIONS(1357), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + [59934] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1355), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [59565] = 4, - ACTIONS(1575), 1, + ACTIONS(2738), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + sym_name, + [59943] = 4, + ACTIONS(955), 1, + anon_sym_EQ_GT, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4197), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4284), 1, + STATE(1892), 1, + aux_sym_match_condition_list_repeat1, + [59956] = 4, + ACTIONS(855), 1, anon_sym_RBRACE, - STATE(2144), 1, - aux_sym_namespace_use_group_repeat1, - [59578] = 4, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4286), 1, + ACTIONS(4259), 1, anon_sym_COMMA, - ACTIONS(4288), 1, - anon_sym_RPAREN, - STATE(2094), 1, - aux_sym_arguments_repeat1, - [59591] = 3, - ACTIONS(1285), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1283), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [59602] = 3, - ACTIONS(1281), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1279), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [59613] = 3, - ACTIONS(1305), 1, + STATE(1884), 1, + aux_sym_match_block_repeat1, + [59969] = 3, + ACTIONS(1328), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1303), 2, + ACTIONS(1326), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59624] = 3, - ACTIONS(1309), 1, + [59980] = 3, + ACTIONS(1320), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1307), 2, + ACTIONS(1318), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59635] = 3, - ACTIONS(1313), 1, + [59991] = 3, + ACTIONS(1150), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1311), 2, + ACTIONS(1148), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59646] = 3, - ACTIONS(1575), 1, + [60002] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4292), 1, - anon_sym_EQ, - ACTIONS(4290), 2, + ACTIONS(4187), 3, anon_sym_COMMA, anon_sym_RPAREN, - [59657] = 3, - ACTIONS(1317), 1, + anon_sym_RBRACK, + [60011] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4187), 1, + anon_sym_RBRACK, + ACTIONS(4261), 1, + anon_sym_COMMA, + STATE(2071), 1, + aux_sym_array_creation_expression_repeat1, + [60024] = 3, + ACTIONS(1138), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1315), 2, + ACTIONS(1136), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59668] = 4, - ACTIONS(800), 1, - anon_sym_RPAREN, - ACTIONS(1575), 1, + [60035] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4294), 1, + ACTIONS(4264), 1, anon_sym_COMMA, - STATE(2070), 1, - aux_sym_arguments_repeat1, - [59681] = 3, - ACTIONS(1321), 1, + ACTIONS(4267), 1, + anon_sym_RBRACK, + STATE(2073), 1, + aux_sym_attribute_group_repeat1, + [60048] = 3, + ACTIONS(1304), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1319), 2, + ACTIONS(1302), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59692] = 3, - ACTIONS(1189), 1, + [60059] = 3, + ACTIONS(1186), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1187), 2, + ACTIONS(1184), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59703] = 3, - ACTIONS(1393), 1, + [60070] = 3, + ACTIONS(1142), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1391), 2, + ACTIONS(1140), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59714] = 3, - ACTIONS(1397), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + [60081] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1395), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [59725] = 3, - ACTIONS(1401), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + ACTIONS(4269), 1, + anon_sym_RPAREN, + STATE(2406), 1, + sym_variable_name, + [60094] = 3, + ACTIONS(125), 1, + anon_sym_DOLLAR, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1399), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [59736] = 3, - ACTIONS(1117), 1, + STATE(1761), 2, + sym_dynamic_variable_name, + sym_variable_name, + [60105] = 3, + ACTIONS(1312), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1115), 2, + ACTIONS(1310), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59747] = 3, - ACTIONS(1485), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + [60116] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(1483), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [59758] = 3, - ACTIONS(1493), 1, + ACTIONS(3963), 1, + sym__new_line, + ACTIONS(4271), 1, + sym_heredoc_end, + STATE(2214), 1, + sym_heredoc_body, + [60129] = 3, + ACTIONS(1300), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1491), 2, + ACTIONS(1298), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59769] = 3, - ACTIONS(1501), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + [60140] = 4, + ACTIONS(803), 1, + anon_sym_RPAREN, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1499), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [59780] = 3, - ACTIONS(1509), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(4273), 1, + anon_sym_COMMA, + STATE(2043), 1, + aux_sym_arguments_repeat1, + [60153] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1507), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [59791] = 3, - ACTIONS(1521), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(3181), 1, + anon_sym_RPAREN, + ACTIONS(4275), 1, + anon_sym_COMMA, + STATE(2083), 1, + aux_sym_unset_statement_repeat1, + [60166] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [59802] = 3, - ACTIONS(1533), 1, + ACTIONS(4046), 1, + sym__new_line, + ACTIONS(4278), 1, + sym_heredoc_end, + STATE(2215), 1, + sym_nowdoc_body, + [60179] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3473), 1, + anon_sym_COMMA, + ACTIONS(4280), 1, + anon_sym_LBRACE, + STATE(1856), 1, + aux_sym_base_clause_repeat1, + [60192] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4282), 1, + anon_sym_COMMA, + ACTIONS(4284), 1, + anon_sym_RPAREN, + STATE(2082), 1, + aux_sym_arguments_repeat1, + [60205] = 4, + ACTIONS(817), 1, + anon_sym_RPAREN, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4286), 1, + anon_sym_COMMA, + STATE(2043), 1, + aux_sym_arguments_repeat1, + [60218] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_EQ, + ACTIONS(4288), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60229] = 3, + ACTIONS(1352), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1531), 2, + ACTIONS(1350), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59813] = 3, - ACTIONS(1437), 1, + [60240] = 3, + ACTIONS(1412), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1435), 2, + ACTIONS(1410), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59824] = 3, - ACTIONS(1575), 1, + [60251] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1682), 1, + anon_sym_DOLLAR, + STATE(1669), 1, + sym_variable_name, + STATE(1843), 1, + sym_property_element, + [60264] = 2, + ACTIONS(1530), 1, sym_comment, + ACTIONS(4292), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [60273] = 4, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4294), 1, + anon_sym_COMMA, ACTIONS(4296), 1, - sym_name, - ACTIONS(4298), 2, + anon_sym_RPAREN, + STATE(2099), 1, + aux_sym_arguments_repeat1, + [60286] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3203), 3, sym__automatic_semicolon, anon_sym_SEMI, - [59835] = 3, - ACTIONS(1441), 1, + anon_sym_LBRACE, + [60295] = 3, + ACTIONS(1340), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1439), 2, + ACTIONS(1338), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59846] = 3, - ACTIONS(1545), 1, + [60306] = 3, + ACTIONS(1254), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1543), 2, + ACTIONS(1252), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59857] = 3, - ACTIONS(1513), 1, + [60317] = 3, + ACTIONS(1292), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1511), 2, + ACTIONS(1290), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59868] = 3, - ACTIONS(1341), 1, + [60328] = 3, + ACTIONS(1270), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1339), 2, + ACTIONS(1268), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59879] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4302), 1, - anon_sym_EQ, - ACTIONS(4300), 2, - anon_sym_COMMA, + [60339] = 4, + ACTIONS(779), 1, anon_sym_RPAREN, - [59890] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3218), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [59899] = 3, - ACTIONS(1405), 1, + ACTIONS(4298), 1, + anon_sym_COMMA, + STATE(2043), 1, + aux_sym_arguments_repeat1, + [60352] = 3, + ACTIONS(1174), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1403), 2, + ACTIONS(1172), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59910] = 3, - ACTIONS(1575), 1, + [60363] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4306), 1, - anon_sym_EQ, - ACTIONS(4304), 2, + ACTIONS(4300), 1, anon_sym_COMMA, + ACTIONS(4302), 1, anon_sym_RPAREN, - [59921] = 3, - ACTIONS(1329), 1, - aux_sym_else_clause_token1, - ACTIONS(1575), 1, + STATE(1949), 1, + aux_sym_anonymous_function_use_clause_repeat1, + [60376] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1327), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [59932] = 2, - ACTIONS(1575), 1, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(4304), 1, + anon_sym_EQ_GT, + STATE(2497), 1, + sym__return_type, + [60389] = 4, + ACTIONS(825), 1, + anon_sym_RPAREN, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2827), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - sym_name, - [59941] = 3, - ACTIONS(1333), 1, + ACTIONS(4306), 1, + anon_sym_COMMA, + STATE(2043), 1, + aux_sym_arguments_repeat1, + [60402] = 3, + ACTIONS(1158), 1, aux_sym_else_clause_token1, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1331), 2, + ACTIONS(1156), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59952] = 3, - ACTIONS(1575), 1, + [60413] = 3, + ACTIONS(1530), 1, sym_comment, ACTIONS(4310), 1, anon_sym_EQ, ACTIONS(4308), 2, anon_sym_COMMA, anon_sym_RPAREN, - [59963] = 4, - ACTIONS(1575), 1, + [60424] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3723), 1, - anon_sym_RPAREN, + ACTIONS(1711), 1, + anon_sym_DOLLAR, ACTIONS(4312), 1, - anon_sym_COMMA, - STATE(2148), 1, - aux_sym_anonymous_function_use_clause_repeat1, - [59976] = 4, - ACTIONS(784), 1, - anon_sym_RPAREN, - ACTIONS(1575), 1, + anon_sym_DOT_DOT_DOT, + STATE(1981), 1, + sym_variable_name, + [60437] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4314), 1, + ACTIONS(4314), 3, anon_sym_COMMA, - STATE(2070), 1, - aux_sym_arguments_repeat1, - [59989] = 4, - ACTIONS(1575), 1, + anon_sym_EQ, + anon_sym_RPAREN, + [60446] = 3, + ACTIONS(1242), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1725), 1, - anon_sym_DOLLAR, - STATE(1688), 1, - sym_variable_name, - STATE(1738), 1, - sym_property_element, - [60002] = 4, - ACTIONS(1575), 1, + ACTIONS(1240), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [60457] = 4, + ACTIONS(1530), 1, sym_comment, ACTIONS(4316), 1, anon_sym_COMMA, ACTIONS(4318), 1, anon_sym_RPAREN, - STATE(2122), 1, + STATE(2103), 1, aux_sym_arguments_repeat1, - [60015] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1725), 1, - anon_sym_DOLLAR, - STATE(1688), 1, - sym_variable_name, - STATE(2149), 1, - sym_property_element, - [60028] = 4, - ACTIONS(1575), 1, + [60470] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4320), 1, - anon_sym_COMMA, ACTIONS(4322), 1, + anon_sym_EQ, + ACTIONS(4320), 2, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(2132), 1, - aux_sym_arguments_repeat1, - [60041] = 2, - ACTIONS(1575), 1, + [60481] = 3, + ACTIONS(1198), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4324), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [60050] = 2, - ACTIONS(1575), 1, + ACTIONS(1196), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [60492] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3428), 3, + ACTIONS(4326), 1, + anon_sym_EQ, + ACTIONS(4324), 2, anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [60059] = 3, - ACTIONS(1575), 1, + anon_sym_RPAREN, + [60503] = 3, + ACTIONS(1210), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1208), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [60514] = 3, + ACTIONS(1202), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4328), 1, + ACTIONS(1200), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [60525] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4330), 1, anon_sym_EQ, - ACTIONS(4326), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60070] = 3, - ACTIONS(1575), 1, + ACTIONS(4328), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60536] = 4, + ACTIONS(1530), 1, sym_comment, + ACTIONS(3425), 1, + anon_sym_COLON, ACTIONS(4332), 1, - aux_sym_else_clause_token1, - ACTIONS(4330), 2, - aux_sym_if_statement_token2, - aux_sym_else_if_clause_token1, - [60081] = 4, - ACTIONS(812), 1, + anon_sym_EQ_GT, + STATE(2481), 1, + sym__return_type, + [60549] = 4, + ACTIONS(805), 1, anon_sym_RPAREN, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, ACTIONS(4334), 1, anon_sym_COMMA, - STATE(2070), 1, + STATE(2043), 1, aux_sym_arguments_repeat1, - [60094] = 4, - ACTIONS(786), 1, - anon_sym_RPAREN, - ACTIONS(1575), 1, + [60562] = 3, + ACTIONS(1416), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1414), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [60573] = 4, + ACTIONS(1530), 1, sym_comment, ACTIONS(4336), 1, anon_sym_COMMA, - STATE(2070), 1, - aux_sym_arguments_repeat1, - [60107] = 4, - ACTIONS(1575), 1, - sym_comment, ACTIONS(4338), 1, - anon_sym_COMMA, - ACTIONS(4340), 1, anon_sym_RPAREN, - STATE(2131), 1, + STATE(2124), 1, aux_sym_arguments_repeat1, - [60120] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4342), 1, - anon_sym_COMMA, - ACTIONS(4345), 1, - anon_sym_RBRACE, - STATE(2134), 1, - aux_sym_match_block_repeat1, - [60133] = 4, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2599), 1, - anon_sym_EQ_GT, - ACTIONS(4347), 1, - anon_sym_COMMA, - STATE(2135), 1, - aux_sym_match_condition_list_repeat1, - [60146] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4350), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [60155] = 2, - ACTIONS(1575), 1, + [60586] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4352), 3, + ACTIONS(4340), 1, anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(4343), 1, anon_sym_RPAREN, - [60164] = 2, - ACTIONS(1575), 1, + STATE(2120), 1, + aux_sym_formal_parameters_repeat1, + [60599] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4354), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [60173] = 4, - ACTIONS(856), 1, - anon_sym_COMMA, - ACTIONS(1575), 1, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(4345), 1, + anon_sym_EQ_GT, + STATE(2476), 1, + sym__return_type, + [60612] = 3, + ACTIONS(1348), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4356), 1, - anon_sym_RPAREN, - STATE(1984), 1, - aux_sym__list_destructing_repeat1, - [60186] = 2, - ACTIONS(1575), 1, + ACTIONS(1346), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [60623] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4358), 3, - anon_sym_COMMA, + ACTIONS(4349), 1, anon_sym_EQ, - anon_sym_RPAREN, - [60195] = 4, - ACTIONS(856), 1, + ACTIONS(4347), 2, anon_sym_COMMA, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4360), 1, anon_sym_RPAREN, - STATE(1984), 1, - aux_sym__list_destructing_repeat1, - [60208] = 4, - ACTIONS(774), 1, + [60634] = 4, + ACTIONS(789), 1, anon_sym_RPAREN, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4362), 1, + ACTIONS(4351), 1, anon_sym_COMMA, - STATE(2070), 1, + STATE(2043), 1, aux_sym_arguments_repeat1, - [60221] = 4, - ACTIONS(1575), 1, + [60647] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4364), 1, + ACTIONS(4355), 1, + anon_sym_EQ, + ACTIONS(4353), 2, anon_sym_COMMA, - ACTIONS(4366), 1, anon_sym_RPAREN, - STATE(2142), 1, - aux_sym_arguments_repeat1, - [60234] = 4, - ACTIONS(1575), 1, + [60658] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4368), 1, + ACTIONS(4174), 1, anon_sym_COMMA, - ACTIONS(4371), 1, + ACTIONS(4357), 1, anon_sym_RBRACE, - STATE(2144), 1, + STATE(2011), 1, aux_sym_namespace_use_group_repeat1, - [60247] = 3, - ACTIONS(1575), 1, + [60671] = 3, + ACTIONS(1396), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4375), 1, - anon_sym_EQ, - ACTIONS(4373), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [60258] = 2, - ACTIONS(1575), 1, + ACTIONS(1394), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [60682] = 3, + ACTIONS(1230), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3766), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - [60267] = 4, - ACTIONS(818), 1, - anon_sym_RPAREN, - ACTIONS(1575), 1, + ACTIONS(1228), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [60693] = 4, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4377), 1, - anon_sym_COMMA, - STATE(2070), 1, - aux_sym_arguments_repeat1, - [60280] = 4, - ACTIONS(1575), 1, + ACTIONS(4040), 1, + anon_sym_LBRACE, + ACTIONS(4098), 1, + sym_name, + STATE(2258), 1, + sym_namespace_use_group, + [60706] = 3, + ACTIONS(1440), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4379), 1, - anon_sym_COMMA, - ACTIONS(4382), 1, - anon_sym_RPAREN, - STATE(2148), 1, - aux_sym_anonymous_function_use_clause_repeat1, - [60293] = 2, - ACTIONS(1575), 1, + ACTIONS(1438), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [60717] = 3, + ACTIONS(1508), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1506), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [60728] = 3, + ACTIONS(1472), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1470), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [60739] = 3, + ACTIONS(1170), 1, + aux_sym_else_clause_token1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1168), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [60750] = 3, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(1530), 1, + sym_comment, + STATE(937), 1, + sym_compound_statement, + [60760] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3775), 3, + ACTIONS(4359), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - [60302] = 4, - ACTIONS(1575), 1, + [60768] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4384), 1, - anon_sym_COMMA, - ACTIONS(4386), 1, - anon_sym_RPAREN, - STATE(2147), 1, - aux_sym_arguments_repeat1, - [60315] = 2, - ACTIONS(1575), 1, + ACTIONS(4361), 1, + sym_name, + STATE(1770), 1, + sym_namespace_name, + [60778] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4388), 2, + ACTIONS(4363), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60323] = 2, - ACTIONS(1575), 1, + [60786] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4390), 2, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + STATE(2010), 1, + sym_variable_name, + [60796] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4365), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60331] = 2, - ACTIONS(1575), 1, + [60804] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4392), 2, + ACTIONS(4367), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60339] = 2, - ACTIONS(1575), 1, + [60812] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4382), 2, + ACTIONS(4369), 2, anon_sym_COMMA, anon_sym_RPAREN, - [60347] = 2, - ACTIONS(1575), 1, + [60820] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4394), 2, + ACTIONS(3433), 1, anon_sym_LBRACE, - anon_sym_COLON, - [60355] = 2, - ACTIONS(1575), 1, + STATE(1058), 1, + sym_compound_statement, + [60830] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4396), 2, + ACTIONS(3211), 1, + anon_sym_LPAREN, + STATE(2022), 1, + sym_formal_parameters, + [60840] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4343), 2, anon_sym_COMMA, anon_sym_RPAREN, - [60363] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4398), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60371] = 3, - ACTIONS(1575), 1, + [60848] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4400), 1, - anon_sym_LBRACE, - STATE(428), 1, - sym_compound_statement, - [60381] = 2, - ACTIONS(1575), 1, + ACTIONS(4371), 1, + sym_name, + STATE(2519), 1, + sym_namespace_name, + [60858] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(454), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60389] = 2, - ACTIONS(1575), 1, + ACTIONS(3211), 1, + anon_sym_LPAREN, + STATE(1603), 1, + sym_formal_parameters, + [60868] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4402), 2, + ACTIONS(4374), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60397] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4371), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [60405] = 2, - ACTIONS(1575), 1, + [60876] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4404), 2, + ACTIONS(4376), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [60413] = 3, - ACTIONS(1575), 1, + anon_sym_RPAREN, + [60884] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3346), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, - STATE(1633), 1, + STATE(435), 1, sym_declaration_list, - [60423] = 3, - ACTIONS(1575), 1, + [60894] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + STATE(2264), 1, + sym_variable_name, + [60904] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4378), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60912] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4380), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60920] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3440), 1, + ACTIONS(3601), 1, anon_sym_LBRACE, - STATE(1108), 1, - sym_compound_statement, - [60433] = 3, - ACTIONS(1575), 1, + STATE(536), 1, + sym_enum_declaration_list, + [60930] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4382), 2, + anon_sym_string, + anon_sym_int, + [60938] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + STATE(2265), 1, + sym_variable_name, + [60948] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3440), 1, + ACTIONS(3433), 1, anon_sym_LBRACE, - STATE(1053), 1, + STATE(1080), 1, sym_compound_statement, - [60443] = 3, - ACTIONS(1575), 1, + [60958] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4406), 1, + ACTIONS(4371), 1, sym_name, - STATE(2579), 1, + STATE(2522), 1, sym_namespace_name, - [60453] = 3, - ACTIONS(1575), 1, + [60968] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3426), 1, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + STATE(1998), 1, + sym_variable_name, + [60978] = 3, + ACTIONS(389), 1, anon_sym_LBRACE, - STATE(460), 1, - sym_declaration_list, - [60463] = 3, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3426), 1, - anon_sym_LBRACE, - STATE(456), 1, - sym_declaration_list, - [60473] = 3, - ACTIONS(1575), 1, + STATE(1694), 1, + sym_compound_statement, + [60988] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3733), 1, - anon_sym_LBRACE, - STATE(478), 1, - sym_enum_declaration_list, - [60483] = 3, - ACTIONS(1575), 1, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + STATE(2307), 1, + sym_variable_name, + [60998] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_LBRACE, - STATE(1063), 1, - sym_compound_statement, - [60493] = 3, - ACTIONS(1575), 1, + ACTIONS(4384), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [61006] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3440), 1, + ACTIONS(3433), 1, anon_sym_LBRACE, - STATE(1066), 1, + STATE(1104), 1, sym_compound_statement, - [60503] = 3, - ACTIONS(1575), 1, + [61016] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3426), 1, - anon_sym_LBRACE, - STATE(458), 1, - sym_declaration_list, - [60513] = 3, - ACTIONS(1575), 1, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + STATE(2371), 1, + sym_variable_name, + [61026] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3270), 1, - anon_sym_LPAREN, - STATE(1621), 1, - sym_formal_parameters, - [60523] = 3, - ACTIONS(394), 1, + ACTIONS(3433), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, - sym_comment, - STATE(1726), 1, + STATE(1076), 1, sym_compound_statement, - [60533] = 3, - ACTIONS(1575), 1, + [61036] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4406), 1, + ACTIONS(4371), 1, sym_name, - STATE(2559), 1, + STATE(2514), 1, sym_namespace_name, - [60543] = 2, - ACTIONS(3), 1, + [61046] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3862), 2, - sym_heredoc_end, - sym__new_line, - [60551] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4409), 1, + ACTIONS(4386), 1, anon_sym_LPAREN, - STATE(50), 1, + STATE(33), 1, sym_parenthesized_expression, - [60561] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4406), 1, - sym_name, - STATE(2551), 1, - sym_namespace_name, - [60571] = 3, - ACTIONS(1575), 1, + [61056] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4409), 1, + ACTIONS(4386), 1, anon_sym_LPAREN, - STATE(43), 1, + STATE(36), 1, sym_parenthesized_expression, - [60581] = 3, - ACTIONS(1575), 1, + [61066] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4411), 1, - anon_sym_SEMI, - ACTIONS(4413), 1, - sym__automatic_semicolon, - [60591] = 3, - ACTIONS(1575), 1, + ACTIONS(2578), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61074] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4058), 1, anon_sym_LPAREN, - STATE(2225), 1, + STATE(2238), 1, sym_parenthesized_expression, - [60601] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3426), 1, - anon_sym_LBRACE, - STATE(436), 1, - sym_declaration_list, - [60611] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3196), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [60619] = 2, - ACTIONS(1575), 1, + [61084] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4415), 2, + ACTIONS(2564), 2, anon_sym_COMMA, anon_sym_RPAREN, - [60627] = 3, - ACTIONS(1575), 1, + [61092] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4058), 1, anon_sym_LPAREN, - STATE(1889), 1, + STATE(1974), 1, sym_parenthesized_expression, - [60637] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3346), 1, - anon_sym_LBRACE, - STATE(1100), 1, - sym_declaration_list, - [60647] = 3, - ACTIONS(1575), 1, + [61102] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_LBRACE, - STATE(1109), 1, - sym_compound_statement, - [60657] = 2, - ACTIONS(1575), 1, + ACTIONS(4209), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [61110] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4417), 2, + ACTIONS(3601), 1, anon_sym_LBRACE, - anon_sym_COLON, - [60665] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4345), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [60673] = 2, - ACTIONS(1575), 1, + STATE(556), 1, + sym_enum_declaration_list, + [61120] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4419), 2, + ACTIONS(4388), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60681] = 3, - ACTIONS(1575), 1, + [61128] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4421), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(4423), 1, - aux_sym__arrow_function_header_token1, - [60691] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4270), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [60699] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4425), 2, + ACTIONS(4390), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60707] = 2, - ACTIONS(1575), 1, + [61136] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(488), 2, + ACTIONS(521), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60715] = 3, + [61144] = 3, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - STATE(533), 1, + STATE(467), 1, sym_compound_statement, - [60725] = 2, - ACTIONS(1575), 1, + [61154] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3846), 2, + ACTIONS(4392), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [61162] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3953), 2, anon_sym_EQ, anon_sym_RPAREN, - [60733] = 3, - ACTIONS(1575), 1, + [61170] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4400), 1, + ACTIONS(4394), 2, anon_sym_LBRACE, - STATE(430), 1, + anon_sym_COLON, + [61178] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3433), 1, + anon_sym_LBRACE, + STATE(1065), 1, sym_compound_statement, - [60743] = 2, - ACTIONS(1575), 1, + [61188] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4427), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60751] = 3, - ACTIONS(1575), 1, + ACTIONS(4396), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61196] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4429), 1, + ACTIONS(4398), 1, sym_name, - STATE(2517), 1, + STATE(2445), 1, sym_namespace_name, - [60761] = 2, - ACTIONS(1575), 1, + [61206] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4432), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60769] = 2, - ACTIONS(1575), 1, + ACTIONS(4267), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [61214] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4298), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60777] = 3, - ACTIONS(1575), 1, + ACTIONS(2512), 1, + anon_sym_RPAREN, + ACTIONS(4401), 1, + anon_sym_EQ, + [61224] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2657), 1, + ACTIONS(2642), 1, anon_sym_RPAREN, - ACTIONS(4434), 1, + ACTIONS(4401), 1, anon_sym_EQ, - [60787] = 3, - ACTIONS(394), 1, - anon_sym_LBRACE, - ACTIONS(1575), 1, + [61234] = 3, + ACTIONS(499), 1, + anon_sym_COLON, + ACTIONS(1530), 1, sym_comment, - STATE(1717), 1, - sym_compound_statement, - [60797] = 3, - ACTIONS(1575), 1, + STATE(1872), 1, + sym_colon_block, + [61244] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4406), 1, - sym_name, - STATE(2513), 1, - sym_namespace_name, - [60807] = 2, - ACTIONS(1575), 1, + ACTIONS(2566), 1, + anon_sym_RPAREN, + ACTIONS(4401), 1, + anon_sym_EQ, + [61254] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4436), 2, + ACTIONS(4403), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60815] = 2, - ACTIONS(1575), 1, + [61262] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4438), 2, - sym__automatic_semicolon, + ACTIONS(4405), 1, anon_sym_SEMI, - [60823] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4440), 2, + ACTIONS(4407), 1, sym__automatic_semicolon, - anon_sym_SEMI, - [60831] = 2, - ACTIONS(1575), 1, + [61272] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4371), 1, + sym_name, + STATE(2440), 1, + sym_namespace_name, + [61282] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4409), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60839] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4444), 2, - anon_sym_LBRACE, - anon_sym_COLON, - [60847] = 2, - ACTIONS(1575), 1, + [61290] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4446), 2, + ACTIONS(4411), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [60855] = 2, - ACTIONS(1575), 1, + anon_sym_RBRACK, + [61298] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3347), 1, + anon_sym_LBRACE, + STATE(1128), 1, + sym_declaration_list, + [61308] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4448), 2, + ACTIONS(493), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60863] = 3, - ACTIONS(1575), 1, + [61316] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - STATE(2156), 1, - sym_variable_name, - [60873] = 3, - ACTIONS(1575), 1, + ACTIONS(4414), 1, + anon_sym_LBRACE, + STATE(430), 1, + sym_compound_statement, + [61326] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3270), 1, + ACTIONS(3211), 1, anon_sym_LPAREN, - STATE(1912), 1, + STATE(1896), 1, sym_formal_parameters, - [60883] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4450), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [60891] = 3, - ACTIONS(1575), 1, + [61336] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1727), 1, - anon_sym_BSLASH, - STATE(2243), 1, - aux_sym_namespace_name_repeat1, - [60901] = 3, - ACTIONS(1575), 1, + ACTIONS(4386), 1, + anon_sym_LPAREN, + STATE(20), 1, + sym_parenthesized_expression, + [61346] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3362), 1, + ACTIONS(3347), 1, anon_sym_LBRACE, - STATE(2075), 1, + STATE(1107), 1, sym_declaration_list, - [60911] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - STATE(2145), 1, - sym_variable_name, - [60921] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4452), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [60929] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2583), 1, - anon_sym_RPAREN, - ACTIONS(4434), 1, - anon_sym_EQ, - [60939] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4454), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [60947] = 3, - ACTIONS(1575), 1, + [61356] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4456), 1, + ACTIONS(4386), 1, anon_sym_LPAREN, - ACTIONS(4458), 1, - anon_sym_RPAREN, - [60957] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4460), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60965] = 2, - ACTIONS(1575), 1, + STATE(68), 1, + sym_parenthesized_expression, + [61366] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4462), 2, + ACTIONS(4416), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60973] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3919), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [60981] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4464), 1, + [61374] = 3, + ACTIONS(389), 1, anon_sym_LBRACE, - STATE(1121), 1, - sym_match_block, - [60991] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, + sym_comment, + STATE(1703), 1, + sym_compound_statement, + [61384] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4466), 2, + ACTIONS(4418), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60999] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2073), 1, - sym_enum_declaration_list, - [61009] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3362), 1, - anon_sym_LBRACE, - STATE(959), 1, - sym_declaration_list, - [61019] = 2, - ACTIONS(1575), 1, + [61392] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4468), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [61027] = 3, - ACTIONS(1575), 1, + ACTIONS(4386), 1, + anon_sym_LPAREN, + STATE(50), 1, + sym_parenthesized_expression, + [61402] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4409), 1, + ACTIONS(4058), 1, anon_sym_LPAREN, - STATE(59), 1, + STATE(2373), 1, sym_parenthesized_expression, - [61037] = 3, - ACTIONS(1575), 1, + [61412] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4471), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(4473), 1, - aux_sym__arrow_function_header_token1, - [61047] = 2, - ACTIONS(1575), 1, + ACTIONS(4058), 1, + anon_sym_LPAREN, + STATE(1957), 1, + sym_parenthesized_expression, + [61422] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4114), 2, + ACTIONS(4255), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [61055] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4475), 1, - anon_sym_LPAREN, - STATE(1655), 1, - sym_formal_parameters, - [61065] = 3, - ACTIONS(1575), 1, + anon_sym_RBRACK, + [61430] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_LBRACE, - STATE(1091), 1, - sym_compound_statement, - [61075] = 3, - ACTIONS(394), 1, + ACTIONS(3094), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(3096), 1, + aux_sym__arrow_function_header_token1, + [61440] = 3, + ACTIONS(389), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - STATE(1660), 1, + STATE(2111), 1, sym_compound_statement, - [61085] = 3, - ACTIONS(1575), 1, + [61450] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4423), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(4477), 1, - aux_sym_namespace_use_declaration_token2, - [61095] = 3, - ACTIONS(1575), 1, + ACTIONS(3199), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [61458] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4409), 1, - anon_sym_LPAREN, - STATE(46), 1, - sym_parenthesized_expression, - [61105] = 3, - ACTIONS(1575), 1, + ACTIONS(3859), 1, + anon_sym_LBRACE, + STATE(540), 1, + sym_declaration_list, + [61468] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_LPAREN, - STATE(2259), 1, - sym_parenthesized_expression, - [61115] = 3, - ACTIONS(1575), 1, + ACTIONS(4420), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [61476] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_LPAREN, - STATE(1906), 1, - sym_parenthesized_expression, - [61125] = 3, + ACTIONS(1652), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4479), 1, + ACTIONS(4422), 1, sym__new_line, - ACTIONS(4481), 1, + ACTIONS(4424), 1, sym_heredoc_end, - [61135] = 3, - ACTIONS(1575), 1, + [61494] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4409), 1, - anon_sym_LPAREN, - STATE(55), 1, - sym_parenthesized_expression, - [61145] = 3, - ACTIONS(1575), 1, + ACTIONS(4426), 1, + sym__new_line, + ACTIONS(4428), 1, + sym_heredoc_end, + [61504] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3426), 1, + ACTIONS(3347), 1, anon_sym_LBRACE, - STATE(454), 1, + STATE(1045), 1, sym_declaration_list, - [61155] = 3, - ACTIONS(1575), 1, + [61514] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4483), 1, - anon_sym_BSLASH, - STATE(1700), 1, - aux_sym_namespace_name_repeat1, - [61165] = 3, - ACTIONS(1575), 1, + ACTIONS(4218), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61522] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3074), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(3076), 1, + aux_sym__arrow_function_header_token1, + [61532] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3481), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [61540] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3426), 1, + ACTIONS(3347), 1, anon_sym_LBRACE, - STATE(451), 1, + STATE(1044), 1, sym_declaration_list, - [61175] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3440), 1, + [61550] = 3, + ACTIONS(389), 1, anon_sym_LBRACE, - STATE(1084), 1, + ACTIONS(1530), 1, + sym_comment, + STATE(904), 1, sym_compound_statement, - [61185] = 3, - ACTIONS(1575), 1, + [61560] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4386), 1, + anon_sym_LPAREN, + STATE(65), 1, + sym_parenthesized_expression, + [61570] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3440), 1, + ACTIONS(3433), 1, anon_sym_LBRACE, - STATE(1081), 1, + STATE(1061), 1, sym_compound_statement, - [61195] = 3, - ACTIONS(1575), 1, + [61580] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3270), 1, + ACTIONS(3211), 1, anon_sym_LPAREN, - STATE(1914), 1, + STATE(1873), 1, sym_formal_parameters, - [61205] = 3, - ACTIONS(1575), 1, + [61590] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_LBRACE, - STATE(1076), 1, - sym_compound_statement, - [61215] = 3, - ACTIONS(1575), 1, + ACTIONS(4152), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61598] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_LBRACE, - STATE(1073), 1, - sym_compound_statement, - [61225] = 3, - ACTIONS(1575), 1, + ACTIONS(4430), 1, + anon_sym_LPAREN, + ACTIONS(4432), 1, + anon_sym_RPAREN, + [61608] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3426), 1, - anon_sym_LBRACE, - STATE(445), 1, - sym_declaration_list, - [61235] = 3, - ACTIONS(394), 1, + ACTIONS(4434), 2, + anon_sym_SEMI, + anon_sym_COLON, + [61616] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3076), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(4436), 1, + aux_sym_namespace_use_declaration_token2, + [61626] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4438), 1, + anon_sym_LPAREN, + STATE(1708), 1, + sym_formal_parameters, + [61636] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4440), 2, anon_sym_LBRACE, - ACTIONS(1575), 1, + anon_sym_COLON, + [61644] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4442), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [61652] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4444), 2, + anon_sym_string, + anon_sym_int, + [61660] = 3, + ACTIONS(1530), 1, sym_comment, - STATE(2042), 1, + ACTIONS(3433), 1, + anon_sym_LBRACE, + STATE(1064), 1, sym_compound_statement, - [61245] = 3, - ACTIONS(1575), 1, + [61670] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3426), 1, + ACTIONS(3337), 1, anon_sym_LBRACE, - STATE(434), 1, + STATE(1891), 1, sym_declaration_list, - [61255] = 2, - ACTIONS(1575), 1, + [61680] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2519), 2, + ACTIONS(4446), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61263] = 2, - ACTIONS(1575), 1, + [61688] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2475), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [61271] = 3, - ACTIONS(1575), 1, + ACTIONS(4386), 1, + anon_sym_LPAREN, + STATE(47), 1, + sym_parenthesized_expression, + [61698] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4473), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(4486), 1, - aux_sym_namespace_use_declaration_token2, - [61281] = 3, - ACTIONS(29), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, - sym_comment, - STATE(508), 1, - sym_compound_statement, - [61291] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4488), 1, - sym__new_line, - ACTIONS(4490), 1, - sym_heredoc_end, - [61301] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4406), 1, - sym_name, - STATE(2421), 1, - sym_namespace_name, - [61311] = 3, - ACTIONS(1575), 1, + STATE(441), 1, + sym_declaration_list, + [61708] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4492), 1, + ACTIONS(4448), 1, anon_sym_LBRACE, - STATE(957), 1, + STATE(1138), 1, sym_match_block, - [61321] = 2, - ACTIONS(1575), 1, + [61718] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4494), 2, + ACTIONS(4450), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61329] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 1, - sym__new_line, - ACTIONS(4498), 1, - sym_heredoc_end, - [61339] = 3, - ACTIONS(1575), 1, + [61726] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4409), 1, + ACTIONS(4452), 1, anon_sym_LPAREN, - STATE(24), 1, + STATE(2375), 1, sym_parenthesized_expression, - [61349] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - STATE(2389), 1, - sym_variable_name, - [61359] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3315), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [61367] = 2, - ACTIONS(1575), 1, + [61736] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4500), 2, - anon_sym_string, - anon_sym_int, - [61375] = 2, - ACTIONS(1575), 1, + ACTIONS(3433), 1, + anon_sym_LBRACE, + STATE(1067), 1, + sym_compound_statement, + [61746] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4175), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [61383] = 2, - ACTIONS(1575), 1, + ACTIONS(3437), 1, + anon_sym_LBRACE, + STATE(448), 1, + sym_declaration_list, + [61756] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4502), 2, + ACTIONS(4454), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61391] = 2, - ACTIONS(1575), 1, + [61764] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4504), 2, + ACTIONS(4456), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61399] = 2, - ACTIONS(1575), 1, + [61772] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4113), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [61780] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4458), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [61788] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3211), 1, + anon_sym_LPAREN, + STATE(1588), 1, + sym_formal_parameters, + [61798] = 3, + ACTIONS(397), 1, + anon_sym_COLON, + ACTIONS(1530), 1, + sym_comment, + STATE(2536), 1, + sym_colon_block, + [61808] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4506), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [61407] = 2, - ACTIONS(1575), 1, + ACTIONS(4058), 1, + anon_sym_LPAREN, + STATE(2187), 1, + sym_parenthesized_expression, + [61818] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4508), 2, + ACTIONS(4461), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61415] = 2, - ACTIONS(1575), 1, + [61826] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4510), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [61423] = 3, - ACTIONS(1575), 1, + ACTIONS(3433), 1, + anon_sym_LBRACE, + STATE(1073), 1, + sym_compound_statement, + [61836] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3362), 1, + ACTIONS(4463), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [61844] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3437), 1, anon_sym_LBRACE, - STATE(2099), 1, + STATE(439), 1, sym_declaration_list, - [61433] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4512), 1, - anon_sym_LPAREN, - STATE(2368), 1, - sym_parenthesized_expression, - [61443] = 3, - ACTIONS(1575), 1, + [61854] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3346), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, - STATE(1050), 1, + STATE(447), 1, sym_declaration_list, - [61453] = 3, - ACTIONS(1575), 1, + [61864] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3346), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, - STATE(1049), 1, + STATE(444), 1, sym_declaration_list, - [61463] = 3, - ACTIONS(1575), 1, + [61874] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4475), 1, + ACTIONS(4386), 1, anon_sym_LPAREN, - STATE(1693), 1, - sym_formal_parameters, - [61473] = 2, - ACTIONS(1575), 1, + STATE(82), 1, + sym_parenthesized_expression, + [61884] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(1688), 1, + anon_sym_BSLASH, + STATE(2288), 1, + aux_sym_namespace_name_repeat1, + [61894] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4514), 2, + ACTIONS(4465), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61481] = 3, - ACTIONS(1575), 1, + [61902] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3270), 1, - anon_sym_LPAREN, - STATE(1965), 1, - sym_formal_parameters, - [61491] = 3, - ACTIONS(1575), 1, + ACTIONS(3826), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [61910] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_LBRACE, - STATE(1045), 1, - sym_compound_statement, - [61501] = 3, - ACTIONS(1575), 1, + ACTIONS(4467), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [61918] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3802), 1, - anon_sym_LBRACE, - STATE(479), 1, - sym_declaration_list, - [61511] = 3, - ACTIONS(1575), 1, + ACTIONS(4469), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [61926] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3270), 1, + ACTIONS(3211), 1, anon_sym_LPAREN, - STATE(1625), 1, + STATE(1620), 1, sym_formal_parameters, - [61521] = 2, - ACTIONS(1575), 1, + [61936] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(468), 2, + ACTIONS(4471), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61529] = 3, - ACTIONS(394), 1, - anon_sym_LBRACE, - ACTIONS(1575), 1, + [61944] = 2, + ACTIONS(1530), 1, sym_comment, - STATE(940), 1, - sym_compound_statement, - [61539] = 2, - ACTIONS(1575), 1, + ACTIONS(4473), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61952] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4516), 2, - anon_sym_string, - anon_sym_int, - [61547] = 3, - ACTIONS(1575), 1, + ACTIONS(4475), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61960] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_SEMI, - ACTIONS(4520), 1, + ACTIONS(4477), 2, sym__automatic_semicolon, - [61557] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3733), 1, - anon_sym_LBRACE, - STATE(511), 1, - sym_enum_declaration_list, - [61567] = 2, - ACTIONS(1575), 1, + anon_sym_SEMI, + [61968] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4522), 2, + ACTIONS(4479), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61575] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3346), 1, - anon_sym_LBRACE, - STATE(1636), 1, - sym_declaration_list, - [61585] = 2, - ACTIONS(1575), 1, + [61976] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(524), 2, + ACTIONS(2452), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61593] = 3, - ACTIONS(1575), 1, + [61984] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3426), 1, + ACTIONS(3433), 1, anon_sym_LBRACE, - STATE(437), 1, - sym_declaration_list, - [61603] = 3, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(1575), 1, + STATE(1116), 1, + sym_compound_statement, + [61994] = 3, + ACTIONS(1530), 1, sym_comment, - STATE(2130), 1, - sym_colon_block, - [61613] = 3, - ACTIONS(1575), 1, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + STATE(1973), 1, + sym_variable_name, + [62004] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2539), 1, - anon_sym_RPAREN, - ACTIONS(4434), 1, - anon_sym_EQ, - [61623] = 2, - ACTIONS(1575), 1, + ACTIONS(4481), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [62012] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3893), 2, + ACTIONS(4483), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61631] = 3, - ACTIONS(1575), 1, + [62020] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4485), 2, + anon_sym_string, + anon_sym_int, + [62028] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3270), 1, + ACTIONS(3211), 1, anon_sym_LPAREN, - STATE(1623), 1, + STATE(1602), 1, sym_formal_parameters, - [61641] = 2, - ACTIONS(1575), 1, + [62038] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4487), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [62046] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4524), 2, + ACTIONS(4489), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61649] = 3, - ACTIONS(1575), 1, + [62054] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3270), 1, + ACTIONS(3211), 1, anon_sym_LPAREN, - STATE(1581), 1, + STATE(1590), 1, sym_formal_parameters, - [61659] = 3, - ACTIONS(394), 1, - anon_sym_LBRACE, - ACTIONS(1575), 1, + [62064] = 3, + ACTIONS(1530), 1, sym_comment, - STATE(1708), 1, + ACTIONS(3433), 1, + anon_sym_LBRACE, + STATE(1119), 1, sym_compound_statement, - [61669] = 2, - ACTIONS(1575), 1, + [62074] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4526), 2, + ACTIONS(531), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61677] = 3, - ACTIONS(1575), 1, + [62082] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4400), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, - STATE(432), 1, - sym_compound_statement, - [61687] = 3, - ACTIONS(394), 1, + STATE(436), 1, + sym_declaration_list, + [62092] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3601), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, + STATE(552), 1, + sym_enum_declaration_list, + [62102] = 2, + ACTIONS(1530), 1, sym_comment, - STATE(926), 1, + ACTIONS(4491), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [62110] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3433), 1, + anon_sym_LBRACE, + STATE(1123), 1, sym_compound_statement, - [61697] = 2, - ACTIONS(1575), 1, + [62120] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4528), 2, + ACTIONS(515), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61705] = 3, - ACTIONS(1575), 1, + [62128] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4512), 1, - anon_sym_LPAREN, - STATE(2151), 1, - sym_parenthesized_expression, - [61715] = 3, - ACTIONS(394), 1, + ACTIONS(2588), 1, + anon_sym_RPAREN, + ACTIONS(4401), 1, + anon_sym_EQ, + [62138] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3433), 1, + anon_sym_LBRACE, + STATE(1124), 1, + sym_compound_statement, + [62148] = 3, + ACTIONS(389), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - STATE(924), 1, + STATE(1683), 1, sym_compound_statement, - [61725] = 3, - ACTIONS(1575), 1, + [62158] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3733), 1, - anon_sym_LBRACE, - STATE(528), 1, - sym_enum_declaration_list, - [61735] = 3, - ACTIONS(1575), 1, + ACTIONS(4493), 1, + anon_sym_BSLASH, + STATE(1675), 1, + aux_sym_namespace_name_repeat1, + [62168] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3346), 1, - anon_sym_LBRACE, - STATE(1092), 1, - sym_declaration_list, - [61745] = 2, - ACTIONS(1575), 1, + ACTIONS(3904), 2, + sym_heredoc_end, + sym__new_line, + [62176] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4496), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61753] = 3, - ACTIONS(394), 1, - anon_sym_LBRACE, - ACTIONS(1575), 1, - sym_comment, - STATE(949), 1, - sym_compound_statement, - [61763] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3270), 1, - anon_sym_LPAREN, - STATE(1565), 1, - sym_formal_parameters, - [61773] = 3, - ACTIONS(1575), 1, + [62184] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3346), 1, + ACTIONS(3347), 1, anon_sym_LBRACE, - STATE(1677), 1, + STATE(1685), 1, sym_declaration_list, - [61783] = 3, - ACTIONS(1575), 1, + [62194] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3346), 1, + ACTIONS(3273), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [62202] = 3, + ACTIONS(389), 1, anon_sym_LBRACE, - STATE(1679), 1, - sym_declaration_list, - [61793] = 3, - ACTIONS(1575), 1, + ACTIONS(1530), 1, + sym_comment, + STATE(939), 1, + sym_compound_statement, + [62212] = 3, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(1530), 1, + sym_comment, + STATE(941), 1, + sym_compound_statement, + [62222] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3608), 1, + ACTIONS(3693), 1, anon_sym_LBRACE, - STATE(1962), 1, + STATE(1939), 1, sym_enum_declaration_list, - [61803] = 3, - ACTIONS(394), 1, + [62232] = 3, + ACTIONS(389), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - STATE(923), 1, + STATE(942), 1, sym_compound_statement, - [61813] = 2, - ACTIONS(1575), 1, + [62242] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4092), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [61821] = 3, - ACTIONS(394), 1, + ACTIONS(3433), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, - sym_comment, - STATE(946), 1, + STATE(1094), 1, sym_compound_statement, - [61831] = 3, - ACTIONS(394), 1, + [62252] = 3, + ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - STATE(922), 1, + STATE(508), 1, sym_compound_statement, - [61841] = 3, - ACTIONS(394), 1, + [62262] = 3, + ACTIONS(389), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - STATE(2107), 1, + STATE(1930), 1, sym_compound_statement, - [61851] = 3, - ACTIONS(1575), 1, + [62272] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - STATE(2210), 1, - sym_variable_name, - [61861] = 3, - ACTIONS(1575), 1, + ACTIONS(4178), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [62280] = 3, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2629), 1, - anon_sym_RPAREN, - ACTIONS(4434), 1, - anon_sym_EQ, - [61871] = 2, - ACTIONS(1575), 1, + STATE(944), 1, + sym_compound_statement, + [62290] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4532), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [61879] = 3, - ACTIONS(1575), 1, + ACTIONS(4438), 1, + anon_sym_LPAREN, + STATE(1679), 1, + sym_formal_parameters, + [62300] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3440), 1, + ACTIONS(3433), 1, anon_sym_LBRACE, - STATE(1044), 1, + STATE(1085), 1, sym_compound_statement, - [61889] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4534), 1, - sym__new_line, - ACTIONS(4536), 1, - sym_heredoc_end, - [61899] = 3, - ACTIONS(1575), 1, + [62310] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2417), 1, - anon_sym_COLON, - ACTIONS(4456), 1, - anon_sym_LPAREN, - [61909] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3346), 1, + ACTIONS(4371), 1, + sym_name, + STATE(2437), 1, + sym_namespace_name, + [62320] = 3, + ACTIONS(389), 1, anon_sym_LBRACE, - STATE(1686), 1, - sym_declaration_list, - [61919] = 3, - ACTIONS(1575), 1, + ACTIONS(1530), 1, + sym_comment, + STATE(934), 1, + sym_compound_statement, + [62330] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3346), 1, + ACTIONS(3337), 1, anon_sym_LBRACE, - STATE(1723), 1, + STATE(945), 1, sym_declaration_list, - [61929] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4409), 1, - anon_sym_LPAREN, - STATE(61), 1, - sym_parenthesized_expression, - [61939] = 3, - ACTIONS(1575), 1, + [62340] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - STATE(2214), 1, - sym_variable_name, - [61949] = 2, - ACTIONS(1575), 1, + ACTIONS(4498), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [62348] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3490), 2, - sym__automatic_semicolon, + ACTIONS(4500), 1, anon_sym_SEMI, - [61957] = 3, - ACTIONS(1575), 1, + ACTIONS(4502), 1, + sym__automatic_semicolon, + [62358] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1754), 1, + ACTIONS(1711), 1, anon_sym_DOLLAR, - STATE(2116), 1, + STATE(2151), 1, sym_variable_name, - [61967] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2609), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [61975] = 3, - ACTIONS(1575), 1, + [62368] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1754), 1, + ACTIONS(1711), 1, anon_sym_DOLLAR, - STATE(2218), 1, + STATE(2235), 1, sym_variable_name, - [61985] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3270), 1, - anon_sym_LPAREN, - STATE(1599), 1, - sym_formal_parameters, - [61995] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3270), 1, - anon_sym_LPAREN, - STATE(1999), 1, - sym_formal_parameters, - [62005] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4538), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [62013] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3362), 1, + [62378] = 3, + ACTIONS(389), 1, anon_sym_LBRACE, - STATE(917), 1, - sym_declaration_list, - [62023] = 3, - ACTIONS(1575), 1, + ACTIONS(1530), 1, + sym_comment, + STATE(1701), 1, + sym_compound_statement, + [62388] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1754), 1, + ACTIONS(1711), 1, anon_sym_DOLLAR, - STATE(2220), 1, + STATE(2148), 1, sym_variable_name, - [62033] = 2, - ACTIONS(1575), 1, + [62398] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4540), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [62041] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4542), 1, - anon_sym_SEMI, - ACTIONS(4544), 1, + ACTIONS(4504), 2, sym__automatic_semicolon, - [62051] = 2, - ACTIONS(1575), 1, + anon_sym_SEMI, + [62406] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4212), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [62059] = 3, - ACTIONS(394), 1, - anon_sym_LBRACE, - ACTIONS(1575), 1, + ACTIONS(4506), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [62414] = 3, + ACTIONS(1530), 1, sym_comment, - STATE(1706), 1, - sym_compound_statement, - [62069] = 2, - ACTIONS(1575), 1, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + STATE(2123), 1, + sym_variable_name, + [62424] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4546), 2, + ACTIONS(4508), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62077] = 3, - ACTIONS(1575), 1, + [62432] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1754), 1, + ACTIONS(1711), 1, anon_sym_DOLLAR, - STATE(2092), 1, + STATE(2141), 1, sym_variable_name, - [62087] = 2, - ACTIONS(1575), 1, + [62442] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4548), 2, + ACTIONS(4510), 2, anon_sym_COMMA, anon_sym_RPAREN, - [62095] = 2, - ACTIONS(1575), 1, + [62450] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4550), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62103] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4552), 1, - sym_name, - STATE(1830), 1, - sym_namespace_name, - [62113] = 2, - ACTIONS(1575), 1, + ACTIONS(3347), 1, + anon_sym_LBRACE, + STATE(1709), 1, + sym_declaration_list, + [62460] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4554), 2, + ACTIONS(3891), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62121] = 3, - ACTIONS(394), 1, - anon_sym_LBRACE, - ACTIONS(1575), 1, + [62468] = 3, + ACTIONS(1530), 1, sym_comment, - STATE(918), 1, - sym_compound_statement, - [62131] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3346), 1, + ACTIONS(3347), 1, anon_sym_LBRACE, - STATE(1715), 1, + STATE(1716), 1, sym_declaration_list, - [62141] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3270), 1, - anon_sym_LPAREN, - STATE(2080), 1, - sym_formal_parameters, - [62151] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3270), 1, - anon_sym_LPAREN, - STATE(1585), 1, - sym_formal_parameters, - [62161] = 3, - ACTIONS(394), 1, + [62478] = 3, + ACTIONS(389), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - STATE(950), 1, + STATE(911), 1, sym_compound_statement, - [62171] = 3, - ACTIONS(1575), 1, + [62488] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3270), 1, - anon_sym_LPAREN, - STATE(2001), 1, - sym_formal_parameters, - [62181] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3346), 1, + ACTIONS(3347), 1, anon_sym_LBRACE, - STATE(1722), 1, - sym_declaration_list, - [62191] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3426), 1, - anon_sym_LBRACE, - STATE(441), 1, + STATE(1717), 1, sym_declaration_list, - [62201] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3733), 1, + [62498] = 3, + ACTIONS(389), 1, anon_sym_LBRACE, - STATE(539), 1, - sym_enum_declaration_list, - [62211] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4556), 2, - anon_sym_string, - anon_sym_int, - [62219] = 3, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_LBRACE, - STATE(1064), 1, + STATE(922), 1, sym_compound_statement, - [62229] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4558), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62237] = 3, - ACTIONS(394), 1, + [62508] = 3, + ACTIONS(389), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, - sym_comment, - STATE(911), 1, - sym_compound_statement, - [62247] = 3, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_LBRACE, - STATE(1078), 1, + STATE(963), 1, sym_compound_statement, - [62257] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3426), 1, - anon_sym_LBRACE, - STATE(449), 1, - sym_declaration_list, - [62267] = 2, - ACTIONS(1575), 1, + [62518] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2591), 2, + ACTIONS(2584), 2, anon_sym_COMMA, anon_sym_RPAREN, - [62275] = 3, - ACTIONS(394), 1, + [62526] = 3, + ACTIONS(389), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - STATE(908), 1, + STATE(961), 1, sym_compound_statement, - [62285] = 2, - ACTIONS(1575), 1, + [62536] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2601), 2, + ACTIONS(3988), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [62293] = 3, - ACTIONS(394), 1, + anon_sym_RBRACE, + [62544] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3337), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, + STATE(2048), 1, + sym_declaration_list, + [62554] = 3, + ACTIONS(1530), 1, sym_comment, - STATE(921), 1, - sym_compound_statement, - [62303] = 3, - ACTIONS(394), 1, + ACTIONS(3211), 1, + anon_sym_LPAREN, + STATE(2102), 1, + sym_formal_parameters, + [62564] = 3, + ACTIONS(389), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - STATE(916), 1, + STATE(956), 1, sym_compound_statement, - [62313] = 2, - ACTIONS(1575), 1, + [62574] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4560), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62321] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4562), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62329] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4564), 2, - sym__automatic_semicolon, + ACTIONS(2452), 2, anon_sym_SEMI, - [62337] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3346), 1, - anon_sym_LBRACE, - STATE(1710), 1, - sym_declaration_list, - [62347] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4183), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [62355] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3346), 1, - anon_sym_LBRACE, - STATE(1721), 1, - sym_declaration_list, - [62365] = 3, + anon_sym_RPAREN, + [62582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4566), 1, + ACTIONS(4512), 1, sym__new_line, - ACTIONS(4568), 1, + ACTIONS(4514), 1, sym_heredoc_end, - [62375] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4570), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [62383] = 3, + [62592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4573), 1, + ACTIONS(4516), 1, sym__new_line, - ACTIONS(4575), 1, + ACTIONS(4518), 1, sym_heredoc_end, - [62393] = 3, - ACTIONS(1575), 1, + [62602] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3362), 1, + ACTIONS(3337), 1, anon_sym_LBRACE, - STATE(912), 1, + STATE(955), 1, sym_declaration_list, - [62403] = 3, - ACTIONS(1575), 1, + [62612] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3362), 1, + ACTIONS(3337), 1, anon_sym_LBRACE, - STATE(909), 1, + STATE(954), 1, sym_declaration_list, - [62413] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4577), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62421] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4579), 1, - anon_sym_SEMI, - ACTIONS(4581), 1, - sym__automatic_semicolon, - [62431] = 2, - ACTIONS(1575), 1, + [62622] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1697), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [62439] = 2, - ACTIONS(1575), 1, + ACTIONS(3347), 1, + anon_sym_LBRACE, + STATE(1129), 1, + sym_declaration_list, + [62632] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4583), 2, + ACTIONS(4520), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62447] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3346), 1, - anon_sym_LBRACE, - STATE(1134), 1, - sym_declaration_list, - [62457] = 3, - ACTIONS(1575), 1, + [62640] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3346), 1, + ACTIONS(4522), 2, anon_sym_LBRACE, - STATE(1137), 1, - sym_declaration_list, - [62467] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4585), 2, - anon_sym_SEMI, anon_sym_COLON, - [62475] = 3, - ACTIONS(1575), 1, + [62648] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4409), 1, - anon_sym_LPAREN, - STATE(82), 1, - sym_parenthesized_expression, - [62485] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4587), 2, - sym__automatic_semicolon, + ACTIONS(4524), 1, anon_sym_SEMI, - [62493] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4589), 2, + ACTIONS(4526), 1, sym__automatic_semicolon, - anon_sym_SEMI, - [62501] = 2, - ACTIONS(1575), 1, + [62658] = 3, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(3211), 1, + anon_sym_LPAREN, + STATE(2116), 1, + sym_formal_parameters, + [62668] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3492), 2, + ACTIONS(4528), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62509] = 2, - ACTIONS(1575), 1, + [62676] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3944), 2, + ACTIONS(4530), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62517] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4591), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [62525] = 3, - ACTIONS(1575), 1, + [62684] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3608), 1, + ACTIONS(3693), 1, anon_sym_LBRACE, - STATE(2035), 1, + STATE(1912), 1, sym_enum_declaration_list, - [62535] = 3, - ACTIONS(372), 1, - anon_sym_COLON, - ACTIONS(1575), 1, + [62694] = 3, + ACTIONS(1530), 1, sym_comment, - STATE(2489), 1, - sym_colon_block, - [62545] = 3, - ACTIONS(1575), 1, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + STATE(2318), 1, + sym_variable_name, + [62704] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_LPAREN, - STATE(2291), 1, - sym_parenthesized_expression, - [62555] = 2, - ACTIONS(1575), 1, + ACTIONS(3347), 1, + anon_sym_LBRACE, + STATE(1054), 1, + sym_declaration_list, + [62714] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4593), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62563] = 3, - ACTIONS(1575), 1, + ACTIONS(3693), 1, + anon_sym_LBRACE, + STATE(2079), 1, + sym_enum_declaration_list, + [62724] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4409), 1, + ACTIONS(3211), 1, anon_sym_LPAREN, - STATE(81), 1, - sym_parenthesized_expression, - [62573] = 3, - ACTIONS(1575), 1, + STATE(1621), 1, + sym_formal_parameters, + [62734] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3802), 1, + ACTIONS(3347), 1, anon_sym_LBRACE, - STATE(523), 1, + STATE(1654), 1, sym_declaration_list, - [62583] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4595), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62591] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4597), 2, - anon_sym_string, - anon_sym_int, - [62599] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - STATE(2342), 1, - sym_variable_name, - [62609] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4599), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62617] = 2, - ACTIONS(1575), 1, + [62744] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4601), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62625] = 2, - ACTIONS(1575), 1, + ACTIONS(2572), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [62752] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2475), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62633] = 3, - ACTIONS(394), 1, + ACTIONS(3347), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, + STATE(1635), 1, + sym_declaration_list, + [62762] = 3, + ACTIONS(1530), 1, sym_comment, - STATE(930), 1, - sym_compound_statement, - [62643] = 3, - ACTIONS(1575), 1, + ACTIONS(3693), 1, + anon_sym_LBRACE, + STATE(2008), 1, + sym_enum_declaration_list, + [62772] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4409), 1, + ACTIONS(2432), 1, + anon_sym_COLON, + ACTIONS(4430), 1, anon_sym_LPAREN, - STATE(71), 1, - sym_parenthesized_expression, - [62653] = 3, - ACTIONS(1575), 1, + [62782] = 3, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3362), 1, + STATE(931), 1, + sym_compound_statement, + [62792] = 3, + ACTIONS(389), 1, anon_sym_LBRACE, - STATE(943), 1, - sym_declaration_list, - [62663] = 3, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - STATE(2010), 1, - sym_variable_name, - [62673] = 3, - ACTIONS(1575), 1, + STATE(928), 1, + sym_compound_statement, + [62802] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3362), 1, + ACTIONS(3347), 1, anon_sym_LBRACE, - STATE(942), 1, + STATE(1665), 1, sym_declaration_list, - [62683] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2627), 1, - anon_sym_RPAREN, - ACTIONS(4434), 1, - anon_sym_EQ, - [62693] = 3, - ACTIONS(1575), 1, + [62812] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3270), 1, + ACTIONS(3211), 1, anon_sym_LPAREN, - STATE(1609), 1, + STATE(1591), 1, sym_formal_parameters, - [62703] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - STATE(2336), 1, - sym_variable_name, - [62713] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3426), 1, - anon_sym_LBRACE, - STATE(459), 1, - sym_declaration_list, - [62723] = 2, - ACTIONS(1575), 1, + [62822] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4603), 2, + ACTIONS(4532), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62731] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3346), 1, - anon_sym_LBRACE, - STATE(1640), 1, - sym_declaration_list, - [62741] = 3, - ACTIONS(1575), 1, + [62830] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3346), 1, + ACTIONS(3337), 1, anon_sym_LBRACE, - STATE(1673), 1, + STATE(926), 1, sym_declaration_list, - [62751] = 3, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(3440), 1, - anon_sym_LBRACE, - STATE(1124), 1, - sym_compound_statement, - [62761] = 2, - ACTIONS(1575), 1, + [62840] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4278), 2, + ACTIONS(3211), 1, + anon_sym_LPAREN, + STATE(1985), 1, + sym_formal_parameters, + [62850] = 3, + ACTIONS(389), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [62769] = 3, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_LBRACE, - STATE(1110), 1, + STATE(1661), 1, sym_compound_statement, - [62779] = 3, - ACTIONS(1575), 1, + [62860] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2000), 1, - sym_enum_declaration_list, - [62789] = 3, - ACTIONS(1575), 1, + ACTIONS(4534), 1, + sym__new_line, + ACTIONS(4536), 1, + sym_heredoc_end, + [62870] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(1754), 1, - anon_sym_DOLLAR, - STATE(2333), 1, - sym_variable_name, - [62799] = 3, - ACTIONS(394), 1, + ACTIONS(3337), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, + STATE(924), 1, + sym_declaration_list, + [62880] = 3, + ACTIONS(1530), 1, sym_comment, - STATE(939), 1, - sym_compound_statement, - [62809] = 3, - ACTIONS(394), 1, + ACTIONS(3433), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, - sym_comment, - STATE(934), 1, + STATE(1121), 1, sym_compound_statement, - [62819] = 2, - ACTIONS(1575), 1, + [62890] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4605), 1, - anon_sym_BSLASH, - [62826] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4607), 1, + ACTIONS(3443), 2, + sym__automatic_semicolon, anon_sym_SEMI, - [62833] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4609), 1, - anon_sym_RPAREN, - [62840] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4611), 1, - sym_name, - [62847] = 2, - ACTIONS(900), 1, - anon_sym_RPAREN, - ACTIONS(1575), 1, - sym_comment, - [62854] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4613), 1, - sym_heredoc_end, - [62861] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2627), 1, - anon_sym_RPAREN, - [62868] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4615), 1, - anon_sym_EQ_GT, - [62875] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4617), 1, - anon_sym_RPAREN, - [62882] = 2, - ACTIONS(902), 1, - anon_sym_RPAREN, - ACTIONS(1575), 1, - sym_comment, - [62889] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4619), 1, - anon_sym_RBRACK, - [62896] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4621), 1, - anon_sym_RPAREN, - [62903] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4623), 1, - anon_sym_COLON_COLON, - [62910] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4625), 1, - anon_sym_EQ, - [62917] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4627), 1, - anon_sym_EQ_GT, - [62924] = 2, - ACTIONS(1575), 1, + [62898] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4629), 1, - anon_sym_RPAREN, - [62931] = 2, - ACTIONS(1575), 1, + ACTIONS(3337), 1, + anon_sym_LBRACE, + STATE(918), 1, + sym_declaration_list, + [62908] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4631), 1, - aux_sym_if_statement_token2, - [62938] = 2, - ACTIONS(1575), 1, + ACTIONS(4538), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [62916] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4160), 1, - anon_sym_RBRACE, - [62945] = 2, - ACTIONS(1575), 1, + ACTIONS(4540), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [62924] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4633), 1, - anon_sym_EQ_GT, - [62952] = 2, - ACTIONS(1575), 1, + ACTIONS(4386), 1, + anon_sym_LPAREN, + STATE(79), 1, + sym_parenthesized_expression, + [62934] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4118), 1, - anon_sym_RBRACE, - [62959] = 2, - ACTIONS(1575), 1, + ACTIONS(4386), 1, + anon_sym_LPAREN, + STATE(48), 1, + sym_parenthesized_expression, + [62944] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4635), 1, - anon_sym_EQ_GT, - [62966] = 2, - ACTIONS(1575), 1, + ACTIONS(4542), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [62952] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4637), 1, - sym_name, - [62973] = 2, - ACTIONS(1575), 1, + ACTIONS(4544), 1, + anon_sym_SEMI, + ACTIONS(4546), 1, + sym__automatic_semicolon, + [62962] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4639), 1, - sym_name, - [62980] = 2, - ACTIONS(1575), 1, + ACTIONS(4548), 1, + anon_sym_LBRACE, + STATE(965), 1, + sym_match_block, + [62972] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4641), 1, - sym_integer, - [62987] = 2, - ACTIONS(1575), 1, + ACTIONS(3859), 1, + anon_sym_LBRACE, + STATE(507), 1, + sym_declaration_list, + [62982] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4643), 1, - anon_sym_RBRACK, - [62994] = 2, - ACTIONS(1575), 1, + ACTIONS(4550), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [62990] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4645), 1, - sym_heredoc_end, - [63001] = 2, - ACTIONS(1575), 1, + ACTIONS(4552), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [62998] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4647), 1, - aux_sym_class_declaration_token1, - [63008] = 2, - ACTIONS(1575), 1, + ACTIONS(4022), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [63006] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4061), 1, - sym_name, - [63015] = 2, - ACTIONS(1575), 1, + ACTIONS(4100), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [63014] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4649), 1, - anon_sym_EQ_GT, + ACTIONS(4554), 2, + sym__automatic_semicolon, + anon_sym_SEMI, [63022] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4651), 1, - anon_sym_EQ_GT, - [63029] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4653), 1, - sym_name, - [63036] = 2, - ACTIONS(1575), 1, + ACTIONS(4556), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [63030] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4655), 1, - aux_sym_foreach_statement_token2, - [63043] = 2, - ACTIONS(1575), 1, + ACTIONS(3347), 1, + anon_sym_LBRACE, + STATE(1641), 1, + sym_declaration_list, + [63040] = 3, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4657), 1, - anon_sym_RPAREN, - [63050] = 2, - ACTIONS(1575), 1, + STATE(908), 1, + sym_compound_statement, + [63050] = 3, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4659), 1, - sym_name, - [63057] = 2, - ACTIONS(1575), 1, + STATE(910), 1, + sym_compound_statement, + [63060] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4661), 1, - sym_heredoc_end, - [63064] = 2, - ACTIONS(886), 1, - anon_sym_RPAREN, - ACTIONS(1575), 1, + ACTIONS(4558), 2, + anon_sym_string, + anon_sym_int, + [63068] = 3, + ACTIONS(1530), 1, sym_comment, - [63071] = 2, - ACTIONS(1575), 1, + ACTIONS(3601), 1, + anon_sym_LBRACE, + STATE(498), 1, + sym_enum_declaration_list, + [63078] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4663), 1, + ACTIONS(4560), 1, + sym__new_line, + ACTIONS(4562), 1, sym_heredoc_end, - [63078] = 2, - ACTIONS(1575), 1, + [63088] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4665), 1, - anon_sym_RPAREN, - [63085] = 2, - ACTIONS(1575), 1, + ACTIONS(4564), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [63096] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4104), 1, - anon_sym_RPAREN, - [63092] = 2, - ACTIONS(1575), 1, + ACTIONS(3437), 1, + anon_sym_LBRACE, + STATE(445), 1, + sym_declaration_list, + [63106] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4667), 1, - anon_sym_SQUOTE2, - [63099] = 2, - ACTIONS(1575), 1, + ACTIONS(3211), 1, + anon_sym_LPAREN, + STATE(1572), 1, + sym_formal_parameters, + [63116] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4669), 1, - anon_sym_DQUOTE2, - [63106] = 2, - ACTIONS(1575), 1, + ACTIONS(3957), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [63124] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LBRACE, - [63113] = 2, - ACTIONS(1575), 1, + ACTIONS(4566), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [63132] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4671), 1, - sym_name, - [63120] = 2, - ACTIONS(1575), 1, + ACTIONS(3096), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(4568), 1, + aux_sym_namespace_use_declaration_token2, + [63142] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4280), 1, + ACTIONS(4414), 1, anon_sym_LBRACE, - [63127] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4673), 1, - aux_sym_if_statement_token2, - [63134] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2629), 1, - anon_sym_RPAREN, - [63141] = 2, - ACTIONS(1575), 1, + STATE(434), 1, + sym_compound_statement, + [63152] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4675), 1, - anon_sym_EQ_GT, - [63148] = 2, - ACTIONS(894), 1, - anon_sym_RPAREN, - ACTIONS(1575), 1, + ACTIONS(4570), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [63160] = 3, + ACTIONS(1530), 1, sym_comment, - [63155] = 2, - ACTIONS(1575), 1, + ACTIONS(4414), 1, + anon_sym_LBRACE, + STATE(431), 1, + sym_compound_statement, + [63170] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(2600), 1, anon_sym_RPAREN, - [63162] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4434), 1, + ACTIONS(4401), 1, anon_sym_EQ, - [63169] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4679), 1, - sym_name, - [63176] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(4681), 1, - sym_name, - [63183] = 2, - ACTIONS(1575), 1, + [63180] = 3, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4683), 1, - sym_name, + ACTIONS(4452), 1, + anon_sym_LPAREN, + STATE(2260), 1, + sym_parenthesized_expression, [63190] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4685), 1, - sym_heredoc_start, + ACTIONS(4572), 1, + sym_name, [63197] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4687), 1, - anon_sym_RPAREN, + ACTIONS(4574), 1, + anon_sym_LPAREN, [63204] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4689), 1, - anon_sym_RPAREN, + ACTIONS(4576), 1, + aux_sym_while_statement_token2, [63211] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4691), 1, - aux_sym_if_statement_token2, + ACTIONS(4578), 1, + anon_sym_SEMI, [63218] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4693), 1, - aux_sym_while_statement_token2, + ACTIONS(4580), 1, + anon_sym_LPAREN, [63225] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4695), 1, + ACTIONS(4582), 1, anon_sym_RPAREN, [63232] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4697), 1, - anon_sym_LPAREN, + ACTIONS(4584), 1, + anon_sym_EQ, [63239] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4699), 1, + ACTIONS(2600), 1, anon_sym_RPAREN, [63246] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4701), 1, - anon_sym_EQ, - [63253] = 2, - ACTIONS(874), 1, + ACTIONS(4586), 1, anon_sym_RPAREN, - ACTIONS(1575), 1, + [63253] = 2, + ACTIONS(1530), 1, sym_comment, + ACTIONS(3979), 1, + anon_sym_RPAREN, [63260] = 2, - ACTIONS(1575), 1, + ACTIONS(911), 1, + anon_sym_RPAREN, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4703), 1, - anon_sym_COLON_COLON, [63267] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4081), 1, + ACTIONS(3983), 1, anon_sym_RPAREN, [63274] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4705), 1, - anon_sym_SEMI, + ACTIONS(4588), 1, + anon_sym_RPAREN, [63281] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4707), 1, + ACTIONS(4590), 1, anon_sym_EQ_GT, [63288] = 2, - ACTIONS(1575), 1, - sym_comment, - ACTIONS(2539), 1, + ACTIONS(917), 1, anon_sym_RPAREN, + ACTIONS(1530), 1, + sym_comment, [63295] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4709), 1, - aux_sym_if_statement_token2, + ACTIONS(4104), 1, + anon_sym_RBRACK, [63302] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4711), 1, - sym_name, + ACTIONS(4592), 1, + anon_sym_RPAREN, [63309] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4713), 1, - aux_sym_if_statement_token2, + ACTIONS(4594), 1, + anon_sym_RPAREN, [63316] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4715), 1, + ACTIONS(4596), 1, sym_name, [63323] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4717), 1, - anon_sym_EQ_GT, + ACTIONS(4598), 1, + anon_sym_RPAREN, [63330] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4719), 1, - anon_sym_EQ, + ACTIONS(4600), 1, + anon_sym_COLON_COLON, [63337] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4721), 1, - anon_sym_COLON_COLON, + ACTIONS(4602), 1, + anon_sym_EQ, [63344] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4723), 1, - anon_sym_RPAREN, + ACTIONS(4604), 1, + anon_sym_EQ_GT, [63351] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4725), 1, + ACTIONS(4606), 1, anon_sym_RPAREN, [63358] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3656), 1, - sym_name, + ACTIONS(4028), 1, + anon_sym_RBRACE, [63365] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4727), 1, - anon_sym_SQUOTE2, + ACTIONS(4082), 1, + anon_sym_RBRACK, [63372] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, + ACTIONS(4608), 1, + sym_name, [63379] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4731), 1, - anon_sym_DQUOTE2, + ACTIONS(4610), 1, + anon_sym_LPAREN, [63386] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4733), 1, - anon_sym_RPAREN, + ACTIONS(4612), 1, + anon_sym_DQUOTE2, [63393] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4735), 1, - anon_sym_RPAREN, + ACTIONS(4614), 1, + anon_sym_SQUOTE2, [63400] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4737), 1, - aux_sym_while_statement_token2, + ACTIONS(4616), 1, + anon_sym_RBRACK, [63407] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4739), 1, + ACTIONS(4005), 1, anon_sym_RPAREN, [63414] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4741), 1, + ACTIONS(4064), 1, anon_sym_RPAREN, [63421] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4743), 1, - anon_sym_RBRACK, + ACTIONS(4618), 1, + sym_heredoc_end, [63428] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_RPAREN, + ACTIONS(4620), 1, + sym_name, [63435] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4745), 1, - sym_name, + ACTIONS(4622), 1, + anon_sym_RPAREN, [63442] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4747), 1, + ACTIONS(4624), 1, sym_name, [63449] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4749), 1, + ACTIONS(4034), 1, anon_sym_RPAREN, [63456] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4751), 1, + ACTIONS(4626), 1, sym_name, [63463] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4753), 1, + ACTIONS(4628), 1, anon_sym_BSLASH, [63470] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_BSLASH, + ACTIONS(4630), 1, + anon_sym_RPAREN, [63477] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4757), 1, + ACTIONS(4632), 1, sym_name, [63484] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4112), 1, - sym_name, + ACTIONS(4634), 1, + anon_sym_BSLASH, [63491] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4759), 1, + ACTIONS(4636), 1, anon_sym_BSLASH, [63498] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4761), 1, - sym_name, + ACTIONS(4108), 1, + anon_sym_LBRACE, [63505] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4047), 1, - anon_sym_RPAREN, + ACTIONS(4638), 1, + sym_heredoc_end, [63512] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4763), 1, - ts_builtin_sym_end, + ACTIONS(4098), 1, + sym_name, [63519] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4765), 1, - anon_sym_COLON_COLON, + ACTIONS(4640), 1, + anon_sym_BSLASH, [63526] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4767), 1, - sym_name, + ACTIONS(4642), 1, + sym_heredoc_end, [63533] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4043), 1, - aux_sym_class_declaration_token1, + ACTIONS(4052), 1, + anon_sym_RPAREN, [63540] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4769), 1, - aux_sym_class_declaration_token1, + ACTIONS(4644), 1, + sym_name, [63547] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4771), 1, - sym_name, + ACTIONS(4646), 1, + aux_sym_foreach_statement_token2, [63554] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4773), 1, - anon_sym_EQ_GT, + ACTIONS(4648), 1, + ts_builtin_sym_end, [63561] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4775), 1, - aux_sym_class_declaration_token1, + ACTIONS(4650), 1, + sym_name, [63568] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4777), 1, - sym_name, + ACTIONS(4652), 1, + anon_sym_RPAREN, [63575] = 2, - ACTIONS(1575), 1, + ACTIONS(923), 1, + anon_sym_RPAREN, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4779), 1, - sym_name, [63582] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4781), 1, - anon_sym_EQ_GT, + ACTIONS(4654), 1, + sym_name, [63589] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4783), 1, - sym_name, + ACTIONS(4656), 1, + sym_heredoc_end, [63596] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4023), 1, - anon_sym_RBRACK, + ACTIONS(4658), 1, + sym_name, [63603] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4785), 1, - sym_heredoc_start, + ACTIONS(4660), 1, + anon_sym_RPAREN, [63610] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4787), 1, - anon_sym_COLON_COLON, + ACTIONS(4038), 1, + sym_name, [63617] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4789), 1, - anon_sym_RPAREN, + ACTIONS(4662), 1, + sym_name, [63624] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4041), 1, - aux_sym_class_declaration_token1, + ACTIONS(4664), 1, + anon_sym_EQ_GT, [63631] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4791), 1, - sym_name, + ACTIONS(4666), 1, + anon_sym_EQ, [63638] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4793), 1, - aux_sym_namespace_use_declaration_token3, + ACTIONS(4668), 1, + anon_sym_COLON_COLON, [63645] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4795), 1, - anon_sym_BSLASH, + ACTIONS(4670), 1, + anon_sym_RPAREN, [63652] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4797), 1, + ACTIONS(4672), 1, sym_name, [63659] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4799), 1, - sym_name, + ACTIONS(4674), 1, + sym_heredoc_start, [63666] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4029), 1, - anon_sym_RPAREN, + ACTIONS(4676), 1, + sym_heredoc_start, [63673] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4801), 1, - aux_sym_while_statement_token1, + ACTIONS(4678), 1, + sym_heredoc_end, [63680] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4803), 1, - sym_heredoc_start, + ACTIONS(4680), 1, + aux_sym_if_statement_token2, [63687] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4805), 1, - sym_heredoc_start, + ACTIONS(2588), 1, + anon_sym_RPAREN, [63694] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4807), 1, - aux_sym_class_declaration_token1, + ACTIONS(4682), 1, + anon_sym_RPAREN, [63701] = 2, - ACTIONS(1575), 1, + ACTIONS(881), 1, + anon_sym_RPAREN, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4456), 1, - anon_sym_LPAREN, [63708] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4025), 1, - aux_sym_class_declaration_token1, + ACTIONS(4684), 1, + anon_sym_EQ_GT, [63715] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4809), 1, - sym_name, + ACTIONS(4686), 1, + aux_sym_if_statement_token2, [63722] = 2, - ACTIONS(1575), 1, + ACTIONS(883), 1, + anon_sym_SEMI, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4811), 1, - anon_sym_BSLASH, [63729] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4813), 1, - anon_sym_BSLASH, + ACTIONS(4688), 1, + anon_sym_EQ_GT, [63736] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4815), 1, - sym_name, + ACTIONS(4690), 1, + anon_sym_EQ_GT, [63743] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4817), 1, + ACTIONS(4692), 1, sym_name, [63750] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4819), 1, + ACTIONS(4694), 1, anon_sym_RPAREN, [63757] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4821), 1, - sym_name, + ACTIONS(4696), 1, + anon_sym_SQUOTE2, [63764] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4823), 1, - anon_sym_EQ_GT, + ACTIONS(4698), 1, + anon_sym_DQUOTE2, [63771] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4825), 1, - aux_sym_class_declaration_token1, + ACTIONS(4700), 1, + anon_sym_EQ_GT, [63778] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4827), 1, - aux_sym_class_declaration_token1, + ACTIONS(4702), 1, + anon_sym_RPAREN, [63785] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4829), 1, - anon_sym_BSLASH, + ACTIONS(4704), 1, + aux_sym_class_declaration_token1, [63792] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4053), 1, - anon_sym_RBRACK, + ACTIONS(4706), 1, + aux_sym_while_statement_token2, [63799] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4831), 1, - sym_name, + ACTIONS(4708), 1, + aux_sym_if_statement_token2, [63806] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4833), 1, + ACTIONS(4710), 1, aux_sym_while_statement_token1, [63813] = 2, - ACTIONS(884), 1, - anon_sym_SEMI, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, + ACTIONS(4712), 1, + anon_sym_RPAREN, [63820] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4288), 1, + ACTIONS(4714), 1, anon_sym_RPAREN, [63827] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4386), 1, - anon_sym_RPAREN, + ACTIONS(4199), 1, + anon_sym_RBRACE, [63834] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4835), 1, - anon_sym_RPAREN, + ACTIONS(4716), 1, + anon_sym_EQ_GT, [63841] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4837), 1, - anon_sym_RPAREN, + ACTIONS(4718), 1, + anon_sym_EQ_GT, [63848] = 2, - ACTIONS(892), 1, - anon_sym_RPAREN, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, + ACTIONS(4720), 1, + sym_name, [63855] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4458), 1, - anon_sym_RPAREN, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, [63862] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4839), 1, - anon_sym_SEMI, + ACTIONS(4724), 1, + anon_sym_RPAREN, [63869] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_RPAREN, + ACTIONS(4726), 1, + sym_name, [63876] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4841), 1, - anon_sym_RBRACK, + ACTIONS(4432), 1, + anon_sym_RPAREN, [63883] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4843), 1, - anon_sym_COLON_COLON, + ACTIONS(4728), 1, + anon_sym_EQ_GT, [63890] = 2, - ACTIONS(872), 1, - anon_sym_RPAREN, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, + ACTIONS(4730), 1, + sym_name, [63897] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4845), 1, - anon_sym_COLON_COLON, + ACTIONS(3716), 1, + sym_name, [63904] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4847), 1, + ACTIONS(4732), 1, anon_sym_RPAREN, [63911] = 2, - ACTIONS(376), 1, - ts_builtin_sym_end, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, + ACTIONS(4734), 1, + anon_sym_RPAREN, [63918] = 2, - ACTIONS(878), 1, - anon_sym_SEMI, - ACTIONS(1575), 1, + ACTIONS(905), 1, + anon_sym_RPAREN, + ACTIONS(1530), 1, sym_comment, [63925] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3622), 1, + ACTIONS(4736), 1, anon_sym_BSLASH, [63932] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3210), 1, - anon_sym_EQ, + ACTIONS(4738), 1, + aux_sym_class_declaration_token1, [63939] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, + ACTIONS(4401), 1, + anon_sym_EQ, [63946] = 2, - ACTIONS(1575), 1, + ACTIONS(435), 1, + ts_builtin_sym_end, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4851), 1, - anon_sym_BSLASH, [63953] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4318), 1, - anon_sym_RPAREN, + ACTIONS(4740), 1, + anon_sym_RBRACK, [63960] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4322), 1, - anon_sym_RPAREN, + ACTIONS(4742), 1, + aux_sym_while_statement_token1, [63967] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4853), 1, - anon_sym_COLON_COLON, + ACTIONS(4744), 1, + anon_sym_EQ_GT, [63974] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(3671), 1, - sym_name, + ACTIONS(4746), 1, + sym_heredoc_start, [63981] = 2, - ACTIONS(446), 1, - ts_builtin_sym_end, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, + ACTIONS(4748), 1, + sym_heredoc_start, [63988] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4855), 1, - anon_sym_COLON_COLON, + ACTIONS(4750), 1, + sym_name, [63995] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4857), 1, - anon_sym_RPAREN, + ACTIONS(4752), 1, + anon_sym_BSLASH, [64002] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4859), 1, - anon_sym_EQ, + ACTIONS(4754), 1, + anon_sym_BSLASH, [64009] = 2, - ACTIONS(880), 1, - anon_sym_SEMI, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, + ACTIONS(4240), 1, + anon_sym_RPAREN, [64016] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4861), 1, - anon_sym_EQ_GT, + ACTIONS(4756), 1, + sym_name, [64023] = 2, - ACTIONS(888), 1, - anon_sym_RPAREN, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, + ACTIONS(4758), 1, + anon_sym_COLON_COLON, [64030] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4863), 1, - aux_sym_namespace_use_declaration_token3, + ACTIONS(4760), 1, + anon_sym_RPAREN, [64037] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4865), 1, - anon_sym_SEMI, + ACTIONS(3711), 1, + anon_sym_BSLASH, [64044] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4867), 1, - sym_name, + ACTIONS(3221), 1, + anon_sym_EQ, [64051] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4002), 1, - aux_sym_class_declaration_token1, + ACTIONS(4762), 1, + sym_name, [64058] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4340), 1, - anon_sym_RPAREN, + ACTIONS(4764), 1, + anon_sym_BSLASH, [64065] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4869), 1, - anon_sym_BSLASH, + ACTIONS(4766), 1, + anon_sym_RBRACK, [64072] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4871), 1, - sym_name, + ACTIONS(4430), 1, + anon_sym_LPAREN, [64079] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4873), 1, - ts_builtin_sym_end, + ACTIONS(4768), 1, + sym_name, [64086] = 2, - ACTIONS(1575), 1, + ACTIONS(885), 1, + anon_sym_SEMI, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4000), 1, - anon_sym_RPAREN, [64093] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4875), 1, - anon_sym_LPAREN, + ACTIONS(4770), 1, + sym_name, [64100] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4877), 1, - anon_sym_COLON_COLON, + ACTIONS(4772), 1, + anon_sym_BSLASH, [64107] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(2657), 1, - anon_sym_RPAREN, + ACTIONS(4774), 1, + sym_name, [64114] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4879), 1, - aux_sym_foreach_statement_token2, + ACTIONS(4776), 1, + sym_name, [64121] = 2, - ACTIONS(1575), 1, + ACTIONS(901), 1, + anon_sym_RPAREN, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4881), 1, - anon_sym_LPAREN, [64128] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4883), 1, - anon_sym_LPAREN, + ACTIONS(4778), 1, + anon_sym_RPAREN, [64135] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4885), 1, - anon_sym_LPAREN, + ACTIONS(4780), 1, + anon_sym_SEMI, [64142] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4887), 1, - anon_sym_COLON_COLON, + ACTIONS(2566), 1, + anon_sym_RPAREN, [64149] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4889), 1, - anon_sym_LPAREN, + ACTIONS(4782), 1, + aux_sym_if_statement_token2, [64156] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4891), 1, - sym_heredoc_end, + ACTIONS(4784), 1, + aux_sym_if_statement_token2, [64163] = 2, - ACTIONS(1575), 1, + ACTIONS(897), 1, + anon_sym_RPAREN, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4893), 1, - sym_heredoc_end, [64170] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4895), 1, - anon_sym_RPAREN, + ACTIONS(4786), 1, + aux_sym_foreach_statement_token2, [64177] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4897), 1, - anon_sym_LPAREN, + ACTIONS(4788), 1, + anon_sym_COLON_COLON, [64184] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4899), 1, - sym_name, + ACTIONS(4790), 1, + anon_sym_COLON_COLON, [64191] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4901), 1, - anon_sym_SEMI, + ACTIONS(2642), 1, + anon_sym_RPAREN, [64198] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4903), 1, + ACTIONS(2512), 1, anon_sym_RPAREN, [64205] = 2, - ACTIONS(912), 1, - anon_sym_SEMI, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, + ACTIONS(4792), 1, + anon_sym_SEMI, [64212] = 2, - ACTIONS(1575), 1, + ACTIONS(907), 1, + anon_sym_RPAREN, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4905), 1, - anon_sym_LPAREN, [64219] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4907), 1, - anon_sym_LPAREN, + ACTIONS(4794), 1, + anon_sym_COLON_COLON, [64226] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4909), 1, - anon_sym_SEMI, + ACTIONS(3741), 1, + sym_name, [64233] = 2, - ACTIONS(1575), 1, + ACTIONS(439), 1, + ts_builtin_sym_end, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4911), 1, - anon_sym_LPAREN, [64240] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4366), 1, - anon_sym_RPAREN, + ACTIONS(4796), 1, + sym_name, [64247] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4913), 1, - anon_sym_SEMI, + ACTIONS(4798), 1, + anon_sym_COLON_COLON, [64254] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4915), 1, - anon_sym_LPAREN, + ACTIONS(4800), 1, + anon_sym_COLON_COLON, [64261] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4917), 1, - anon_sym_LPAREN, + ACTIONS(4802), 1, + sym_integer, [64268] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4919), 1, - anon_sym_LPAREN, + ACTIONS(4804), 1, + anon_sym_EQ, [64275] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4921), 1, - sym_name, + ACTIONS(4806), 1, + anon_sym_EQ_GT, [64282] = 2, - ACTIONS(1575), 1, + ACTIONS(913), 1, + anon_sym_SEMI, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4923), 1, - sym_name, [64289] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4925), 1, - sym_name, + ACTIONS(4808), 1, + anon_sym_RBRACK, [64296] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4927), 1, - anon_sym_SEMI, + ACTIONS(4810), 1, + anon_sym_BSLASH, [64303] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4929), 1, + ACTIONS(4812), 1, sym_name, [64310] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4931), 1, - anon_sym_LPAREN, + ACTIONS(4814), 1, + anon_sym_SEMI, [64317] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4933), 1, - anon_sym_COLON_COLON, + ACTIONS(4816), 1, + ts_builtin_sym_end, [64324] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4935), 1, - anon_sym_LPAREN, + ACTIONS(4818), 1, + sym_heredoc_end, [64331] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4937), 1, - anon_sym_LPAREN, + ACTIONS(4820), 1, + anon_sym_RPAREN, [64338] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4939), 1, - anon_sym_EQ_GT, + ACTIONS(4822), 1, + sym_name, [64345] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4941), 1, + ACTIONS(4824), 1, anon_sym_LPAREN, [64352] = 2, - ACTIONS(1575), 1, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4284), 1, + anon_sym_RPAREN, + [64359] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LBRACE, + [64366] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4296), 1, + anon_sym_RPAREN, + [64373] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4826), 1, + anon_sym_LPAREN, + [64380] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4828), 1, + anon_sym_LPAREN, + [64387] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4830), 1, + anon_sym_COLON_COLON, + [64394] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4832), 1, + anon_sym_RPAREN, + [64401] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4834), 1, + anon_sym_LPAREN, + [64408] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4836), 1, + sym_name, + [64415] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4838), 1, + anon_sym_RPAREN, + [64422] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4840), 1, + anon_sym_EQ_GT, + [64429] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4842), 1, + anon_sym_COLON_COLON, + [64436] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4318), 1, + anon_sym_RPAREN, + [64443] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4844), 1, + anon_sym_RPAREN, + [64450] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4846), 1, + anon_sym_LPAREN, + [64457] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4848), 1, + anon_sym_LPAREN, + [64464] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4850), 1, + anon_sym_SEMI, + [64471] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4852), 1, + anon_sym_LPAREN, + [64478] = 2, + ACTIONS(915), 1, + anon_sym_SEMI, + ACTIONS(1530), 1, + sym_comment, + [64485] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4854), 1, + anon_sym_COLON_COLON, + [64492] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4856), 1, + anon_sym_LPAREN, + [64499] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4858), 1, + anon_sym_SEMI, + [64506] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4860), 1, + anon_sym_LPAREN, + [64513] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4862), 1, + anon_sym_EQ_GT, + [64520] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4864), 1, + anon_sym_SEMI, + [64527] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4866), 1, + sym_name, + [64534] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4868), 1, + anon_sym_LPAREN, + [64541] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4870), 1, + anon_sym_LPAREN, + [64548] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4872), 1, + sym_name, + [64555] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4874), 1, + sym_name, + [64562] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4876), 1, + sym_name, + [64569] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4878), 1, + anon_sym_SEMI, + [64576] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4338), 1, + anon_sym_RPAREN, + [64583] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4880), 1, + anon_sym_LPAREN, + [64590] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4072), 1, + anon_sym_RPAREN, + [64597] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4882), 1, + anon_sym_LPAREN, + [64604] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4884), 1, + anon_sym_LPAREN, + [64611] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4886), 1, + anon_sym_COLON_COLON, + [64618] = 2, + ACTIONS(1530), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LPAREN, + [64625] = 2, + ACTIONS(1530), 1, sym_comment, - ACTIONS(4943), 1, + ACTIONS(4890), 1, anon_sym_LPAREN, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(574)] = 0, - [SMALL_STATE(575)] = 70, - [SMALL_STATE(576)] = 140, - [SMALL_STATE(577)] = 210, - [SMALL_STATE(578)] = 280, - [SMALL_STATE(579)] = 353, - [SMALL_STATE(580)] = 426, - [SMALL_STATE(581)] = 499, - [SMALL_STATE(582)] = 580, - [SMALL_STATE(583)] = 653, - [SMALL_STATE(584)] = 726, - [SMALL_STATE(585)] = 794, - [SMALL_STATE(586)] = 862, - [SMALL_STATE(587)] = 930, - [SMALL_STATE(588)] = 998, - [SMALL_STATE(589)] = 1066, - [SMALL_STATE(590)] = 1134, - [SMALL_STATE(591)] = 1202, - [SMALL_STATE(592)] = 1270, - [SMALL_STATE(593)] = 1338, - [SMALL_STATE(594)] = 1406, - [SMALL_STATE(595)] = 1474, - [SMALL_STATE(596)] = 1542, - [SMALL_STATE(597)] = 1610, - [SMALL_STATE(598)] = 1689, - [SMALL_STATE(599)] = 1764, - [SMALL_STATE(600)] = 1842, - [SMALL_STATE(601)] = 1925, - [SMALL_STATE(602)] = 2002, - [SMALL_STATE(603)] = 2079, - [SMALL_STATE(604)] = 2148, - [SMALL_STATE(605)] = 2225, - [SMALL_STATE(606)] = 2298, - [SMALL_STATE(607)] = 2367, - [SMALL_STATE(608)] = 2436, - [SMALL_STATE(609)] = 2505, - [SMALL_STATE(610)] = 2574, - [SMALL_STATE(611)] = 2638, - [SMALL_STATE(612)] = 2702, - [SMALL_STATE(613)] = 2766, - [SMALL_STATE(614)] = 2842, - [SMALL_STATE(615)] = 2906, - [SMALL_STATE(616)] = 2970, - [SMALL_STATE(617)] = 3034, - [SMALL_STATE(618)] = 3098, - [SMALL_STATE(619)] = 3162, - [SMALL_STATE(620)] = 3226, - [SMALL_STATE(621)] = 3290, - [SMALL_STATE(622)] = 3368, - [SMALL_STATE(623)] = 3432, - [SMALL_STATE(624)] = 3496, - [SMALL_STATE(625)] = 3560, - [SMALL_STATE(626)] = 3624, - [SMALL_STATE(627)] = 3688, - [SMALL_STATE(628)] = 3760, - [SMALL_STATE(629)] = 3824, - [SMALL_STATE(630)] = 3902, - [SMALL_STATE(631)] = 3980, - [SMALL_STATE(632)] = 4044, - [SMALL_STATE(633)] = 4121, - [SMALL_STATE(634)] = 4198, - [SMALL_STATE(635)] = 4269, - [SMALL_STATE(636)] = 4340, - [SMALL_STATE(637)] = 4411, - [SMALL_STATE(638)] = 4483, - [SMALL_STATE(639)] = 4555, - [SMALL_STATE(640)] = 4627, - [SMALL_STATE(641)] = 4697, - [SMALL_STATE(642)] = 4768, - [SMALL_STATE(643)] = 4826, - [SMALL_STATE(644)] = 4926, - [SMALL_STATE(645)] = 5026, - [SMALL_STATE(646)] = 5091, - [SMALL_STATE(647)] = 5150, - [SMALL_STATE(648)] = 5215, - [SMALL_STATE(649)] = 5278, - [SMALL_STATE(650)] = 5339, - [SMALL_STATE(651)] = 5398, - [SMALL_STATE(652)] = 5457, - [SMALL_STATE(653)] = 5522, - [SMALL_STATE(654)] = 5581, - [SMALL_STATE(655)] = 5636, - [SMALL_STATE(656)] = 5701, - [SMALL_STATE(657)] = 5760, - [SMALL_STATE(658)] = 5860, - [SMALL_STATE(659)] = 5914, - [SMALL_STATE(660)] = 5968, - [SMALL_STATE(661)] = 6022, - [SMALL_STATE(662)] = 6076, - [SMALL_STATE(663)] = 6130, - [SMALL_STATE(664)] = 6184, - [SMALL_STATE(665)] = 6238, - [SMALL_STATE(666)] = 6292, - [SMALL_STATE(667)] = 6346, - [SMALL_STATE(668)] = 6400, - [SMALL_STATE(669)] = 6458, - [SMALL_STATE(670)] = 6512, - [SMALL_STATE(671)] = 6566, - [SMALL_STATE(672)] = 6662, - [SMALL_STATE(673)] = 6716, - [SMALL_STATE(674)] = 6770, - [SMALL_STATE(675)] = 6866, - [SMALL_STATE(676)] = 6920, - [SMALL_STATE(677)] = 6974, - [SMALL_STATE(678)] = 7074, - [SMALL_STATE(679)] = 7128, - [SMALL_STATE(680)] = 7186, - [SMALL_STATE(681)] = 7245, - [SMALL_STATE(682)] = 7340, - [SMALL_STATE(683)] = 7399, - [SMALL_STATE(684)] = 7454, - [SMALL_STATE(685)] = 7513, - [SMALL_STATE(686)] = 7604, - [SMALL_STATE(687)] = 7663, - [SMALL_STATE(688)] = 7722, - [SMALL_STATE(689)] = 7777, - [SMALL_STATE(690)] = 7832, - [SMALL_STATE(691)] = 7887, - [SMALL_STATE(692)] = 7944, - [SMALL_STATE(693)] = 7999, - [SMALL_STATE(694)] = 8058, - [SMALL_STATE(695)] = 8113, - [SMALL_STATE(696)] = 8172, - [SMALL_STATE(697)] = 8229, - [SMALL_STATE(698)] = 8326, - [SMALL_STATE(699)] = 8383, - [SMALL_STATE(700)] = 8480, - [SMALL_STATE(701)] = 8539, - [SMALL_STATE(702)] = 8596, - [SMALL_STATE(703)] = 8655, - [SMALL_STATE(704)] = 8712, - [SMALL_STATE(705)] = 8803, - [SMALL_STATE(706)] = 8860, - [SMALL_STATE(707)] = 8917, - [SMALL_STATE(708)] = 8974, - [SMALL_STATE(709)] = 9031, - [SMALL_STATE(710)] = 9090, - [SMALL_STATE(711)] = 9147, - [SMALL_STATE(712)] = 9204, - [SMALL_STATE(713)] = 9263, - [SMALL_STATE(714)] = 9320, - [SMALL_STATE(715)] = 9417, - [SMALL_STATE(716)] = 9474, - [SMALL_STATE(717)] = 9571, - [SMALL_STATE(718)] = 9628, - [SMALL_STATE(719)] = 9719, - [SMALL_STATE(720)] = 9778, - [SMALL_STATE(721)] = 9873, - [SMALL_STATE(722)] = 9925, - [SMALL_STATE(723)] = 9977, - [SMALL_STATE(724)] = 10029, - [SMALL_STATE(725)] = 10081, - [SMALL_STATE(726)] = 10133, - [SMALL_STATE(727)] = 10185, - [SMALL_STATE(728)] = 10237, - [SMALL_STATE(729)] = 10289, - [SMALL_STATE(730)] = 10341, - [SMALL_STATE(731)] = 10393, - [SMALL_STATE(732)] = 10445, - [SMALL_STATE(733)] = 10497, - [SMALL_STATE(734)] = 10549, - [SMALL_STATE(735)] = 10601, - [SMALL_STATE(736)] = 10653, - [SMALL_STATE(737)] = 10705, - [SMALL_STATE(738)] = 10757, - [SMALL_STATE(739)] = 10809, - [SMALL_STATE(740)] = 10861, - [SMALL_STATE(741)] = 10913, - [SMALL_STATE(742)] = 10965, - [SMALL_STATE(743)] = 11017, - [SMALL_STATE(744)] = 11109, - [SMALL_STATE(745)] = 11161, - [SMALL_STATE(746)] = 11213, - [SMALL_STATE(747)] = 11265, - [SMALL_STATE(748)] = 11317, - [SMALL_STATE(749)] = 11369, - [SMALL_STATE(750)] = 11421, - [SMALL_STATE(751)] = 11473, - [SMALL_STATE(752)] = 11527, - [SMALL_STATE(753)] = 11579, - [SMALL_STATE(754)] = 11673, - [SMALL_STATE(755)] = 11725, - [SMALL_STATE(756)] = 11777, - [SMALL_STATE(757)] = 11829, - [SMALL_STATE(758)] = 11881, - [SMALL_STATE(759)] = 11933, - [SMALL_STATE(760)] = 11987, - [SMALL_STATE(761)] = 12039, - [SMALL_STATE(762)] = 12091, - [SMALL_STATE(763)] = 12143, - [SMALL_STATE(764)] = 12204, - [SMALL_STATE(765)] = 12255, - [SMALL_STATE(766)] = 12310, - [SMALL_STATE(767)] = 12371, - [SMALL_STATE(768)] = 12424, - [SMALL_STATE(769)] = 12485, - [SMALL_STATE(770)] = 12536, - [SMALL_STATE(771)] = 12591, - [SMALL_STATE(772)] = 12644, - [SMALL_STATE(773)] = 12697, - [SMALL_STATE(774)] = 12758, - [SMALL_STATE(775)] = 12813, - [SMALL_STATE(776)] = 12866, - [SMALL_STATE(777)] = 12917, - [SMALL_STATE(778)] = 12976, - [SMALL_STATE(779)] = 13031, - [SMALL_STATE(780)] = 13086, - [SMALL_STATE(781)] = 13143, - [SMALL_STATE(782)] = 13198, - [SMALL_STATE(783)] = 13251, - [SMALL_STATE(784)] = 13301, - [SMALL_STATE(785)] = 13351, - [SMALL_STATE(786)] = 13401, - [SMALL_STATE(787)] = 13451, - [SMALL_STATE(788)] = 13501, - [SMALL_STATE(789)] = 13551, - [SMALL_STATE(790)] = 13601, - [SMALL_STATE(791)] = 13651, - [SMALL_STATE(792)] = 13701, - [SMALL_STATE(793)] = 13763, - [SMALL_STATE(794)] = 13813, - [SMALL_STATE(795)] = 13863, - [SMALL_STATE(796)] = 13913, - [SMALL_STATE(797)] = 13963, - [SMALL_STATE(798)] = 14013, - [SMALL_STATE(799)] = 14063, - [SMALL_STATE(800)] = 14113, - [SMALL_STATE(801)] = 14175, - [SMALL_STATE(802)] = 14225, - [SMALL_STATE(803)] = 14287, - [SMALL_STATE(804)] = 14337, - [SMALL_STATE(805)] = 14388, - [SMALL_STATE(806)] = 14471, - [SMALL_STATE(807)] = 14554, - [SMALL_STATE(808)] = 14637, - [SMALL_STATE(809)] = 14692, - [SMALL_STATE(810)] = 14745, - [SMALL_STATE(811)] = 14828, - [SMALL_STATE(812)] = 14883, - [SMALL_STATE(813)] = 14932, - [SMALL_STATE(814)] = 15015, - [SMALL_STATE(815)] = 15068, - [SMALL_STATE(816)] = 15151, - [SMALL_STATE(817)] = 15206, - [SMALL_STATE(818)] = 15289, - [SMALL_STATE(819)] = 15340, - [SMALL_STATE(820)] = 15423, - [SMALL_STATE(821)] = 15506, - [SMALL_STATE(822)] = 15559, - [SMALL_STATE(823)] = 15612, - [SMALL_STATE(824)] = 15667, - [SMALL_STATE(825)] = 15716, - [SMALL_STATE(826)] = 15769, - [SMALL_STATE(827)] = 15852, - [SMALL_STATE(828)] = 15907, - [SMALL_STATE(829)] = 15962, - [SMALL_STATE(830)] = 16017, - [SMALL_STATE(831)] = 16072, - [SMALL_STATE(832)] = 16155, - [SMALL_STATE(833)] = 16204, - [SMALL_STATE(834)] = 16287, - [SMALL_STATE(835)] = 16338, - [SMALL_STATE(836)] = 16393, - [SMALL_STATE(837)] = 16448, - [SMALL_STATE(838)] = 16501, - [SMALL_STATE(839)] = 16552, - [SMALL_STATE(840)] = 16607, - [SMALL_STATE(841)] = 16658, - [SMALL_STATE(842)] = 16741, - [SMALL_STATE(843)] = 16794, - [SMALL_STATE(844)] = 16847, - [SMALL_STATE(845)] = 16930, - [SMALL_STATE(846)] = 16983, - [SMALL_STATE(847)] = 17036, - [SMALL_STATE(848)] = 17089, - [SMALL_STATE(849)] = 17140, - [SMALL_STATE(850)] = 17193, - [SMALL_STATE(851)] = 17246, - [SMALL_STATE(852)] = 17295, - [SMALL_STATE(853)] = 17350, - [SMALL_STATE(854)] = 17433, - [SMALL_STATE(855)] = 17486, - [SMALL_STATE(856)] = 17539, - [SMALL_STATE(857)] = 17590, - [SMALL_STATE(858)] = 17638, - [SMALL_STATE(859)] = 17686, - [SMALL_STATE(860)] = 17734, - [SMALL_STATE(861)] = 17782, - [SMALL_STATE(862)] = 17832, - [SMALL_STATE(863)] = 17882, - [SMALL_STATE(864)] = 17930, - [SMALL_STATE(865)] = 17978, - [SMALL_STATE(866)] = 18026, - [SMALL_STATE(867)] = 18074, - [SMALL_STATE(868)] = 18122, - [SMALL_STATE(869)] = 18170, - [SMALL_STATE(870)] = 18218, - [SMALL_STATE(871)] = 18266, - [SMALL_STATE(872)] = 18314, - [SMALL_STATE(873)] = 18362, - [SMALL_STATE(874)] = 18410, - [SMALL_STATE(875)] = 18458, - [SMALL_STATE(876)] = 18506, - [SMALL_STATE(877)] = 18554, - [SMALL_STATE(878)] = 18602, - [SMALL_STATE(879)] = 18650, - [SMALL_STATE(880)] = 18698, - [SMALL_STATE(881)] = 18746, - [SMALL_STATE(882)] = 18794, - [SMALL_STATE(883)] = 18842, - [SMALL_STATE(884)] = 18894, - [SMALL_STATE(885)] = 18942, - [SMALL_STATE(886)] = 18990, - [SMALL_STATE(887)] = 19038, - [SMALL_STATE(888)] = 19086, - [SMALL_STATE(889)] = 19134, - [SMALL_STATE(890)] = 19182, - [SMALL_STATE(891)] = 19232, - [SMALL_STATE(892)] = 19280, - [SMALL_STATE(893)] = 19328, - [SMALL_STATE(894)] = 19376, - [SMALL_STATE(895)] = 19424, - [SMALL_STATE(896)] = 19472, - [SMALL_STATE(897)] = 19520, - [SMALL_STATE(898)] = 19568, - [SMALL_STATE(899)] = 19616, - [SMALL_STATE(900)] = 19665, - [SMALL_STATE(901)] = 19714, - [SMALL_STATE(902)] = 19763, - [SMALL_STATE(903)] = 19812, - [SMALL_STATE(904)] = 19861, - [SMALL_STATE(905)] = 19907, - [SMALL_STATE(906)] = 19953, - [SMALL_STATE(907)] = 19999, - [SMALL_STATE(908)] = 20045, - [SMALL_STATE(909)] = 20091, - [SMALL_STATE(910)] = 20137, - [SMALL_STATE(911)] = 20183, - [SMALL_STATE(912)] = 20229, - [SMALL_STATE(913)] = 20275, - [SMALL_STATE(914)] = 20321, - [SMALL_STATE(915)] = 20367, - [SMALL_STATE(916)] = 20413, - [SMALL_STATE(917)] = 20459, - [SMALL_STATE(918)] = 20505, - [SMALL_STATE(919)] = 20551, - [SMALL_STATE(920)] = 20597, - [SMALL_STATE(921)] = 20643, - [SMALL_STATE(922)] = 20689, - [SMALL_STATE(923)] = 20735, - [SMALL_STATE(924)] = 20781, - [SMALL_STATE(925)] = 20827, - [SMALL_STATE(926)] = 20873, - [SMALL_STATE(927)] = 20919, - [SMALL_STATE(928)] = 20965, - [SMALL_STATE(929)] = 21013, - [SMALL_STATE(930)] = 21059, - [SMALL_STATE(931)] = 21105, - [SMALL_STATE(932)] = 21151, - [SMALL_STATE(933)] = 21197, - [SMALL_STATE(934)] = 21243, - [SMALL_STATE(935)] = 21289, - [SMALL_STATE(936)] = 21335, - [SMALL_STATE(937)] = 21381, - [SMALL_STATE(938)] = 21427, - [SMALL_STATE(939)] = 21473, - [SMALL_STATE(940)] = 21519, - [SMALL_STATE(941)] = 21565, - [SMALL_STATE(942)] = 21611, - [SMALL_STATE(943)] = 21657, - [SMALL_STATE(944)] = 21703, - [SMALL_STATE(945)] = 21749, - [SMALL_STATE(946)] = 21795, - [SMALL_STATE(947)] = 21841, - [SMALL_STATE(948)] = 21887, - [SMALL_STATE(949)] = 21933, - [SMALL_STATE(950)] = 21979, - [SMALL_STATE(951)] = 22025, - [SMALL_STATE(952)] = 22071, - [SMALL_STATE(953)] = 22117, - [SMALL_STATE(954)] = 22163, - [SMALL_STATE(955)] = 22209, - [SMALL_STATE(956)] = 22255, - [SMALL_STATE(957)] = 22301, - [SMALL_STATE(958)] = 22347, - [SMALL_STATE(959)] = 22393, - [SMALL_STATE(960)] = 22439, - [SMALL_STATE(961)] = 22485, - [SMALL_STATE(962)] = 22531, - [SMALL_STATE(963)] = 22577, - [SMALL_STATE(964)] = 22623, - [SMALL_STATE(965)] = 22669, - [SMALL_STATE(966)] = 22715, - [SMALL_STATE(967)] = 22761, - [SMALL_STATE(968)] = 22807, - [SMALL_STATE(969)] = 22856, - [SMALL_STATE(970)] = 22901, - [SMALL_STATE(971)] = 22946, - [SMALL_STATE(972)] = 23025, - [SMALL_STATE(973)] = 23074, - [SMALL_STATE(974)] = 23126, - [SMALL_STATE(975)] = 23202, - [SMALL_STATE(976)] = 23278, - [SMALL_STATE(977)] = 23354, - [SMALL_STATE(978)] = 23400, - [SMALL_STATE(979)] = 23454, - [SMALL_STATE(980)] = 23510, - [SMALL_STATE(981)] = 23570, - [SMALL_STATE(982)] = 23636, - [SMALL_STATE(983)] = 23706, - [SMALL_STATE(984)] = 23778, - [SMALL_STATE(985)] = 23856, - [SMALL_STATE(986)] = 23936, - [SMALL_STATE(987)] = 24012, - [SMALL_STATE(988)] = 24058, - [SMALL_STATE(989)] = 24134, - [SMALL_STATE(990)] = 24184, - [SMALL_STATE(991)] = 24252, - [SMALL_STATE(992)] = 24316, - [SMALL_STATE(993)] = 24398, - [SMALL_STATE(994)] = 24480, - [SMALL_STATE(995)] = 24562, - [SMALL_STATE(996)] = 24638, - [SMALL_STATE(997)] = 24720, - [SMALL_STATE(998)] = 24796, - [SMALL_STATE(999)] = 24878, - [SMALL_STATE(1000)] = 24960, - [SMALL_STATE(1001)] = 25044, - [SMALL_STATE(1002)] = 25126, - [SMALL_STATE(1003)] = 25208, - [SMALL_STATE(1004)] = 25290, - [SMALL_STATE(1005)] = 25372, - [SMALL_STATE(1006)] = 25437, - [SMALL_STATE(1007)] = 25518, - [SMALL_STATE(1008)] = 25587, - [SMALL_STATE(1009)] = 25658, - [SMALL_STATE(1010)] = 25735, - [SMALL_STATE(1011)] = 25814, - [SMALL_STATE(1012)] = 25889, - [SMALL_STATE(1013)] = 25934, - [SMALL_STATE(1014)] = 26009, - [SMALL_STATE(1015)] = 26068, - [SMALL_STATE(1016)] = 26123, - [SMALL_STATE(1017)] = 26174, - [SMALL_STATE(1018)] = 26227, - [SMALL_STATE(1019)] = 26302, - [SMALL_STATE(1020)] = 26351, - [SMALL_STATE(1021)] = 26418, - [SMALL_STATE(1022)] = 26481, - [SMALL_STATE(1023)] = 26562, - [SMALL_STATE(1024)] = 26643, - [SMALL_STATE(1025)] = 26724, - [SMALL_STATE(1026)] = 26767, - [SMALL_STATE(1027)] = 26812, - [SMALL_STATE(1028)] = 26887, - [SMALL_STATE(1029)] = 26962, - [SMALL_STATE(1030)] = 27005, - [SMALL_STATE(1031)] = 27086, - [SMALL_STATE(1032)] = 27161, - [SMALL_STATE(1033)] = 27236, - [SMALL_STATE(1034)] = 27279, - [SMALL_STATE(1035)] = 27360, - [SMALL_STATE(1036)] = 27441, - [SMALL_STATE(1037)] = 27522, - [SMALL_STATE(1038)] = 27603, - [SMALL_STATE(1039)] = 27686, - [SMALL_STATE(1040)] = 27767, - [SMALL_STATE(1041)] = 27811, - [SMALL_STATE(1042)] = 27853, - [SMALL_STATE(1043)] = 27895, - [SMALL_STATE(1044)] = 27937, - [SMALL_STATE(1045)] = 27979, - [SMALL_STATE(1046)] = 28021, - [SMALL_STATE(1047)] = 28063, - [SMALL_STATE(1048)] = 28105, - [SMALL_STATE(1049)] = 28147, - [SMALL_STATE(1050)] = 28189, - [SMALL_STATE(1051)] = 28231, - [SMALL_STATE(1052)] = 28311, - [SMALL_STATE(1053)] = 28373, - [SMALL_STATE(1054)] = 28415, - [SMALL_STATE(1055)] = 28495, - [SMALL_STATE(1056)] = 28569, - [SMALL_STATE(1057)] = 28643, - [SMALL_STATE(1058)] = 28687, - [SMALL_STATE(1059)] = 28729, - [SMALL_STATE(1060)] = 28771, - [SMALL_STATE(1061)] = 28813, - [SMALL_STATE(1062)] = 28865, - [SMALL_STATE(1063)] = 28915, - [SMALL_STATE(1064)] = 28957, - [SMALL_STATE(1065)] = 28999, - [SMALL_STATE(1066)] = 29053, - [SMALL_STATE(1067)] = 29095, - [SMALL_STATE(1068)] = 29137, - [SMALL_STATE(1069)] = 29195, - [SMALL_STATE(1070)] = 29269, - [SMALL_STATE(1071)] = 29311, - [SMALL_STATE(1072)] = 29353, - [SMALL_STATE(1073)] = 29395, - [SMALL_STATE(1074)] = 29437, - [SMALL_STATE(1075)] = 29479, - [SMALL_STATE(1076)] = 29521, - [SMALL_STATE(1077)] = 29563, - [SMALL_STATE(1078)] = 29605, - [SMALL_STATE(1079)] = 29647, - [SMALL_STATE(1080)] = 29711, - [SMALL_STATE(1081)] = 29753, - [SMALL_STATE(1082)] = 29795, - [SMALL_STATE(1083)] = 29839, - [SMALL_STATE(1084)] = 29881, - [SMALL_STATE(1085)] = 29923, - [SMALL_STATE(1086)] = 29965, - [SMALL_STATE(1087)] = 30033, - [SMALL_STATE(1088)] = 30089, - [SMALL_STATE(1089)] = 30159, - [SMALL_STATE(1090)] = 30239, - [SMALL_STATE(1091)] = 30315, - [SMALL_STATE(1092)] = 30357, - [SMALL_STATE(1093)] = 30399, - [SMALL_STATE(1094)] = 30441, - [SMALL_STATE(1095)] = 30519, - [SMALL_STATE(1096)] = 30593, - [SMALL_STATE(1097)] = 30635, - [SMALL_STATE(1098)] = 30677, - [SMALL_STATE(1099)] = 30751, - [SMALL_STATE(1100)] = 30793, - [SMALL_STATE(1101)] = 30835, - [SMALL_STATE(1102)] = 30883, - [SMALL_STATE(1103)] = 30949, - [SMALL_STATE(1104)] = 30991, - [SMALL_STATE(1105)] = 31033, - [SMALL_STATE(1106)] = 31113, - [SMALL_STATE(1107)] = 31155, - [SMALL_STATE(1108)] = 31197, - [SMALL_STATE(1109)] = 31239, - [SMALL_STATE(1110)] = 31281, - [SMALL_STATE(1111)] = 31323, - [SMALL_STATE(1112)] = 31403, - [SMALL_STATE(1113)] = 31445, - [SMALL_STATE(1114)] = 31487, - [SMALL_STATE(1115)] = 31561, - [SMALL_STATE(1116)] = 31603, - [SMALL_STATE(1117)] = 31677, - [SMALL_STATE(1118)] = 31719, - [SMALL_STATE(1119)] = 31761, - [SMALL_STATE(1120)] = 31803, - [SMALL_STATE(1121)] = 31845, - [SMALL_STATE(1122)] = 31887, - [SMALL_STATE(1123)] = 31929, - [SMALL_STATE(1124)] = 32009, - [SMALL_STATE(1125)] = 32051, - [SMALL_STATE(1126)] = 32093, - [SMALL_STATE(1127)] = 32135, - [SMALL_STATE(1128)] = 32177, - [SMALL_STATE(1129)] = 32219, - [SMALL_STATE(1130)] = 32299, - [SMALL_STATE(1131)] = 32341, - [SMALL_STATE(1132)] = 32383, - [SMALL_STATE(1133)] = 32465, - [SMALL_STATE(1134)] = 32507, - [SMALL_STATE(1135)] = 32549, - [SMALL_STATE(1136)] = 32629, - [SMALL_STATE(1137)] = 32709, - [SMALL_STATE(1138)] = 32751, - [SMALL_STATE(1139)] = 32831, - [SMALL_STATE(1140)] = 32874, - [SMALL_STATE(1141)] = 32921, - [SMALL_STATE(1142)] = 32990, - [SMALL_STATE(1143)] = 33057, - [SMALL_STATE(1144)] = 33136, - [SMALL_STATE(1145)] = 33199, - [SMALL_STATE(1146)] = 33272, - [SMALL_STATE(1147)] = 33345, - [SMALL_STATE(1148)] = 33388, - [SMALL_STATE(1149)] = 33465, - [SMALL_STATE(1150)] = 33544, - [SMALL_STATE(1151)] = 33619, - [SMALL_STATE(1152)] = 33698, - [SMALL_STATE(1153)] = 33759, - [SMALL_STATE(1154)] = 33816, - [SMALL_STATE(1155)] = 33883, - [SMALL_STATE(1156)] = 33950, - [SMALL_STATE(1157)] = 34029, - [SMALL_STATE(1158)] = 34082, - [SMALL_STATE(1159)] = 34131, - [SMALL_STATE(1160)] = 34174, - [SMALL_STATE(1161)] = 34239, - [SMALL_STATE(1162)] = 34290, - [SMALL_STATE(1163)] = 34333, - [SMALL_STATE(1164)] = 34400, - [SMALL_STATE(1165)] = 34473, - [SMALL_STATE(1166)] = 34552, - [SMALL_STATE(1167)] = 34625, - [SMALL_STATE(1168)] = 34692, - [SMALL_STATE(1169)] = 34765, - [SMALL_STATE(1170)] = 34838, - [SMALL_STATE(1171)] = 34917, - [SMALL_STATE(1172)] = 34996, - [SMALL_STATE(1173)] = 35075, - [SMALL_STATE(1174)] = 35154, - [SMALL_STATE(1175)] = 35227, - [SMALL_STATE(1176)] = 35308, - [SMALL_STATE(1177)] = 35387, - [SMALL_STATE(1178)] = 35469, - [SMALL_STATE(1179)] = 35537, - [SMALL_STATE(1180)] = 35615, - [SMALL_STATE(1181)] = 35695, - [SMALL_STATE(1182)] = 35773, - [SMALL_STATE(1183)] = 35853, - [SMALL_STATE(1184)] = 35933, - [SMALL_STATE(1185)] = 36011, - [SMALL_STATE(1186)] = 36091, - [SMALL_STATE(1187)] = 36171, - [SMALL_STATE(1188)] = 36239, - [SMALL_STATE(1189)] = 36314, - [SMALL_STATE(1190)] = 36391, - [SMALL_STATE(1191)] = 36468, - [SMALL_STATE(1192)] = 36545, - [SMALL_STATE(1193)] = 36622, - [SMALL_STATE(1194)] = 36699, - [SMALL_STATE(1195)] = 36774, - [SMALL_STATE(1196)] = 36851, - [SMALL_STATE(1197)] = 36926, - [SMALL_STATE(1198)] = 37001, - [SMALL_STATE(1199)] = 37080, - [SMALL_STATE(1200)] = 37159, - [SMALL_STATE(1201)] = 37236, - [SMALL_STATE(1202)] = 37313, - [SMALL_STATE(1203)] = 37390, - [SMALL_STATE(1204)] = 37467, - [SMALL_STATE(1205)] = 37546, - [SMALL_STATE(1206)] = 37623, - [SMALL_STATE(1207)] = 37700, - [SMALL_STATE(1208)] = 37777, - [SMALL_STATE(1209)] = 37854, - [SMALL_STATE(1210)] = 37931, - [SMALL_STATE(1211)] = 38006, - [SMALL_STATE(1212)] = 38085, - [SMALL_STATE(1213)] = 38164, - [SMALL_STATE(1214)] = 38239, - [SMALL_STATE(1215)] = 38316, - [SMALL_STATE(1216)] = 38393, - [SMALL_STATE(1217)] = 38470, - [SMALL_STATE(1218)] = 38547, - [SMALL_STATE(1219)] = 38626, - [SMALL_STATE(1220)] = 38703, - [SMALL_STATE(1221)] = 38778, - [SMALL_STATE(1222)] = 38855, - [SMALL_STATE(1223)] = 38932, - [SMALL_STATE(1224)] = 39007, - [SMALL_STATE(1225)] = 39084, - [SMALL_STATE(1226)] = 39161, - [SMALL_STATE(1227)] = 39238, - [SMALL_STATE(1228)] = 39315, - [SMALL_STATE(1229)] = 39392, - [SMALL_STATE(1230)] = 39469, - [SMALL_STATE(1231)] = 39546, - [SMALL_STATE(1232)] = 39623, - [SMALL_STATE(1233)] = 39700, - [SMALL_STATE(1234)] = 39777, - [SMALL_STATE(1235)] = 39852, - [SMALL_STATE(1236)] = 39931, - [SMALL_STATE(1237)] = 40010, - [SMALL_STATE(1238)] = 40086, - [SMALL_STATE(1239)] = 40162, - [SMALL_STATE(1240)] = 40208, - [SMALL_STATE(1241)] = 40270, - [SMALL_STATE(1242)] = 40346, - [SMALL_STATE(1243)] = 40422, - [SMALL_STATE(1244)] = 40498, - [SMALL_STATE(1245)] = 40574, - [SMALL_STATE(1246)] = 40650, - [SMALL_STATE(1247)] = 40726, - [SMALL_STATE(1248)] = 40802, - [SMALL_STATE(1249)] = 40878, - [SMALL_STATE(1250)] = 40954, - [SMALL_STATE(1251)] = 41030, - [SMALL_STATE(1252)] = 41106, - [SMALL_STATE(1253)] = 41182, - [SMALL_STATE(1254)] = 41258, - [SMALL_STATE(1255)] = 41334, - [SMALL_STATE(1256)] = 41410, - [SMALL_STATE(1257)] = 41486, - [SMALL_STATE(1258)] = 41532, - [SMALL_STATE(1259)] = 41594, - [SMALL_STATE(1260)] = 41670, - [SMALL_STATE(1261)] = 41746, - [SMALL_STATE(1262)] = 41822, - [SMALL_STATE(1263)] = 41898, - [SMALL_STATE(1264)] = 41974, - [SMALL_STATE(1265)] = 42050, - [SMALL_STATE(1266)] = 42126, - [SMALL_STATE(1267)] = 42202, - [SMALL_STATE(1268)] = 42278, - [SMALL_STATE(1269)] = 42354, - [SMALL_STATE(1270)] = 42430, - [SMALL_STATE(1271)] = 42506, - [SMALL_STATE(1272)] = 42582, - [SMALL_STATE(1273)] = 42658, - [SMALL_STATE(1274)] = 42734, - [SMALL_STATE(1275)] = 42810, - [SMALL_STATE(1276)] = 42886, - [SMALL_STATE(1277)] = 42962, - [SMALL_STATE(1278)] = 43038, - [SMALL_STATE(1279)] = 43114, - [SMALL_STATE(1280)] = 43190, - [SMALL_STATE(1281)] = 43266, - [SMALL_STATE(1282)] = 43342, - [SMALL_STATE(1283)] = 43418, - [SMALL_STATE(1284)] = 43494, - [SMALL_STATE(1285)] = 43570, - [SMALL_STATE(1286)] = 43646, - [SMALL_STATE(1287)] = 43722, - [SMALL_STATE(1288)] = 43798, - [SMALL_STATE(1289)] = 43874, - [SMALL_STATE(1290)] = 43950, - [SMALL_STATE(1291)] = 44026, - [SMALL_STATE(1292)] = 44102, - [SMALL_STATE(1293)] = 44178, - [SMALL_STATE(1294)] = 44254, - [SMALL_STATE(1295)] = 44330, - [SMALL_STATE(1296)] = 44406, - [SMALL_STATE(1297)] = 44482, - [SMALL_STATE(1298)] = 44558, - [SMALL_STATE(1299)] = 44634, - [SMALL_STATE(1300)] = 44710, - [SMALL_STATE(1301)] = 44786, - [SMALL_STATE(1302)] = 44862, - [SMALL_STATE(1303)] = 44938, - [SMALL_STATE(1304)] = 45014, - [SMALL_STATE(1305)] = 45090, - [SMALL_STATE(1306)] = 45166, - [SMALL_STATE(1307)] = 45242, - [SMALL_STATE(1308)] = 45318, - [SMALL_STATE(1309)] = 45394, - [SMALL_STATE(1310)] = 45459, - [SMALL_STATE(1311)] = 45524, - [SMALL_STATE(1312)] = 45589, - [SMALL_STATE(1313)] = 45648, - [SMALL_STATE(1314)] = 45707, - [SMALL_STATE(1315)] = 45744, - [SMALL_STATE(1316)] = 45809, - [SMALL_STATE(1317)] = 45874, - [SMALL_STATE(1318)] = 45912, - [SMALL_STATE(1319)] = 45948, - [SMALL_STATE(1320)] = 45984, - [SMALL_STATE(1321)] = 46020, - [SMALL_STATE(1322)] = 46056, - [SMALL_STATE(1323)] = 46104, - [SMALL_STATE(1324)] = 46152, - [SMALL_STATE(1325)] = 46200, - [SMALL_STATE(1326)] = 46248, - [SMALL_STATE(1327)] = 46296, - [SMALL_STATE(1328)] = 46344, - [SMALL_STATE(1329)] = 46392, - [SMALL_STATE(1330)] = 46440, - [SMALL_STATE(1331)] = 46488, - [SMALL_STATE(1332)] = 46536, - [SMALL_STATE(1333)] = 46584, - [SMALL_STATE(1334)] = 46629, - [SMALL_STATE(1335)] = 46674, - [SMALL_STATE(1336)] = 46719, - [SMALL_STATE(1337)] = 46764, - [SMALL_STATE(1338)] = 46809, - [SMALL_STATE(1339)] = 46854, - [SMALL_STATE(1340)] = 46894, - [SMALL_STATE(1341)] = 46934, - [SMALL_STATE(1342)] = 46974, - [SMALL_STATE(1343)] = 47023, - [SMALL_STATE(1344)] = 47065, - [SMALL_STATE(1345)] = 47104, - [SMALL_STATE(1346)] = 47143, - [SMALL_STATE(1347)] = 47179, - [SMALL_STATE(1348)] = 47203, - [SMALL_STATE(1349)] = 47242, - [SMALL_STATE(1350)] = 47281, - [SMALL_STATE(1351)] = 47301, - [SMALL_STATE(1352)] = 47321, - [SMALL_STATE(1353)] = 47355, - [SMALL_STATE(1354)] = 47375, - [SMALL_STATE(1355)] = 47411, - [SMALL_STATE(1356)] = 47431, - [SMALL_STATE(1357)] = 47465, - [SMALL_STATE(1358)] = 47485, - [SMALL_STATE(1359)] = 47505, - [SMALL_STATE(1360)] = 47525, - [SMALL_STATE(1361)] = 47545, - [SMALL_STATE(1362)] = 47565, - [SMALL_STATE(1363)] = 47585, - [SMALL_STATE(1364)] = 47605, - [SMALL_STATE(1365)] = 47625, - [SMALL_STATE(1366)] = 47645, - [SMALL_STATE(1367)] = 47679, - [SMALL_STATE(1368)] = 47699, - [SMALL_STATE(1369)] = 47719, - [SMALL_STATE(1370)] = 47739, - [SMALL_STATE(1371)] = 47772, - [SMALL_STATE(1372)] = 47791, - [SMALL_STATE(1373)] = 47810, - [SMALL_STATE(1374)] = 47829, - [SMALL_STATE(1375)] = 47862, - [SMALL_STATE(1376)] = 47895, - [SMALL_STATE(1377)] = 47928, - [SMALL_STATE(1378)] = 47961, - [SMALL_STATE(1379)] = 47980, - [SMALL_STATE(1380)] = 47999, - [SMALL_STATE(1381)] = 48018, - [SMALL_STATE(1382)] = 48037, - [SMALL_STATE(1383)] = 48070, - [SMALL_STATE(1384)] = 48103, - [SMALL_STATE(1385)] = 48122, - [SMALL_STATE(1386)] = 48141, - [SMALL_STATE(1387)] = 48176, - [SMALL_STATE(1388)] = 48195, - [SMALL_STATE(1389)] = 48230, - [SMALL_STATE(1390)] = 48263, - [SMALL_STATE(1391)] = 48304, - [SMALL_STATE(1392)] = 48323, - [SMALL_STATE(1393)] = 48342, - [SMALL_STATE(1394)] = 48361, - [SMALL_STATE(1395)] = 48394, - [SMALL_STATE(1396)] = 48435, - [SMALL_STATE(1397)] = 48468, - [SMALL_STATE(1398)] = 48487, - [SMALL_STATE(1399)] = 48512, - [SMALL_STATE(1400)] = 48531, - [SMALL_STATE(1401)] = 48550, - [SMALL_STATE(1402)] = 48569, - [SMALL_STATE(1403)] = 48599, - [SMALL_STATE(1404)] = 48633, - [SMALL_STATE(1405)] = 48663, - [SMALL_STATE(1406)] = 48697, - [SMALL_STATE(1407)] = 48716, - [SMALL_STATE(1408)] = 48739, - [SMALL_STATE(1409)] = 48770, - [SMALL_STATE(1410)] = 48797, - [SMALL_STATE(1411)] = 48816, - [SMALL_STATE(1412)] = 48847, - [SMALL_STATE(1413)] = 48872, - [SMALL_STATE(1414)] = 48903, - [SMALL_STATE(1415)] = 48930, - [SMALL_STATE(1416)] = 48949, - [SMALL_STATE(1417)] = 48980, - [SMALL_STATE(1418)] = 49011, - [SMALL_STATE(1419)] = 49036, - [SMALL_STATE(1420)] = 49054, - [SMALL_STATE(1421)] = 49080, - [SMALL_STATE(1422)] = 49108, - [SMALL_STATE(1423)] = 49136, - [SMALL_STATE(1424)] = 49164, - [SMALL_STATE(1425)] = 49186, - [SMALL_STATE(1426)] = 49204, - [SMALL_STATE(1427)] = 49224, - [SMALL_STATE(1428)] = 49250, - [SMALL_STATE(1429)] = 49276, - [SMALL_STATE(1430)] = 49298, - [SMALL_STATE(1431)] = 49326, - [SMALL_STATE(1432)] = 49344, - [SMALL_STATE(1433)] = 49362, - [SMALL_STATE(1434)] = 49390, - [SMALL_STATE(1435)] = 49412, - [SMALL_STATE(1436)] = 49436, - [SMALL_STATE(1437)] = 49458, - [SMALL_STATE(1438)] = 49476, - [SMALL_STATE(1439)] = 49494, - [SMALL_STATE(1440)] = 49520, - [SMALL_STATE(1441)] = 49543, - [SMALL_STATE(1442)] = 49566, - [SMALL_STATE(1443)] = 49589, - [SMALL_STATE(1444)] = 49612, - [SMALL_STATE(1445)] = 49637, - [SMALL_STATE(1446)] = 49658, - [SMALL_STATE(1447)] = 49681, - [SMALL_STATE(1448)] = 49704, - [SMALL_STATE(1449)] = 49725, - [SMALL_STATE(1450)] = 49748, - [SMALL_STATE(1451)] = 49773, - [SMALL_STATE(1452)] = 49796, - [SMALL_STATE(1453)] = 49821, - [SMALL_STATE(1454)] = 49838, - [SMALL_STATE(1455)] = 49855, - [SMALL_STATE(1456)] = 49878, - [SMALL_STATE(1457)] = 49901, - [SMALL_STATE(1458)] = 49924, - [SMALL_STATE(1459)] = 49949, - [SMALL_STATE(1460)] = 49966, - [SMALL_STATE(1461)] = 49985, - [SMALL_STATE(1462)] = 50008, - [SMALL_STATE(1463)] = 50029, - [SMALL_STATE(1464)] = 50050, - [SMALL_STATE(1465)] = 50073, - [SMALL_STATE(1466)] = 50096, - [SMALL_STATE(1467)] = 50119, - [SMALL_STATE(1468)] = 50140, - [SMALL_STATE(1469)] = 50163, - [SMALL_STATE(1470)] = 50188, - [SMALL_STATE(1471)] = 50213, - [SMALL_STATE(1472)] = 50236, - [SMALL_STATE(1473)] = 50263, - [SMALL_STATE(1474)] = 50286, - [SMALL_STATE(1475)] = 50311, - [SMALL_STATE(1476)] = 50336, - [SMALL_STATE(1477)] = 50359, - [SMALL_STATE(1478)] = 50382, - [SMALL_STATE(1479)] = 50407, - [SMALL_STATE(1480)] = 50430, - [SMALL_STATE(1481)] = 50455, - [SMALL_STATE(1482)] = 50478, - [SMALL_STATE(1483)] = 50501, - [SMALL_STATE(1484)] = 50522, - [SMALL_STATE(1485)] = 50543, - [SMALL_STATE(1486)] = 50564, - [SMALL_STATE(1487)] = 50589, - [SMALL_STATE(1488)] = 50610, - [SMALL_STATE(1489)] = 50633, - [SMALL_STATE(1490)] = 50654, - [SMALL_STATE(1491)] = 50677, - [SMALL_STATE(1492)] = 50702, - [SMALL_STATE(1493)] = 50725, - [SMALL_STATE(1494)] = 50746, - [SMALL_STATE(1495)] = 50767, - [SMALL_STATE(1496)] = 50794, - [SMALL_STATE(1497)] = 50819, - [SMALL_STATE(1498)] = 50842, - [SMALL_STATE(1499)] = 50865, - [SMALL_STATE(1500)] = 50888, - [SMALL_STATE(1501)] = 50911, - [SMALL_STATE(1502)] = 50932, - [SMALL_STATE(1503)] = 50960, - [SMALL_STATE(1504)] = 50982, - [SMALL_STATE(1505)] = 51008, - [SMALL_STATE(1506)] = 51028, - [SMALL_STATE(1507)] = 51056, - [SMALL_STATE(1508)] = 51080, - [SMALL_STATE(1509)] = 51108, - [SMALL_STATE(1510)] = 51128, - [SMALL_STATE(1511)] = 51156, - [SMALL_STATE(1512)] = 51184, - [SMALL_STATE(1513)] = 51204, - [SMALL_STATE(1514)] = 51226, - [SMALL_STATE(1515)] = 51254, - [SMALL_STATE(1516)] = 51275, - [SMALL_STATE(1517)] = 51290, - [SMALL_STATE(1518)] = 51307, - [SMALL_STATE(1519)] = 51324, - [SMALL_STATE(1520)] = 51339, - [SMALL_STATE(1521)] = 51354, - [SMALL_STATE(1522)] = 51371, - [SMALL_STATE(1523)] = 51386, - [SMALL_STATE(1524)] = 51401, - [SMALL_STATE(1525)] = 51416, - [SMALL_STATE(1526)] = 51435, - [SMALL_STATE(1527)] = 51452, - [SMALL_STATE(1528)] = 51475, - [SMALL_STATE(1529)] = 51494, - [SMALL_STATE(1530)] = 51511, - [SMALL_STATE(1531)] = 51532, - [SMALL_STATE(1532)] = 51549, - [SMALL_STATE(1533)] = 51574, - [SMALL_STATE(1534)] = 51593, - [SMALL_STATE(1535)] = 51610, - [SMALL_STATE(1536)] = 51629, - [SMALL_STATE(1537)] = 51646, - [SMALL_STATE(1538)] = 51663, - [SMALL_STATE(1539)] = 51680, - [SMALL_STATE(1540)] = 51697, - [SMALL_STATE(1541)] = 51718, - [SMALL_STATE(1542)] = 51735, - [SMALL_STATE(1543)] = 51752, - [SMALL_STATE(1544)] = 51769, - [SMALL_STATE(1545)] = 51784, - [SMALL_STATE(1546)] = 51801, - [SMALL_STATE(1547)] = 51816, - [SMALL_STATE(1548)] = 51833, - [SMALL_STATE(1549)] = 51848, - [SMALL_STATE(1550)] = 51865, - [SMALL_STATE(1551)] = 51886, - [SMALL_STATE(1552)] = 51903, - [SMALL_STATE(1553)] = 51918, - [SMALL_STATE(1554)] = 51933, - [SMALL_STATE(1555)] = 51950, - [SMALL_STATE(1556)] = 51965, - [SMALL_STATE(1557)] = 51982, - [SMALL_STATE(1558)] = 51999, - [SMALL_STATE(1559)] = 52021, - [SMALL_STATE(1560)] = 52043, - [SMALL_STATE(1561)] = 52059, - [SMALL_STATE(1562)] = 52073, - [SMALL_STATE(1563)] = 52091, - [SMALL_STATE(1564)] = 52111, - [SMALL_STATE(1565)] = 52133, - [SMALL_STATE(1566)] = 52155, - [SMALL_STATE(1567)] = 52177, - [SMALL_STATE(1568)] = 52199, - [SMALL_STATE(1569)] = 52221, - [SMALL_STATE(1570)] = 52243, - [SMALL_STATE(1571)] = 52265, - [SMALL_STATE(1572)] = 52283, - [SMALL_STATE(1573)] = 52297, - [SMALL_STATE(1574)] = 52311, - [SMALL_STATE(1575)] = 52333, - [SMALL_STATE(1576)] = 52351, - [SMALL_STATE(1577)] = 52369, - [SMALL_STATE(1578)] = 52387, - [SMALL_STATE(1579)] = 52409, - [SMALL_STATE(1580)] = 52427, - [SMALL_STATE(1581)] = 52441, - [SMALL_STATE(1582)] = 52463, - [SMALL_STATE(1583)] = 52485, - [SMALL_STATE(1584)] = 52503, - [SMALL_STATE(1585)] = 52525, - [SMALL_STATE(1586)] = 52547, - [SMALL_STATE(1587)] = 52561, - [SMALL_STATE(1588)] = 52575, - [SMALL_STATE(1589)] = 52597, - [SMALL_STATE(1590)] = 52619, - [SMALL_STATE(1591)] = 52641, - [SMALL_STATE(1592)] = 52655, - [SMALL_STATE(1593)] = 52677, - [SMALL_STATE(1594)] = 52699, - [SMALL_STATE(1595)] = 52713, - [SMALL_STATE(1596)] = 52727, - [SMALL_STATE(1597)] = 52747, - [SMALL_STATE(1598)] = 52767, - [SMALL_STATE(1599)] = 52781, - [SMALL_STATE(1600)] = 52803, - [SMALL_STATE(1601)] = 52825, - [SMALL_STATE(1602)] = 52847, - [SMALL_STATE(1603)] = 52869, - [SMALL_STATE(1604)] = 52891, - [SMALL_STATE(1605)] = 52905, - [SMALL_STATE(1606)] = 52927, - [SMALL_STATE(1607)] = 52949, - [SMALL_STATE(1608)] = 52967, - [SMALL_STATE(1609)] = 52989, - [SMALL_STATE(1610)] = 53011, - [SMALL_STATE(1611)] = 53033, - [SMALL_STATE(1612)] = 53047, - [SMALL_STATE(1613)] = 53069, - [SMALL_STATE(1614)] = 53083, - [SMALL_STATE(1615)] = 53105, - [SMALL_STATE(1616)] = 53123, - [SMALL_STATE(1617)] = 53141, - [SMALL_STATE(1618)] = 53155, - [SMALL_STATE(1619)] = 53169, - [SMALL_STATE(1620)] = 53191, - [SMALL_STATE(1621)] = 53213, - [SMALL_STATE(1622)] = 53235, - [SMALL_STATE(1623)] = 53257, - [SMALL_STATE(1624)] = 53279, - [SMALL_STATE(1625)] = 53297, - [SMALL_STATE(1626)] = 53319, - [SMALL_STATE(1627)] = 53341, - [SMALL_STATE(1628)] = 53359, - [SMALL_STATE(1629)] = 53373, - [SMALL_STATE(1630)] = 53391, - [SMALL_STATE(1631)] = 53413, - [SMALL_STATE(1632)] = 53433, - [SMALL_STATE(1633)] = 53444, - [SMALL_STATE(1634)] = 53459, - [SMALL_STATE(1635)] = 53478, - [SMALL_STATE(1636)] = 53497, - [SMALL_STATE(1637)] = 53512, - [SMALL_STATE(1638)] = 53531, - [SMALL_STATE(1639)] = 53550, - [SMALL_STATE(1640)] = 53567, - [SMALL_STATE(1641)] = 53582, - [SMALL_STATE(1642)] = 53597, - [SMALL_STATE(1643)] = 53616, - [SMALL_STATE(1644)] = 53631, - [SMALL_STATE(1645)] = 53648, - [SMALL_STATE(1646)] = 53663, - [SMALL_STATE(1647)] = 53678, - [SMALL_STATE(1648)] = 53693, - [SMALL_STATE(1649)] = 53704, - [SMALL_STATE(1650)] = 53719, - [SMALL_STATE(1651)] = 53734, - [SMALL_STATE(1652)] = 53749, - [SMALL_STATE(1653)] = 53760, - [SMALL_STATE(1654)] = 53777, - [SMALL_STATE(1655)] = 53792, - [SMALL_STATE(1656)] = 53807, - [SMALL_STATE(1657)] = 53824, - [SMALL_STATE(1658)] = 53841, - [SMALL_STATE(1659)] = 53860, - [SMALL_STATE(1660)] = 53879, - [SMALL_STATE(1661)] = 53894, - [SMALL_STATE(1662)] = 53913, - [SMALL_STATE(1663)] = 53930, - [SMALL_STATE(1664)] = 53947, - [SMALL_STATE(1665)] = 53966, - [SMALL_STATE(1666)] = 53985, - [SMALL_STATE(1667)] = 54004, - [SMALL_STATE(1668)] = 54019, - [SMALL_STATE(1669)] = 54038, - [SMALL_STATE(1670)] = 54057, - [SMALL_STATE(1671)] = 54074, - [SMALL_STATE(1672)] = 54091, - [SMALL_STATE(1673)] = 54110, - [SMALL_STATE(1674)] = 54125, - [SMALL_STATE(1675)] = 54144, - [SMALL_STATE(1676)] = 54163, - [SMALL_STATE(1677)] = 54182, - [SMALL_STATE(1678)] = 54197, - [SMALL_STATE(1679)] = 54212, - [SMALL_STATE(1680)] = 54227, - [SMALL_STATE(1681)] = 54242, - [SMALL_STATE(1682)] = 54261, - [SMALL_STATE(1683)] = 54276, - [SMALL_STATE(1684)] = 54293, - [SMALL_STATE(1685)] = 54310, - [SMALL_STATE(1686)] = 54325, - [SMALL_STATE(1687)] = 54340, - [SMALL_STATE(1688)] = 54357, - [SMALL_STATE(1689)] = 54372, - [SMALL_STATE(1690)] = 54389, - [SMALL_STATE(1691)] = 54404, - [SMALL_STATE(1692)] = 54423, - [SMALL_STATE(1693)] = 54438, - [SMALL_STATE(1694)] = 54453, - [SMALL_STATE(1695)] = 54468, - [SMALL_STATE(1696)] = 54483, - [SMALL_STATE(1697)] = 54502, - [SMALL_STATE(1698)] = 54517, - [SMALL_STATE(1699)] = 54532, - [SMALL_STATE(1700)] = 54549, - [SMALL_STATE(1701)] = 54564, - [SMALL_STATE(1702)] = 54581, - [SMALL_STATE(1703)] = 54596, - [SMALL_STATE(1704)] = 54611, - [SMALL_STATE(1705)] = 54626, - [SMALL_STATE(1706)] = 54641, - [SMALL_STATE(1707)] = 54654, - [SMALL_STATE(1708)] = 54669, - [SMALL_STATE(1709)] = 54682, - [SMALL_STATE(1710)] = 54699, - [SMALL_STATE(1711)] = 54714, - [SMALL_STATE(1712)] = 54733, - [SMALL_STATE(1713)] = 54748, - [SMALL_STATE(1714)] = 54767, - [SMALL_STATE(1715)] = 54784, - [SMALL_STATE(1716)] = 54799, - [SMALL_STATE(1717)] = 54814, - [SMALL_STATE(1718)] = 54827, - [SMALL_STATE(1719)] = 54842, - [SMALL_STATE(1720)] = 54859, - [SMALL_STATE(1721)] = 54874, - [SMALL_STATE(1722)] = 54889, - [SMALL_STATE(1723)] = 54904, - [SMALL_STATE(1724)] = 54919, - [SMALL_STATE(1725)] = 54938, - [SMALL_STATE(1726)] = 54953, - [SMALL_STATE(1727)] = 54968, - [SMALL_STATE(1728)] = 54987, - [SMALL_STATE(1729)] = 55003, - [SMALL_STATE(1730)] = 55019, - [SMALL_STATE(1731)] = 55029, - [SMALL_STATE(1732)] = 55039, - [SMALL_STATE(1733)] = 55053, - [SMALL_STATE(1734)] = 55069, - [SMALL_STATE(1735)] = 55085, - [SMALL_STATE(1736)] = 55099, - [SMALL_STATE(1737)] = 55113, - [SMALL_STATE(1738)] = 55127, - [SMALL_STATE(1739)] = 55141, - [SMALL_STATE(1740)] = 55155, - [SMALL_STATE(1741)] = 55167, - [SMALL_STATE(1742)] = 55183, - [SMALL_STATE(1743)] = 55199, - [SMALL_STATE(1744)] = 55215, - [SMALL_STATE(1745)] = 55229, - [SMALL_STATE(1746)] = 55245, - [SMALL_STATE(1747)] = 55259, - [SMALL_STATE(1748)] = 55275, - [SMALL_STATE(1749)] = 55289, - [SMALL_STATE(1750)] = 55305, - [SMALL_STATE(1751)] = 55321, - [SMALL_STATE(1752)] = 55335, - [SMALL_STATE(1753)] = 55349, - [SMALL_STATE(1754)] = 55363, - [SMALL_STATE(1755)] = 55373, - [SMALL_STATE(1756)] = 55387, - [SMALL_STATE(1757)] = 55403, - [SMALL_STATE(1758)] = 55419, - [SMALL_STATE(1759)] = 55435, - [SMALL_STATE(1760)] = 55449, - [SMALL_STATE(1761)] = 55465, - [SMALL_STATE(1762)] = 55477, - [SMALL_STATE(1763)] = 55493, - [SMALL_STATE(1764)] = 55507, - [SMALL_STATE(1765)] = 55523, - [SMALL_STATE(1766)] = 55539, - [SMALL_STATE(1767)] = 55555, - [SMALL_STATE(1768)] = 55569, - [SMALL_STATE(1769)] = 55581, - [SMALL_STATE(1770)] = 55595, - [SMALL_STATE(1771)] = 55611, - [SMALL_STATE(1772)] = 55627, - [SMALL_STATE(1773)] = 55643, - [SMALL_STATE(1774)] = 55657, - [SMALL_STATE(1775)] = 55673, - [SMALL_STATE(1776)] = 55685, - [SMALL_STATE(1777)] = 55701, - [SMALL_STATE(1778)] = 55715, - [SMALL_STATE(1779)] = 55731, - [SMALL_STATE(1780)] = 55747, - [SMALL_STATE(1781)] = 55763, - [SMALL_STATE(1782)] = 55779, - [SMALL_STATE(1783)] = 55795, - [SMALL_STATE(1784)] = 55811, - [SMALL_STATE(1785)] = 55821, - [SMALL_STATE(1786)] = 55837, - [SMALL_STATE(1787)] = 55847, - [SMALL_STATE(1788)] = 55863, - [SMALL_STATE(1789)] = 55877, - [SMALL_STATE(1790)] = 55893, - [SMALL_STATE(1791)] = 55907, - [SMALL_STATE(1792)] = 55923, - [SMALL_STATE(1793)] = 55939, - [SMALL_STATE(1794)] = 55955, - [SMALL_STATE(1795)] = 55971, - [SMALL_STATE(1796)] = 55981, - [SMALL_STATE(1797)] = 55997, - [SMALL_STATE(1798)] = 56007, - [SMALL_STATE(1799)] = 56017, - [SMALL_STATE(1800)] = 56033, - [SMALL_STATE(1801)] = 56049, - [SMALL_STATE(1802)] = 56065, - [SMALL_STATE(1803)] = 56079, - [SMALL_STATE(1804)] = 56095, - [SMALL_STATE(1805)] = 56111, - [SMALL_STATE(1806)] = 56125, - [SMALL_STATE(1807)] = 56141, - [SMALL_STATE(1808)] = 56155, - [SMALL_STATE(1809)] = 56169, - [SMALL_STATE(1810)] = 56183, - [SMALL_STATE(1811)] = 56197, - [SMALL_STATE(1812)] = 56207, - [SMALL_STATE(1813)] = 56221, - [SMALL_STATE(1814)] = 56237, - [SMALL_STATE(1815)] = 56251, - [SMALL_STATE(1816)] = 56265, - [SMALL_STATE(1817)] = 56279, - [SMALL_STATE(1818)] = 56293, - [SMALL_STATE(1819)] = 56307, - [SMALL_STATE(1820)] = 56321, - [SMALL_STATE(1821)] = 56331, - [SMALL_STATE(1822)] = 56345, - [SMALL_STATE(1823)] = 56361, - [SMALL_STATE(1824)] = 56377, - [SMALL_STATE(1825)] = 56393, - [SMALL_STATE(1826)] = 56407, - [SMALL_STATE(1827)] = 56421, - [SMALL_STATE(1828)] = 56437, - [SMALL_STATE(1829)] = 56449, - [SMALL_STATE(1830)] = 56459, - [SMALL_STATE(1831)] = 56473, - [SMALL_STATE(1832)] = 56483, - [SMALL_STATE(1833)] = 56493, - [SMALL_STATE(1834)] = 56507, - [SMALL_STATE(1835)] = 56523, - [SMALL_STATE(1836)] = 56533, - [SMALL_STATE(1837)] = 56547, - [SMALL_STATE(1838)] = 56563, - [SMALL_STATE(1839)] = 56579, - [SMALL_STATE(1840)] = 56593, - [SMALL_STATE(1841)] = 56603, - [SMALL_STATE(1842)] = 56617, - [SMALL_STATE(1843)] = 56633, - [SMALL_STATE(1844)] = 56647, - [SMALL_STATE(1845)] = 56657, - [SMALL_STATE(1846)] = 56673, - [SMALL_STATE(1847)] = 56689, - [SMALL_STATE(1848)] = 56703, - [SMALL_STATE(1849)] = 56717, - [SMALL_STATE(1850)] = 56731, - [SMALL_STATE(1851)] = 56741, - [SMALL_STATE(1852)] = 56757, - [SMALL_STATE(1853)] = 56771, - [SMALL_STATE(1854)] = 56787, - [SMALL_STATE(1855)] = 56801, - [SMALL_STATE(1856)] = 56815, - [SMALL_STATE(1857)] = 56829, - [SMALL_STATE(1858)] = 56845, - [SMALL_STATE(1859)] = 56861, - [SMALL_STATE(1860)] = 56877, - [SMALL_STATE(1861)] = 56891, - [SMALL_STATE(1862)] = 56907, - [SMALL_STATE(1863)] = 56921, - [SMALL_STATE(1864)] = 56935, - [SMALL_STATE(1865)] = 56949, - [SMALL_STATE(1866)] = 56959, - [SMALL_STATE(1867)] = 56973, - [SMALL_STATE(1868)] = 56987, - [SMALL_STATE(1869)] = 57003, - [SMALL_STATE(1870)] = 57013, - [SMALL_STATE(1871)] = 57029, - [SMALL_STATE(1872)] = 57045, - [SMALL_STATE(1873)] = 57059, - [SMALL_STATE(1874)] = 57073, - [SMALL_STATE(1875)] = 57089, - [SMALL_STATE(1876)] = 57103, - [SMALL_STATE(1877)] = 57119, - [SMALL_STATE(1878)] = 57133, - [SMALL_STATE(1879)] = 57149, - [SMALL_STATE(1880)] = 57158, - [SMALL_STATE(1881)] = 57171, - [SMALL_STATE(1882)] = 57182, - [SMALL_STATE(1883)] = 57193, - [SMALL_STATE(1884)] = 57206, - [SMALL_STATE(1885)] = 57219, - [SMALL_STATE(1886)] = 57232, - [SMALL_STATE(1887)] = 57245, - [SMALL_STATE(1888)] = 57258, - [SMALL_STATE(1889)] = 57271, - [SMALL_STATE(1890)] = 57284, - [SMALL_STATE(1891)] = 57295, - [SMALL_STATE(1892)] = 57308, - [SMALL_STATE(1893)] = 57321, - [SMALL_STATE(1894)] = 57334, - [SMALL_STATE(1895)] = 57347, - [SMALL_STATE(1896)] = 57360, - [SMALL_STATE(1897)] = 57373, - [SMALL_STATE(1898)] = 57386, - [SMALL_STATE(1899)] = 57399, - [SMALL_STATE(1900)] = 57412, - [SMALL_STATE(1901)] = 57425, - [SMALL_STATE(1902)] = 57438, - [SMALL_STATE(1903)] = 57451, - [SMALL_STATE(1904)] = 57462, - [SMALL_STATE(1905)] = 57475, - [SMALL_STATE(1906)] = 57488, - [SMALL_STATE(1907)] = 57501, - [SMALL_STATE(1908)] = 57510, - [SMALL_STATE(1909)] = 57523, - [SMALL_STATE(1910)] = 57536, - [SMALL_STATE(1911)] = 57549, - [SMALL_STATE(1912)] = 57560, - [SMALL_STATE(1913)] = 57573, - [SMALL_STATE(1914)] = 57586, - [SMALL_STATE(1915)] = 57599, - [SMALL_STATE(1916)] = 57612, - [SMALL_STATE(1917)] = 57625, - [SMALL_STATE(1918)] = 57638, - [SMALL_STATE(1919)] = 57651, - [SMALL_STATE(1920)] = 57664, - [SMALL_STATE(1921)] = 57677, - [SMALL_STATE(1922)] = 57690, - [SMALL_STATE(1923)] = 57703, - [SMALL_STATE(1924)] = 57714, - [SMALL_STATE(1925)] = 57727, - [SMALL_STATE(1926)] = 57740, - [SMALL_STATE(1927)] = 57753, - [SMALL_STATE(1928)] = 57766, - [SMALL_STATE(1929)] = 57775, - [SMALL_STATE(1930)] = 57786, - [SMALL_STATE(1931)] = 57795, - [SMALL_STATE(1932)] = 57804, - [SMALL_STATE(1933)] = 57817, - [SMALL_STATE(1934)] = 57830, - [SMALL_STATE(1935)] = 57839, - [SMALL_STATE(1936)] = 57852, - [SMALL_STATE(1937)] = 57863, - [SMALL_STATE(1938)] = 57872, - [SMALL_STATE(1939)] = 57883, - [SMALL_STATE(1940)] = 57894, - [SMALL_STATE(1941)] = 57905, - [SMALL_STATE(1942)] = 57916, - [SMALL_STATE(1943)] = 57927, - [SMALL_STATE(1944)] = 57938, - [SMALL_STATE(1945)] = 57949, - [SMALL_STATE(1946)] = 57962, - [SMALL_STATE(1947)] = 57975, - [SMALL_STATE(1948)] = 57988, - [SMALL_STATE(1949)] = 58001, - [SMALL_STATE(1950)] = 58012, - [SMALL_STATE(1951)] = 58025, - [SMALL_STATE(1952)] = 58036, - [SMALL_STATE(1953)] = 58047, - [SMALL_STATE(1954)] = 58058, - [SMALL_STATE(1955)] = 58069, - [SMALL_STATE(1956)] = 58082, - [SMALL_STATE(1957)] = 58093, - [SMALL_STATE(1958)] = 58104, - [SMALL_STATE(1959)] = 58115, - [SMALL_STATE(1960)] = 58126, - [SMALL_STATE(1961)] = 58137, - [SMALL_STATE(1962)] = 58148, - [SMALL_STATE(1963)] = 58159, - [SMALL_STATE(1964)] = 58170, - [SMALL_STATE(1965)] = 58181, - [SMALL_STATE(1966)] = 58194, - [SMALL_STATE(1967)] = 58205, - [SMALL_STATE(1968)] = 58214, - [SMALL_STATE(1969)] = 58225, - [SMALL_STATE(1970)] = 58236, - [SMALL_STATE(1971)] = 58249, - [SMALL_STATE(1972)] = 58260, - [SMALL_STATE(1973)] = 58273, - [SMALL_STATE(1974)] = 58286, - [SMALL_STATE(1975)] = 58297, - [SMALL_STATE(1976)] = 58308, - [SMALL_STATE(1977)] = 58321, - [SMALL_STATE(1978)] = 58332, - [SMALL_STATE(1979)] = 58343, - [SMALL_STATE(1980)] = 58356, - [SMALL_STATE(1981)] = 58367, - [SMALL_STATE(1982)] = 58380, - [SMALL_STATE(1983)] = 58389, - [SMALL_STATE(1984)] = 58402, - [SMALL_STATE(1985)] = 58415, - [SMALL_STATE(1986)] = 58426, - [SMALL_STATE(1987)] = 58437, - [SMALL_STATE(1988)] = 58446, - [SMALL_STATE(1989)] = 58457, - [SMALL_STATE(1990)] = 58470, - [SMALL_STATE(1991)] = 58481, - [SMALL_STATE(1992)] = 58494, - [SMALL_STATE(1993)] = 58507, - [SMALL_STATE(1994)] = 58518, - [SMALL_STATE(1995)] = 58531, - [SMALL_STATE(1996)] = 58542, - [SMALL_STATE(1997)] = 58553, - [SMALL_STATE(1998)] = 58566, - [SMALL_STATE(1999)] = 58577, - [SMALL_STATE(2000)] = 58590, - [SMALL_STATE(2001)] = 58601, - [SMALL_STATE(2002)] = 58614, - [SMALL_STATE(2003)] = 58625, - [SMALL_STATE(2004)] = 58638, - [SMALL_STATE(2005)] = 58649, - [SMALL_STATE(2006)] = 58660, - [SMALL_STATE(2007)] = 58673, - [SMALL_STATE(2008)] = 58684, - [SMALL_STATE(2009)] = 58697, - [SMALL_STATE(2010)] = 58708, - [SMALL_STATE(2011)] = 58719, - [SMALL_STATE(2012)] = 58730, - [SMALL_STATE(2013)] = 58741, - [SMALL_STATE(2014)] = 58754, - [SMALL_STATE(2015)] = 58765, - [SMALL_STATE(2016)] = 58776, - [SMALL_STATE(2017)] = 58787, - [SMALL_STATE(2018)] = 58800, - [SMALL_STATE(2019)] = 58811, - [SMALL_STATE(2020)] = 58824, - [SMALL_STATE(2021)] = 58837, - [SMALL_STATE(2022)] = 58850, - [SMALL_STATE(2023)] = 58861, - [SMALL_STATE(2024)] = 58872, - [SMALL_STATE(2025)] = 58885, - [SMALL_STATE(2026)] = 58898, - [SMALL_STATE(2027)] = 58909, - [SMALL_STATE(2028)] = 58922, - [SMALL_STATE(2029)] = 58935, - [SMALL_STATE(2030)] = 58948, - [SMALL_STATE(2031)] = 58961, - [SMALL_STATE(2032)] = 58972, - [SMALL_STATE(2033)] = 58985, - [SMALL_STATE(2034)] = 58998, - [SMALL_STATE(2035)] = 59011, - [SMALL_STATE(2036)] = 59022, - [SMALL_STATE(2037)] = 59035, - [SMALL_STATE(2038)] = 59048, - [SMALL_STATE(2039)] = 59057, - [SMALL_STATE(2040)] = 59066, - [SMALL_STATE(2041)] = 59077, - [SMALL_STATE(2042)] = 59088, - [SMALL_STATE(2043)] = 59099, - [SMALL_STATE(2044)] = 59110, - [SMALL_STATE(2045)] = 59121, - [SMALL_STATE(2046)] = 59132, - [SMALL_STATE(2047)] = 59143, - [SMALL_STATE(2048)] = 59154, - [SMALL_STATE(2049)] = 59165, - [SMALL_STATE(2050)] = 59176, - [SMALL_STATE(2051)] = 59187, - [SMALL_STATE(2052)] = 59198, - [SMALL_STATE(2053)] = 59209, - [SMALL_STATE(2054)] = 59220, - [SMALL_STATE(2055)] = 59231, - [SMALL_STATE(2056)] = 59242, - [SMALL_STATE(2057)] = 59253, - [SMALL_STATE(2058)] = 59264, - [SMALL_STATE(2059)] = 59275, - [SMALL_STATE(2060)] = 59286, - [SMALL_STATE(2061)] = 59295, - [SMALL_STATE(2062)] = 59306, - [SMALL_STATE(2063)] = 59317, - [SMALL_STATE(2064)] = 59328, - [SMALL_STATE(2065)] = 59341, - [SMALL_STATE(2066)] = 59352, - [SMALL_STATE(2067)] = 59363, - [SMALL_STATE(2068)] = 59376, - [SMALL_STATE(2069)] = 59387, - [SMALL_STATE(2070)] = 59398, - [SMALL_STATE(2071)] = 59411, - [SMALL_STATE(2072)] = 59422, - [SMALL_STATE(2073)] = 59435, - [SMALL_STATE(2074)] = 59446, - [SMALL_STATE(2075)] = 59457, - [SMALL_STATE(2076)] = 59468, - [SMALL_STATE(2077)] = 59479, - [SMALL_STATE(2078)] = 59490, - [SMALL_STATE(2079)] = 59499, - [SMALL_STATE(2080)] = 59508, - [SMALL_STATE(2081)] = 59521, - [SMALL_STATE(2082)] = 59532, - [SMALL_STATE(2083)] = 59543, - [SMALL_STATE(2084)] = 59554, - [SMALL_STATE(2085)] = 59565, - [SMALL_STATE(2086)] = 59578, - [SMALL_STATE(2087)] = 59591, - [SMALL_STATE(2088)] = 59602, - [SMALL_STATE(2089)] = 59613, - [SMALL_STATE(2090)] = 59624, - [SMALL_STATE(2091)] = 59635, - [SMALL_STATE(2092)] = 59646, - [SMALL_STATE(2093)] = 59657, - [SMALL_STATE(2094)] = 59668, - [SMALL_STATE(2095)] = 59681, - [SMALL_STATE(2096)] = 59692, - [SMALL_STATE(2097)] = 59703, - [SMALL_STATE(2098)] = 59714, - [SMALL_STATE(2099)] = 59725, - [SMALL_STATE(2100)] = 59736, - [SMALL_STATE(2101)] = 59747, - [SMALL_STATE(2102)] = 59758, - [SMALL_STATE(2103)] = 59769, - [SMALL_STATE(2104)] = 59780, - [SMALL_STATE(2105)] = 59791, - [SMALL_STATE(2106)] = 59802, - [SMALL_STATE(2107)] = 59813, - [SMALL_STATE(2108)] = 59824, - [SMALL_STATE(2109)] = 59835, - [SMALL_STATE(2110)] = 59846, - [SMALL_STATE(2111)] = 59857, - [SMALL_STATE(2112)] = 59868, - [SMALL_STATE(2113)] = 59879, - [SMALL_STATE(2114)] = 59890, - [SMALL_STATE(2115)] = 59899, - [SMALL_STATE(2116)] = 59910, - [SMALL_STATE(2117)] = 59921, - [SMALL_STATE(2118)] = 59932, - [SMALL_STATE(2119)] = 59941, - [SMALL_STATE(2120)] = 59952, - [SMALL_STATE(2121)] = 59963, - [SMALL_STATE(2122)] = 59976, - [SMALL_STATE(2123)] = 59989, - [SMALL_STATE(2124)] = 60002, - [SMALL_STATE(2125)] = 60015, - [SMALL_STATE(2126)] = 60028, - [SMALL_STATE(2127)] = 60041, - [SMALL_STATE(2128)] = 60050, - [SMALL_STATE(2129)] = 60059, - [SMALL_STATE(2130)] = 60070, - [SMALL_STATE(2131)] = 60081, - [SMALL_STATE(2132)] = 60094, - [SMALL_STATE(2133)] = 60107, - [SMALL_STATE(2134)] = 60120, - [SMALL_STATE(2135)] = 60133, - [SMALL_STATE(2136)] = 60146, - [SMALL_STATE(2137)] = 60155, - [SMALL_STATE(2138)] = 60164, - [SMALL_STATE(2139)] = 60173, - [SMALL_STATE(2140)] = 60186, - [SMALL_STATE(2141)] = 60195, - [SMALL_STATE(2142)] = 60208, - [SMALL_STATE(2143)] = 60221, - [SMALL_STATE(2144)] = 60234, - [SMALL_STATE(2145)] = 60247, - [SMALL_STATE(2146)] = 60258, - [SMALL_STATE(2147)] = 60267, - [SMALL_STATE(2148)] = 60280, - [SMALL_STATE(2149)] = 60293, - [SMALL_STATE(2150)] = 60302, - [SMALL_STATE(2151)] = 60315, - [SMALL_STATE(2152)] = 60323, - [SMALL_STATE(2153)] = 60331, - [SMALL_STATE(2154)] = 60339, - [SMALL_STATE(2155)] = 60347, - [SMALL_STATE(2156)] = 60355, - [SMALL_STATE(2157)] = 60363, - [SMALL_STATE(2158)] = 60371, - [SMALL_STATE(2159)] = 60381, - [SMALL_STATE(2160)] = 60389, - [SMALL_STATE(2161)] = 60397, - [SMALL_STATE(2162)] = 60405, - [SMALL_STATE(2163)] = 60413, - [SMALL_STATE(2164)] = 60423, - [SMALL_STATE(2165)] = 60433, - [SMALL_STATE(2166)] = 60443, - [SMALL_STATE(2167)] = 60453, - [SMALL_STATE(2168)] = 60463, - [SMALL_STATE(2169)] = 60473, - [SMALL_STATE(2170)] = 60483, - [SMALL_STATE(2171)] = 60493, - [SMALL_STATE(2172)] = 60503, - [SMALL_STATE(2173)] = 60513, - [SMALL_STATE(2174)] = 60523, - [SMALL_STATE(2175)] = 60533, - [SMALL_STATE(2176)] = 60543, - [SMALL_STATE(2177)] = 60551, - [SMALL_STATE(2178)] = 60561, - [SMALL_STATE(2179)] = 60571, - [SMALL_STATE(2180)] = 60581, - [SMALL_STATE(2181)] = 60591, - [SMALL_STATE(2182)] = 60601, - [SMALL_STATE(2183)] = 60611, - [SMALL_STATE(2184)] = 60619, - [SMALL_STATE(2185)] = 60627, - [SMALL_STATE(2186)] = 60637, - [SMALL_STATE(2187)] = 60647, - [SMALL_STATE(2188)] = 60657, - [SMALL_STATE(2189)] = 60665, - [SMALL_STATE(2190)] = 60673, - [SMALL_STATE(2191)] = 60681, - [SMALL_STATE(2192)] = 60691, - [SMALL_STATE(2193)] = 60699, - [SMALL_STATE(2194)] = 60707, - [SMALL_STATE(2195)] = 60715, - [SMALL_STATE(2196)] = 60725, - [SMALL_STATE(2197)] = 60733, - [SMALL_STATE(2198)] = 60743, - [SMALL_STATE(2199)] = 60751, - [SMALL_STATE(2200)] = 60761, - [SMALL_STATE(2201)] = 60769, - [SMALL_STATE(2202)] = 60777, - [SMALL_STATE(2203)] = 60787, - [SMALL_STATE(2204)] = 60797, - [SMALL_STATE(2205)] = 60807, - [SMALL_STATE(2206)] = 60815, - [SMALL_STATE(2207)] = 60823, - [SMALL_STATE(2208)] = 60831, - [SMALL_STATE(2209)] = 60839, - [SMALL_STATE(2210)] = 60847, - [SMALL_STATE(2211)] = 60855, - [SMALL_STATE(2212)] = 60863, - [SMALL_STATE(2213)] = 60873, - [SMALL_STATE(2214)] = 60883, - [SMALL_STATE(2215)] = 60891, - [SMALL_STATE(2216)] = 60901, - [SMALL_STATE(2217)] = 60911, - [SMALL_STATE(2218)] = 60921, - [SMALL_STATE(2219)] = 60929, - [SMALL_STATE(2220)] = 60939, - [SMALL_STATE(2221)] = 60947, - [SMALL_STATE(2222)] = 60957, - [SMALL_STATE(2223)] = 60965, - [SMALL_STATE(2224)] = 60973, - [SMALL_STATE(2225)] = 60981, - [SMALL_STATE(2226)] = 60991, - [SMALL_STATE(2227)] = 60999, - [SMALL_STATE(2228)] = 61009, - [SMALL_STATE(2229)] = 61019, - [SMALL_STATE(2230)] = 61027, - [SMALL_STATE(2231)] = 61037, - [SMALL_STATE(2232)] = 61047, - [SMALL_STATE(2233)] = 61055, - [SMALL_STATE(2234)] = 61065, - [SMALL_STATE(2235)] = 61075, - [SMALL_STATE(2236)] = 61085, - [SMALL_STATE(2237)] = 61095, - [SMALL_STATE(2238)] = 61105, - [SMALL_STATE(2239)] = 61115, - [SMALL_STATE(2240)] = 61125, - [SMALL_STATE(2241)] = 61135, - [SMALL_STATE(2242)] = 61145, - [SMALL_STATE(2243)] = 61155, - [SMALL_STATE(2244)] = 61165, - [SMALL_STATE(2245)] = 61175, - [SMALL_STATE(2246)] = 61185, - [SMALL_STATE(2247)] = 61195, - [SMALL_STATE(2248)] = 61205, - [SMALL_STATE(2249)] = 61215, - [SMALL_STATE(2250)] = 61225, - [SMALL_STATE(2251)] = 61235, - [SMALL_STATE(2252)] = 61245, - [SMALL_STATE(2253)] = 61255, - [SMALL_STATE(2254)] = 61263, - [SMALL_STATE(2255)] = 61271, - [SMALL_STATE(2256)] = 61281, - [SMALL_STATE(2257)] = 61291, - [SMALL_STATE(2258)] = 61301, - [SMALL_STATE(2259)] = 61311, - [SMALL_STATE(2260)] = 61321, - [SMALL_STATE(2261)] = 61329, - [SMALL_STATE(2262)] = 61339, - [SMALL_STATE(2263)] = 61349, - [SMALL_STATE(2264)] = 61359, - [SMALL_STATE(2265)] = 61367, - [SMALL_STATE(2266)] = 61375, - [SMALL_STATE(2267)] = 61383, - [SMALL_STATE(2268)] = 61391, - [SMALL_STATE(2269)] = 61399, - [SMALL_STATE(2270)] = 61407, - [SMALL_STATE(2271)] = 61415, - [SMALL_STATE(2272)] = 61423, - [SMALL_STATE(2273)] = 61433, - [SMALL_STATE(2274)] = 61443, - [SMALL_STATE(2275)] = 61453, - [SMALL_STATE(2276)] = 61463, - [SMALL_STATE(2277)] = 61473, - [SMALL_STATE(2278)] = 61481, - [SMALL_STATE(2279)] = 61491, - [SMALL_STATE(2280)] = 61501, - [SMALL_STATE(2281)] = 61511, - [SMALL_STATE(2282)] = 61521, - [SMALL_STATE(2283)] = 61529, - [SMALL_STATE(2284)] = 61539, - [SMALL_STATE(2285)] = 61547, - [SMALL_STATE(2286)] = 61557, - [SMALL_STATE(2287)] = 61567, - [SMALL_STATE(2288)] = 61575, - [SMALL_STATE(2289)] = 61585, - [SMALL_STATE(2290)] = 61593, - [SMALL_STATE(2291)] = 61603, - [SMALL_STATE(2292)] = 61613, - [SMALL_STATE(2293)] = 61623, - [SMALL_STATE(2294)] = 61631, - [SMALL_STATE(2295)] = 61641, - [SMALL_STATE(2296)] = 61649, - [SMALL_STATE(2297)] = 61659, - [SMALL_STATE(2298)] = 61669, - [SMALL_STATE(2299)] = 61677, - [SMALL_STATE(2300)] = 61687, - [SMALL_STATE(2301)] = 61697, - [SMALL_STATE(2302)] = 61705, - [SMALL_STATE(2303)] = 61715, - [SMALL_STATE(2304)] = 61725, - [SMALL_STATE(2305)] = 61735, - [SMALL_STATE(2306)] = 61745, - [SMALL_STATE(2307)] = 61753, - [SMALL_STATE(2308)] = 61763, - [SMALL_STATE(2309)] = 61773, - [SMALL_STATE(2310)] = 61783, - [SMALL_STATE(2311)] = 61793, - [SMALL_STATE(2312)] = 61803, - [SMALL_STATE(2313)] = 61813, - [SMALL_STATE(2314)] = 61821, - [SMALL_STATE(2315)] = 61831, - [SMALL_STATE(2316)] = 61841, - [SMALL_STATE(2317)] = 61851, - [SMALL_STATE(2318)] = 61861, - [SMALL_STATE(2319)] = 61871, - [SMALL_STATE(2320)] = 61879, - [SMALL_STATE(2321)] = 61889, - [SMALL_STATE(2322)] = 61899, - [SMALL_STATE(2323)] = 61909, - [SMALL_STATE(2324)] = 61919, - [SMALL_STATE(2325)] = 61929, - [SMALL_STATE(2326)] = 61939, - [SMALL_STATE(2327)] = 61949, - [SMALL_STATE(2328)] = 61957, - [SMALL_STATE(2329)] = 61967, - [SMALL_STATE(2330)] = 61975, - [SMALL_STATE(2331)] = 61985, - [SMALL_STATE(2332)] = 61995, - [SMALL_STATE(2333)] = 62005, - [SMALL_STATE(2334)] = 62013, - [SMALL_STATE(2335)] = 62023, - [SMALL_STATE(2336)] = 62033, - [SMALL_STATE(2337)] = 62041, - [SMALL_STATE(2338)] = 62051, - [SMALL_STATE(2339)] = 62059, - [SMALL_STATE(2340)] = 62069, - [SMALL_STATE(2341)] = 62077, - [SMALL_STATE(2342)] = 62087, - [SMALL_STATE(2343)] = 62095, - [SMALL_STATE(2344)] = 62103, - [SMALL_STATE(2345)] = 62113, - [SMALL_STATE(2346)] = 62121, - [SMALL_STATE(2347)] = 62131, - [SMALL_STATE(2348)] = 62141, - [SMALL_STATE(2349)] = 62151, - [SMALL_STATE(2350)] = 62161, - [SMALL_STATE(2351)] = 62171, - [SMALL_STATE(2352)] = 62181, - [SMALL_STATE(2353)] = 62191, - [SMALL_STATE(2354)] = 62201, - [SMALL_STATE(2355)] = 62211, - [SMALL_STATE(2356)] = 62219, - [SMALL_STATE(2357)] = 62229, - [SMALL_STATE(2358)] = 62237, - [SMALL_STATE(2359)] = 62247, - [SMALL_STATE(2360)] = 62257, - [SMALL_STATE(2361)] = 62267, - [SMALL_STATE(2362)] = 62275, - [SMALL_STATE(2363)] = 62285, - [SMALL_STATE(2364)] = 62293, - [SMALL_STATE(2365)] = 62303, - [SMALL_STATE(2366)] = 62313, - [SMALL_STATE(2367)] = 62321, - [SMALL_STATE(2368)] = 62329, - [SMALL_STATE(2369)] = 62337, - [SMALL_STATE(2370)] = 62347, - [SMALL_STATE(2371)] = 62355, - [SMALL_STATE(2372)] = 62365, - [SMALL_STATE(2373)] = 62375, - [SMALL_STATE(2374)] = 62383, - [SMALL_STATE(2375)] = 62393, - [SMALL_STATE(2376)] = 62403, - [SMALL_STATE(2377)] = 62413, - [SMALL_STATE(2378)] = 62421, - [SMALL_STATE(2379)] = 62431, - [SMALL_STATE(2380)] = 62439, - [SMALL_STATE(2381)] = 62447, - [SMALL_STATE(2382)] = 62457, - [SMALL_STATE(2383)] = 62467, - [SMALL_STATE(2384)] = 62475, - [SMALL_STATE(2385)] = 62485, - [SMALL_STATE(2386)] = 62493, - [SMALL_STATE(2387)] = 62501, - [SMALL_STATE(2388)] = 62509, - [SMALL_STATE(2389)] = 62517, - [SMALL_STATE(2390)] = 62525, - [SMALL_STATE(2391)] = 62535, - [SMALL_STATE(2392)] = 62545, - [SMALL_STATE(2393)] = 62555, - [SMALL_STATE(2394)] = 62563, - [SMALL_STATE(2395)] = 62573, - [SMALL_STATE(2396)] = 62583, - [SMALL_STATE(2397)] = 62591, - [SMALL_STATE(2398)] = 62599, - [SMALL_STATE(2399)] = 62609, - [SMALL_STATE(2400)] = 62617, - [SMALL_STATE(2401)] = 62625, - [SMALL_STATE(2402)] = 62633, - [SMALL_STATE(2403)] = 62643, - [SMALL_STATE(2404)] = 62653, - [SMALL_STATE(2405)] = 62663, - [SMALL_STATE(2406)] = 62673, - [SMALL_STATE(2407)] = 62683, - [SMALL_STATE(2408)] = 62693, - [SMALL_STATE(2409)] = 62703, - [SMALL_STATE(2410)] = 62713, - [SMALL_STATE(2411)] = 62723, - [SMALL_STATE(2412)] = 62731, - [SMALL_STATE(2413)] = 62741, - [SMALL_STATE(2414)] = 62751, - [SMALL_STATE(2415)] = 62761, - [SMALL_STATE(2416)] = 62769, - [SMALL_STATE(2417)] = 62779, - [SMALL_STATE(2418)] = 62789, - [SMALL_STATE(2419)] = 62799, - [SMALL_STATE(2420)] = 62809, - [SMALL_STATE(2421)] = 62819, - [SMALL_STATE(2422)] = 62826, - [SMALL_STATE(2423)] = 62833, - [SMALL_STATE(2424)] = 62840, - [SMALL_STATE(2425)] = 62847, - [SMALL_STATE(2426)] = 62854, - [SMALL_STATE(2427)] = 62861, - [SMALL_STATE(2428)] = 62868, - [SMALL_STATE(2429)] = 62875, - [SMALL_STATE(2430)] = 62882, - [SMALL_STATE(2431)] = 62889, - [SMALL_STATE(2432)] = 62896, - [SMALL_STATE(2433)] = 62903, - [SMALL_STATE(2434)] = 62910, - [SMALL_STATE(2435)] = 62917, - [SMALL_STATE(2436)] = 62924, - [SMALL_STATE(2437)] = 62931, - [SMALL_STATE(2438)] = 62938, - [SMALL_STATE(2439)] = 62945, - [SMALL_STATE(2440)] = 62952, - [SMALL_STATE(2441)] = 62959, - [SMALL_STATE(2442)] = 62966, - [SMALL_STATE(2443)] = 62973, - [SMALL_STATE(2444)] = 62980, - [SMALL_STATE(2445)] = 62987, - [SMALL_STATE(2446)] = 62994, - [SMALL_STATE(2447)] = 63001, - [SMALL_STATE(2448)] = 63008, - [SMALL_STATE(2449)] = 63015, - [SMALL_STATE(2450)] = 63022, - [SMALL_STATE(2451)] = 63029, - [SMALL_STATE(2452)] = 63036, - [SMALL_STATE(2453)] = 63043, - [SMALL_STATE(2454)] = 63050, - [SMALL_STATE(2455)] = 63057, - [SMALL_STATE(2456)] = 63064, - [SMALL_STATE(2457)] = 63071, - [SMALL_STATE(2458)] = 63078, - [SMALL_STATE(2459)] = 63085, - [SMALL_STATE(2460)] = 63092, - [SMALL_STATE(2461)] = 63099, - [SMALL_STATE(2462)] = 63106, - [SMALL_STATE(2463)] = 63113, - [SMALL_STATE(2464)] = 63120, - [SMALL_STATE(2465)] = 63127, - [SMALL_STATE(2466)] = 63134, - [SMALL_STATE(2467)] = 63141, - [SMALL_STATE(2468)] = 63148, - [SMALL_STATE(2469)] = 63155, - [SMALL_STATE(2470)] = 63162, - [SMALL_STATE(2471)] = 63169, - [SMALL_STATE(2472)] = 63176, - [SMALL_STATE(2473)] = 63183, - [SMALL_STATE(2474)] = 63190, - [SMALL_STATE(2475)] = 63197, - [SMALL_STATE(2476)] = 63204, - [SMALL_STATE(2477)] = 63211, - [SMALL_STATE(2478)] = 63218, - [SMALL_STATE(2479)] = 63225, - [SMALL_STATE(2480)] = 63232, - [SMALL_STATE(2481)] = 63239, - [SMALL_STATE(2482)] = 63246, - [SMALL_STATE(2483)] = 63253, - [SMALL_STATE(2484)] = 63260, - [SMALL_STATE(2485)] = 63267, - [SMALL_STATE(2486)] = 63274, - [SMALL_STATE(2487)] = 63281, - [SMALL_STATE(2488)] = 63288, - [SMALL_STATE(2489)] = 63295, - [SMALL_STATE(2490)] = 63302, - [SMALL_STATE(2491)] = 63309, - [SMALL_STATE(2492)] = 63316, - [SMALL_STATE(2493)] = 63323, - [SMALL_STATE(2494)] = 63330, - [SMALL_STATE(2495)] = 63337, - [SMALL_STATE(2496)] = 63344, - [SMALL_STATE(2497)] = 63351, - [SMALL_STATE(2498)] = 63358, - [SMALL_STATE(2499)] = 63365, - [SMALL_STATE(2500)] = 63372, - [SMALL_STATE(2501)] = 63379, - [SMALL_STATE(2502)] = 63386, - [SMALL_STATE(2503)] = 63393, - [SMALL_STATE(2504)] = 63400, - [SMALL_STATE(2505)] = 63407, - [SMALL_STATE(2506)] = 63414, - [SMALL_STATE(2507)] = 63421, - [SMALL_STATE(2508)] = 63428, - [SMALL_STATE(2509)] = 63435, - [SMALL_STATE(2510)] = 63442, - [SMALL_STATE(2511)] = 63449, - [SMALL_STATE(2512)] = 63456, - [SMALL_STATE(2513)] = 63463, - [SMALL_STATE(2514)] = 63470, - [SMALL_STATE(2515)] = 63477, - [SMALL_STATE(2516)] = 63484, - [SMALL_STATE(2517)] = 63491, - [SMALL_STATE(2518)] = 63498, - [SMALL_STATE(2519)] = 63505, - [SMALL_STATE(2520)] = 63512, - [SMALL_STATE(2521)] = 63519, - [SMALL_STATE(2522)] = 63526, - [SMALL_STATE(2523)] = 63533, - [SMALL_STATE(2524)] = 63540, - [SMALL_STATE(2525)] = 63547, - [SMALL_STATE(2526)] = 63554, - [SMALL_STATE(2527)] = 63561, - [SMALL_STATE(2528)] = 63568, - [SMALL_STATE(2529)] = 63575, - [SMALL_STATE(2530)] = 63582, - [SMALL_STATE(2531)] = 63589, - [SMALL_STATE(2532)] = 63596, - [SMALL_STATE(2533)] = 63603, - [SMALL_STATE(2534)] = 63610, - [SMALL_STATE(2535)] = 63617, - [SMALL_STATE(2536)] = 63624, - [SMALL_STATE(2537)] = 63631, - [SMALL_STATE(2538)] = 63638, - [SMALL_STATE(2539)] = 63645, - [SMALL_STATE(2540)] = 63652, - [SMALL_STATE(2541)] = 63659, - [SMALL_STATE(2542)] = 63666, - [SMALL_STATE(2543)] = 63673, - [SMALL_STATE(2544)] = 63680, - [SMALL_STATE(2545)] = 63687, - [SMALL_STATE(2546)] = 63694, - [SMALL_STATE(2547)] = 63701, - [SMALL_STATE(2548)] = 63708, - [SMALL_STATE(2549)] = 63715, - [SMALL_STATE(2550)] = 63722, - [SMALL_STATE(2551)] = 63729, - [SMALL_STATE(2552)] = 63736, - [SMALL_STATE(2553)] = 63743, - [SMALL_STATE(2554)] = 63750, - [SMALL_STATE(2555)] = 63757, - [SMALL_STATE(2556)] = 63764, - [SMALL_STATE(2557)] = 63771, - [SMALL_STATE(2558)] = 63778, - [SMALL_STATE(2559)] = 63785, - [SMALL_STATE(2560)] = 63792, - [SMALL_STATE(2561)] = 63799, - [SMALL_STATE(2562)] = 63806, - [SMALL_STATE(2563)] = 63813, - [SMALL_STATE(2564)] = 63820, - [SMALL_STATE(2565)] = 63827, - [SMALL_STATE(2566)] = 63834, - [SMALL_STATE(2567)] = 63841, - [SMALL_STATE(2568)] = 63848, - [SMALL_STATE(2569)] = 63855, - [SMALL_STATE(2570)] = 63862, - [SMALL_STATE(2571)] = 63869, - [SMALL_STATE(2572)] = 63876, - [SMALL_STATE(2573)] = 63883, - [SMALL_STATE(2574)] = 63890, - [SMALL_STATE(2575)] = 63897, - [SMALL_STATE(2576)] = 63904, - [SMALL_STATE(2577)] = 63911, - [SMALL_STATE(2578)] = 63918, - [SMALL_STATE(2579)] = 63925, - [SMALL_STATE(2580)] = 63932, - [SMALL_STATE(2581)] = 63939, - [SMALL_STATE(2582)] = 63946, - [SMALL_STATE(2583)] = 63953, - [SMALL_STATE(2584)] = 63960, - [SMALL_STATE(2585)] = 63967, - [SMALL_STATE(2586)] = 63974, - [SMALL_STATE(2587)] = 63981, - [SMALL_STATE(2588)] = 63988, - [SMALL_STATE(2589)] = 63995, - [SMALL_STATE(2590)] = 64002, - [SMALL_STATE(2591)] = 64009, - [SMALL_STATE(2592)] = 64016, - [SMALL_STATE(2593)] = 64023, - [SMALL_STATE(2594)] = 64030, - [SMALL_STATE(2595)] = 64037, - [SMALL_STATE(2596)] = 64044, - [SMALL_STATE(2597)] = 64051, - [SMALL_STATE(2598)] = 64058, - [SMALL_STATE(2599)] = 64065, - [SMALL_STATE(2600)] = 64072, - [SMALL_STATE(2601)] = 64079, - [SMALL_STATE(2602)] = 64086, - [SMALL_STATE(2603)] = 64093, - [SMALL_STATE(2604)] = 64100, - [SMALL_STATE(2605)] = 64107, - [SMALL_STATE(2606)] = 64114, - [SMALL_STATE(2607)] = 64121, - [SMALL_STATE(2608)] = 64128, - [SMALL_STATE(2609)] = 64135, - [SMALL_STATE(2610)] = 64142, - [SMALL_STATE(2611)] = 64149, - [SMALL_STATE(2612)] = 64156, - [SMALL_STATE(2613)] = 64163, - [SMALL_STATE(2614)] = 64170, - [SMALL_STATE(2615)] = 64177, - [SMALL_STATE(2616)] = 64184, - [SMALL_STATE(2617)] = 64191, - [SMALL_STATE(2618)] = 64198, - [SMALL_STATE(2619)] = 64205, - [SMALL_STATE(2620)] = 64212, - [SMALL_STATE(2621)] = 64219, - [SMALL_STATE(2622)] = 64226, - [SMALL_STATE(2623)] = 64233, - [SMALL_STATE(2624)] = 64240, - [SMALL_STATE(2625)] = 64247, - [SMALL_STATE(2626)] = 64254, - [SMALL_STATE(2627)] = 64261, - [SMALL_STATE(2628)] = 64268, - [SMALL_STATE(2629)] = 64275, - [SMALL_STATE(2630)] = 64282, - [SMALL_STATE(2631)] = 64289, - [SMALL_STATE(2632)] = 64296, - [SMALL_STATE(2633)] = 64303, - [SMALL_STATE(2634)] = 64310, - [SMALL_STATE(2635)] = 64317, - [SMALL_STATE(2636)] = 64324, - [SMALL_STATE(2637)] = 64331, - [SMALL_STATE(2638)] = 64338, - [SMALL_STATE(2639)] = 64345, - [SMALL_STATE(2640)] = 64352, + [SMALL_STATE(565)] = 0, + [SMALL_STATE(566)] = 70, + [SMALL_STATE(567)] = 140, + [SMALL_STATE(568)] = 210, + [SMALL_STATE(569)] = 280, + [SMALL_STATE(570)] = 353, + [SMALL_STATE(571)] = 426, + [SMALL_STATE(572)] = 507, + [SMALL_STATE(573)] = 580, + [SMALL_STATE(574)] = 653, + [SMALL_STATE(575)] = 726, + [SMALL_STATE(576)] = 794, + [SMALL_STATE(577)] = 862, + [SMALL_STATE(578)] = 930, + [SMALL_STATE(579)] = 998, + [SMALL_STATE(580)] = 1066, + [SMALL_STATE(581)] = 1134, + [SMALL_STATE(582)] = 1202, + [SMALL_STATE(583)] = 1270, + [SMALL_STATE(584)] = 1338, + [SMALL_STATE(585)] = 1406, + [SMALL_STATE(586)] = 1474, + [SMALL_STATE(587)] = 1542, + [SMALL_STATE(588)] = 1610, + [SMALL_STATE(589)] = 1689, + [SMALL_STATE(590)] = 1764, + [SMALL_STATE(591)] = 1842, + [SMALL_STATE(592)] = 1911, + [SMALL_STATE(593)] = 1988, + [SMALL_STATE(594)] = 2057, + [SMALL_STATE(595)] = 2140, + [SMALL_STATE(596)] = 2209, + [SMALL_STATE(597)] = 2286, + [SMALL_STATE(598)] = 2363, + [SMALL_STATE(599)] = 2432, + [SMALL_STATE(600)] = 2505, + [SMALL_STATE(601)] = 2574, + [SMALL_STATE(602)] = 2638, + [SMALL_STATE(603)] = 2702, + [SMALL_STATE(604)] = 2766, + [SMALL_STATE(605)] = 2830, + [SMALL_STATE(606)] = 2894, + [SMALL_STATE(607)] = 2970, + [SMALL_STATE(608)] = 3048, + [SMALL_STATE(609)] = 3126, + [SMALL_STATE(610)] = 3204, + [SMALL_STATE(611)] = 3268, + [SMALL_STATE(612)] = 3332, + [SMALL_STATE(613)] = 3396, + [SMALL_STATE(614)] = 3460, + [SMALL_STATE(615)] = 3524, + [SMALL_STATE(616)] = 3588, + [SMALL_STATE(617)] = 3652, + [SMALL_STATE(618)] = 3724, + [SMALL_STATE(619)] = 3788, + [SMALL_STATE(620)] = 3852, + [SMALL_STATE(621)] = 3916, + [SMALL_STATE(622)] = 3980, + [SMALL_STATE(623)] = 4044, + [SMALL_STATE(624)] = 4115, + [SMALL_STATE(625)] = 4186, + [SMALL_STATE(626)] = 4257, + [SMALL_STATE(627)] = 4334, + [SMALL_STATE(628)] = 4411, + [SMALL_STATE(629)] = 4483, + [SMALL_STATE(630)] = 4555, + [SMALL_STATE(631)] = 4627, + [SMALL_STATE(632)] = 4697, + [SMALL_STATE(633)] = 4768, + [SMALL_STATE(634)] = 4826, + [SMALL_STATE(635)] = 4929, + [SMALL_STATE(636)] = 5032, + [SMALL_STATE(637)] = 5097, + [SMALL_STATE(638)] = 5160, + [SMALL_STATE(639)] = 5225, + [SMALL_STATE(640)] = 5280, + [SMALL_STATE(641)] = 5339, + [SMALL_STATE(642)] = 5400, + [SMALL_STATE(643)] = 5459, + [SMALL_STATE(644)] = 5524, + [SMALL_STATE(645)] = 5583, + [SMALL_STATE(646)] = 5642, + [SMALL_STATE(647)] = 5701, + [SMALL_STATE(648)] = 5766, + [SMALL_STATE(649)] = 5820, + [SMALL_STATE(650)] = 5874, + [SMALL_STATE(651)] = 5928, + [SMALL_STATE(652)] = 6028, + [SMALL_STATE(653)] = 6124, + [SMALL_STATE(654)] = 6178, + [SMALL_STATE(655)] = 6232, + [SMALL_STATE(656)] = 6286, + [SMALL_STATE(657)] = 6340, + [SMALL_STATE(658)] = 6440, + [SMALL_STATE(659)] = 6494, + [SMALL_STATE(660)] = 6548, + [SMALL_STATE(661)] = 6602, + [SMALL_STATE(662)] = 6656, + [SMALL_STATE(663)] = 6710, + [SMALL_STATE(664)] = 6768, + [SMALL_STATE(665)] = 6864, + [SMALL_STATE(666)] = 6918, + [SMALL_STATE(667)] = 6976, + [SMALL_STATE(668)] = 7030, + [SMALL_STATE(669)] = 7084, + [SMALL_STATE(670)] = 7138, + [SMALL_STATE(671)] = 7192, + [SMALL_STATE(672)] = 7249, + [SMALL_STATE(673)] = 7346, + [SMALL_STATE(674)] = 7401, + [SMALL_STATE(675)] = 7456, + [SMALL_STATE(676)] = 7511, + [SMALL_STATE(677)] = 7606, + [SMALL_STATE(678)] = 7703, + [SMALL_STATE(679)] = 7762, + [SMALL_STATE(680)] = 7821, + [SMALL_STATE(681)] = 7876, + [SMALL_STATE(682)] = 7935, + [SMALL_STATE(683)] = 7990, + [SMALL_STATE(684)] = 8049, + [SMALL_STATE(685)] = 8108, + [SMALL_STATE(686)] = 8205, + [SMALL_STATE(687)] = 8264, + [SMALL_STATE(688)] = 8355, + [SMALL_STATE(689)] = 8414, + [SMALL_STATE(690)] = 8473, + [SMALL_STATE(691)] = 8532, + [SMALL_STATE(692)] = 8589, + [SMALL_STATE(693)] = 8648, + [SMALL_STATE(694)] = 8705, + [SMALL_STATE(695)] = 8762, + [SMALL_STATE(696)] = 8853, + [SMALL_STATE(697)] = 8948, + [SMALL_STATE(698)] = 9005, + [SMALL_STATE(699)] = 9062, + [SMALL_STATE(700)] = 9119, + [SMALL_STATE(701)] = 9176, + [SMALL_STATE(702)] = 9233, + [SMALL_STATE(703)] = 9292, + [SMALL_STATE(704)] = 9351, + [SMALL_STATE(705)] = 9410, + [SMALL_STATE(706)] = 9467, + [SMALL_STATE(707)] = 9524, + [SMALL_STATE(708)] = 9583, + [SMALL_STATE(709)] = 9640, + [SMALL_STATE(710)] = 9737, + [SMALL_STATE(711)] = 9794, + [SMALL_STATE(712)] = 9849, + [SMALL_STATE(713)] = 9906, + [SMALL_STATE(714)] = 9997, + [SMALL_STATE(715)] = 10049, + [SMALL_STATE(716)] = 10101, + [SMALL_STATE(717)] = 10153, + [SMALL_STATE(718)] = 10205, + [SMALL_STATE(719)] = 10257, + [SMALL_STATE(720)] = 10309, + [SMALL_STATE(721)] = 10361, + [SMALL_STATE(722)] = 10413, + [SMALL_STATE(723)] = 10465, + [SMALL_STATE(724)] = 10517, + [SMALL_STATE(725)] = 10569, + [SMALL_STATE(726)] = 10661, + [SMALL_STATE(727)] = 10713, + [SMALL_STATE(728)] = 10765, + [SMALL_STATE(729)] = 10817, + [SMALL_STATE(730)] = 10869, + [SMALL_STATE(731)] = 10921, + [SMALL_STATE(732)] = 10973, + [SMALL_STATE(733)] = 11025, + [SMALL_STATE(734)] = 11077, + [SMALL_STATE(735)] = 11129, + [SMALL_STATE(736)] = 11181, + [SMALL_STATE(737)] = 11233, + [SMALL_STATE(738)] = 11285, + [SMALL_STATE(739)] = 11337, + [SMALL_STATE(740)] = 11431, + [SMALL_STATE(741)] = 11483, + [SMALL_STATE(742)] = 11535, + [SMALL_STATE(743)] = 11587, + [SMALL_STATE(744)] = 11639, + [SMALL_STATE(745)] = 11691, + [SMALL_STATE(746)] = 11743, + [SMALL_STATE(747)] = 11795, + [SMALL_STATE(748)] = 11849, + [SMALL_STATE(749)] = 11903, + [SMALL_STATE(750)] = 11955, + [SMALL_STATE(751)] = 12007, + [SMALL_STATE(752)] = 12059, + [SMALL_STATE(753)] = 12111, + [SMALL_STATE(754)] = 12163, + [SMALL_STATE(755)] = 12215, + [SMALL_STATE(756)] = 12267, + [SMALL_STATE(757)] = 12326, + [SMALL_STATE(758)] = 12381, + [SMALL_STATE(759)] = 12434, + [SMALL_STATE(760)] = 12489, + [SMALL_STATE(761)] = 12542, + [SMALL_STATE(762)] = 12595, + [SMALL_STATE(763)] = 12646, + [SMALL_STATE(764)] = 12697, + [SMALL_STATE(765)] = 12758, + [SMALL_STATE(766)] = 12819, + [SMALL_STATE(767)] = 12874, + [SMALL_STATE(768)] = 12929, + [SMALL_STATE(769)] = 12980, + [SMALL_STATE(770)] = 13035, + [SMALL_STATE(771)] = 13090, + [SMALL_STATE(772)] = 13143, + [SMALL_STATE(773)] = 13200, + [SMALL_STATE(774)] = 13261, + [SMALL_STATE(775)] = 13314, + [SMALL_STATE(776)] = 13375, + [SMALL_STATE(777)] = 13425, + [SMALL_STATE(778)] = 13511, + [SMALL_STATE(779)] = 13573, + [SMALL_STATE(780)] = 13659, + [SMALL_STATE(781)] = 13721, + [SMALL_STATE(782)] = 13771, + [SMALL_STATE(783)] = 13821, + [SMALL_STATE(784)] = 13907, + [SMALL_STATE(785)] = 13957, + [SMALL_STATE(786)] = 14007, + [SMALL_STATE(787)] = 14057, + [SMALL_STATE(788)] = 14107, + [SMALL_STATE(789)] = 14157, + [SMALL_STATE(790)] = 14207, + [SMALL_STATE(791)] = 14257, + [SMALL_STATE(792)] = 14307, + [SMALL_STATE(793)] = 14357, + [SMALL_STATE(794)] = 14419, + [SMALL_STATE(795)] = 14469, + [SMALL_STATE(796)] = 14519, + [SMALL_STATE(797)] = 14605, + [SMALL_STATE(798)] = 14655, + [SMALL_STATE(799)] = 14705, + [SMALL_STATE(800)] = 14755, + [SMALL_STATE(801)] = 14805, + [SMALL_STATE(802)] = 14854, + [SMALL_STATE(803)] = 14905, + [SMALL_STATE(804)] = 14988, + [SMALL_STATE(805)] = 15071, + [SMALL_STATE(806)] = 15124, + [SMALL_STATE(807)] = 15177, + [SMALL_STATE(808)] = 15260, + [SMALL_STATE(809)] = 15313, + [SMALL_STATE(810)] = 15364, + [SMALL_STATE(811)] = 15419, + [SMALL_STATE(812)] = 15468, + [SMALL_STATE(813)] = 15521, + [SMALL_STATE(814)] = 15604, + [SMALL_STATE(815)] = 15657, + [SMALL_STATE(816)] = 15712, + [SMALL_STATE(817)] = 15765, + [SMALL_STATE(818)] = 15818, + [SMALL_STATE(819)] = 15869, + [SMALL_STATE(820)] = 15952, + [SMALL_STATE(821)] = 16005, + [SMALL_STATE(822)] = 16056, + [SMALL_STATE(823)] = 16105, + [SMALL_STATE(824)] = 16160, + [SMALL_STATE(825)] = 16209, + [SMALL_STATE(826)] = 16262, + [SMALL_STATE(827)] = 16317, + [SMALL_STATE(828)] = 16372, + [SMALL_STATE(829)] = 16427, + [SMALL_STATE(830)] = 16482, + [SMALL_STATE(831)] = 16537, + [SMALL_STATE(832)] = 16588, + [SMALL_STATE(833)] = 16639, + [SMALL_STATE(834)] = 16722, + [SMALL_STATE(835)] = 16777, + [SMALL_STATE(836)] = 16832, + [SMALL_STATE(837)] = 16915, + [SMALL_STATE(838)] = 16966, + [SMALL_STATE(839)] = 17049, + [SMALL_STATE(840)] = 17132, + [SMALL_STATE(841)] = 17187, + [SMALL_STATE(842)] = 17242, + [SMALL_STATE(843)] = 17325, + [SMALL_STATE(844)] = 17408, + [SMALL_STATE(845)] = 17463, + [SMALL_STATE(846)] = 17546, + [SMALL_STATE(847)] = 17599, + [SMALL_STATE(848)] = 17652, + [SMALL_STATE(849)] = 17707, + [SMALL_STATE(850)] = 17760, + [SMALL_STATE(851)] = 17813, + [SMALL_STATE(852)] = 17866, + [SMALL_STATE(853)] = 17919, + [SMALL_STATE(854)] = 18002, + [SMALL_STATE(855)] = 18085, + [SMALL_STATE(856)] = 18168, + [SMALL_STATE(857)] = 18218, + [SMALL_STATE(858)] = 18266, + [SMALL_STATE(859)] = 18314, + [SMALL_STATE(860)] = 18362, + [SMALL_STATE(861)] = 18410, + [SMALL_STATE(862)] = 18458, + [SMALL_STATE(863)] = 18506, + [SMALL_STATE(864)] = 18554, + [SMALL_STATE(865)] = 18602, + [SMALL_STATE(866)] = 18650, + [SMALL_STATE(867)] = 18698, + [SMALL_STATE(868)] = 18746, + [SMALL_STATE(869)] = 18794, + [SMALL_STATE(870)] = 18844, + [SMALL_STATE(871)] = 18892, + [SMALL_STATE(872)] = 18940, + [SMALL_STATE(873)] = 18992, + [SMALL_STATE(874)] = 19040, + [SMALL_STATE(875)] = 19088, + [SMALL_STATE(876)] = 19136, + [SMALL_STATE(877)] = 19184, + [SMALL_STATE(878)] = 19232, + [SMALL_STATE(879)] = 19280, + [SMALL_STATE(880)] = 19328, + [SMALL_STATE(881)] = 19376, + [SMALL_STATE(882)] = 19424, + [SMALL_STATE(883)] = 19472, + [SMALL_STATE(884)] = 19520, + [SMALL_STATE(885)] = 19568, + [SMALL_STATE(886)] = 19616, + [SMALL_STATE(887)] = 19664, + [SMALL_STATE(888)] = 19712, + [SMALL_STATE(889)] = 19760, + [SMALL_STATE(890)] = 19808, + [SMALL_STATE(891)] = 19856, + [SMALL_STATE(892)] = 19904, + [SMALL_STATE(893)] = 19952, + [SMALL_STATE(894)] = 20000, + [SMALL_STATE(895)] = 20048, + [SMALL_STATE(896)] = 20096, + [SMALL_STATE(897)] = 20146, + [SMALL_STATE(898)] = 20194, + [SMALL_STATE(899)] = 20243, + [SMALL_STATE(900)] = 20292, + [SMALL_STATE(901)] = 20341, + [SMALL_STATE(902)] = 20390, + [SMALL_STATE(903)] = 20439, + [SMALL_STATE(904)] = 20485, + [SMALL_STATE(905)] = 20531, + [SMALL_STATE(906)] = 20577, + [SMALL_STATE(907)] = 20623, + [SMALL_STATE(908)] = 20669, + [SMALL_STATE(909)] = 20715, + [SMALL_STATE(910)] = 20761, + [SMALL_STATE(911)] = 20807, + [SMALL_STATE(912)] = 20853, + [SMALL_STATE(913)] = 20899, + [SMALL_STATE(914)] = 20945, + [SMALL_STATE(915)] = 20991, + [SMALL_STATE(916)] = 21037, + [SMALL_STATE(917)] = 21083, + [SMALL_STATE(918)] = 21129, + [SMALL_STATE(919)] = 21175, + [SMALL_STATE(920)] = 21221, + [SMALL_STATE(921)] = 21267, + [SMALL_STATE(922)] = 21313, + [SMALL_STATE(923)] = 21359, + [SMALL_STATE(924)] = 21405, + [SMALL_STATE(925)] = 21451, + [SMALL_STATE(926)] = 21497, + [SMALL_STATE(927)] = 21543, + [SMALL_STATE(928)] = 21589, + [SMALL_STATE(929)] = 21635, + [SMALL_STATE(930)] = 21681, + [SMALL_STATE(931)] = 21727, + [SMALL_STATE(932)] = 21773, + [SMALL_STATE(933)] = 21819, + [SMALL_STATE(934)] = 21865, + [SMALL_STATE(935)] = 21911, + [SMALL_STATE(936)] = 21957, + [SMALL_STATE(937)] = 22003, + [SMALL_STATE(938)] = 22049, + [SMALL_STATE(939)] = 22095, + [SMALL_STATE(940)] = 22141, + [SMALL_STATE(941)] = 22187, + [SMALL_STATE(942)] = 22233, + [SMALL_STATE(943)] = 22279, + [SMALL_STATE(944)] = 22325, + [SMALL_STATE(945)] = 22371, + [SMALL_STATE(946)] = 22417, + [SMALL_STATE(947)] = 22463, + [SMALL_STATE(948)] = 22509, + [SMALL_STATE(949)] = 22555, + [SMALL_STATE(950)] = 22601, + [SMALL_STATE(951)] = 22647, + [SMALL_STATE(952)] = 22695, + [SMALL_STATE(953)] = 22741, + [SMALL_STATE(954)] = 22787, + [SMALL_STATE(955)] = 22833, + [SMALL_STATE(956)] = 22879, + [SMALL_STATE(957)] = 22925, + [SMALL_STATE(958)] = 22971, + [SMALL_STATE(959)] = 23017, + [SMALL_STATE(960)] = 23063, + [SMALL_STATE(961)] = 23109, + [SMALL_STATE(962)] = 23155, + [SMALL_STATE(963)] = 23201, + [SMALL_STATE(964)] = 23247, + [SMALL_STATE(965)] = 23293, + [SMALL_STATE(966)] = 23339, + [SMALL_STATE(967)] = 23385, + [SMALL_STATE(968)] = 23431, + [SMALL_STATE(969)] = 23480, + [SMALL_STATE(970)] = 23559, + [SMALL_STATE(971)] = 23608, + [SMALL_STATE(972)] = 23653, + [SMALL_STATE(973)] = 23698, + [SMALL_STATE(974)] = 23780, + [SMALL_STATE(975)] = 23840, + [SMALL_STATE(976)] = 23898, + [SMALL_STATE(977)] = 23966, + [SMALL_STATE(978)] = 24048, + [SMALL_STATE(979)] = 24130, + [SMALL_STATE(980)] = 24212, + [SMALL_STATE(981)] = 24294, + [SMALL_STATE(982)] = 24358, + [SMALL_STATE(983)] = 24442, + [SMALL_STATE(984)] = 24524, + [SMALL_STATE(985)] = 24600, + [SMALL_STATE(986)] = 24650, + [SMALL_STATE(987)] = 24732, + [SMALL_STATE(988)] = 24808, + [SMALL_STATE(989)] = 24890, + [SMALL_STATE(990)] = 24972, + [SMALL_STATE(991)] = 25048, + [SMALL_STATE(992)] = 25124, + [SMALL_STATE(993)] = 25170, + [SMALL_STATE(994)] = 25246, + [SMALL_STATE(995)] = 25328, + [SMALL_STATE(996)] = 25408, + [SMALL_STATE(997)] = 25486, + [SMALL_STATE(998)] = 25562, + [SMALL_STATE(999)] = 25634, + [SMALL_STATE(1000)] = 25710, + [SMALL_STATE(1001)] = 25780, + [SMALL_STATE(1002)] = 25846, + [SMALL_STATE(1003)] = 25892, + [SMALL_STATE(1004)] = 25946, + [SMALL_STATE(1005)] = 25998, + [SMALL_STATE(1006)] = 26054, + [SMALL_STATE(1007)] = 26129, + [SMALL_STATE(1008)] = 26196, + [SMALL_STATE(1009)] = 26277, + [SMALL_STATE(1010)] = 26336, + [SMALL_STATE(1011)] = 26401, + [SMALL_STATE(1012)] = 26470, + [SMALL_STATE(1013)] = 26541, + [SMALL_STATE(1014)] = 26618, + [SMALL_STATE(1015)] = 26697, + [SMALL_STATE(1016)] = 26748, + [SMALL_STATE(1017)] = 26801, + [SMALL_STATE(1018)] = 26846, + [SMALL_STATE(1019)] = 26921, + [SMALL_STATE(1020)] = 26966, + [SMALL_STATE(1021)] = 27041, + [SMALL_STATE(1022)] = 27116, + [SMALL_STATE(1023)] = 27165, + [SMALL_STATE(1024)] = 27220, + [SMALL_STATE(1025)] = 27283, + [SMALL_STATE(1026)] = 27358, + [SMALL_STATE(1027)] = 27401, + [SMALL_STATE(1028)] = 27482, + [SMALL_STATE(1029)] = 27563, + [SMALL_STATE(1030)] = 27638, + [SMALL_STATE(1031)] = 27713, + [SMALL_STATE(1032)] = 27794, + [SMALL_STATE(1033)] = 27875, + [SMALL_STATE(1034)] = 27958, + [SMALL_STATE(1035)] = 28039, + [SMALL_STATE(1036)] = 28120, + [SMALL_STATE(1037)] = 28201, + [SMALL_STATE(1038)] = 28282, + [SMALL_STATE(1039)] = 28363, + [SMALL_STATE(1040)] = 28406, + [SMALL_STATE(1041)] = 28449, + [SMALL_STATE(1042)] = 28497, + [SMALL_STATE(1043)] = 28539, + [SMALL_STATE(1044)] = 28581, + [SMALL_STATE(1045)] = 28623, + [SMALL_STATE(1046)] = 28665, + [SMALL_STATE(1047)] = 28707, + [SMALL_STATE(1048)] = 28749, + [SMALL_STATE(1049)] = 28823, + [SMALL_STATE(1050)] = 28867, + [SMALL_STATE(1051)] = 28941, + [SMALL_STATE(1052)] = 28983, + [SMALL_STATE(1053)] = 29061, + [SMALL_STATE(1054)] = 29137, + [SMALL_STATE(1055)] = 29179, + [SMALL_STATE(1056)] = 29249, + [SMALL_STATE(1057)] = 29317, + [SMALL_STATE(1058)] = 29359, + [SMALL_STATE(1059)] = 29401, + [SMALL_STATE(1060)] = 29443, + [SMALL_STATE(1061)] = 29485, + [SMALL_STATE(1062)] = 29527, + [SMALL_STATE(1063)] = 29591, + [SMALL_STATE(1064)] = 29649, + [SMALL_STATE(1065)] = 29691, + [SMALL_STATE(1066)] = 29733, + [SMALL_STATE(1067)] = 29775, + [SMALL_STATE(1068)] = 29817, + [SMALL_STATE(1069)] = 29859, + [SMALL_STATE(1070)] = 29901, + [SMALL_STATE(1071)] = 29945, + [SMALL_STATE(1072)] = 29987, + [SMALL_STATE(1073)] = 30029, + [SMALL_STATE(1074)] = 30071, + [SMALL_STATE(1075)] = 30125, + [SMALL_STATE(1076)] = 30167, + [SMALL_STATE(1077)] = 30209, + [SMALL_STATE(1078)] = 30251, + [SMALL_STATE(1079)] = 30325, + [SMALL_STATE(1080)] = 30367, + [SMALL_STATE(1081)] = 30409, + [SMALL_STATE(1082)] = 30451, + [SMALL_STATE(1083)] = 30493, + [SMALL_STATE(1084)] = 30543, + [SMALL_STATE(1085)] = 30623, + [SMALL_STATE(1086)] = 30665, + [SMALL_STATE(1087)] = 30717, + [SMALL_STATE(1088)] = 30761, + [SMALL_STATE(1089)] = 30803, + [SMALL_STATE(1090)] = 30845, + [SMALL_STATE(1091)] = 30925, + [SMALL_STATE(1092)] = 30967, + [SMALL_STATE(1093)] = 31009, + [SMALL_STATE(1094)] = 31089, + [SMALL_STATE(1095)] = 31131, + [SMALL_STATE(1096)] = 31173, + [SMALL_STATE(1097)] = 31215, + [SMALL_STATE(1098)] = 31289, + [SMALL_STATE(1099)] = 31331, + [SMALL_STATE(1100)] = 31413, + [SMALL_STATE(1101)] = 31455, + [SMALL_STATE(1102)] = 31535, + [SMALL_STATE(1103)] = 31615, + [SMALL_STATE(1104)] = 31695, + [SMALL_STATE(1105)] = 31737, + [SMALL_STATE(1106)] = 31817, + [SMALL_STATE(1107)] = 31891, + [SMALL_STATE(1108)] = 31933, + [SMALL_STATE(1109)] = 32013, + [SMALL_STATE(1110)] = 32075, + [SMALL_STATE(1111)] = 32155, + [SMALL_STATE(1112)] = 32197, + [SMALL_STATE(1113)] = 32239, + [SMALL_STATE(1114)] = 32281, + [SMALL_STATE(1115)] = 32347, + [SMALL_STATE(1116)] = 32389, + [SMALL_STATE(1117)] = 32431, + [SMALL_STATE(1118)] = 32473, + [SMALL_STATE(1119)] = 32515, + [SMALL_STATE(1120)] = 32557, + [SMALL_STATE(1121)] = 32599, + [SMALL_STATE(1122)] = 32641, + [SMALL_STATE(1123)] = 32683, + [SMALL_STATE(1124)] = 32725, + [SMALL_STATE(1125)] = 32767, + [SMALL_STATE(1126)] = 32809, + [SMALL_STATE(1127)] = 32851, + [SMALL_STATE(1128)] = 32893, + [SMALL_STATE(1129)] = 32935, + [SMALL_STATE(1130)] = 32977, + [SMALL_STATE(1131)] = 33051, + [SMALL_STATE(1132)] = 33125, + [SMALL_STATE(1133)] = 33205, + [SMALL_STATE(1134)] = 33247, + [SMALL_STATE(1135)] = 33289, + [SMALL_STATE(1136)] = 33331, + [SMALL_STATE(1137)] = 33373, + [SMALL_STATE(1138)] = 33415, + [SMALL_STATE(1139)] = 33457, + [SMALL_STATE(1140)] = 33499, + [SMALL_STATE(1141)] = 33550, + [SMALL_STATE(1142)] = 33629, + [SMALL_STATE(1143)] = 33696, + [SMALL_STATE(1144)] = 33775, + [SMALL_STATE(1145)] = 33836, + [SMALL_STATE(1146)] = 33901, + [SMALL_STATE(1147)] = 33948, + [SMALL_STATE(1148)] = 34021, + [SMALL_STATE(1149)] = 34064, + [SMALL_STATE(1150)] = 34137, + [SMALL_STATE(1151)] = 34214, + [SMALL_STATE(1152)] = 34289, + [SMALL_STATE(1153)] = 34358, + [SMALL_STATE(1154)] = 34425, + [SMALL_STATE(1155)] = 34504, + [SMALL_STATE(1156)] = 34567, + [SMALL_STATE(1157)] = 34610, + [SMALL_STATE(1158)] = 34653, + [SMALL_STATE(1159)] = 34710, + [SMALL_STATE(1160)] = 34763, + [SMALL_STATE(1161)] = 34842, + [SMALL_STATE(1162)] = 34921, + [SMALL_STATE(1163)] = 34970, + [SMALL_STATE(1164)] = 35037, + [SMALL_STATE(1165)] = 35116, + [SMALL_STATE(1166)] = 35189, + [SMALL_STATE(1167)] = 35268, + [SMALL_STATE(1168)] = 35349, + [SMALL_STATE(1169)] = 35422, + [SMALL_STATE(1170)] = 35495, + [SMALL_STATE(1171)] = 35574, + [SMALL_STATE(1172)] = 35647, + [SMALL_STATE(1173)] = 35720, + [SMALL_STATE(1174)] = 35763, + [SMALL_STATE(1175)] = 35830, + [SMALL_STATE(1176)] = 35909, + [SMALL_STATE(1177)] = 35988, + [SMALL_STATE(1178)] = 36055, + [SMALL_STATE(1179)] = 36135, + [SMALL_STATE(1180)] = 36217, + [SMALL_STATE(1181)] = 36297, + [SMALL_STATE(1182)] = 36377, + [SMALL_STATE(1183)] = 36455, + [SMALL_STATE(1184)] = 36523, + [SMALL_STATE(1185)] = 36591, + [SMALL_STATE(1186)] = 36669, + [SMALL_STATE(1187)] = 36749, + [SMALL_STATE(1188)] = 36827, + [SMALL_STATE(1189)] = 36907, + [SMALL_STATE(1190)] = 36984, + [SMALL_STATE(1191)] = 37063, + [SMALL_STATE(1192)] = 37142, + [SMALL_STATE(1193)] = 37219, + [SMALL_STATE(1194)] = 37296, + [SMALL_STATE(1195)] = 37373, + [SMALL_STATE(1196)] = 37450, + [SMALL_STATE(1197)] = 37527, + [SMALL_STATE(1198)] = 37604, + [SMALL_STATE(1199)] = 37681, + [SMALL_STATE(1200)] = 37758, + [SMALL_STATE(1201)] = 37835, + [SMALL_STATE(1202)] = 37906, + [SMALL_STATE(1203)] = 37977, + [SMALL_STATE(1204)] = 38048, + [SMALL_STATE(1205)] = 38125, + [SMALL_STATE(1206)] = 38202, + [SMALL_STATE(1207)] = 38281, + [SMALL_STATE(1208)] = 38358, + [SMALL_STATE(1209)] = 38429, + [SMALL_STATE(1210)] = 38506, + [SMALL_STATE(1211)] = 38583, + [SMALL_STATE(1212)] = 38660, + [SMALL_STATE(1213)] = 38737, + [SMALL_STATE(1214)] = 38814, + [SMALL_STATE(1215)] = 38891, + [SMALL_STATE(1216)] = 38968, + [SMALL_STATE(1217)] = 39045, + [SMALL_STATE(1218)] = 39122, + [SMALL_STATE(1219)] = 39201, + [SMALL_STATE(1220)] = 39278, + [SMALL_STATE(1221)] = 39357, + [SMALL_STATE(1222)] = 39434, + [SMALL_STATE(1223)] = 39511, + [SMALL_STATE(1224)] = 39588, + [SMALL_STATE(1225)] = 39665, + [SMALL_STATE(1226)] = 39742, + [SMALL_STATE(1227)] = 39819, + [SMALL_STATE(1228)] = 39896, + [SMALL_STATE(1229)] = 39973, + [SMALL_STATE(1230)] = 40050, + [SMALL_STATE(1231)] = 40129, + [SMALL_STATE(1232)] = 40200, + [SMALL_STATE(1233)] = 40271, + [SMALL_STATE(1234)] = 40342, + [SMALL_STATE(1235)] = 40413, + [SMALL_STATE(1236)] = 40484, + [SMALL_STATE(1237)] = 40563, + [SMALL_STATE(1238)] = 40642, + [SMALL_STATE(1239)] = 40718, + [SMALL_STATE(1240)] = 40794, + [SMALL_STATE(1241)] = 40870, + [SMALL_STATE(1242)] = 40946, + [SMALL_STATE(1243)] = 41022, + [SMALL_STATE(1244)] = 41098, + [SMALL_STATE(1245)] = 41174, + [SMALL_STATE(1246)] = 41250, + [SMALL_STATE(1247)] = 41326, + [SMALL_STATE(1248)] = 41402, + [SMALL_STATE(1249)] = 41478, + [SMALL_STATE(1250)] = 41540, + [SMALL_STATE(1251)] = 41616, + [SMALL_STATE(1252)] = 41692, + [SMALL_STATE(1253)] = 41768, + [SMALL_STATE(1254)] = 41830, + [SMALL_STATE(1255)] = 41906, + [SMALL_STATE(1256)] = 41982, + [SMALL_STATE(1257)] = 42058, + [SMALL_STATE(1258)] = 42134, + [SMALL_STATE(1259)] = 42210, + [SMALL_STATE(1260)] = 42286, + [SMALL_STATE(1261)] = 42362, + [SMALL_STATE(1262)] = 42438, + [SMALL_STATE(1263)] = 42514, + [SMALL_STATE(1264)] = 42590, + [SMALL_STATE(1265)] = 42666, + [SMALL_STATE(1266)] = 42742, + [SMALL_STATE(1267)] = 42818, + [SMALL_STATE(1268)] = 42894, + [SMALL_STATE(1269)] = 42970, + [SMALL_STATE(1270)] = 43046, + [SMALL_STATE(1271)] = 43122, + [SMALL_STATE(1272)] = 43198, + [SMALL_STATE(1273)] = 43274, + [SMALL_STATE(1274)] = 43350, + [SMALL_STATE(1275)] = 43426, + [SMALL_STATE(1276)] = 43502, + [SMALL_STATE(1277)] = 43578, + [SMALL_STATE(1278)] = 43654, + [SMALL_STATE(1279)] = 43730, + [SMALL_STATE(1280)] = 43806, + [SMALL_STATE(1281)] = 43882, + [SMALL_STATE(1282)] = 43958, + [SMALL_STATE(1283)] = 44034, + [SMALL_STATE(1284)] = 44110, + [SMALL_STATE(1285)] = 44186, + [SMALL_STATE(1286)] = 44224, + [SMALL_STATE(1287)] = 44300, + [SMALL_STATE(1288)] = 44376, + [SMALL_STATE(1289)] = 44452, + [SMALL_STATE(1290)] = 44528, + [SMALL_STATE(1291)] = 44604, + [SMALL_STATE(1292)] = 44680, + [SMALL_STATE(1293)] = 44756, + [SMALL_STATE(1294)] = 44832, + [SMALL_STATE(1295)] = 44908, + [SMALL_STATE(1296)] = 44984, + [SMALL_STATE(1297)] = 45060, + [SMALL_STATE(1298)] = 45136, + [SMALL_STATE(1299)] = 45212, + [SMALL_STATE(1300)] = 45288, + [SMALL_STATE(1301)] = 45364, + [SMALL_STATE(1302)] = 45440, + [SMALL_STATE(1303)] = 45516, + [SMALL_STATE(1304)] = 45592, + [SMALL_STATE(1305)] = 45668, + [SMALL_STATE(1306)] = 45744, + [SMALL_STATE(1307)] = 45820, + [SMALL_STATE(1308)] = 45896, + [SMALL_STATE(1309)] = 45972, + [SMALL_STATE(1310)] = 46037, + [SMALL_STATE(1311)] = 46074, + [SMALL_STATE(1312)] = 46111, + [SMALL_STATE(1313)] = 46148, + [SMALL_STATE(1314)] = 46213, + [SMALL_STATE(1315)] = 46278, + [SMALL_STATE(1316)] = 46315, + [SMALL_STATE(1317)] = 46380, + [SMALL_STATE(1318)] = 46439, + [SMALL_STATE(1319)] = 46498, + [SMALL_STATE(1320)] = 46563, + [SMALL_STATE(1321)] = 46611, + [SMALL_STATE(1322)] = 46659, + [SMALL_STATE(1323)] = 46707, + [SMALL_STATE(1324)] = 46755, + [SMALL_STATE(1325)] = 46803, + [SMALL_STATE(1326)] = 46851, + [SMALL_STATE(1327)] = 46899, + [SMALL_STATE(1328)] = 46947, + [SMALL_STATE(1329)] = 46995, + [SMALL_STATE(1330)] = 47043, + [SMALL_STATE(1331)] = 47091, + [SMALL_STATE(1332)] = 47136, + [SMALL_STATE(1333)] = 47181, + [SMALL_STATE(1334)] = 47226, + [SMALL_STATE(1335)] = 47271, + [SMALL_STATE(1336)] = 47316, + [SMALL_STATE(1337)] = 47361, + [SMALL_STATE(1338)] = 47398, + [SMALL_STATE(1339)] = 47435, + [SMALL_STATE(1340)] = 47475, + [SMALL_STATE(1341)] = 47525, + [SMALL_STATE(1342)] = 47565, + [SMALL_STATE(1343)] = 47615, + [SMALL_STATE(1344)] = 47655, + [SMALL_STATE(1345)] = 47700, + [SMALL_STATE(1346)] = 47742, + [SMALL_STATE(1347)] = 47781, + [SMALL_STATE(1348)] = 47820, + [SMALL_STATE(1349)] = 47859, + [SMALL_STATE(1350)] = 47898, + [SMALL_STATE(1351)] = 47937, + [SMALL_STATE(1352)] = 47973, + [SMALL_STATE(1353)] = 48009, + [SMALL_STATE(1354)] = 48045, + [SMALL_STATE(1355)] = 48069, + [SMALL_STATE(1356)] = 48108, + [SMALL_STATE(1357)] = 48147, + [SMALL_STATE(1358)] = 48167, + [SMALL_STATE(1359)] = 48187, + [SMALL_STATE(1360)] = 48207, + [SMALL_STATE(1361)] = 48227, + [SMALL_STATE(1362)] = 48247, + [SMALL_STATE(1363)] = 48267, + [SMALL_STATE(1364)] = 48287, + [SMALL_STATE(1365)] = 48321, + [SMALL_STATE(1366)] = 48341, + [SMALL_STATE(1367)] = 48361, + [SMALL_STATE(1368)] = 48395, + [SMALL_STATE(1369)] = 48415, + [SMALL_STATE(1370)] = 48435, + [SMALL_STATE(1371)] = 48455, + [SMALL_STATE(1372)] = 48475, + [SMALL_STATE(1373)] = 48495, + [SMALL_STATE(1374)] = 48515, + [SMALL_STATE(1375)] = 48549, + [SMALL_STATE(1376)] = 48585, + [SMALL_STATE(1377)] = 48605, + [SMALL_STATE(1378)] = 48638, + [SMALL_STATE(1379)] = 48671, + [SMALL_STATE(1380)] = 48704, + [SMALL_STATE(1381)] = 48723, + [SMALL_STATE(1382)] = 48758, + [SMALL_STATE(1383)] = 48777, + [SMALL_STATE(1384)] = 48796, + [SMALL_STATE(1385)] = 48829, + [SMALL_STATE(1386)] = 48862, + [SMALL_STATE(1387)] = 48895, + [SMALL_STATE(1388)] = 48914, + [SMALL_STATE(1389)] = 48933, + [SMALL_STATE(1390)] = 48952, + [SMALL_STATE(1391)] = 48971, + [SMALL_STATE(1392)] = 48990, + [SMALL_STATE(1393)] = 49023, + [SMALL_STATE(1394)] = 49056, + [SMALL_STATE(1395)] = 49075, + [SMALL_STATE(1396)] = 49094, + [SMALL_STATE(1397)] = 49113, + [SMALL_STATE(1398)] = 49148, + [SMALL_STATE(1399)] = 49173, + [SMALL_STATE(1400)] = 49192, + [SMALL_STATE(1401)] = 49211, + [SMALL_STATE(1402)] = 49230, + [SMALL_STATE(1403)] = 49263, + [SMALL_STATE(1404)] = 49282, + [SMALL_STATE(1405)] = 49301, + [SMALL_STATE(1406)] = 49334, + [SMALL_STATE(1407)] = 49353, + [SMALL_STATE(1408)] = 49387, + [SMALL_STATE(1409)] = 49421, + [SMALL_STATE(1410)] = 49451, + [SMALL_STATE(1411)] = 49473, + [SMALL_STATE(1412)] = 49503, + [SMALL_STATE(1413)] = 49528, + [SMALL_STATE(1414)] = 49559, + [SMALL_STATE(1415)] = 49578, + [SMALL_STATE(1416)] = 49599, + [SMALL_STATE(1417)] = 49622, + [SMALL_STATE(1418)] = 49647, + [SMALL_STATE(1419)] = 49666, + [SMALL_STATE(1420)] = 49685, + [SMALL_STATE(1421)] = 49716, + [SMALL_STATE(1422)] = 49747, + [SMALL_STATE(1423)] = 49778, + [SMALL_STATE(1424)] = 49809, + [SMALL_STATE(1425)] = 49833, + [SMALL_STATE(1426)] = 49851, + [SMALL_STATE(1427)] = 49873, + [SMALL_STATE(1428)] = 49891, + [SMALL_STATE(1429)] = 49909, + [SMALL_STATE(1430)] = 49937, + [SMALL_STATE(1431)] = 49965, + [SMALL_STATE(1432)] = 49985, + [SMALL_STATE(1433)] = 50011, + [SMALL_STATE(1434)] = 50033, + [SMALL_STATE(1435)] = 50051, + [SMALL_STATE(1436)] = 50069, + [SMALL_STATE(1437)] = 50097, + [SMALL_STATE(1438)] = 50125, + [SMALL_STATE(1439)] = 50151, + [SMALL_STATE(1440)] = 50173, + [SMALL_STATE(1441)] = 50195, + [SMALL_STATE(1442)] = 50223, + [SMALL_STATE(1443)] = 50249, + [SMALL_STATE(1444)] = 50267, + [SMALL_STATE(1445)] = 50293, + [SMALL_STATE(1446)] = 50318, + [SMALL_STATE(1447)] = 50337, + [SMALL_STATE(1448)] = 50358, + [SMALL_STATE(1449)] = 50381, + [SMALL_STATE(1450)] = 50402, + [SMALL_STATE(1451)] = 50425, + [SMALL_STATE(1452)] = 50446, + [SMALL_STATE(1453)] = 50469, + [SMALL_STATE(1454)] = 50490, + [SMALL_STATE(1455)] = 50507, + [SMALL_STATE(1456)] = 50528, + [SMALL_STATE(1457)] = 50555, + [SMALL_STATE(1458)] = 50578, + [SMALL_STATE(1459)] = 50601, + [SMALL_STATE(1460)] = 50626, + [SMALL_STATE(1461)] = 50649, + [SMALL_STATE(1462)] = 50672, + [SMALL_STATE(1463)] = 50697, + [SMALL_STATE(1464)] = 50720, + [SMALL_STATE(1465)] = 50745, + [SMALL_STATE(1466)] = 50768, + [SMALL_STATE(1467)] = 50791, + [SMALL_STATE(1468)] = 50814, + [SMALL_STATE(1469)] = 50839, + [SMALL_STATE(1470)] = 50862, + [SMALL_STATE(1471)] = 50883, + [SMALL_STATE(1472)] = 50906, + [SMALL_STATE(1473)] = 50929, + [SMALL_STATE(1474)] = 50950, + [SMALL_STATE(1475)] = 50973, + [SMALL_STATE(1476)] = 50994, + [SMALL_STATE(1477)] = 51017, + [SMALL_STATE(1478)] = 51042, + [SMALL_STATE(1479)] = 51065, + [SMALL_STATE(1480)] = 51088, + [SMALL_STATE(1481)] = 51109, + [SMALL_STATE(1482)] = 51132, + [SMALL_STATE(1483)] = 51157, + [SMALL_STATE(1484)] = 51174, + [SMALL_STATE(1485)] = 51195, + [SMALL_STATE(1486)] = 51218, + [SMALL_STATE(1487)] = 51243, + [SMALL_STATE(1488)] = 51266, + [SMALL_STATE(1489)] = 51289, + [SMALL_STATE(1490)] = 51310, + [SMALL_STATE(1491)] = 51335, + [SMALL_STATE(1492)] = 51356, + [SMALL_STATE(1493)] = 51379, + [SMALL_STATE(1494)] = 51404, + [SMALL_STATE(1495)] = 51427, + [SMALL_STATE(1496)] = 51450, + [SMALL_STATE(1497)] = 51473, + [SMALL_STATE(1498)] = 51496, + [SMALL_STATE(1499)] = 51519, + [SMALL_STATE(1500)] = 51546, + [SMALL_STATE(1501)] = 51571, + [SMALL_STATE(1502)] = 51596, + [SMALL_STATE(1503)] = 51619, + [SMALL_STATE(1504)] = 51640, + [SMALL_STATE(1505)] = 51663, + [SMALL_STATE(1506)] = 51688, + [SMALL_STATE(1507)] = 51705, + [SMALL_STATE(1508)] = 51733, + [SMALL_STATE(1509)] = 51755, + [SMALL_STATE(1510)] = 51783, + [SMALL_STATE(1511)] = 51811, + [SMALL_STATE(1512)] = 51835, + [SMALL_STATE(1513)] = 51855, + [SMALL_STATE(1514)] = 51883, + [SMALL_STATE(1515)] = 51903, + [SMALL_STATE(1516)] = 51931, + [SMALL_STATE(1517)] = 51959, + [SMALL_STATE(1518)] = 51985, + [SMALL_STATE(1519)] = 52007, + [SMALL_STATE(1520)] = 52027, + [SMALL_STATE(1521)] = 52044, + [SMALL_STATE(1522)] = 52065, + [SMALL_STATE(1523)] = 52080, + [SMALL_STATE(1524)] = 52095, + [SMALL_STATE(1525)] = 52110, + [SMALL_STATE(1526)] = 52129, + [SMALL_STATE(1527)] = 52146, + [SMALL_STATE(1528)] = 52161, + [SMALL_STATE(1529)] = 52178, + [SMALL_STATE(1530)] = 52193, + [SMALL_STATE(1531)] = 52210, + [SMALL_STATE(1532)] = 52225, + [SMALL_STATE(1533)] = 52242, + [SMALL_STATE(1534)] = 52259, + [SMALL_STATE(1535)] = 52274, + [SMALL_STATE(1536)] = 52289, + [SMALL_STATE(1537)] = 52308, + [SMALL_STATE(1538)] = 52325, + [SMALL_STATE(1539)] = 52348, + [SMALL_STATE(1540)] = 52365, + [SMALL_STATE(1541)] = 52382, + [SMALL_STATE(1542)] = 52407, + [SMALL_STATE(1543)] = 52424, + [SMALL_STATE(1544)] = 52443, + [SMALL_STATE(1545)] = 52460, + [SMALL_STATE(1546)] = 52477, + [SMALL_STATE(1547)] = 52496, + [SMALL_STATE(1548)] = 52511, + [SMALL_STATE(1549)] = 52528, + [SMALL_STATE(1550)] = 52543, + [SMALL_STATE(1551)] = 52560, + [SMALL_STATE(1552)] = 52577, + [SMALL_STATE(1553)] = 52592, + [SMALL_STATE(1554)] = 52613, + [SMALL_STATE(1555)] = 52628, + [SMALL_STATE(1556)] = 52645, + [SMALL_STATE(1557)] = 52666, + [SMALL_STATE(1558)] = 52683, + [SMALL_STATE(1559)] = 52704, + [SMALL_STATE(1560)] = 52721, + [SMALL_STATE(1561)] = 52738, + [SMALL_STATE(1562)] = 52755, + [SMALL_STATE(1563)] = 52772, + [SMALL_STATE(1564)] = 52794, + [SMALL_STATE(1565)] = 52816, + [SMALL_STATE(1566)] = 52830, + [SMALL_STATE(1567)] = 52852, + [SMALL_STATE(1568)] = 52866, + [SMALL_STATE(1569)] = 52880, + [SMALL_STATE(1570)] = 52902, + [SMALL_STATE(1571)] = 52916, + [SMALL_STATE(1572)] = 52930, + [SMALL_STATE(1573)] = 52952, + [SMALL_STATE(1574)] = 52970, + [SMALL_STATE(1575)] = 52992, + [SMALL_STATE(1576)] = 53010, + [SMALL_STATE(1577)] = 53032, + [SMALL_STATE(1578)] = 53054, + [SMALL_STATE(1579)] = 53076, + [SMALL_STATE(1580)] = 53098, + [SMALL_STATE(1581)] = 53120, + [SMALL_STATE(1582)] = 53134, + [SMALL_STATE(1583)] = 53156, + [SMALL_STATE(1584)] = 53178, + [SMALL_STATE(1585)] = 53196, + [SMALL_STATE(1586)] = 53218, + [SMALL_STATE(1587)] = 53232, + [SMALL_STATE(1588)] = 53246, + [SMALL_STATE(1589)] = 53268, + [SMALL_STATE(1590)] = 53288, + [SMALL_STATE(1591)] = 53310, + [SMALL_STATE(1592)] = 53332, + [SMALL_STATE(1593)] = 53350, + [SMALL_STATE(1594)] = 53372, + [SMALL_STATE(1595)] = 53390, + [SMALL_STATE(1596)] = 53408, + [SMALL_STATE(1597)] = 53430, + [SMALL_STATE(1598)] = 53452, + [SMALL_STATE(1599)] = 53474, + [SMALL_STATE(1600)] = 53494, + [SMALL_STATE(1601)] = 53508, + [SMALL_STATE(1602)] = 53522, + [SMALL_STATE(1603)] = 53544, + [SMALL_STATE(1604)] = 53566, + [SMALL_STATE(1605)] = 53580, + [SMALL_STATE(1606)] = 53602, + [SMALL_STATE(1607)] = 53624, + [SMALL_STATE(1608)] = 53646, + [SMALL_STATE(1609)] = 53668, + [SMALL_STATE(1610)] = 53686, + [SMALL_STATE(1611)] = 53708, + [SMALL_STATE(1612)] = 53728, + [SMALL_STATE(1613)] = 53750, + [SMALL_STATE(1614)] = 53766, + [SMALL_STATE(1615)] = 53788, + [SMALL_STATE(1616)] = 53802, + [SMALL_STATE(1617)] = 53822, + [SMALL_STATE(1618)] = 53836, + [SMALL_STATE(1619)] = 53858, + [SMALL_STATE(1620)] = 53880, + [SMALL_STATE(1621)] = 53902, + [SMALL_STATE(1622)] = 53924, + [SMALL_STATE(1623)] = 53942, + [SMALL_STATE(1624)] = 53964, + [SMALL_STATE(1625)] = 53978, + [SMALL_STATE(1626)] = 53996, + [SMALL_STATE(1627)] = 54014, + [SMALL_STATE(1628)] = 54032, + [SMALL_STATE(1629)] = 54046, + [SMALL_STATE(1630)] = 54064, + [SMALL_STATE(1631)] = 54082, + [SMALL_STATE(1632)] = 54096, + [SMALL_STATE(1633)] = 54118, + [SMALL_STATE(1634)] = 54137, + [SMALL_STATE(1635)] = 54156, + [SMALL_STATE(1636)] = 54171, + [SMALL_STATE(1637)] = 54186, + [SMALL_STATE(1638)] = 54205, + [SMALL_STATE(1639)] = 54224, + [SMALL_STATE(1640)] = 54241, + [SMALL_STATE(1641)] = 54258, + [SMALL_STATE(1642)] = 54273, + [SMALL_STATE(1643)] = 54290, + [SMALL_STATE(1644)] = 54309, + [SMALL_STATE(1645)] = 54326, + [SMALL_STATE(1646)] = 54341, + [SMALL_STATE(1647)] = 54358, + [SMALL_STATE(1648)] = 54373, + [SMALL_STATE(1649)] = 54388, + [SMALL_STATE(1650)] = 54405, + [SMALL_STATE(1651)] = 54420, + [SMALL_STATE(1652)] = 54435, + [SMALL_STATE(1653)] = 54450, + [SMALL_STATE(1654)] = 54465, + [SMALL_STATE(1655)] = 54480, + [SMALL_STATE(1656)] = 54499, + [SMALL_STATE(1657)] = 54516, + [SMALL_STATE(1658)] = 54535, + [SMALL_STATE(1659)] = 54552, + [SMALL_STATE(1660)] = 54569, + [SMALL_STATE(1661)] = 54584, + [SMALL_STATE(1662)] = 54597, + [SMALL_STATE(1663)] = 54612, + [SMALL_STATE(1664)] = 54631, + [SMALL_STATE(1665)] = 54648, + [SMALL_STATE(1666)] = 54663, + [SMALL_STATE(1667)] = 54682, + [SMALL_STATE(1668)] = 54697, + [SMALL_STATE(1669)] = 54716, + [SMALL_STATE(1670)] = 54731, + [SMALL_STATE(1671)] = 54750, + [SMALL_STATE(1672)] = 54765, + [SMALL_STATE(1673)] = 54780, + [SMALL_STATE(1674)] = 54795, + [SMALL_STATE(1675)] = 54812, + [SMALL_STATE(1676)] = 54827, + [SMALL_STATE(1677)] = 54844, + [SMALL_STATE(1678)] = 54859, + [SMALL_STATE(1679)] = 54874, + [SMALL_STATE(1680)] = 54889, + [SMALL_STATE(1681)] = 54906, + [SMALL_STATE(1682)] = 54921, + [SMALL_STATE(1683)] = 54940, + [SMALL_STATE(1684)] = 54953, + [SMALL_STATE(1685)] = 54972, + [SMALL_STATE(1686)] = 54987, + [SMALL_STATE(1687)] = 55006, + [SMALL_STATE(1688)] = 55025, + [SMALL_STATE(1689)] = 55040, + [SMALL_STATE(1690)] = 55059, + [SMALL_STATE(1691)] = 55078, + [SMALL_STATE(1692)] = 55097, + [SMALL_STATE(1693)] = 55112, + [SMALL_STATE(1694)] = 55131, + [SMALL_STATE(1695)] = 55146, + [SMALL_STATE(1696)] = 55165, + [SMALL_STATE(1697)] = 55184, + [SMALL_STATE(1698)] = 55199, + [SMALL_STATE(1699)] = 55214, + [SMALL_STATE(1700)] = 55229, + [SMALL_STATE(1701)] = 55244, + [SMALL_STATE(1702)] = 55257, + [SMALL_STATE(1703)] = 55272, + [SMALL_STATE(1704)] = 55287, + [SMALL_STATE(1705)] = 55302, + [SMALL_STATE(1706)] = 55319, + [SMALL_STATE(1707)] = 55338, + [SMALL_STATE(1708)] = 55349, + [SMALL_STATE(1709)] = 55364, + [SMALL_STATE(1710)] = 55379, + [SMALL_STATE(1711)] = 55390, + [SMALL_STATE(1712)] = 55401, + [SMALL_STATE(1713)] = 55418, + [SMALL_STATE(1714)] = 55433, + [SMALL_STATE(1715)] = 55450, + [SMALL_STATE(1716)] = 55469, + [SMALL_STATE(1717)] = 55484, + [SMALL_STATE(1718)] = 55499, + [SMALL_STATE(1719)] = 55516, + [SMALL_STATE(1720)] = 55531, + [SMALL_STATE(1721)] = 55546, + [SMALL_STATE(1722)] = 55563, + [SMALL_STATE(1723)] = 55582, + [SMALL_STATE(1724)] = 55598, + [SMALL_STATE(1725)] = 55614, + [SMALL_STATE(1726)] = 55628, + [SMALL_STATE(1727)] = 55642, + [SMALL_STATE(1728)] = 55652, + [SMALL_STATE(1729)] = 55666, + [SMALL_STATE(1730)] = 55682, + [SMALL_STATE(1731)] = 55696, + [SMALL_STATE(1732)] = 55706, + [SMALL_STATE(1733)] = 55722, + [SMALL_STATE(1734)] = 55738, + [SMALL_STATE(1735)] = 55748, + [SMALL_STATE(1736)] = 55764, + [SMALL_STATE(1737)] = 55780, + [SMALL_STATE(1738)] = 55796, + [SMALL_STATE(1739)] = 55810, + [SMALL_STATE(1740)] = 55826, + [SMALL_STATE(1741)] = 55840, + [SMALL_STATE(1742)] = 55854, + [SMALL_STATE(1743)] = 55864, + [SMALL_STATE(1744)] = 55874, + [SMALL_STATE(1745)] = 55884, + [SMALL_STATE(1746)] = 55900, + [SMALL_STATE(1747)] = 55916, + [SMALL_STATE(1748)] = 55932, + [SMALL_STATE(1749)] = 55948, + [SMALL_STATE(1750)] = 55964, + [SMALL_STATE(1751)] = 55976, + [SMALL_STATE(1752)] = 55992, + [SMALL_STATE(1753)] = 56006, + [SMALL_STATE(1754)] = 56016, + [SMALL_STATE(1755)] = 56026, + [SMALL_STATE(1756)] = 56038, + [SMALL_STATE(1757)] = 56054, + [SMALL_STATE(1758)] = 56068, + [SMALL_STATE(1759)] = 56082, + [SMALL_STATE(1760)] = 56096, + [SMALL_STATE(1761)] = 56108, + [SMALL_STATE(1762)] = 56122, + [SMALL_STATE(1763)] = 56136, + [SMALL_STATE(1764)] = 56152, + [SMALL_STATE(1765)] = 56168, + [SMALL_STATE(1766)] = 56184, + [SMALL_STATE(1767)] = 56200, + [SMALL_STATE(1768)] = 56214, + [SMALL_STATE(1769)] = 56230, + [SMALL_STATE(1770)] = 56244, + [SMALL_STATE(1771)] = 56258, + [SMALL_STATE(1772)] = 56272, + [SMALL_STATE(1773)] = 56286, + [SMALL_STATE(1774)] = 56296, + [SMALL_STATE(1775)] = 56306, + [SMALL_STATE(1776)] = 56322, + [SMALL_STATE(1777)] = 56336, + [SMALL_STATE(1778)] = 56350, + [SMALL_STATE(1779)] = 56364, + [SMALL_STATE(1780)] = 56380, + [SMALL_STATE(1781)] = 56394, + [SMALL_STATE(1782)] = 56410, + [SMALL_STATE(1783)] = 56424, + [SMALL_STATE(1784)] = 56440, + [SMALL_STATE(1785)] = 56456, + [SMALL_STATE(1786)] = 56468, + [SMALL_STATE(1787)] = 56482, + [SMALL_STATE(1788)] = 56498, + [SMALL_STATE(1789)] = 56512, + [SMALL_STATE(1790)] = 56526, + [SMALL_STATE(1791)] = 56540, + [SMALL_STATE(1792)] = 56556, + [SMALL_STATE(1793)] = 56570, + [SMALL_STATE(1794)] = 56584, + [SMALL_STATE(1795)] = 56598, + [SMALL_STATE(1796)] = 56614, + [SMALL_STATE(1797)] = 56630, + [SMALL_STATE(1798)] = 56644, + [SMALL_STATE(1799)] = 56656, + [SMALL_STATE(1800)] = 56670, + [SMALL_STATE(1801)] = 56686, + [SMALL_STATE(1802)] = 56702, + [SMALL_STATE(1803)] = 56712, + [SMALL_STATE(1804)] = 56728, + [SMALL_STATE(1805)] = 56744, + [SMALL_STATE(1806)] = 56754, + [SMALL_STATE(1807)] = 56768, + [SMALL_STATE(1808)] = 56784, + [SMALL_STATE(1809)] = 56800, + [SMALL_STATE(1810)] = 56816, + [SMALL_STATE(1811)] = 56830, + [SMALL_STATE(1812)] = 56844, + [SMALL_STATE(1813)] = 56860, + [SMALL_STATE(1814)] = 56874, + [SMALL_STATE(1815)] = 56884, + [SMALL_STATE(1816)] = 56898, + [SMALL_STATE(1817)] = 56914, + [SMALL_STATE(1818)] = 56924, + [SMALL_STATE(1819)] = 56940, + [SMALL_STATE(1820)] = 56956, + [SMALL_STATE(1821)] = 56972, + [SMALL_STATE(1822)] = 56988, + [SMALL_STATE(1823)] = 57002, + [SMALL_STATE(1824)] = 57016, + [SMALL_STATE(1825)] = 57032, + [SMALL_STATE(1826)] = 57046, + [SMALL_STATE(1827)] = 57062, + [SMALL_STATE(1828)] = 57076, + [SMALL_STATE(1829)] = 57092, + [SMALL_STATE(1830)] = 57108, + [SMALL_STATE(1831)] = 57124, + [SMALL_STATE(1832)] = 57140, + [SMALL_STATE(1833)] = 57156, + [SMALL_STATE(1834)] = 57166, + [SMALL_STATE(1835)] = 57180, + [SMALL_STATE(1836)] = 57194, + [SMALL_STATE(1837)] = 57208, + [SMALL_STATE(1838)] = 57222, + [SMALL_STATE(1839)] = 57236, + [SMALL_STATE(1840)] = 57250, + [SMALL_STATE(1841)] = 57264, + [SMALL_STATE(1842)] = 57280, + [SMALL_STATE(1843)] = 57294, + [SMALL_STATE(1844)] = 57308, + [SMALL_STATE(1845)] = 57318, + [SMALL_STATE(1846)] = 57334, + [SMALL_STATE(1847)] = 57348, + [SMALL_STATE(1848)] = 57362, + [SMALL_STATE(1849)] = 57376, + [SMALL_STATE(1850)] = 57392, + [SMALL_STATE(1851)] = 57402, + [SMALL_STATE(1852)] = 57418, + [SMALL_STATE(1853)] = 57434, + [SMALL_STATE(1854)] = 57450, + [SMALL_STATE(1855)] = 57460, + [SMALL_STATE(1856)] = 57476, + [SMALL_STATE(1857)] = 57490, + [SMALL_STATE(1858)] = 57504, + [SMALL_STATE(1859)] = 57520, + [SMALL_STATE(1860)] = 57536, + [SMALL_STATE(1861)] = 57552, + [SMALL_STATE(1862)] = 57568, + [SMALL_STATE(1863)] = 57582, + [SMALL_STATE(1864)] = 57598, + [SMALL_STATE(1865)] = 57612, + [SMALL_STATE(1866)] = 57626, + [SMALL_STATE(1867)] = 57640, + [SMALL_STATE(1868)] = 57650, + [SMALL_STATE(1869)] = 57664, + [SMALL_STATE(1870)] = 57680, + [SMALL_STATE(1871)] = 57693, + [SMALL_STATE(1872)] = 57704, + [SMALL_STATE(1873)] = 57715, + [SMALL_STATE(1874)] = 57728, + [SMALL_STATE(1875)] = 57741, + [SMALL_STATE(1876)] = 57754, + [SMALL_STATE(1877)] = 57765, + [SMALL_STATE(1878)] = 57776, + [SMALL_STATE(1879)] = 57787, + [SMALL_STATE(1880)] = 57798, + [SMALL_STATE(1881)] = 57809, + [SMALL_STATE(1882)] = 57820, + [SMALL_STATE(1883)] = 57831, + [SMALL_STATE(1884)] = 57842, + [SMALL_STATE(1885)] = 57855, + [SMALL_STATE(1886)] = 57866, + [SMALL_STATE(1887)] = 57877, + [SMALL_STATE(1888)] = 57890, + [SMALL_STATE(1889)] = 57901, + [SMALL_STATE(1890)] = 57914, + [SMALL_STATE(1891)] = 57923, + [SMALL_STATE(1892)] = 57934, + [SMALL_STATE(1893)] = 57947, + [SMALL_STATE(1894)] = 57958, + [SMALL_STATE(1895)] = 57969, + [SMALL_STATE(1896)] = 57982, + [SMALL_STATE(1897)] = 57995, + [SMALL_STATE(1898)] = 58006, + [SMALL_STATE(1899)] = 58015, + [SMALL_STATE(1900)] = 58028, + [SMALL_STATE(1901)] = 58041, + [SMALL_STATE(1902)] = 58054, + [SMALL_STATE(1903)] = 58065, + [SMALL_STATE(1904)] = 58078, + [SMALL_STATE(1905)] = 58091, + [SMALL_STATE(1906)] = 58104, + [SMALL_STATE(1907)] = 58117, + [SMALL_STATE(1908)] = 58128, + [SMALL_STATE(1909)] = 58141, + [SMALL_STATE(1910)] = 58152, + [SMALL_STATE(1911)] = 58163, + [SMALL_STATE(1912)] = 58172, + [SMALL_STATE(1913)] = 58183, + [SMALL_STATE(1914)] = 58196, + [SMALL_STATE(1915)] = 58209, + [SMALL_STATE(1916)] = 58222, + [SMALL_STATE(1917)] = 58233, + [SMALL_STATE(1918)] = 58242, + [SMALL_STATE(1919)] = 58253, + [SMALL_STATE(1920)] = 58264, + [SMALL_STATE(1921)] = 58277, + [SMALL_STATE(1922)] = 58290, + [SMALL_STATE(1923)] = 58303, + [SMALL_STATE(1924)] = 58316, + [SMALL_STATE(1925)] = 58327, + [SMALL_STATE(1926)] = 58338, + [SMALL_STATE(1927)] = 58351, + [SMALL_STATE(1928)] = 58364, + [SMALL_STATE(1929)] = 58377, + [SMALL_STATE(1930)] = 58386, + [SMALL_STATE(1931)] = 58397, + [SMALL_STATE(1932)] = 58410, + [SMALL_STATE(1933)] = 58423, + [SMALL_STATE(1934)] = 58436, + [SMALL_STATE(1935)] = 58445, + [SMALL_STATE(1936)] = 58456, + [SMALL_STATE(1937)] = 58467, + [SMALL_STATE(1938)] = 58478, + [SMALL_STATE(1939)] = 58491, + [SMALL_STATE(1940)] = 58502, + [SMALL_STATE(1941)] = 58515, + [SMALL_STATE(1942)] = 58526, + [SMALL_STATE(1943)] = 58539, + [SMALL_STATE(1944)] = 58550, + [SMALL_STATE(1945)] = 58561, + [SMALL_STATE(1946)] = 58572, + [SMALL_STATE(1947)] = 58583, + [SMALL_STATE(1948)] = 58594, + [SMALL_STATE(1949)] = 58605, + [SMALL_STATE(1950)] = 58618, + [SMALL_STATE(1951)] = 58631, + [SMALL_STATE(1952)] = 58644, + [SMALL_STATE(1953)] = 58655, + [SMALL_STATE(1954)] = 58668, + [SMALL_STATE(1955)] = 58681, + [SMALL_STATE(1956)] = 58692, + [SMALL_STATE(1957)] = 58705, + [SMALL_STATE(1958)] = 58718, + [SMALL_STATE(1959)] = 58727, + [SMALL_STATE(1960)] = 58738, + [SMALL_STATE(1961)] = 58747, + [SMALL_STATE(1962)] = 58758, + [SMALL_STATE(1963)] = 58771, + [SMALL_STATE(1964)] = 58784, + [SMALL_STATE(1965)] = 58797, + [SMALL_STATE(1966)] = 58806, + [SMALL_STATE(1967)] = 58819, + [SMALL_STATE(1968)] = 58828, + [SMALL_STATE(1969)] = 58841, + [SMALL_STATE(1970)] = 58852, + [SMALL_STATE(1971)] = 58861, + [SMALL_STATE(1972)] = 58872, + [SMALL_STATE(1973)] = 58885, + [SMALL_STATE(1974)] = 58896, + [SMALL_STATE(1975)] = 58909, + [SMALL_STATE(1976)] = 58920, + [SMALL_STATE(1977)] = 58931, + [SMALL_STATE(1978)] = 58942, + [SMALL_STATE(1979)] = 58955, + [SMALL_STATE(1980)] = 58968, + [SMALL_STATE(1981)] = 58979, + [SMALL_STATE(1982)] = 58990, + [SMALL_STATE(1983)] = 59003, + [SMALL_STATE(1984)] = 59014, + [SMALL_STATE(1985)] = 59025, + [SMALL_STATE(1986)] = 59038, + [SMALL_STATE(1987)] = 59049, + [SMALL_STATE(1988)] = 59060, + [SMALL_STATE(1989)] = 59073, + [SMALL_STATE(1990)] = 59082, + [SMALL_STATE(1991)] = 59095, + [SMALL_STATE(1992)] = 59106, + [SMALL_STATE(1993)] = 59117, + [SMALL_STATE(1994)] = 59128, + [SMALL_STATE(1995)] = 59137, + [SMALL_STATE(1996)] = 59148, + [SMALL_STATE(1997)] = 59157, + [SMALL_STATE(1998)] = 59170, + [SMALL_STATE(1999)] = 59181, + [SMALL_STATE(2000)] = 59194, + [SMALL_STATE(2001)] = 59205, + [SMALL_STATE(2002)] = 59218, + [SMALL_STATE(2003)] = 59231, + [SMALL_STATE(2004)] = 59244, + [SMALL_STATE(2005)] = 59255, + [SMALL_STATE(2006)] = 59266, + [SMALL_STATE(2007)] = 59279, + [SMALL_STATE(2008)] = 59292, + [SMALL_STATE(2009)] = 59303, + [SMALL_STATE(2010)] = 59314, + [SMALL_STATE(2011)] = 59325, + [SMALL_STATE(2012)] = 59338, + [SMALL_STATE(2013)] = 59349, + [SMALL_STATE(2014)] = 59358, + [SMALL_STATE(2015)] = 59369, + [SMALL_STATE(2016)] = 59380, + [SMALL_STATE(2017)] = 59393, + [SMALL_STATE(2018)] = 59406, + [SMALL_STATE(2019)] = 59417, + [SMALL_STATE(2020)] = 59428, + [SMALL_STATE(2021)] = 59439, + [SMALL_STATE(2022)] = 59452, + [SMALL_STATE(2023)] = 59465, + [SMALL_STATE(2024)] = 59478, + [SMALL_STATE(2025)] = 59489, + [SMALL_STATE(2026)] = 59500, + [SMALL_STATE(2027)] = 59511, + [SMALL_STATE(2028)] = 59522, + [SMALL_STATE(2029)] = 59533, + [SMALL_STATE(2030)] = 59544, + [SMALL_STATE(2031)] = 59553, + [SMALL_STATE(2032)] = 59564, + [SMALL_STATE(2033)] = 59577, + [SMALL_STATE(2034)] = 59588, + [SMALL_STATE(2035)] = 59601, + [SMALL_STATE(2036)] = 59612, + [SMALL_STATE(2037)] = 59623, + [SMALL_STATE(2038)] = 59636, + [SMALL_STATE(2039)] = 59647, + [SMALL_STATE(2040)] = 59658, + [SMALL_STATE(2041)] = 59669, + [SMALL_STATE(2042)] = 59680, + [SMALL_STATE(2043)] = 59691, + [SMALL_STATE(2044)] = 59704, + [SMALL_STATE(2045)] = 59715, + [SMALL_STATE(2046)] = 59726, + [SMALL_STATE(2047)] = 59739, + [SMALL_STATE(2048)] = 59748, + [SMALL_STATE(2049)] = 59759, + [SMALL_STATE(2050)] = 59772, + [SMALL_STATE(2051)] = 59781, + [SMALL_STATE(2052)] = 59792, + [SMALL_STATE(2053)] = 59805, + [SMALL_STATE(2054)] = 59818, + [SMALL_STATE(2055)] = 59831, + [SMALL_STATE(2056)] = 59840, + [SMALL_STATE(2057)] = 59849, + [SMALL_STATE(2058)] = 59862, + [SMALL_STATE(2059)] = 59875, + [SMALL_STATE(2060)] = 59888, + [SMALL_STATE(2061)] = 59899, + [SMALL_STATE(2062)] = 59912, + [SMALL_STATE(2063)] = 59923, + [SMALL_STATE(2064)] = 59934, + [SMALL_STATE(2065)] = 59943, + [SMALL_STATE(2066)] = 59956, + [SMALL_STATE(2067)] = 59969, + [SMALL_STATE(2068)] = 59980, + [SMALL_STATE(2069)] = 59991, + [SMALL_STATE(2070)] = 60002, + [SMALL_STATE(2071)] = 60011, + [SMALL_STATE(2072)] = 60024, + [SMALL_STATE(2073)] = 60035, + [SMALL_STATE(2074)] = 60048, + [SMALL_STATE(2075)] = 60059, + [SMALL_STATE(2076)] = 60070, + [SMALL_STATE(2077)] = 60081, + [SMALL_STATE(2078)] = 60094, + [SMALL_STATE(2079)] = 60105, + [SMALL_STATE(2080)] = 60116, + [SMALL_STATE(2081)] = 60129, + [SMALL_STATE(2082)] = 60140, + [SMALL_STATE(2083)] = 60153, + [SMALL_STATE(2084)] = 60166, + [SMALL_STATE(2085)] = 60179, + [SMALL_STATE(2086)] = 60192, + [SMALL_STATE(2087)] = 60205, + [SMALL_STATE(2088)] = 60218, + [SMALL_STATE(2089)] = 60229, + [SMALL_STATE(2090)] = 60240, + [SMALL_STATE(2091)] = 60251, + [SMALL_STATE(2092)] = 60264, + [SMALL_STATE(2093)] = 60273, + [SMALL_STATE(2094)] = 60286, + [SMALL_STATE(2095)] = 60295, + [SMALL_STATE(2096)] = 60306, + [SMALL_STATE(2097)] = 60317, + [SMALL_STATE(2098)] = 60328, + [SMALL_STATE(2099)] = 60339, + [SMALL_STATE(2100)] = 60352, + [SMALL_STATE(2101)] = 60363, + [SMALL_STATE(2102)] = 60376, + [SMALL_STATE(2103)] = 60389, + [SMALL_STATE(2104)] = 60402, + [SMALL_STATE(2105)] = 60413, + [SMALL_STATE(2106)] = 60424, + [SMALL_STATE(2107)] = 60437, + [SMALL_STATE(2108)] = 60446, + [SMALL_STATE(2109)] = 60457, + [SMALL_STATE(2110)] = 60470, + [SMALL_STATE(2111)] = 60481, + [SMALL_STATE(2112)] = 60492, + [SMALL_STATE(2113)] = 60503, + [SMALL_STATE(2114)] = 60514, + [SMALL_STATE(2115)] = 60525, + [SMALL_STATE(2116)] = 60536, + [SMALL_STATE(2117)] = 60549, + [SMALL_STATE(2118)] = 60562, + [SMALL_STATE(2119)] = 60573, + [SMALL_STATE(2120)] = 60586, + [SMALL_STATE(2121)] = 60599, + [SMALL_STATE(2122)] = 60612, + [SMALL_STATE(2123)] = 60623, + [SMALL_STATE(2124)] = 60634, + [SMALL_STATE(2125)] = 60647, + [SMALL_STATE(2126)] = 60658, + [SMALL_STATE(2127)] = 60671, + [SMALL_STATE(2128)] = 60682, + [SMALL_STATE(2129)] = 60693, + [SMALL_STATE(2130)] = 60706, + [SMALL_STATE(2131)] = 60717, + [SMALL_STATE(2132)] = 60728, + [SMALL_STATE(2133)] = 60739, + [SMALL_STATE(2134)] = 60750, + [SMALL_STATE(2135)] = 60760, + [SMALL_STATE(2136)] = 60768, + [SMALL_STATE(2137)] = 60778, + [SMALL_STATE(2138)] = 60786, + [SMALL_STATE(2139)] = 60796, + [SMALL_STATE(2140)] = 60804, + [SMALL_STATE(2141)] = 60812, + [SMALL_STATE(2142)] = 60820, + [SMALL_STATE(2143)] = 60830, + [SMALL_STATE(2144)] = 60840, + [SMALL_STATE(2145)] = 60848, + [SMALL_STATE(2146)] = 60858, + [SMALL_STATE(2147)] = 60868, + [SMALL_STATE(2148)] = 60876, + [SMALL_STATE(2149)] = 60884, + [SMALL_STATE(2150)] = 60894, + [SMALL_STATE(2151)] = 60904, + [SMALL_STATE(2152)] = 60912, + [SMALL_STATE(2153)] = 60920, + [SMALL_STATE(2154)] = 60930, + [SMALL_STATE(2155)] = 60938, + [SMALL_STATE(2156)] = 60948, + [SMALL_STATE(2157)] = 60958, + [SMALL_STATE(2158)] = 60968, + [SMALL_STATE(2159)] = 60978, + [SMALL_STATE(2160)] = 60988, + [SMALL_STATE(2161)] = 60998, + [SMALL_STATE(2162)] = 61006, + [SMALL_STATE(2163)] = 61016, + [SMALL_STATE(2164)] = 61026, + [SMALL_STATE(2165)] = 61036, + [SMALL_STATE(2166)] = 61046, + [SMALL_STATE(2167)] = 61056, + [SMALL_STATE(2168)] = 61066, + [SMALL_STATE(2169)] = 61074, + [SMALL_STATE(2170)] = 61084, + [SMALL_STATE(2171)] = 61092, + [SMALL_STATE(2172)] = 61102, + [SMALL_STATE(2173)] = 61110, + [SMALL_STATE(2174)] = 61120, + [SMALL_STATE(2175)] = 61128, + [SMALL_STATE(2176)] = 61136, + [SMALL_STATE(2177)] = 61144, + [SMALL_STATE(2178)] = 61154, + [SMALL_STATE(2179)] = 61162, + [SMALL_STATE(2180)] = 61170, + [SMALL_STATE(2181)] = 61178, + [SMALL_STATE(2182)] = 61188, + [SMALL_STATE(2183)] = 61196, + [SMALL_STATE(2184)] = 61206, + [SMALL_STATE(2185)] = 61214, + [SMALL_STATE(2186)] = 61224, + [SMALL_STATE(2187)] = 61234, + [SMALL_STATE(2188)] = 61244, + [SMALL_STATE(2189)] = 61254, + [SMALL_STATE(2190)] = 61262, + [SMALL_STATE(2191)] = 61272, + [SMALL_STATE(2192)] = 61282, + [SMALL_STATE(2193)] = 61290, + [SMALL_STATE(2194)] = 61298, + [SMALL_STATE(2195)] = 61308, + [SMALL_STATE(2196)] = 61316, + [SMALL_STATE(2197)] = 61326, + [SMALL_STATE(2198)] = 61336, + [SMALL_STATE(2199)] = 61346, + [SMALL_STATE(2200)] = 61356, + [SMALL_STATE(2201)] = 61366, + [SMALL_STATE(2202)] = 61374, + [SMALL_STATE(2203)] = 61384, + [SMALL_STATE(2204)] = 61392, + [SMALL_STATE(2205)] = 61402, + [SMALL_STATE(2206)] = 61412, + [SMALL_STATE(2207)] = 61422, + [SMALL_STATE(2208)] = 61430, + [SMALL_STATE(2209)] = 61440, + [SMALL_STATE(2210)] = 61450, + [SMALL_STATE(2211)] = 61458, + [SMALL_STATE(2212)] = 61468, + [SMALL_STATE(2213)] = 61476, + [SMALL_STATE(2214)] = 61484, + [SMALL_STATE(2215)] = 61494, + [SMALL_STATE(2216)] = 61504, + [SMALL_STATE(2217)] = 61514, + [SMALL_STATE(2218)] = 61522, + [SMALL_STATE(2219)] = 61532, + [SMALL_STATE(2220)] = 61540, + [SMALL_STATE(2221)] = 61550, + [SMALL_STATE(2222)] = 61560, + [SMALL_STATE(2223)] = 61570, + [SMALL_STATE(2224)] = 61580, + [SMALL_STATE(2225)] = 61590, + [SMALL_STATE(2226)] = 61598, + [SMALL_STATE(2227)] = 61608, + [SMALL_STATE(2228)] = 61616, + [SMALL_STATE(2229)] = 61626, + [SMALL_STATE(2230)] = 61636, + [SMALL_STATE(2231)] = 61644, + [SMALL_STATE(2232)] = 61652, + [SMALL_STATE(2233)] = 61660, + [SMALL_STATE(2234)] = 61670, + [SMALL_STATE(2235)] = 61680, + [SMALL_STATE(2236)] = 61688, + [SMALL_STATE(2237)] = 61698, + [SMALL_STATE(2238)] = 61708, + [SMALL_STATE(2239)] = 61718, + [SMALL_STATE(2240)] = 61726, + [SMALL_STATE(2241)] = 61736, + [SMALL_STATE(2242)] = 61746, + [SMALL_STATE(2243)] = 61756, + [SMALL_STATE(2244)] = 61764, + [SMALL_STATE(2245)] = 61772, + [SMALL_STATE(2246)] = 61780, + [SMALL_STATE(2247)] = 61788, + [SMALL_STATE(2248)] = 61798, + [SMALL_STATE(2249)] = 61808, + [SMALL_STATE(2250)] = 61818, + [SMALL_STATE(2251)] = 61826, + [SMALL_STATE(2252)] = 61836, + [SMALL_STATE(2253)] = 61844, + [SMALL_STATE(2254)] = 61854, + [SMALL_STATE(2255)] = 61864, + [SMALL_STATE(2256)] = 61874, + [SMALL_STATE(2257)] = 61884, + [SMALL_STATE(2258)] = 61894, + [SMALL_STATE(2259)] = 61902, + [SMALL_STATE(2260)] = 61910, + [SMALL_STATE(2261)] = 61918, + [SMALL_STATE(2262)] = 61926, + [SMALL_STATE(2263)] = 61936, + [SMALL_STATE(2264)] = 61944, + [SMALL_STATE(2265)] = 61952, + [SMALL_STATE(2266)] = 61960, + [SMALL_STATE(2267)] = 61968, + [SMALL_STATE(2268)] = 61976, + [SMALL_STATE(2269)] = 61984, + [SMALL_STATE(2270)] = 61994, + [SMALL_STATE(2271)] = 62004, + [SMALL_STATE(2272)] = 62012, + [SMALL_STATE(2273)] = 62020, + [SMALL_STATE(2274)] = 62028, + [SMALL_STATE(2275)] = 62038, + [SMALL_STATE(2276)] = 62046, + [SMALL_STATE(2277)] = 62054, + [SMALL_STATE(2278)] = 62064, + [SMALL_STATE(2279)] = 62074, + [SMALL_STATE(2280)] = 62082, + [SMALL_STATE(2281)] = 62092, + [SMALL_STATE(2282)] = 62102, + [SMALL_STATE(2283)] = 62110, + [SMALL_STATE(2284)] = 62120, + [SMALL_STATE(2285)] = 62128, + [SMALL_STATE(2286)] = 62138, + [SMALL_STATE(2287)] = 62148, + [SMALL_STATE(2288)] = 62158, + [SMALL_STATE(2289)] = 62168, + [SMALL_STATE(2290)] = 62176, + [SMALL_STATE(2291)] = 62184, + [SMALL_STATE(2292)] = 62194, + [SMALL_STATE(2293)] = 62202, + [SMALL_STATE(2294)] = 62212, + [SMALL_STATE(2295)] = 62222, + [SMALL_STATE(2296)] = 62232, + [SMALL_STATE(2297)] = 62242, + [SMALL_STATE(2298)] = 62252, + [SMALL_STATE(2299)] = 62262, + [SMALL_STATE(2300)] = 62272, + [SMALL_STATE(2301)] = 62280, + [SMALL_STATE(2302)] = 62290, + [SMALL_STATE(2303)] = 62300, + [SMALL_STATE(2304)] = 62310, + [SMALL_STATE(2305)] = 62320, + [SMALL_STATE(2306)] = 62330, + [SMALL_STATE(2307)] = 62340, + [SMALL_STATE(2308)] = 62348, + [SMALL_STATE(2309)] = 62358, + [SMALL_STATE(2310)] = 62368, + [SMALL_STATE(2311)] = 62378, + [SMALL_STATE(2312)] = 62388, + [SMALL_STATE(2313)] = 62398, + [SMALL_STATE(2314)] = 62406, + [SMALL_STATE(2315)] = 62414, + [SMALL_STATE(2316)] = 62424, + [SMALL_STATE(2317)] = 62432, + [SMALL_STATE(2318)] = 62442, + [SMALL_STATE(2319)] = 62450, + [SMALL_STATE(2320)] = 62460, + [SMALL_STATE(2321)] = 62468, + [SMALL_STATE(2322)] = 62478, + [SMALL_STATE(2323)] = 62488, + [SMALL_STATE(2324)] = 62498, + [SMALL_STATE(2325)] = 62508, + [SMALL_STATE(2326)] = 62518, + [SMALL_STATE(2327)] = 62526, + [SMALL_STATE(2328)] = 62536, + [SMALL_STATE(2329)] = 62544, + [SMALL_STATE(2330)] = 62554, + [SMALL_STATE(2331)] = 62564, + [SMALL_STATE(2332)] = 62574, + [SMALL_STATE(2333)] = 62582, + [SMALL_STATE(2334)] = 62592, + [SMALL_STATE(2335)] = 62602, + [SMALL_STATE(2336)] = 62612, + [SMALL_STATE(2337)] = 62622, + [SMALL_STATE(2338)] = 62632, + [SMALL_STATE(2339)] = 62640, + [SMALL_STATE(2340)] = 62648, + [SMALL_STATE(2341)] = 62658, + [SMALL_STATE(2342)] = 62668, + [SMALL_STATE(2343)] = 62676, + [SMALL_STATE(2344)] = 62684, + [SMALL_STATE(2345)] = 62694, + [SMALL_STATE(2346)] = 62704, + [SMALL_STATE(2347)] = 62714, + [SMALL_STATE(2348)] = 62724, + [SMALL_STATE(2349)] = 62734, + [SMALL_STATE(2350)] = 62744, + [SMALL_STATE(2351)] = 62752, + [SMALL_STATE(2352)] = 62762, + [SMALL_STATE(2353)] = 62772, + [SMALL_STATE(2354)] = 62782, + [SMALL_STATE(2355)] = 62792, + [SMALL_STATE(2356)] = 62802, + [SMALL_STATE(2357)] = 62812, + [SMALL_STATE(2358)] = 62822, + [SMALL_STATE(2359)] = 62830, + [SMALL_STATE(2360)] = 62840, + [SMALL_STATE(2361)] = 62850, + [SMALL_STATE(2362)] = 62860, + [SMALL_STATE(2363)] = 62870, + [SMALL_STATE(2364)] = 62880, + [SMALL_STATE(2365)] = 62890, + [SMALL_STATE(2366)] = 62898, + [SMALL_STATE(2367)] = 62908, + [SMALL_STATE(2368)] = 62916, + [SMALL_STATE(2369)] = 62924, + [SMALL_STATE(2370)] = 62934, + [SMALL_STATE(2371)] = 62944, + [SMALL_STATE(2372)] = 62952, + [SMALL_STATE(2373)] = 62962, + [SMALL_STATE(2374)] = 62972, + [SMALL_STATE(2375)] = 62982, + [SMALL_STATE(2376)] = 62990, + [SMALL_STATE(2377)] = 62998, + [SMALL_STATE(2378)] = 63006, + [SMALL_STATE(2379)] = 63014, + [SMALL_STATE(2380)] = 63022, + [SMALL_STATE(2381)] = 63030, + [SMALL_STATE(2382)] = 63040, + [SMALL_STATE(2383)] = 63050, + [SMALL_STATE(2384)] = 63060, + [SMALL_STATE(2385)] = 63068, + [SMALL_STATE(2386)] = 63078, + [SMALL_STATE(2387)] = 63088, + [SMALL_STATE(2388)] = 63096, + [SMALL_STATE(2389)] = 63106, + [SMALL_STATE(2390)] = 63116, + [SMALL_STATE(2391)] = 63124, + [SMALL_STATE(2392)] = 63132, + [SMALL_STATE(2393)] = 63142, + [SMALL_STATE(2394)] = 63152, + [SMALL_STATE(2395)] = 63160, + [SMALL_STATE(2396)] = 63170, + [SMALL_STATE(2397)] = 63180, + [SMALL_STATE(2398)] = 63190, + [SMALL_STATE(2399)] = 63197, + [SMALL_STATE(2400)] = 63204, + [SMALL_STATE(2401)] = 63211, + [SMALL_STATE(2402)] = 63218, + [SMALL_STATE(2403)] = 63225, + [SMALL_STATE(2404)] = 63232, + [SMALL_STATE(2405)] = 63239, + [SMALL_STATE(2406)] = 63246, + [SMALL_STATE(2407)] = 63253, + [SMALL_STATE(2408)] = 63260, + [SMALL_STATE(2409)] = 63267, + [SMALL_STATE(2410)] = 63274, + [SMALL_STATE(2411)] = 63281, + [SMALL_STATE(2412)] = 63288, + [SMALL_STATE(2413)] = 63295, + [SMALL_STATE(2414)] = 63302, + [SMALL_STATE(2415)] = 63309, + [SMALL_STATE(2416)] = 63316, + [SMALL_STATE(2417)] = 63323, + [SMALL_STATE(2418)] = 63330, + [SMALL_STATE(2419)] = 63337, + [SMALL_STATE(2420)] = 63344, + [SMALL_STATE(2421)] = 63351, + [SMALL_STATE(2422)] = 63358, + [SMALL_STATE(2423)] = 63365, + [SMALL_STATE(2424)] = 63372, + [SMALL_STATE(2425)] = 63379, + [SMALL_STATE(2426)] = 63386, + [SMALL_STATE(2427)] = 63393, + [SMALL_STATE(2428)] = 63400, + [SMALL_STATE(2429)] = 63407, + [SMALL_STATE(2430)] = 63414, + [SMALL_STATE(2431)] = 63421, + [SMALL_STATE(2432)] = 63428, + [SMALL_STATE(2433)] = 63435, + [SMALL_STATE(2434)] = 63442, + [SMALL_STATE(2435)] = 63449, + [SMALL_STATE(2436)] = 63456, + [SMALL_STATE(2437)] = 63463, + [SMALL_STATE(2438)] = 63470, + [SMALL_STATE(2439)] = 63477, + [SMALL_STATE(2440)] = 63484, + [SMALL_STATE(2441)] = 63491, + [SMALL_STATE(2442)] = 63498, + [SMALL_STATE(2443)] = 63505, + [SMALL_STATE(2444)] = 63512, + [SMALL_STATE(2445)] = 63519, + [SMALL_STATE(2446)] = 63526, + [SMALL_STATE(2447)] = 63533, + [SMALL_STATE(2448)] = 63540, + [SMALL_STATE(2449)] = 63547, + [SMALL_STATE(2450)] = 63554, + [SMALL_STATE(2451)] = 63561, + [SMALL_STATE(2452)] = 63568, + [SMALL_STATE(2453)] = 63575, + [SMALL_STATE(2454)] = 63582, + [SMALL_STATE(2455)] = 63589, + [SMALL_STATE(2456)] = 63596, + [SMALL_STATE(2457)] = 63603, + [SMALL_STATE(2458)] = 63610, + [SMALL_STATE(2459)] = 63617, + [SMALL_STATE(2460)] = 63624, + [SMALL_STATE(2461)] = 63631, + [SMALL_STATE(2462)] = 63638, + [SMALL_STATE(2463)] = 63645, + [SMALL_STATE(2464)] = 63652, + [SMALL_STATE(2465)] = 63659, + [SMALL_STATE(2466)] = 63666, + [SMALL_STATE(2467)] = 63673, + [SMALL_STATE(2468)] = 63680, + [SMALL_STATE(2469)] = 63687, + [SMALL_STATE(2470)] = 63694, + [SMALL_STATE(2471)] = 63701, + [SMALL_STATE(2472)] = 63708, + [SMALL_STATE(2473)] = 63715, + [SMALL_STATE(2474)] = 63722, + [SMALL_STATE(2475)] = 63729, + [SMALL_STATE(2476)] = 63736, + [SMALL_STATE(2477)] = 63743, + [SMALL_STATE(2478)] = 63750, + [SMALL_STATE(2479)] = 63757, + [SMALL_STATE(2480)] = 63764, + [SMALL_STATE(2481)] = 63771, + [SMALL_STATE(2482)] = 63778, + [SMALL_STATE(2483)] = 63785, + [SMALL_STATE(2484)] = 63792, + [SMALL_STATE(2485)] = 63799, + [SMALL_STATE(2486)] = 63806, + [SMALL_STATE(2487)] = 63813, + [SMALL_STATE(2488)] = 63820, + [SMALL_STATE(2489)] = 63827, + [SMALL_STATE(2490)] = 63834, + [SMALL_STATE(2491)] = 63841, + [SMALL_STATE(2492)] = 63848, + [SMALL_STATE(2493)] = 63855, + [SMALL_STATE(2494)] = 63862, + [SMALL_STATE(2495)] = 63869, + [SMALL_STATE(2496)] = 63876, + [SMALL_STATE(2497)] = 63883, + [SMALL_STATE(2498)] = 63890, + [SMALL_STATE(2499)] = 63897, + [SMALL_STATE(2500)] = 63904, + [SMALL_STATE(2501)] = 63911, + [SMALL_STATE(2502)] = 63918, + [SMALL_STATE(2503)] = 63925, + [SMALL_STATE(2504)] = 63932, + [SMALL_STATE(2505)] = 63939, + [SMALL_STATE(2506)] = 63946, + [SMALL_STATE(2507)] = 63953, + [SMALL_STATE(2508)] = 63960, + [SMALL_STATE(2509)] = 63967, + [SMALL_STATE(2510)] = 63974, + [SMALL_STATE(2511)] = 63981, + [SMALL_STATE(2512)] = 63988, + [SMALL_STATE(2513)] = 63995, + [SMALL_STATE(2514)] = 64002, + [SMALL_STATE(2515)] = 64009, + [SMALL_STATE(2516)] = 64016, + [SMALL_STATE(2517)] = 64023, + [SMALL_STATE(2518)] = 64030, + [SMALL_STATE(2519)] = 64037, + [SMALL_STATE(2520)] = 64044, + [SMALL_STATE(2521)] = 64051, + [SMALL_STATE(2522)] = 64058, + [SMALL_STATE(2523)] = 64065, + [SMALL_STATE(2524)] = 64072, + [SMALL_STATE(2525)] = 64079, + [SMALL_STATE(2526)] = 64086, + [SMALL_STATE(2527)] = 64093, + [SMALL_STATE(2528)] = 64100, + [SMALL_STATE(2529)] = 64107, + [SMALL_STATE(2530)] = 64114, + [SMALL_STATE(2531)] = 64121, + [SMALL_STATE(2532)] = 64128, + [SMALL_STATE(2533)] = 64135, + [SMALL_STATE(2534)] = 64142, + [SMALL_STATE(2535)] = 64149, + [SMALL_STATE(2536)] = 64156, + [SMALL_STATE(2537)] = 64163, + [SMALL_STATE(2538)] = 64170, + [SMALL_STATE(2539)] = 64177, + [SMALL_STATE(2540)] = 64184, + [SMALL_STATE(2541)] = 64191, + [SMALL_STATE(2542)] = 64198, + [SMALL_STATE(2543)] = 64205, + [SMALL_STATE(2544)] = 64212, + [SMALL_STATE(2545)] = 64219, + [SMALL_STATE(2546)] = 64226, + [SMALL_STATE(2547)] = 64233, + [SMALL_STATE(2548)] = 64240, + [SMALL_STATE(2549)] = 64247, + [SMALL_STATE(2550)] = 64254, + [SMALL_STATE(2551)] = 64261, + [SMALL_STATE(2552)] = 64268, + [SMALL_STATE(2553)] = 64275, + [SMALL_STATE(2554)] = 64282, + [SMALL_STATE(2555)] = 64289, + [SMALL_STATE(2556)] = 64296, + [SMALL_STATE(2557)] = 64303, + [SMALL_STATE(2558)] = 64310, + [SMALL_STATE(2559)] = 64317, + [SMALL_STATE(2560)] = 64324, + [SMALL_STATE(2561)] = 64331, + [SMALL_STATE(2562)] = 64338, + [SMALL_STATE(2563)] = 64345, + [SMALL_STATE(2564)] = 64352, + [SMALL_STATE(2565)] = 64359, + [SMALL_STATE(2566)] = 64366, + [SMALL_STATE(2567)] = 64373, + [SMALL_STATE(2568)] = 64380, + [SMALL_STATE(2569)] = 64387, + [SMALL_STATE(2570)] = 64394, + [SMALL_STATE(2571)] = 64401, + [SMALL_STATE(2572)] = 64408, + [SMALL_STATE(2573)] = 64415, + [SMALL_STATE(2574)] = 64422, + [SMALL_STATE(2575)] = 64429, + [SMALL_STATE(2576)] = 64436, + [SMALL_STATE(2577)] = 64443, + [SMALL_STATE(2578)] = 64450, + [SMALL_STATE(2579)] = 64457, + [SMALL_STATE(2580)] = 64464, + [SMALL_STATE(2581)] = 64471, + [SMALL_STATE(2582)] = 64478, + [SMALL_STATE(2583)] = 64485, + [SMALL_STATE(2584)] = 64492, + [SMALL_STATE(2585)] = 64499, + [SMALL_STATE(2586)] = 64506, + [SMALL_STATE(2587)] = 64513, + [SMALL_STATE(2588)] = 64520, + [SMALL_STATE(2589)] = 64527, + [SMALL_STATE(2590)] = 64534, + [SMALL_STATE(2591)] = 64541, + [SMALL_STATE(2592)] = 64548, + [SMALL_STATE(2593)] = 64555, + [SMALL_STATE(2594)] = 64562, + [SMALL_STATE(2595)] = 64569, + [SMALL_STATE(2596)] = 64576, + [SMALL_STATE(2597)] = 64583, + [SMALL_STATE(2598)] = 64590, + [SMALL_STATE(2599)] = 64597, + [SMALL_STATE(2600)] = 64604, + [SMALL_STATE(2601)] = 64611, + [SMALL_STATE(2602)] = 64618, + [SMALL_STATE(2603)] = 64625, }; 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(792), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(792), - [140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(504), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1409), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1881), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1635), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1388), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1495), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1154), - [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2166), - [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(49), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2633), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2631), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2630), - [176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2629), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1314), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1320), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1321), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1319), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1838), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(87), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2626), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(194), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1882), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2621), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2620), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1099), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2174), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2616), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(186), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(185), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(193), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(273), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2177), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(77), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2611), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2609), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2179), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2181), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2185), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(294), - [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(294), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(295), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(570), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(300), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(674), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(815), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2603), - [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(103), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(759), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1042), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1046), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1411), - [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1370), - [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1796), - [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1883), - [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1377), - [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1687), - [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(85), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(324), - [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(331), - [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(334), - [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(349), - [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 131), - [327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 131), - [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 2), - [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 2), - [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 3), - [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 3), - [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 131), - [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 131), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 1), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2627), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2241), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2636), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2640), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2237), - [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 2), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(881), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(728), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 1), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 3), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_placeholder, 1), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 2), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 3), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 3), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2480), - [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2299), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 18), - [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 18), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 18), SHIFT(2394), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 18), SHIFT(79), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 46), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 46), - [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 46), SHIFT(2394), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 46), SHIFT(79), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 184), - [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 184), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 88), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 88), - [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 88), SHIFT_REPEAT(2394), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 165), - [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 165), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 3), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 3), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 136), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 136), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 63), - [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 63), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 185), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 185), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 41), - [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 41), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4), - [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4, .production_id = 39), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4, .production_id = 39), - [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 108), - [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 108), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 106), - [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 106), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5, .production_id = 39), - [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5, .production_id = 39), - [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5), - [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5), - [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5, .production_id = 99), - [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5, .production_id = 99), - [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 137), - [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 137), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 6, .production_id = 99), - [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 6, .production_id = 99), - [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 94), - [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 94), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 3), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 3), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 93), - [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 93), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 147), - [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 147), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 12), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 12), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 148), - [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 148), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 149), - [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 149), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 173), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 173), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 169), - [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 169), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 85), - [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 85), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 174), - [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 174), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 54), - [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 54), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 3), - [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 3), - [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 106), - [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 106), - [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 149), - [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 149), - [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 12), - [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 12), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 3), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 3), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 2), - [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 2), - [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 84), - [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 84), - [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 41), - [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 41), - [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5), - [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 5), - [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 148), - [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 148), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 63), - [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 63), - [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 147), - [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 147), - [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 5), - [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 5), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 5), - [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 5), - [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, .production_id = 172), - [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, .production_id = 172), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 41), - [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 41), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 18), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 18), - [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 86), - [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 86), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 137), - [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 137), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 136), - [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 136), - [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, .production_id = 3), - [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, .production_id = 3), - [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 87), - [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 87), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 18), - [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 18), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 18), - [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 18), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_label_statement, 2), - [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_label_statement, 2), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 87), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 87), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, .production_id = 166), - [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, .production_id = 166), - [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), - [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7), - [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7), - [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 18), - [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 18), - [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), - [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), - [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), - [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3), - [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3), - [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), - [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 1, .production_id = 1), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 1, .production_id = 1), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 174), - [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 174), - [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), - [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), - [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 7), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 7), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 27), - [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 27), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 4), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 4), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 41), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 41), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 108), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 108), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 5), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 5), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 4), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 4), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 8), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 8), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 12), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 12), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 12), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 12), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 3, .production_id = 12), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 3, .production_id = 12), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 3), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 3), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 146), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 146), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 169), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 169), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 173), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 173), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 128), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 128), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 54), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 54), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 7), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 7), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 94), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 94), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 2, .production_id = 9), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 2, .production_id = 9), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 93), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 93), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 4), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 4), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 106), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 106), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 63), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 63), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 185), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 185), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 45), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 45), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 4), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 3), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 3), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 46), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 46), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 12), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 12), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 44), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 44), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 11), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 11), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 45), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 45), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 3, .production_id = 18), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 3, .production_id = 18), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 3), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 3), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 6), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 6), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, .production_id = 166), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, .production_id = 166), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 6), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 6), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 85), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 85), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, .production_id = 102), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, .production_id = 102), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 25), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 25), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 102), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 102), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, .production_id = 43), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, .production_id = 43), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 24), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 24), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 25), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 25), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 8), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 8), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 60), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 60), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, .production_id = 61), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, .production_id = 61), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, .production_id = 142), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, .production_id = 142), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 61), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 61), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), - [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 142), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 142), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 141), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 141), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), - [1701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 1), - [1704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 3), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2443), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 22), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 22), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 3), - [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 3), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 5, .production_id = 101), - [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 5, .production_id = 101), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1439), - [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(759), - [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1886), - [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2166), - [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(96), - [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2547), - [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(115), - [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1382), - [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1799), - [1817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2072), - [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1683), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_by_ref, 2), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_by_ref, 2), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 2), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 2), - [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing, 2), REDUCE(sym_array_creation_expression, 2), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__array_destructing, 2), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 17), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 17), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 17), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 17), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 3), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 3), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 4, .production_id = 50), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 4, .production_id = 50), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 7, .production_id = 168), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 7, .production_id = 168), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 2), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 2), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 7, .production_id = 167), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 7, .production_id = 167), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 5, .production_id = 91), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 5, .production_id = 91), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, .production_id = 90), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, .production_id = 90), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, .production_id = 89), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, .production_id = 89), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 3, .production_id = 19), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 3, .production_id = 19), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 6, .production_id = 135), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 6, .production_id = 135), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 17), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 17), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 6, .production_id = 134), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 6, .production_id = 134), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 6, .production_id = 17), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 6, .production_id = 17), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_scope, 1), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_name, 2, .production_id = 51), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_name, 2, .production_id = 51), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_modifier, 1), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_modifier, 1), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 2), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 95), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 95), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 139), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 139), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 143), - [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 143), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6), - [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 144), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 144), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 145), - [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 145), - [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6, .production_id = 47), - [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6, .production_id = 47), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 150), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 150), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 5), - [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 5), - [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 138), - [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 138), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 7, .production_id = 47), - [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 7, .production_id = 47), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 151), - [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 151), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 152), - [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 152), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 140), - [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 140), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 170), - [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 170), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 171), - [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 171), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 175), - [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 175), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 176), - [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 176), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 177), - [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 177), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 123), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 123), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 14), - [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 14), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 109), - [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 109), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 105), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 105), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 104), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 104), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 10), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 10), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 103), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 103), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 97), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 97), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 3), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 3), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 96), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 96), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 186), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 186), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 1), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 1), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5, .production_id = 47), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5, .production_id = 47), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 80), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 80), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 79), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 79), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 35), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 35), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 78), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 78), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 37), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 37), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 62), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 62), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 55), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 55), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 3), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 3), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 18), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 18), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, .production_id = 47), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, .production_id = 47), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_op_expression, 2, .production_id = 5), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_op_expression, 2, .production_id = 5), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_suppression_expression, 2), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_suppression_expression, 2), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clone_expression, 2), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clone_expression, 2), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 43), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 43), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 2), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 2), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 38), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 38), - [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 2), - [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), - [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), SHIFT_REPEAT(1411), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 1), - [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_assignment_expression, 4, .production_id = 59), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 22), - [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 23), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 21), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 58), - [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 58), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_unpacking, 2), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 100), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 100), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_intrinsic, 2), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_expression, 2), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_once_expression, 2), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_expression, 2), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_once_expression, 2), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 4), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 4), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 3), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 3), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 5), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 5), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), - [2395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1318), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), - [2400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1314), - [2403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1320), - [2406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1321), - [2409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1087), - [2412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1319), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 1), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_element, 3), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 3, .production_id = 28), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 1), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_initializer, 2), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 161), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 178), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 179), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 180), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 6, .production_id = 181), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 92), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 116), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 159), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 114), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 112), - [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 157), - [2551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1318), - [2554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1423), - [2557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1530), - [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1154), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [2565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1314), - [2568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1320), - [2571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1321), - [2574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(644), - [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1319), - [2580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1411), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 76), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 53), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 7, .production_id = 187), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_default_expression, 3, .production_id = 129), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 52), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 154), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 122), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 156), - [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_conditional_expression, 3, .production_id = 130), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 155), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifier, 1), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 3), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1318), - [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1423), - [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1530), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), - [2778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(2424), - [2781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1314), - [2784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1320), - [2787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1321), - [2790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1345), - [2793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1319), - [2796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1411), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_final_modifier, 1), - [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final_modifier, 1), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_modifier, 1), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_modifier, 1), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_modifier, 1), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_modifier, 1), - [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_modifier, 1), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_modifier, 1), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), - [2859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(285), - [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1352), - [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1352), - [2868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1404), - [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1657), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_heredoc_body, 2), SHIFT(1404), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 9), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 1), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 82), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [2903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(285), - [2906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1356), - [2909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1356), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), - [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1657), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 126), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 125), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 127), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 27), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 163), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 164), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 3, .production_id = 124), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1, .production_id = 40), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [2961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(332), - [2964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1375), - [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1375), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), - [2972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1701), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 3, .production_id = 11), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 39), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 4, .production_id = 72), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 182), - [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 162), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 1, .production_id = 1), - [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 5, .production_id = 183), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 81), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 83), - [3037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(398), - [3040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1394), - [3043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1394), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), - [3048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1689), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 162), - [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 1), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 39), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 6, .production_id = 188), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 182), - [3073] = {.entry = {.count = 4, .reusable = false}}, REDUCE(sym__type, 1), REDUCE(sym_union_type, 1), REDUCE(sym_intersection_type, 1), REDUCE(sym_disjunctive_normal_form_type, 1, .dynamic_precedence = -1), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3080] = {.entry = {.count = 4, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym_union_type, 1), REDUCE(sym_intersection_type, 1), REDUCE(sym_disjunctive_normal_form_type, 1, .dynamic_precedence = -1), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_type, 2), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [3117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), - [3120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_intersection_type_repeat1, 2), - [3147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1334), - [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), - [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), - [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 4), - [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 4), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 3, .dynamic_precedence = -1), - [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 3, .dynamic_precedence = -1), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), - [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), - [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [3308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), SHIFT_REPEAT(1330), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 2, .dynamic_precedence = -1), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 2, .dynamic_precedence = -1), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1333), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 4, .dynamic_precedence = -1), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 4, .dynamic_precedence = -1), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [3368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2615), - [3371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2203), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 1), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), - [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1, .production_id = 7), - [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1, .production_id = 7), - [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__complex_string_part, 3), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__complex_string_part, 3), - [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 25), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 25), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_subscript_expression, 4), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_expression, 4), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [3400] = {.entry = {.count = 5, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym_union_type, 1), REDUCE(sym_intersection_type, 1), REDUCE(sym_disjunctive_normal_form_type, 1, .dynamic_precedence = -1), SHIFT(1338), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), - [3416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(340), - [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2383), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 2), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), - [3466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 46), SHIFT(2384), - [3469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 46), SHIFT(76), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [3474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 18), SHIFT(2384), - [3477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 18), SHIFT(76), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution_qualifier, 1), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 1), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 2), - [3540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), SHIFT_REPEAT(1328), - [3543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2518), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1336), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 34), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 88), - [3581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 88), SHIFT_REPEAT(2392), - [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 88), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 2), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), - [3666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2518), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 1), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [3683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1335), - [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 3, .production_id = 13), - [3688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1430), - [3691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1337), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), SHIFT_REPEAT(1331), - [3705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2518), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2443), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [3753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 88), SHIFT_REPEAT(2384), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), - [3768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(1532), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), - [3777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), SHIFT_REPEAT(2125), - [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_intersection_type, 2), SHIFT(1338), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), - [3799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), SHIFT_REPEAT(1901), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), - [3808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), SHIFT_REPEAT(1627), - [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), - [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), SHIFT_REPEAT(1903), - [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 1), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 1, .production_id = 2), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 1), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc_body, 2), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), - [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), SHIFT_REPEAT(1416), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 3), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 3), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 2), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 4), - [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), - [3933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), SHIFT_REPEAT(1843), - [3936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [3938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1845), - [3941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1845), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1421), - [3949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1338), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4), - [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 20), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 2, .production_id = 4), - [4006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(151), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1, .production_id = 6), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 2), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 1, .production_id = 2), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 1), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 15), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), SHIFT_REPEAT(144), - [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 26), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 3), - [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 3), - [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_aliasing_clause, 2), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 29), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 2, .production_id = 30), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 31), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 32), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 44), - [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 44), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, .production_id = 48), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4, .production_id = 49), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [4172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), SHIFT_REPEAT(152), - [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3, .production_id = 49), - [4177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(142), - [4180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2), SHIFT_REPEAT(1417), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 56), - [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 64), - [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 66), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 68), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 69), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(753), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 71), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 73), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 75), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 3), - [4240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), SHIFT_REPEAT(853), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5, .production_id = 49), - [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 5, .production_id = 77), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 74), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(131), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_type, 2, .production_id = 36), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 33), - [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 110), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 113), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 118), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 119), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 121), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 2), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 18), - [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 18), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(153), - [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), - [4347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), SHIFT_REPEAT(383), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6), - [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7, .production_id = 133), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6, .production_id = 133), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [4368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), SHIFT_REPEAT(1662), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), - [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 158), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), SHIFT_REPEAT(1833), - [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 5), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 5, .production_id = 160), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 4), - [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 3), - [4406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 1), SHIFT(2215), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4, .production_id = 132), - [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 6), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), SHIFT(2215), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_instead_of_clause, 3), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 4), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 4), - [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_reference, 2), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 120), - [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 117), - [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 115), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_type, 1), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 3), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), REDUCE(sym_array_element_initializer, 1), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [4483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2443), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 4), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 72), - [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 70), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 67), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), REDUCE(sym_array_element_initializer, 3), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, .production_id = 11), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 42), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 4), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 57), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 65), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_directive, 3), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 16), - [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause_2, 2, .production_id = 3), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_unary_expression, 2), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 98), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 107), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 111), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [4873] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 6, .production_id = 153), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(459), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2078), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1643), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1397), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1456), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1142), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2145), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(64), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2594), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2593), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2592), + [178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2589), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1315), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1312), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1346), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1310), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1748), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(89), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2584), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2040), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2581), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2579), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1047), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2159), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2572), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(191), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(196), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(290), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2166), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(80), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2568), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2567), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2167), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2171), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(294), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(294), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(295), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(300), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(664), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2563), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(105), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(747), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1057), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1059), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1378), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1751), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2037), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), + [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1721), + [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(85), + [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(395), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(397), + [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(409), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(416), + [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 2, 0, 0), + [332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 2, 0, 0), + [334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 130), + [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 130), + [338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 3, 0, 0), + [340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 3, 0, 0), + [342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 130), + [344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 130), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2590), + [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2222), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2599), + [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2603), + [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2204), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 1, 0, 0), + [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 2, 0, 0), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1, 0, 0), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1, 0, 0), SHIFT(752), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1, 0, 0), SHIFT(863), + [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 1, 0, 0), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 3, 0, 0), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 2, 0, 0), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_placeholder, 1, 0, 0), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2402), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2395), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 3), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 3), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 18), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 18), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 46), + [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 46), + [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 46), SHIFT(2256), + [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 46), SHIFT(77), + [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 18), SHIFT(2256), + [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 18), SHIFT(77), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 179), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 179), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 3), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 3), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 88), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 88), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 88), SHIFT_REPEAT(2256), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 162), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 162), + [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 103), + [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 103), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 85), + [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 85), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 172), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 172), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 12), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 12), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 110), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 110), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 108), + [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 108), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 62), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 62), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 150), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 150), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 41), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 41), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 66), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 66), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 149), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 149), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 144), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 144), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 3, 0, 18), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 3, 0, 18), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 84), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 84), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 1, 0, 1), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 1, 0, 1), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5, 0, 109), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5, 0, 109), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 41), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 41), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_label_statement, 2, 0, 0), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_label_statement, 2, 0, 0), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3, 0, 0), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3, 0, 0), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2, 0, 0), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2, 0, 0), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 7, 0, 0), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 7, 0, 0), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 0), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 0), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 0), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 0), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 86), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 86), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 2, 0, 9), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 2, 0, 9), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 0), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 0), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 5, 0, 0), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 5, 0, 0), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 46), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 46), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, 0, 163), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, 0, 163), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 18), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 18), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 0), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 0), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 45), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 45), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, 0, 143), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, 0, 143), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 103), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 103), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 44), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 44), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 172), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 172), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 4, 0, 0), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 4, 0, 0), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 5, 0, 0), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 5, 0, 0), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 0), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 0), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 3), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 3), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4, 0, 0), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 4, 0, 0), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 87), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 87), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 7, 0, 0), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 7, 0, 0), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 7, 0, 0), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 7, 0, 0), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 5, 0, 0), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 5, 0, 0), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 8, 0, 0), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 8, 0, 0), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 12), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 12), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 3, 0, 0), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 3, 0, 0), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 18), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 18), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 41), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 41), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 110), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 110), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5, 0, 0), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 5, 0, 0), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 108), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 108), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 2, 0, 0), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 2, 0, 0), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 41), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 41), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 27), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 27), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2, 0, 0), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2, 0, 0), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 62), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 62), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 3, 0, 0), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 3, 0, 0), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, 0, 3), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, 0, 3), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 4, 0, 0), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 4, 0, 0), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 18), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 18), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 45), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 45), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 0), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 0), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 0), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 0), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 0), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 0), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 0), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 0), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 4, 0, 0), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 4, 0, 0), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5, 0, 0), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5, 0, 0), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 0), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 0), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 3, 0, 0), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 3, 0, 0), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 0), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 0), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 150), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 150), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5, 0, 39), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5, 0, 39), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 62), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 62), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 12), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 12), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 6, 0, 109), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 6, 0, 109), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4, 0, 0), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4, 0, 0), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 103), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 103), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 12), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 12), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 11), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 11), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, 0, 0), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, 0, 0), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 3, 0, 12), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 3, 0, 12), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 149), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 149), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 18), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 18), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 3, 0, 0), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 3, 0, 0), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 6, 0, 0), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 6, 0, 0), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 144), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 144), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 3, 0, 0), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 3, 0, 0), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 6, 0, 0), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 6, 0, 0), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, 0, 163), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, 0, 163), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, 0, 168), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, 0, 168), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 87), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 87), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 66), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 66), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 85), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 85), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, 0, 127), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, 0, 127), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4, 0, 39), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4, 0, 39), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 12), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 12), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 3, 0, 25), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 3, 0, 25), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, 0, 24), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, 0, 24), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, 0, 43), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1, 0, 0), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, 0, 43), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, 0, 25), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, 0, 25), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 5, 0, 99), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 5, 0, 99), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, 0, 99), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, 0, 99), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2, 0, 0), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2, 0, 0), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 4, 0, 60), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 4, 0, 60), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 0), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, 0, 60), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, 0, 60), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 0), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 0), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2, 0, 0), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2, 0, 0), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 6, 0, 139), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 6, 0, 139), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, 0, 59), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, 0, 59), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, 0, 138), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, 0, 138), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, 0, 139), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, 0, 139), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4, 0, 0), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4, 0, 0), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3, 0, 0), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3, 0, 0), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, 0, 8), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, 0, 8), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, 0, 0), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1, 0, 0), + [1656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__array_destructing_element, 1, 0, 0), + [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__array_destructing_element, 3, 0, 0), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2, 0, 0), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2, 0, 0), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 22), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 22), + [1688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1, 0, 0), SHIFT(2464), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2, 0, 0), + [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2, 0, 0), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 5, 0, 98), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 5, 0, 98), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 3, 0, 0), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 3, 0, 0), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1, 0, 0), + [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1, 0, 0), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_by_ref, 2, 0, 0), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_by_ref, 2, 0, 0), + [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1444), + [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(747), + [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2023), + [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2145), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(94), + [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2524), + [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(120), + [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1379), + [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1779), + [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2052), + [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1714), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 2, 0, 0), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 2, 0, 0), + [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing, 2, 0, 0), REDUCE(sym_array_creation_expression, 2, 0, 0), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__array_destructing, 2, 0, 0), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 6, 0, 134), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 6, 0, 134), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, 0, 89), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, 0, 89), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 4, 0, 50), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 4, 0, 50), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 0), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 0), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 17), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 17), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 2, 0, 0), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 2, 0, 0), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 6, 0, 133), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 6, 0, 133), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 7, 0, 164), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 7, 0, 164), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 7, 0, 165), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 7, 0, 165), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 6, 0, 17), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 6, 0, 17), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, 0, 17), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, 0, 17), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, 0, 0), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, 0, 0), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, 0, 17), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, 0, 17), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_scope, 1, 0, 0), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, 0, 0), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, 0, 0), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 5, 0, 91), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 5, 0, 91), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, 0, 90), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, 0, 90), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, 0, 0), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, 0, 0), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 3, 0, 0), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 3, 0, 0), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 3, 0, 19), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 3, 0, 19), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_name, 2, 0, 51), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_name, 2, 0, 51), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_modifier, 1, 0, 0), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_modifier, 1, 0, 0), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 2, 0, 0), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 95), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 95), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 8, 0, 180), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 8, 0, 180), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 80), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 80), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 79), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 79), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 78), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 78), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 146), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 146), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 61), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 61), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 54), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 54), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 3, 0, 0), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 3, 0, 0), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, 0, 47), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, 0, 47), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, 0, 0), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, 0, 0), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 145), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 145), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 142), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 142), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5, 0, 0), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5, 0, 0), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 43), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 43), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5, 0, 47), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5, 0, 47), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 93), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 93), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 94), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 94), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 2, 0, 0), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 2, 0, 0), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 100), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 100), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 101), + [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 101), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 102), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 102), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 38), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 38), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 37), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 37), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 105), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, 0, 105), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 35), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, 0, 35), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 122), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 122), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 141), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 141), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 171), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 171), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 170), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 170), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 169), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 169), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 167), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 167), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 1, 0, 0), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 1, 0, 0), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 166), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, 0, 166), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 7, 0, 47), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 7, 0, 47), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 5, 0, 0), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 5, 0, 0), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1, 0, 0), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1, 0, 0), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 147), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 147), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6, 0, 0), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6, 0, 0), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6, 0, 47), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6, 0, 47), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 135), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 135), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_op_expression, 2, 0, 5), + [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_op_expression, 2, 0, 5), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_suppression_expression, 2, 0, 0), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_suppression_expression, 2, 0, 0), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clone_expression, 2, 0, 0), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clone_expression, 2, 0, 0), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 136), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 136), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 137), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 137), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 3, 0, 0), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 3, 0, 0), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 140), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, 0, 140), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 18), + [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 18), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 10), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 10), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 3, 0, 14), + [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 3, 0, 14), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), + [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 1, 0, 0), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2, 0, 0), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), + [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1285), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), + [2243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1315), + [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1312), + [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), + [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(975), + [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1310), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_once_expression, 2, 0, 0), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_expression, 2, 0, 0), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_once_expression, 2, 0, 0), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_expression, 2, 0, 0), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 21), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 97), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 97), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_assignment_expression, 4, 0, 58), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_intrinsic, 2, 0, 0), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 57), + [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 57), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_unpacking, 2, 0, 0), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 22), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 23), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 3, 0, 0), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 3, 0, 0), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 4, 0, 0), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 4, 0, 0), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 5, 0, 0), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 5, 0, 0), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 1, 0, 0), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 1, 0, 0), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 3, 0, 28), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_initializer, 2, 0, 0), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, 0, 0), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_element, 3, 0, 0), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, 0, 175), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2, 0, 0), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, 0, 151), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, 0, 152), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 7, 0, 181), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, 0, 153), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, 0, 154), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, 0, 156), + [2516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1285), + [2519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1429), + [2522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1521), + [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1142), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [2530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1315), + [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1312), + [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), + [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(634), + [2542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1310), + [2545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, 0, 111), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, 0, 174), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, 0, 76), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, 0, 158), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, 0, 173), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_conditional_expression, 3, 0, 129), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_default_expression, 3, 0, 128), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, 0, 113), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, 0, 52), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, 0, 115), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, 0, 0), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 6, 0, 176), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, 0, 53), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, 0, 121), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, 0, 92), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 3, 0, 0), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_modifier, 1, 0, 0), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_modifier, 1, 0, 0), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_modifier, 1, 0, 0), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_modifier, 1, 0, 0), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_modifier, 1, 0, 0), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_modifier, 1, 0, 0), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1285), + [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1429), + [2756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1521), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), + [2761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2459), + [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1315), + [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1312), + [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), + [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1347), + [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1310), + [2779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_final_modifier, 1, 0, 0), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final_modifier, 1, 0, 0), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_heredoc_body, 2, 0, 0), SHIFT(1411), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2, 0, 0), + [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(388), + [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), + [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), + [2875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1640), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 0), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, 0, 125), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, 0, 124), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, 0, 27), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, 0, 126), + [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2, 0, 0), SHIFT_REPEAT(388), + [2901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2, 0, 0), SHIFT_REPEAT(1367), + [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2, 0, 0), SHIFT_REPEAT(1367), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2, 0, 0), + [2909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2, 0, 0), SHIFT_REPEAT(1640), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, 0, 82), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, 0, 160), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, 0, 161), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 0), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 1, 0, 0), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, 0, 9), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 159), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 0), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 4, 0, 72), + [2966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2, 0, 0), SHIFT_REPEAT(226), + [2969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2, 0, 0), SHIFT_REPEAT(1384), + [2972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2, 0, 0), SHIFT_REPEAT(1384), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2, 0, 0), + [2977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2, 0, 0), SHIFT_REPEAT(1656), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 39), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 39), + [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, 0, 83), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 1, 0, 1), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1, 0, 40), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 6, 0, 182), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 177), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, 0, 81), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 1, 0, 0), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1, 0, 0), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 177), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 159), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 3, 0, 123), + [3030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2, 0, 0), SHIFT_REPEAT(292), + [3033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2, 0, 0), SHIFT_REPEAT(1402), + [3036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2, 0, 0), SHIFT_REPEAT(1402), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2, 0, 0), + [3041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2, 0, 0), SHIFT_REPEAT(1658), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 3, 0, 11), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3, 0, 0), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 5, 0, 178), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3058] = {.entry = {.count = 4, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_union_type, 1, 0, 0), REDUCE(sym_intersection_type, 1, 0, 0), REDUCE(sym_disjunctive_normal_form_type, 1, -1, 0), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3065] = {.entry = {.count = 4, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_union_type, 1, 0, 0), REDUCE(sym_intersection_type, 1, 0, 0), REDUCE(sym_disjunctive_normal_form_type, 1, -1, 0), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifier, 1, 0, 0), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1, 0, 0), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1, 0, 0), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_type, 2, 0, 0), + [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1, 0, 0), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1, 0, 0), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2, 0, 0), + [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2, 0, 0), + [3120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_intersection_type_repeat1, 2, 0, 0), + [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2, 0, 0), + [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 4, 0, 0), + [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 4, 0, 0), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [3136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1331), + [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), + [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [3159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2, 0, 0), + [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2, 0, 0), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 2, -1, 0), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 2, -1, 0), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2, 0, 0), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3, 0, 0), + [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 4, -1, 0), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 4, -1, 0), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4, 0, 0), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 3, -1, 0), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 3, -1, 0), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1336), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2578), + [3362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2361), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1, 0, 7), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1, 0, 7), + [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2, 0, 0), + [3377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__complex_string_part, 3, 0, 0), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__complex_string_part, 3, 0, 0), + [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_member_access_expression, 3, 0, 25), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_member_access_expression, 3, 0, 25), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [3387] = {.entry = {.count = 5, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_union_type, 1, 0, 0), REDUCE(sym_intersection_type, 1, 0, 0), REDUCE(sym_disjunctive_normal_form_type, 1, -1, 0), SHIFT(1334), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), + [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(230), + [3404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2227), + [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_subscript_expression, 4, 0, 0), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_expression, 4, 0, 0), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 1, 0, 0), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2, 0, 0), + [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2, 0, 0), + [3459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 46), SHIFT(2369), + [3462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 46), SHIFT(75), + [3465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 18), SHIFT(2369), + [3468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 18), SHIFT(75), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2, 0, 0), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 2, 0, 0), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution_qualifier, 1, 0, 0), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1333), + [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 88), SHIFT_REPEAT(2369), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 2, 0, 0), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 2, 0, 0), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [3577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1441), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, 0, 88), + [3594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, 0, 88), SHIFT_REPEAT(2249), + [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 2, 0, 88), + [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 1, 0, 0), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 1, 0, 0), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1330), + [3616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1332), + [3619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1335), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2, 0, 0), + [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2464), + [3631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1320), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, 0, 34), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [3664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2456), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 3, 0, 13), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [3713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1, 0, 0), SHIFT(2456), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [3734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2, 0, 0), SHIFT(2456), + [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [3751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), SHIFT(1334), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 1, 0, 0), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 3, 0, 0), + [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1, 0, 0), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 4, 0, 0), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2, 0, 0), + [3798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1924), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 1, 0, 2), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2, 0, 0), + [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1762), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 2, 0, 0), + [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1334), + [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2, 0, 0), + [3833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1541), + [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2, 0, 0), + [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1927), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2, 0, 0), + [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2, 0, 0), + [3888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2, 0, 0), + [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc_body, 2, 0, 0), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [3940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1852), + [3943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1852), + [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 3, 0, 0), + [3948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1430), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 1, 0, 0), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2, 0, 0), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, 0, 117), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause_2, 3, 0, 18), + [3973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause_2, 3, 0, 18), + [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, 0, 15), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(154), + [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 1, 0, 0), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 3, 0, 0), + [3996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2, 0, 0), SHIFT_REPEAT(287), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 1, 0, 2), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2, 0, 0), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 2, 0, 0), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2, 0, 0), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 2, 0, 0), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6, 0, 0), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6, 0, 132), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, 0, 20), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, 0, 26), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 3, 0, 0), + [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_aliasing_clause, 2, 0, 0), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1, 0, 6), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, 0, 33), + [4110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2, 0, 0), SHIFT_REPEAT(1676), + [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2, 0, 0), + [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, 0, 155), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, 0, 29), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 2, 0, 30), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, 0, 31), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, 0, 120), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, 0, 32), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1759), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2, 0, 0), + [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 2, 0, 4), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, 0, 118), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, 0, 112), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_type, 2, 0, 36), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [4184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), + [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, 0, 106), + [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 1, 0, 44), + [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 1, 0, 44), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7, 0, 0), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 0), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(135), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, 0, 48), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4, 0, 0), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4, 0, 49), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5, 0, 49), + [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5, 0, 0), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [4250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, 0, 0), SHIFT_REPEAT(153), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3, 0, 49), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [4264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2, 0, 0), SHIFT_REPEAT(1421), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2, 0, 0), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(855), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 3, 0, 0), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 5, 0, 77), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, 0, 55), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, 0, 75), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7, 0, 132), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, 0, 74), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, 0, 73), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, 0, 71), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, 0, 63), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(739), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, 0, 65), + [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, 0, 69), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, 0, 68), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 67), + [4371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 1, 0, 0), SHIFT(2257), + [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 4, 0, 0), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 70), + [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 72), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_instead_of_clause, 3, 0, 0), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 6, 0, 0), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4, 0, 131), + [4398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2, 0, 0), SHIFT(2257), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 3, 0, 0), REDUCE(sym_array_element_initializer, 3, 0, 0), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_type, 1, 0, 0), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 5, 0, 0), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 5, 0, 157), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 4, 0, 0), + [4458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 1, 0, 0), REDUCE(sym_array_element_initializer, 1, 0, 0), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 3, 0, 0), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 3, 0, 0), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 114), + [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 116), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [4493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2, 0, 0), SHIFT(2464), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 119), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 11), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 4, 0, 0), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 4), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_reference, 2, 0, 0), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, 0, 16), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 4, 0, 0), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3, 0, 0), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, 0, 42), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 6, 0, 148), + [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, 0, 107), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, 0, 104), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, 0, 96), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_unary_expression, 2, 0, 0), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause_2, 2, 0, 3), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4816] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_directive, 3, 0, 0), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, 0, 56), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, 0, 64), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), }; enum ts_external_scanner_symbol_identifiers { @@ -132913,10 +133124,10 @@ static const bool ts_external_scanner_states[14][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_encapsed_string_chars_heredoc] = true, }, [5] = { - [ts_external_token_encapsed_string_chars] = true, + [ts_external_token_execution_string_chars] = true, }, [6] = { - [ts_external_token_execution_string_chars] = true, + [ts_external_token_encapsed_string_chars] = true, }, [7] = { [ts_external_token_encapsed_string_chars_heredoc] = true, @@ -132924,22 +133135,22 @@ static const bool ts_external_scanner_states[14][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_end] = true, }, [8] = { - [ts_external_token_execution_string_chars] = true, - [ts_external_token_execution_string_chars_after_variable] = true, - }, - [9] = { [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, + [ts_external_token_heredoc_end] = true, }, [12] = { - [ts_external_token_heredoc_end] = true, + [ts_external_token_heredoc_start] = true, }, [13] = { [ts_external_token_nowdoc_string] = true, @@ -132955,11 +133166,15 @@ 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) +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) #endif -extern const TSLanguage *tree_sitter_php_only(void) { +TS_PUBLIC const TSLanguage *tree_sitter_php_only(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/php_only/src/tree_sitter/alloc.h b/php_only/src/tree_sitter/alloc.h new file mode 100644 index 00000000..1f4466d7 --- /dev/null +++ b/php_only/src/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t); +extern void *(*ts_current_calloc)(size_t, size_t); +extern void *(*ts_current_realloc)(void *, size_t); +extern void (*ts_current_free)(void *); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/php_only/src/tree_sitter/array.h b/php_only/src/tree_sitter/array.h new file mode 100644 index 00000000..15a3b233 --- /dev/null +++ b/php_only/src/tree_sitter/array.h @@ -0,0 +1,290 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((Array *)(self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((Array *)(self), array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) + +/// Swap one array with another +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (self->size - index - 1) * element_size); + self->size--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); + } else { + self->contents = ts_malloc(new_capacity * element_size); + } + self->capacity = new_capacity; + } +} + +/// This is not what you're looking for, see `array_assign`. +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + _array__reserve(self, element_size, new_capacity); + } +} + +/// This is not what you're looking for, see `array_splice`. +static inline void _array__splice(Array *self, size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = self->size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= self->size); + + _array__reserve(self, element_size, new_size); + + char *contents = (char *)self->contents; + if (self->size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (self->size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + self->size += new_count - old_count; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(default : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/php_only/src/tree_sitter/parser.h b/php_only/src/tree_sitter/parser.h index 17b4fde9..17f0e94b 100644 --- a/php_only/src/tree_sitter/parser.h +++ b/php_only/src/tree_sitter/parser.h @@ -86,6 +86,11 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { uint32_t version; uint32_t symbol_count; @@ -125,6 +130,24 @@ struct TSLanguage { const TSStateId *primary_state_ids; }; +static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + /* * Lexer Macros */ @@ -154,6 +177,17 @@ struct TSLanguage { goto next_state; \ } +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + #define SKIP(state_value) \ { \ skip = true; \ @@ -203,14 +237,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ }} #define RECOVER() \ diff --git a/php_only/test/corpus/common b/php_only/test/corpus/common deleted file mode 120000 index d3a2b72c..00000000 --- a/php_only/test/corpus/common +++ /dev/null @@ -1 +0,0 @@ -../../../common/test/corpus \ No newline at end of file diff --git a/php_only/test/highlight b/php_only/test/highlight deleted file mode 120000 index 222e29f4..00000000 --- a/php_only/test/highlight +++ /dev/null @@ -1 +0,0 @@ -../../common/test/highlight \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..b2111c97 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,33 @@ +[build-system] +requires = ["setuptools>=42", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "tree-sitter-php" +description = "PHP grammar for tree-sitter" +version = "0.22.3" +keywords = ["incremental", "parsing", "tree-sitter", "php"] +classifiers = [ + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Topic :: Software Development :: Compilers", + "Topic :: Text Processing :: Linguistic", + "Typing :: Typed", +] +authors = [ + { name = "Max Brunsfeld", email = "maxbrunsfeld@gmail.com" }, + { name = "Amaan Qureshi", email = "amaanq12@gmail.com" }, +] +requires-python = ">=3.8" +license.text = "MIT" +readme = "README.md" + +[project.urls] +Homepage = "https://github.com/tree-sitter/tree-sitter-php" + +[project.optional-dependencies] +core = ["tree-sitter~=0.21"] + +[tool.cibuildwheel] +build = "cp38-*" +build-frontend = "build" diff --git a/queries/highlights.scm b/queries/highlights.scm index e2c05527..ede7e077 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -135,7 +135,7 @@ ; Basic tokens [ (string) - (string_value) + (string_content) (encapsed_string) (heredoc) (heredoc_body) diff --git a/script/known-failures.txt b/script/known-failures.txt deleted file mode 100644 index 8b137891..00000000 --- a/script/known-failures.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/script/parse-examples b/script/parse-examples deleted file mode 100755 index 47ed4b34..00000000 --- a/script/parse-examples +++ /dev/null @@ -1,49 +0,0 @@ -#!/usr/bin/env bash - -set -eu - -cd "$(dirname "$0")/.." - -function clone_repo { - owner=$1 - name=$2 - sha=$3 - - path=examples/$name - if [ ! -d "$path" ]; then - echo "Cloning $owner/$name" - git clone --depth 1 "https://github.com/$owner/$name" "$path" - fi - - pushd "$path" >/dev/null - actual_sha=$(git rev-parse HEAD) - if [ "$actual_sha" != "$sha" ]; then - echo "Updating $owner/$name to $sha" - git fetch --depth 1 origin "$sha" - git reset --hard "$sha" - fi - popd >/dev/null -} - -clone_repo laravel laravel 9d0862b3340c8243ee072afc181e315ffa35e110 -clone_repo laravel framework 45d439e98a6b14afde8911f7d22a265948adbf72 -clone_repo phacility phabricator d0b01a41f2498fb2a6487c2d6704dc7acfd4675f -clone_repo sebastianbergmann phpunit 5e523bdc7dd4d90fed9fb29d1df05347b3e7eaba -clone_repo WordPress WordPress 45286c5bb3f6fe5005567903ec858d87077eae2c -clone_repo wikimedia mediawiki b6b88cbf98fb0c7891324709a85eabc290ed28b4 - -known_failures=$(cat script/known-failures.txt) - -# shellcheck disable=2046 -tree-sitter parse -q \ - examples/**/*.php \ - $(for file in $known_failures; do echo "!${file}"; done) - -example_count=$(find examples -name '*.php' | wc -l) -failure_count=$(wc -w <<<"$known_failures") -success_count=$((example_count - failure_count)) -success_percent=$(bc -l <<<"100*${success_count}/${example_count}") - -printf \ - "Successfully parsed %d of %d example files (%.1f%%)\n" \ - $success_count $example_count $success_percent diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..e8b2e400 --- /dev/null +++ b/setup.py @@ -0,0 +1,61 @@ +from os.path import isdir, join +from platform import system + +from setuptools import Extension, find_packages, setup +from setuptools.command.build import build +from wheel.bdist_wheel import bdist_wheel + + +class Build(build): + def run(self): + if isdir("queries"): + dest = join(self.build_lib, "tree_sitter_xml", "queries") + self.copy_tree("queries", dest) + super().run() + + +class BdistWheel(bdist_wheel): + def get_tag(self): + python, abi, platform = super().get_tag() + if python.startswith("cp"): + python, abi = "cp38", "abi3" + return python, abi, platform + + +setup( + packages=find_packages("bindings/python"), + package_dir={"": "bindings/python"}, + package_data={ + "tree_sitter_xml": ["*.pyi", "py.typed"], + "tree_sitter_xml.queries": ["*.scm"], + }, + ext_package="tree_sitter_xml", + ext_modules=[ + Extension( + name="_binding", + sources=[ + "bindings/python/tree_sitter_php/binding.c", + "php/src/parser.c", + "php/src/scanner.c", + "php_only/src/parser.c", + "php_only/src/scanner.c", + ], + extra_compile_args=[ + "-std=c11", + "-Wno-unused-parameter", + "-Wno-unused-value", + ] if system() != "Windows" else [], + define_macros=[ + ("Py_LIMITED_API", "0x03080000"), + ("PY_SSIZE_T_CLEAN", None) + ], + include_dirs=["xml/src"], + py_limited_api=True, + ) + ], + cmdclass={ + "build": Build, + "bdist_wheel": BdistWheel + }, + zip_safe=False +) diff --git a/common/test/corpus/bugs.txt b/test/corpus/bugs.txt similarity index 91% rename from common/test/corpus/bugs.txt rename to test/corpus/bugs.txt index 0ce8779e..d0f01523 100644 --- a/common/test/corpus/bugs.txt +++ b/test/corpus/bugs.txt @@ -1,5 +1,5 @@ ========================================= -#131: Parse error when using self as constant +Parse error when using self as constant ========================================= '; (expression_statement (assignment_expression left: (variable_name (name)) - right: (encapsed_string (string_value)))) + right: (encapsed_string (string_content)))) (expression_statement (assignment_expression left: (variable_name @@ -193,7 +193,7 @@ $foo = '?>'; right: (heredoc identifier: (heredoc_start) value: (heredoc_body - (string_value)) + (string_content)) end_tag: (heredoc_end)))) (expression_statement (assignment_expression @@ -207,10 +207,10 @@ $foo = '?>'; (expression_statement (assignment_expression left: (variable_name (name)) - right: (string (string_value))))) + right: (string (string_content))))) ========================================= -#223: Error with comment inside binary expression +Error with comment inside binary expression ========================================= cmd = 'ls'; (variable_name (name)) (name)) - (string (string_value)))) + (string (string_content)))) (expression_statement (shell_command_expression (member_access_expression @@ -109,7 +109,7 @@ $cmd = array('ls'); (name)) (array_creation_expression (array_element_initializer - (string (string_value)))))) + (string (string_content)))))) (expression_statement (shell_command_expression (subscript_expression @@ -133,7 +133,7 @@ $cmd = 'ls'; (assignment_expression (variable_name (name)) - (string (string_value)))) + (string (string_content)))) (expression_statement (shell_command_expression (variable_name @@ -153,9 +153,9 @@ Nesting of expression in backticks (expression_statement (binary_expression (shell_command_expression - (string_value)) + (string_content)) (shell_command_expression - (string_value))))) + (string_content))))) ================================================================================ Nested escaped backticks @@ -171,7 +171,7 @@ Nested escaped backticks (expression_statement (shell_command_expression (escape_sequence) - (string_value) + (string_content) (escape_sequence)))) ================================================================================ @@ -187,4 +187,4 @@ Comment in backticks (php_tag) (expression_statement (shell_command_expression - (string_value)))) + (string_content)))) diff --git a/common/test/corpus/expressions.txt b/test/corpus/expressions.txt similarity index 96% rename from common/test/corpus/expressions.txt rename to test/corpus/expressions.txt index 17be6fac..53f4d6fd 100644 --- a/common/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -148,7 +148,7 @@ $a = (array) include 'some.php'; left: (variable_name (name)) right: (cast_expression type: (cast_type) - value: (include_expression (string (string_value))) + value: (include_expression (string (string_content))) ) ) ) @@ -231,13 +231,13 @@ list(, $name1) = $data[0]; (array_element_initializer (array_creation_expression (array_element_initializer (integer)) - (array_element_initializer (string (string_value))) + (array_element_initializer (string (string_content))) ) ) (array_element_initializer (array_creation_expression (array_element_initializer (integer)) - (array_element_initializer (string (string_value))) + (array_element_initializer (string (string_content))) ) ) ) @@ -400,8 +400,8 @@ true ? false : true ? "a" : "b"; (boolean) (boolean) (boolean)) - (encapsed_string (string_value)) - (encapsed_string (string_value))))) + (encapsed_string (string_content)) + (encapsed_string (string_content))))) ================================================= Associativity of null-coalescence @@ -466,7 +466,7 @@ $i .= "a" . "b"; (assignment_expression (variable_name (name)) - (encapsed_string (string_value))))) + (encapsed_string (string_content))))) (expression_statement (augmented_assignment_expression (variable_name @@ -480,15 +480,15 @@ $i .= "a" . "b"; (variable_name (name)) (binary_expression - (encapsed_string (string_value)) - (encapsed_string (string_value))))) + (encapsed_string (string_content)) + (encapsed_string (string_content))))) (expression_statement (binary_expression - (encapsed_string (string_value)) + (encapsed_string (string_content)) (augmented_assignment_expression (variable_name (name)) - (encapsed_string (string_value)))))) + (encapsed_string (string_content)))))) ======================================= Nested assignemnts @@ -610,9 +610,9 @@ Concatenation precedence (php_tag) (expression_statement (binary_expression - (encapsed_string (string_value)) + (encapsed_string (string_content)) (binary_expression - (encapsed_string (string_value)) + (encapsed_string (string_content)) (integer) ) ) @@ -646,9 +646,9 @@ $a = [...$values]; (arguments (argument (array_creation_expression - (array_element_initializer (encapsed_string (string_value)) (encapsed_string (string_value))) - (array_element_initializer (encapsed_string (string_value)) (encapsed_string (string_value))) - (array_element_initializer (encapsed_string (string_value)) (encapsed_string (string_value)))))))) + (array_element_initializer (encapsed_string (string_content)) (encapsed_string (string_content))) + (array_element_initializer (encapsed_string (string_content)) (encapsed_string (string_content))) + (array_element_initializer (encapsed_string (string_content)) (encapsed_string (string_content)))))))) (expression_statement (assignment_expression (variable_name (name)) @@ -683,7 +683,7 @@ static function &($a) { return $a; }; (anonymous_function_creation_expression parameters: (formal_parameters) body: (compound_statement - (echo_statement (encapsed_string (string_value))))))))) + (echo_statement (encapsed_string (string_content))))))))) (expression_statement (function_call_expression function: (name) @@ -1032,7 +1032,7 @@ $statement = match ($a) { (member_call_expression (variable_name (name)) (name) - (arguments (argument (string (string_value)))) + (arguments (argument (string (string_content)))) ) ) ) @@ -1365,7 +1365,7 @@ class A { (subscript_expression (variable_name (name)) (binary_expression - (string (string_value)) + (string (string_content)) (function_call_expression (qualified_name (namespace_name_as_prefix) @@ -1381,10 +1381,10 @@ class A { ) (expression_statement (array_creation_expression - (array_element_initializer (string (string_value))) + (array_element_initializer (string (string_content))) (array_element_initializer (by_ref (variable_name (name)))) - (array_element_initializer (string (string_value)) (string (string_value))) - (array_element_initializer (string (string_value)) (by_ref (variable_name (name)))) + (array_element_initializer (string (string_content)) (string (string_content))) + (array_element_initializer (string (string_content)) (by_ref (variable_name (name)))) ) ) (expression_statement @@ -1405,7 +1405,7 @@ class A { (expression_statement (assignment_expression (list_literal - (string (string_value)) + (string (string_content)) (by_ref (variable_name (name))) ) (variable_name (name)) @@ -1422,7 +1422,7 @@ class A { (expression_statement (assignment_expression (list_literal - (string (string_value)) + (string (string_content)) (by_ref (variable_name (name))) ) (variable_name (name)) @@ -1527,7 +1527,7 @@ $漢字; (heredoc (heredoc_start) (heredoc_body - (string_value)) + (string_content)) (heredoc_end))) (expression_statement (nowdoc diff --git a/php/test/corpus/interpolation.txt b/test/corpus/interpolation.txt similarity index 86% rename from php/test/corpus/interpolation.txt rename to test/corpus/interpolation.txt index c7a0b8bb..844a00fe 100644 --- a/php/test/corpus/interpolation.txt +++ b/test/corpus/interpolation.txt @@ -8,7 +8,7 @@ echo "hi"; (program (php_tag) - (echo_statement (encapsed_string (string_value)))) + (echo_statement (encapsed_string (string_content)))) =============================== interpolated text at beginning @@ -22,7 +22,7 @@ echo "hi"; (program (text) (php_tag) - (echo_statement (encapsed_string (string_value)))) + (echo_statement (encapsed_string (string_content)))) =============================== interpolated text at end @@ -38,7 +38,7 @@ echo "hi"; (program (php_tag) - (echo_statement (encapsed_string (string_value))) + (echo_statement (encapsed_string (string_content))) (text_interpolation (text))) =============================== @@ -59,11 +59,11 @@ echo "bye"; (program (php_tag) - (echo_statement (encapsed_string (string_value))) + (echo_statement (encapsed_string (string_content))) (text_interpolation (text) (php_tag)) - (echo_statement (encapsed_string (string_value))) + (echo_statement (encapsed_string (string_content))) (text_interpolation)) ============================== @@ -79,7 +79,7 @@ Finished (program (php_tag) - (echo_statement (encapsed_string (string_value) (escape_sequence))) + (echo_statement (encapsed_string (string_content) (escape_sequence))) (text_interpolation (text))) ============================== @@ -109,7 +109,7 @@ $a = 'This gets echoed twice'; (program (text) (php_tag) - (expression_statement (assignment_expression (variable_name (name)) (string (string_value)))) + (expression_statement (assignment_expression (variable_name (name)) (string (string_content)))) (text_interpolation (php_tag)) (expression_statement (variable_name (name))) (text_interpolation (text) (php_tag)) @@ -140,7 +140,7 @@ echo "hi"; (text_interpolation (text) (php_tag)) (comment) (comment) - (echo_statement (encapsed_string (string_value)))) + (echo_statement (encapsed_string (string_content)))) ======================================= @@ -165,7 +165,7 @@ if ( ! function_exists('xml_parser_create') ) { (unary_op_expression argument: (function_call_expression function: (name) - arguments: (arguments (argument (string (string_value))))))) + arguments: (arguments (argument (string (string_content))))))) body: (compound_statement (echo_statement (variable_name (name)))))) ===================================== @@ -229,7 +229,7 @@ if ($post) : ) =============================== -#156 octothorpe immediately after text interpolation +octothorpe immediately after text interpolation =============================== Intro diff --git a/common/test/corpus/literals.txt b/test/corpus/literals.txt similarity index 87% rename from common/test/corpus/literals.txt rename to test/corpus/literals.txt index 13c021e6..0a0e615e 100644 --- a/common/test/corpus/literals.txt +++ b/test/corpus/literals.txt @@ -91,13 +91,13 @@ echo "\"\t\\'" . '\n\\\'a\\\b\\'; (program (php_tag) (echo_statement (binary_expression - (encapsed_string (escape_sequence) (escape_sequence) (escape_sequence) (string_value)) - (string (string_value) + (encapsed_string (escape_sequence) (escape_sequence) (escape_sequence) (string_content)) + (string (string_content) (escape_sequence) (escape_sequence) - (string_value) + (string_content) (escape_sequence) - (string_value) + (string_content) (escape_sequence))))) ========================== @@ -111,5 +111,5 @@ Shell command (program (php_tag) - (expression_statement (shell_command_expression (string_value))) - (expression_statement (shell_command_expression (string_value)))) + (expression_statement (shell_command_expression (string_content))) + (expression_statement (shell_command_expression (string_content)))) diff --git a/test/corpus/nowdoc.txt b/test/corpus/nowdoc.txt new file mode 100644 index 00000000..4d867560 --- /dev/null +++ b/test/corpus/nowdoc.txt @@ -0,0 +1,20 @@ +========================== +Nowdocs +========================== + + + +--- + +(program + (php_tag) + (expression_statement + (assignment_expression + (variable_name + (name)) + (encapsed_string + (string_content)))) + (if_statement + (parenthesized_expression + (binary_expression + (function_call_expression + (name) + (arguments + (argument + (string + (string_content) + (string_content) + (string_content) + (string_content) + (string_content) + (string_content) + (string_content))) + (argument + (variable_name + (name))))) + (function_call_expression + (name) + (arguments + (argument + (string + (string_content) + (string_content) + (string_content) + (string_content) + (string_content) + (string_content) + (string_content) + (escape_sequence) + (string_content) + (string_content))) + (argument + (variable_name + (name))))))) + (compound_statement + (echo_statement + (encapsed_string + (string_content)))))) diff --git a/common/test/corpus/types.txt b/test/corpus/types.txt similarity index 100% rename from common/test/corpus/types.txt rename to test/corpus/types.txt diff --git a/common/test/highlight/keywords.php b/test/highlight/keywords.php similarity index 100% rename from common/test/highlight/keywords.php rename to test/highlight/keywords.php diff --git a/common/test/highlight/literals.php b/test/highlight/literals.php similarity index 100% rename from common/test/highlight/literals.php rename to test/highlight/literals.php diff --git a/common/test/highlight/types.php b/test/highlight/types.php similarity index 100% rename from common/test/highlight/types.php rename to test/highlight/types.php diff --git a/common/test/highlight/variables.php b/test/highlight/variables.php similarity index 100% rename from common/test/highlight/variables.php rename to test/highlight/variables.php